diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 4a5d1c40b3a25..261cdf3706803 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -73,7 +73,9 @@ data: { "REFRESH", "ANALYZE", "MAX_CHANGED_PARTITION_ROWS_PERCENT", - "TOTAL" + "TOTAL", + "WAIT", + "NOWAIT" ] # List of non-reserved keywords to add; @@ -110,6 +112,8 @@ data: { "ANALYZE" "MAX_CHANGED_PARTITION_ROWS_PERCENT" "TOTAL" + "WAIT" + "NOWAIT" # Keywords reserved by Calcite, but not required to be reserved in Ignite. "ABS" @@ -448,10 +452,11 @@ data: { "SqlSavepoint()", "SqlRollbackToSavepoint()", "SqlCommitTransaction()", - "SqlRollbackTransaction()" - "SqlStatisticsAnalyze()" - "SqlStatisticsRefresh()" - "SqlStatisticsDrop()" + "SqlRollbackTransaction()", + "SqlStatisticsAnalyze()", + "SqlStatisticsRefresh()", + "SqlStatisticsDrop()", + "SqlSelectForUpdate()" ] # List of methods for parsing extensions to "CREATE [OR REPLACE]" calls. diff --git a/modules/calcite/src/main/codegen/includes/parserImpls.ftl b/modules/calcite/src/main/codegen/includes/parserImpls.ftl index 8c5c964b609dd..14c838a555c2f 100644 --- a/modules/calcite/src/main/codegen/includes/parserImpls.ftl +++ b/modules/calcite/src/main/codegen/includes/parserImpls.ftl @@ -816,3 +816,52 @@ SqlDrop SqlDropView(Span s, boolean replace) : return SqlDdlNodes.dropView(s.end(this), ifExists, id); } } + +/** + * Parses a query optionally followed by FOR UPDATE [OF col [, col ...]] [WAIT n | NOWAIT]. + * + * When FOR UPDATE is absent the inner query node is returned unchanged, so this rule + * transparently handles all queries that reach the StatementParser. + */ +SqlNode SqlSelectForUpdate() : +{ + final Span s; + SqlNode qry; + SqlNodeList ofList = null; + List ofCols = null; + SqlIdentifier col; + Long waitSeconds = null; +} +{ + qry = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY) { s = span(); } + [ + LOOKAHEAD( ) + + [ + LOOKAHEAD() + + { + ofCols = new ArrayList(); + } + col = CompoundIdentifier() { ofCols.add(col); } + ( + col = CompoundIdentifier() { ofCols.add(col); } + )* + { ofList = new SqlNodeList(ofCols, s.pos()); } + ] + [ + LOOKAHEAD() + + { + waitSeconds = Long.parseLong(token.image); + } + | + + { + waitSeconds = 0L; + } + ] + { return new IgniteSqlSelectForUpdate(s.end(this), qry, ofList, waitSeconds); } + ] + { return qry; } +} diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExecutionServiceImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExecutionServiceImpl.java index 19fbeadb46396..3e93765f35510 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExecutionServiceImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExecutionServiceImpl.java @@ -17,6 +17,7 @@ package org.apache.ignite.internal.processors.query.calcite.exec; +import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; @@ -29,11 +30,13 @@ import org.apache.calcite.plan.Contexts; import org.apache.calcite.plan.RelOptUtil; import org.apache.calcite.rel.core.TableModify; +import org.apache.calcite.schema.SchemaPlus; import org.apache.calcite.sql.SqlInsert; import org.apache.calcite.sql.SqlKind; import org.apache.calcite.tools.FrameworkConfig; import org.apache.ignite.IgniteCheckedException; import org.apache.ignite.IgniteException; +import org.apache.ignite.cache.CacheEntry; import org.apache.ignite.cache.query.FieldsQueryCursor; import org.apache.ignite.cache.query.QueryCancelledException; import org.apache.ignite.calcite.CalciteQueryEngineConfiguration; @@ -45,16 +48,21 @@ import org.apache.ignite.internal.managers.eventstorage.DiscoveryEventListener; import org.apache.ignite.internal.managers.eventstorage.GridEventStorageManager; import org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion; +import org.apache.ignite.internal.processors.cache.CacheEntryImplEx; import org.apache.ignite.internal.processors.cache.CacheObjectUtils; import org.apache.ignite.internal.processors.cache.CacheObjectValueContext; +import org.apache.ignite.internal.processors.cache.GridCacheContext; import org.apache.ignite.internal.processors.cache.GridCachePartitionExchangeManager; +import org.apache.ignite.internal.processors.cache.IgniteInternalCache; import org.apache.ignite.internal.processors.cache.QueryCursorImpl; import org.apache.ignite.internal.processors.cache.distributed.near.GridNearTxLocal; import org.apache.ignite.internal.processors.cache.query.CacheQueryType; import org.apache.ignite.internal.processors.cache.query.GridCacheQueryType; import org.apache.ignite.internal.processors.cache.query.IgniteQueryErrorCode; +import org.apache.ignite.internal.processors.cache.version.GridCacheVersion; import org.apache.ignite.internal.processors.failure.FailureProcessor; import org.apache.ignite.internal.processors.performancestatistics.PerformanceStatisticsProcessor; +import org.apache.ignite.internal.processors.query.GridQueryFieldMetadata; import org.apache.ignite.internal.processors.query.IgniteSQLException; import org.apache.ignite.internal.processors.query.QueryProperties; import org.apache.ignite.internal.processors.query.calcite.CalciteQueryProcessor; @@ -98,6 +106,7 @@ import org.apache.ignite.internal.processors.query.calcite.prepare.PrepareServiceImpl; import org.apache.ignite.internal.processors.query.calcite.prepare.QueryPlan; import org.apache.ignite.internal.processors.query.calcite.prepare.QueryPlanCache; +import org.apache.ignite.internal.processors.query.calcite.prepare.SelectForUpdatePlan; import org.apache.ignite.internal.processors.query.calcite.prepare.ddl.CreateTableCommand; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteIndexBound; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteIndexCount; @@ -105,12 +114,14 @@ import org.apache.ignite.internal.processors.query.calcite.rel.IgniteRel; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteTableModify; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteTableScan; +import org.apache.ignite.internal.processors.query.calcite.schema.CacheTableDescriptor; import org.apache.ignite.internal.processors.query.calcite.schema.IgniteTable; import org.apache.ignite.internal.processors.query.calcite.schema.SchemaHolder; import org.apache.ignite.internal.processors.query.calcite.type.IgniteTypeFactory; import org.apache.ignite.internal.processors.query.calcite.util.AbstractService; import org.apache.ignite.internal.processors.query.calcite.util.Commons; import org.apache.ignite.internal.processors.query.calcite.util.ConvertingClosableIterator; +import org.apache.ignite.internal.processors.query.calcite.util.IgniteResource; import org.apache.ignite.internal.processors.query.calcite.util.ListFieldsQueryCursor; import org.apache.ignite.internal.processors.query.running.HeavyQueriesTracker; import org.apache.ignite.internal.processors.security.SecurityUtils; @@ -541,6 +552,9 @@ private FragmentPlan prepareFragment(BaseQueryContext ctx, String jsonFragment) case DDL: return executeDdl(qry, (DdlPlan)plan); + case FOR_UPDATE: + return executeForUpdate(qry, (SelectForUpdatePlan)plan); + default: throw new AssertionError("Unexpected plan type: " + plan); } @@ -581,6 +595,161 @@ private FieldsQueryCursor> executeDdl(RootQuery qry, DdlPlan plan) } } + /** + * Executes a {@code SELECT ... FOR UPDATE} plan. + * + *
    + *
  1. Validates that the current transaction is PESSIMISTIC.
  2. + *
  3. Runs the inner SELECT (which has {@code _KEY} appended) and materialises all rows.
  4. + *
  5. Extracts keys from the last column of each row.
  6. + *
  7. Calls {@code cache.getEntries(keys)} to obtain current entry versions.
  8. + *
  9. Creates a savepoint, acquires pessimistic locks via {@code lockTxEntries()}, + * and releases the savepoint on success (or rolls back on failure).
  10. + *
  11. Returns a cursor with only the user-visible columns (the appended _KEY is stripped).
  12. + *
+ */ + private FieldsQueryCursor> executeForUpdate(RootQuery qry, SelectForUpdatePlan plan) { + GridNearTxLocal userTx = Commons.queryTransaction(qry.context(), ctx.cache().context()); + + if (userTx == null || !userTx.pessimistic()) + throw new IgniteSQLException( + IgniteResource.INSTANCE.selectForUpdateRequiresPessimisticTx().str(), + IgniteQueryErrorCode.UNSUPPORTED_OPERATION); + + // Run the inner SELECT (with _KEY appended) and collect all rows. + ListFieldsQueryCursor innerCursor = mapAndExecutePlan(qry, plan.innerPlan()); + List> rows = innerCursor.getAll(); + + int userColCount = plan.userColumnCount(); + + if (rows.isEmpty()) { + // Nothing to lock – return an empty cursor with user-only field metadata. + QueryCursorImpl> resCur = new QueryCursorImpl<>(Collections.emptyList(), null, false); + + IgniteTypeFactory typeFactory = qry.context().typeFactory(); + List meta = plan.innerPlan().fieldsMetadata().queryFieldsMetadata(typeFactory); + + resCur.fieldsMeta(meta.subList(0, userColCount)); + + return resCur; + } + + List> entries = new ArrayList<>(); + + for (List row : rows) { + GridCacheVersion ver = (GridCacheVersion) row.get(row.size() - 1); + Object val = row.get(row.size() - 2); + Object key = row.get(row.size() - 3); + + entries.add(new CacheEntryImplEx<>(key, val, ver)); + } + + // Resolve the target cache via the schema holder. + SchemaPlus schemaPlus = schemaHolder.schema(plan.schemaName()); + + if (schemaPlus == null) + throw new IgniteSQLException("Schema not found: " + plan.schemaName(), + IgniteQueryErrorCode.SCHEMA_NOT_FOUND); + + IgniteTable igniteTable = (IgniteTable)schemaPlus.getTable(plan.tableName()); + + if (igniteTable == null) + throw new IgniteSQLException("Table not found: " + plan.tableName(), + IgniteQueryErrorCode.TABLE_NOT_FOUND); + + GridCacheContext cctx = + (GridCacheContext)((CacheTableDescriptor)igniteTable.descriptor()).cacheContext(); + + IgniteInternalCache cache = cctx.cache().keepBinary(); + + try { + // Compute lock wait timeout. + // waitSeconds: null = use tx remaining time (0), 0 = NOWAIT (-1), positive = ms. + Long waitSeconds = plan.waitSeconds(); + long waitMs; + + if (waitSeconds == null) + waitMs = 0L; + else if (waitSeconds == 0L) + waitMs = -1L; + else + waitMs = waitSeconds * 1000L; + + // lockTxEntries() requires the transaction to be bound to the current thread + // (it checks cctx.tm().threadLocalTx()). Resume it here and suspend afterwards, + // following the same pattern as ModifyNode.invokeInsideTransaction(). + userTx.resume(); + + try { + // Create a savepoint so that a failed lock attempt can be rolled back without aborting the whole tx. + String spName = "_for_update_" + UUID.randomUUID(); + + userTx.savepoint(spName, false); + + boolean locked = false; + + try { + locked = cache.lockTxEntries(entries, waitMs); + } + catch (IgniteCheckedException e) { + try { + userTx.rollbackToSavepoint(spName); + } + catch (Exception rollbackEx) { + e.addSuppressed(rollbackEx); + } + + throw new IgniteSQLException("Failed to acquire locks for SELECT FOR UPDATE", + IgniteQueryErrorCode.CONCURRENT_UPDATE, e); + } + + if (!locked) { + try { + userTx.rollbackToSavepoint(spName); + } + catch (IgniteCheckedException rollbackEx) { + throw new IgniteSQLException("Failed to rollback savepoint after lock failure", + IgniteQueryErrorCode.UNKNOWN, rollbackEx); + } + + throw new IgniteSQLException( + IgniteResource.INSTANCE.selectForUpdateLockFailed().str(), + IgniteQueryErrorCode.CONCURRENT_UPDATE); + } + + try { + userTx.releaseSavepoint(spName); + } + catch (IgniteCheckedException e) { + throw new IgniteSQLException("Failed to release savepoint after successful lock", + IgniteQueryErrorCode.UNKNOWN, e); + } + } + finally { + userTx.suspend(); + } + } + catch (IgniteCheckedException e) { + throw new IgniteSQLException("Failed to get cache entries for SELECT FOR UPDATE", + IgniteQueryErrorCode.UNKNOWN, e); + } + + // Return user rows with the appended _KEY column stripped. + List> userRows = new ArrayList<>(rows.size()); + + for (List row : rows) + userRows.add(row.subList(0, userColCount)); + + QueryCursorImpl> resCur = new QueryCursorImpl<>(userRows, null, false); + + IgniteTypeFactory typeFactory = qry.context().typeFactory(); + List meta = plan.innerPlan().fieldsMetadata().queryFieldsMetadata(typeFactory); + + resCur.fieldsMeta(meta.subList(0, userColCount)); + + return resCur; + } + /** * Checks that query is initiated by UDF. * diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgnitePlanner.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgnitePlanner.java index 553ca3ba89a94..99bf8905b52c8 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgnitePlanner.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgnitePlanner.java @@ -365,7 +365,8 @@ private static boolean isAsCall(SqlNode node) { } CalciteCatalogReader catalogReader = this.catalogReader.withSchemaPath(schemaPath); - SqlValidator validator = new IgniteSqlValidator(operatorTbl, catalogReader, typeFactory, validatorCfg, ctx.parameters()); + IgniteSqlValidator validator = new IgniteSqlValidator(operatorTbl, catalogReader, typeFactory, validatorCfg, ctx.parameters()); + validator.allowTechnicalColumns(ctx.allowTechnicalColumns()); SqlToRelConverter sqlToRelConverter = sqlToRelConverter(validator, catalogReader, sqlToRelConverterCfg); RelRoot root = sqlToRelConverter.convertQuery(sqlNode, true, false); root = root.withRel(sqlToRelConverter.decorrelate(sqlNode, root.rel)); @@ -425,8 +426,13 @@ public String dump() { /** */ private SqlValidator validator() { - if (validator == null) - validator = new IgniteSqlValidator(operatorTbl, catalogReader, typeFactory, validatorCfg, ctx.parameters()); + if (validator == null) { + IgniteSqlValidator v = new IgniteSqlValidator(operatorTbl, catalogReader, typeFactory, validatorCfg, ctx.parameters()); + + v.allowTechnicalColumns(ctx.allowTechnicalColumns()); + + validator = v; + } return validator; } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgniteSqlValidator.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgniteSqlValidator.java index 8d25cf1c249a0..1ba71abff2f59 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgniteSqlValidator.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/IgniteSqlValidator.java @@ -112,6 +112,9 @@ public class IgniteSqlValidator extends SqlValidatorImpl { /** */ private final RelDataType nullType; + /** Whether technical column access is allowed (for internal queries). */ + private boolean allowTechnicalColumns; + /** * Creates a validator. * @@ -135,6 +138,17 @@ public IgniteSqlValidator( nullType = typeFactory.createSqlType(SqlTypeName.NULL); } + /** + * Allows or prohibits technical column access during validation. + * Internal Ignite queries may set this to {@code true} to plan queries + * that reference technical columns such as {@code _ver} and {@code _src}. + * + * @param allow {@code true} to allow technical column access. + */ + public void allowTechnicalColumns(boolean allow) { + allowTechnicalColumns = allow; + } + /** {@inheritDoc} */ @Override public void validateInsert(SqlInsert insert) { validateTableModify(insert.getTargetTable()); @@ -246,6 +260,29 @@ private void validateTableModify(SqlNode table) { super.validateSelect(select, targetRowType); } + /** {@inheritDoc} */ + @Override protected void validateOrderList(SqlSelect select) { + super.validateOrderList(select); + + SqlNodeList orderList = select.getOrderList(); + + if (orderList == null) + return; + + for (SqlNode orderItem : orderList) { + SqlNode node = orderItem; + + // Unwrap DESC / NULLS FIRST / NULLS LAST wrappers to get the actual expression. + while (node.getKind() == SqlKind.DESCENDING + || node.getKind() == SqlKind.NULLS_FIRST + || node.getKind() == SqlKind.NULLS_LAST) { + node = ((SqlCall)node).operand(0); + } + + validateTechnicalColumnAccess(node); + } + } + /** {@inheritDoc} */ @Override protected void validateNamespace(SqlValidatorNamespace namespace, RelDataType targetRowType) { SqlValidatorTable table = namespace.getTable(); @@ -293,7 +330,7 @@ else if (n instanceof SqlDynamicParam) { if (call.getKind() == SqlKind.AS) { final String alias = deriveAlias(call, 0); - if (isSystemFieldName(alias)) + if (QueryUtils.isReservedFieldName(alias)) throw newValidationError(call, IgniteResource.INSTANCE.illegalAlias(alias)); } else if (call.getKind() == SqlKind.CAST) { @@ -411,18 +448,26 @@ private SqlNode rewriteTableToQuery(SqlNode from) { SelectScope scope, boolean includeSysVars ) { - if (!includeSysVars && exp.getKind() == SqlKind.IDENTIFIER && isSystemFieldName(deriveAlias(exp, 0))) { - SqlQualified qualified = scope.fullyQualify((SqlIdentifier)exp); + if (!includeSysVars && exp.getKind() == SqlKind.IDENTIFIER) { + String alias = deriveAlias(exp, 0); - if (qualified.namespace == null) + // Technical columns are never exposed via SELECT *. + if (QueryUtils.isTechnicalFieldNameIgnoreCase(alias)) return; - if (qualified.namespace.getTable() != null) { - // If child is table and has only system fields, expand star to these fields. - // Otherwise, expand star to non-system fields only. - for (RelDataTypeField fld : qualified.namespace.getRowType().getFieldList()) { - if (!isSystemField(fld)) - return; + if (QueryUtils.isReservedFieldName(alias)) { + SqlQualified qualified = scope.fullyQualify((SqlIdentifier)exp); + + if (qualified.namespace == null) + return; + + if (qualified.namespace.getTable() != null) { + // If child is table and has only system fields, expand star to these fields. + // Otherwise, expand star to non-system fields only. + for (RelDataTypeField fld : qualified.namespace.getRowType().getFieldList()) { + if (!isSystemField(fld)) + return; + } } } } @@ -432,7 +477,7 @@ private SqlNode rewriteTableToQuery(SqlNode from) { /** {@inheritDoc} */ @Override public boolean isSystemField(RelDataTypeField field) { - return isSystemFieldName(field.getName()); + return QueryUtils.isReservedFieldName(field.getName()); } /** */ @@ -551,14 +596,10 @@ private IgniteTypeFactory typeFactory() { return (IgniteTypeFactory)typeFactory; } - /** */ - private boolean isSystemFieldName(String alias) { - return QueryUtils.KEY_FIELD_NAME.equalsIgnoreCase(alias) - || QueryUtils.VAL_FIELD_NAME.equalsIgnoreCase(alias); - } - /** {@inheritDoc} */ @Override public RelDataType deriveType(SqlValidatorScope scope, SqlNode expr) { + validateTechnicalColumnAccess(expr); + if (expr instanceof SqlDynamicParam) { RelDataType type = deriveDynamicParameterType((SqlDynamicParam)expr, nullType); @@ -569,6 +610,24 @@ private boolean isSystemFieldName(String alias) { return super.deriveType(scope, expr); } + /** */ + private void validateTechnicalColumnAccess(SqlNode expr) { + if (allowTechnicalColumns) + return; + + if (!(expr instanceof SqlIdentifier)) + return; + + SqlIdentifier id = (SqlIdentifier)expr; + + String fieldName = id.names.get(id.names.size() - 1); + + if (id.isStar() || !QueryUtils.isTechnicalFieldNameIgnoreCase(fieldName)) + return; + + throw newValidationError(id, IgniteResource.INSTANCE.cannotAccessTechnicalColumn(id.toString())); + } + /** @return A derived type or {@code null} if unable to determine. */ @Nullable private RelDataType deriveDynamicParameterType(SqlDynamicParam node, RelDataType nullValType) { RelDataType type = getValidatedNodeTypeIfKnown(node); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlanningContext.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlanningContext.java index 4b401dabfade0..3d7585cfb5fbf 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlanningContext.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlanningContext.java @@ -62,6 +62,9 @@ public final class PlanningContext implements Context { /** */ private final long plannerTimeout; + /** Whether technical column access is allowed (for internal queries). */ + private final boolean allowTechnicalColumns; + /** * Private constructor, used by a builder. */ @@ -69,7 +72,8 @@ private PlanningContext( Context parentCtx, String qry, @Nullable Object[] parameters, - long plannerTimeout + long plannerTimeout, + boolean allowTechnicalColumns ) { this.qry = qry; this.parameters = parameters; @@ -77,6 +81,7 @@ private PlanningContext( this.parentCtx = parentCtx; startTs = U.currentTimeMillis(); this.plannerTimeout = plannerTimeout; + this.allowTechnicalColumns = allowTechnicalColumns; } /** @@ -115,6 +120,13 @@ public long plannerTimeout() { return plannerTimeout; } + /** + * @return {@code true} if technical column access is allowed during query planning. + */ + public boolean allowTechnicalColumns() { + return allowTechnicalColumns; + } + /** * @return Schema. */ @@ -221,6 +233,9 @@ public static class Builder { /** */ private long plannerTimeout; + /** */ + private boolean allowTechnicalColumns; + /** * @param parentCtx Parent context. * @return Builder for chaining. @@ -259,13 +274,25 @@ public Builder plannerTimeout(long plannerTimeout) { return this; } + /** + * Allows technical column access ({@code _ver}, {@code _src}) during query planning. + * Must only be used for internal Ignite queries, never for user-facing SQL. + * + * @param allow {@code true} to allow technical column access. + * @return Builder for chaining. + */ + public Builder allowTechnicalColumns(boolean allow) { + this.allowTechnicalColumns = allow; + return this; + } + /** * Builds planner context. * * @return Planner context. */ public PlanningContext build() { - return new PlanningContext(parentCtx, qry, parameters, plannerTimeout); + return new PlanningContext(parentCtx, qry, parameters, plannerTimeout, allowTechnicalColumns); } } } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PrepareServiceImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PrepareServiceImpl.java index 7845259e6e0f7..9d3f4cbf7fcbe 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PrepareServiceImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PrepareServiceImpl.java @@ -22,23 +22,30 @@ import org.apache.calcite.plan.RelOptUtil; import org.apache.calcite.rel.type.RelDataType; import org.apache.calcite.runtime.CalciteContextException; +import org.apache.calcite.sql.SqlCall; import org.apache.calcite.sql.SqlDdl; import org.apache.calcite.sql.SqlExplain; import org.apache.calcite.sql.SqlExplainLevel; +import org.apache.calcite.sql.SqlIdentifier; import org.apache.calcite.sql.SqlKind; import org.apache.calcite.sql.SqlNode; import org.apache.calcite.sql.SqlNodeList; +import org.apache.calcite.sql.SqlSelect; +import org.apache.calcite.sql.parser.SqlParserPos; import org.apache.calcite.sql.type.SqlTypeName; import org.apache.calcite.tools.ValidationException; import org.apache.ignite.cache.query.QueryCancelledException; import org.apache.ignite.internal.GridKernalContext; import org.apache.ignite.internal.processors.cache.query.IgniteQueryErrorCode; import org.apache.ignite.internal.processors.query.IgniteSQLException; +import org.apache.ignite.internal.processors.query.QueryUtils; import org.apache.ignite.internal.processors.query.calcite.DistributedCalciteConfiguration; import org.apache.ignite.internal.processors.query.calcite.prepare.ddl.DdlSqlToCommandConverter; import org.apache.ignite.internal.processors.query.calcite.rel.IgniteRel; +import org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlSelectForUpdate; import org.apache.ignite.internal.processors.query.calcite.type.IgniteTypeFactory; import org.apache.ignite.internal.processors.query.calcite.util.AbstractService; +import org.apache.ignite.internal.processors.query.calcite.util.IgniteResource; import org.apache.ignite.internal.processors.query.calcite.util.TypeUtils; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.internal.util.typedef.T2; @@ -93,6 +100,9 @@ public PrepareServiceImpl(GridKernalContext ctx) { if (!F.isEmpty(disbledRules)) ctx.addRulesFilter(new IgnitePlanner.DisabledRuleFilter(disbledRules)); + if (sqlNode instanceof IgniteSqlSelectForUpdate) + return prepareSelectForUpdate((IgniteSqlSelectForUpdate)sqlNode, ctx); + if (SqlKind.DDL.contains(sqlNode.getKind())) return prepareDdl(sqlNode, ctx); @@ -136,6 +146,109 @@ public PrepareServiceImpl(GridKernalContext ctx) { } } + /** + * Prepares a {@code SELECT ... FOR UPDATE} statement. + * + *

Steps: + *

    + *
  1. Validate that the inner query is a plain {@link SqlSelect} (not UNION etc.).
  2. + *
  3. Validate that the FROM clause is a single table (no JOINs, no subqueries).
  4. + *
  5. Rewrite the SELECT list to append {@code _KEY} as the last column.
  6. + *
  7. Prepare the modified SELECT as a normal {@link MultiStepQueryPlan}.
  8. + *
  9. Return a {@link SelectForUpdatePlan} wrapping the inner plan.
  10. + *
+ */ + private SelectForUpdatePlan prepareSelectForUpdate(IgniteSqlSelectForUpdate forUpdate, PlanningContext ctx) + throws ValidationException { + SqlNode innerQuery = forUpdate.query(); + + if (!(innerQuery instanceof SqlSelect)) + throw new IgniteSQLException( + "SELECT FOR UPDATE is only supported for plain SELECT statements", + IgniteQueryErrorCode.UNSUPPORTED_OPERATION); + + SqlSelect select = (SqlSelect)innerQuery; + + // Unwrap optional AS alias around the table reference. + SqlNode from = select.getFrom(); + + if (from == null) + throw new IgniteSQLException( + "SELECT FOR UPDATE requires a FROM clause", + IgniteQueryErrorCode.UNSUPPORTED_OPERATION); + + SqlNode fromUnwrapped = from.getKind() == SqlKind.AS ? ((SqlCall)from).operand(0) : from; + + // Reject JOINs. + if (fromUnwrapped.getKind() == SqlKind.JOIN) + throw new IgniteSQLException( + IgniteResource.INSTANCE.selectForUpdateJoinNotSupported().str(), + IgniteQueryErrorCode.UNSUPPORTED_OPERATION); + + // Reject subqueries and other non-table references. + if (!(fromUnwrapped instanceof SqlIdentifier)) + throw new IgniteSQLException( + "SELECT FOR UPDATE is only supported for simple table references", + IgniteQueryErrorCode.UNSUPPORTED_OPERATION); + + SqlIdentifier tableId = (SqlIdentifier)fromUnwrapped; + + // Extract schema and table names. + String schemaName; + String tableName; + + if (tableId.names.size() >= 2) { + schemaName = tableId.names.get(tableId.names.size() - 2); + tableName = tableId.names.get(tableId.names.size() - 1); + } + else { + schemaName = ctx.schemaName(); + tableName = tableId.getSimple(); + } + + // Rewrite SELECT list: append _KEY as the last column. + SqlNodeList origList = select.getSelectList(); + SqlNodeList newList = new SqlNodeList(SqlParserPos.ZERO); + + for (SqlNode col : origList) + newList.add(col); + + newList.add(new SqlIdentifier(QueryUtils.KEY_FIELD_NAME, SqlParserPos.ZERO)); + newList.add(new SqlIdentifier(QueryUtils.VAL_FIELD_NAME, SqlParserPos.ZERO)); + newList.add(new SqlIdentifier(QueryUtils.VER_FIELD_NAME, SqlParserPos.ZERO)); + + SqlSelect modifiedSelect = new SqlSelect( + SqlParserPos.ZERO, + null, + newList, + select.getFrom(), + select.getWhere(), + select.getGroup(), + select.getHaving(), + null, + null, + select.getOrderList(), + select.getOffset(), + select.getFetch(), + select.getHints() + ); + + // Prepare the modified SELECT as a regular query plan. + PlanningContext pctx = PlanningContext.builder() + .parentContext(ctx) + .query(ctx.query()) + .parameters(ctx.parameters()) + .plannerTimeout(ctx.plannerTimeout()) + .allowTechnicalColumns(true) + .build(); + + MultiStepQueryPlan innerPlan = (MultiStepQueryPlan)prepareQuery(modifiedSelect, pctx); + + int userColCount = innerPlan.fieldsMetadata().rowType().getFieldCount() - 3; + + return new SelectForUpdatePlan(innerPlan, userColCount, forUpdate.waitSeconds(), schemaName, tableName); + } + /** * */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/QueryPlan.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/QueryPlan.java index 9c0c7777a9583..d74464d9b7d95 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/QueryPlan.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/QueryPlan.java @@ -22,7 +22,7 @@ */ public interface QueryPlan { /** Query type */ - enum Type { QUERY, FRAGMENT, DML, DDL, EXPLAIN } + enum Type { QUERY, FRAGMENT, DML, DDL, EXPLAIN, FOR_UPDATE } /** * @return Query type. diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/SelectForUpdatePlan.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/SelectForUpdatePlan.java new file mode 100644 index 0000000000000..62f3f4204e180 --- /dev/null +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/SelectForUpdatePlan.java @@ -0,0 +1,115 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.prepare; + +import org.jetbrains.annotations.Nullable; + +/** + * Query plan for {@code SELECT ... FOR UPDATE} statements. + * + *

Wraps an inner {@link MultiStepQueryPlan} whose SELECT list has the table's {@code _KEY} + * column appended at the end. At execution time the executor: + *

    + *
  1. Runs the inner plan and materialises the full result set.
  2. + *
  3. Extracts the last column (_KEY) from every row.
  4. + *
  5. Calls {@code cache.getEntries(keys)} to obtain current entry versions.
  6. + *
  7. Calls {@code cache.lockTxEntries(entries, waitMs)} to acquire pessimistic locks.
  8. + *
  9. Returns only the first {@link #userColumnCount} columns to the caller.
  10. + *
+ */ +public class SelectForUpdatePlan extends AbstractQueryPlan { + /** Inner plan: SELECT with _KEY appended as the last column. */ + private final MultiStepQueryPlan innerPlan; + + /** Number of user-visible result columns (total inner columns minus the appended _KEY). */ + private final int userColumnCount; + + /** + * Lock-wait limit from the {@code FOR UPDATE} clause: + * {@code null} = use transaction timeout, {@code 0L} = NOWAIT, + * positive value = WAIT n seconds. + */ + @Nullable private final Long waitSeconds; + + /** SQL schema name for the target table (used at execution time for cache lookup). */ + private final String schemaName; + + /** SQL table name (uppercased) for the target table. */ + private final String tableName; + + /** */ + public SelectForUpdatePlan( + MultiStepQueryPlan innerPlan, + int userColumnCount, + @Nullable Long waitSeconds, + String schemaName, + String tableName + ) { + super(innerPlan.query()); + + this.innerPlan = innerPlan; + this.userColumnCount = userColumnCount; + this.waitSeconds = waitSeconds; + this.schemaName = schemaName; + this.tableName = tableName; + } + + /** Returns the inner plan that reads rows together with the appended {@code _KEY} column. */ + public MultiStepQueryPlan innerPlan() { + return innerPlan; + } + + /** Number of user-visible result columns (the _KEY column is not counted). */ + public int userColumnCount() { + return userColumnCount; + } + + /** + * Returns the lock-wait limit: {@code null} = transaction timeout, {@code 0L} = NOWAIT, + * positive = WAIT n seconds. + */ + @Nullable public Long waitSeconds() { + return waitSeconds; + } + + /** SQL schema name of the target table. */ + public String schemaName() { + return schemaName; + } + + /** SQL table name of the target table. */ + public String tableName() { + return tableName; + } + + /** {@inheritDoc} */ + @Override public Type type() { + return Type.FOR_UPDATE; + } + + /** {@inheritDoc} */ + @Override public QueryPlan copy() { + return new SelectForUpdatePlan( + (MultiStepQueryPlan)innerPlan.copy(), + userColumnCount, + waitSeconds, + schemaName, + tableName + ); + } +} diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/schema/CacheTableDescriptorImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/schema/CacheTableDescriptorImpl.java index 2cd164bc81570..3ef37a0609489 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/schema/CacheTableDescriptorImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/schema/CacheTableDescriptorImpl.java @@ -53,6 +53,7 @@ import org.apache.ignite.internal.processors.cache.distributed.dht.topology.GridDhtPartitionState; import org.apache.ignite.internal.processors.cache.distributed.dht.topology.GridDhtPartitionTopology; import org.apache.ignite.internal.processors.cache.persistence.CacheDataRow; +import org.apache.ignite.internal.processors.cache.version.GridCacheVersion; import org.apache.ignite.internal.processors.query.GridQueryProperty; import org.apache.ignite.internal.processors.query.GridQueryTypeDescriptor; import org.apache.ignite.internal.processors.query.QueryUtils; @@ -111,6 +112,9 @@ public class CacheTableDescriptorImpl extends NullInitializerExpressionFactory /** */ private final ImmutableBitSet insertFields; + /** Count of non-technical columns used in the UPDATE source SELECT. */ + private final int updateRowFieldCnt; + /** */ private RelDataType tableRowType; @@ -123,7 +127,7 @@ public CacheTableDescriptorImpl(GridCacheContextInfo cacheInfo, GridQueryT Set fields = this.typeDesc.fields().keySet(); - List descriptors = new ArrayList<>(fields.size() + 2); + List descriptors = new ArrayList<>(fields.size() + 4); // A _key/_val field is virtual in case there is an alias or a property(es) mapped to the _key/_val field. BitSet virtualFields = new BitSet(); @@ -177,6 +181,28 @@ else if (Objects.equals(field, typeDesc.valueFieldAlias())) { } } + virtualFields.set(descriptors.size()); + descriptors.add(new TechnicalDescriptor(QueryUtils.VER_FIELD_NAME, GridCacheVersion.class, descriptors.size()) { + @Override public Object value(ExecutionContext ectx, GridCacheContext cctx, CacheDataRow src) + throws IgniteCheckedException { + GridCacheVersion ver = src.version(); + + if (ver != null) + return ver; + + CacheDataRow row = cctx.offheap().read(cctx, src.key()); + + return row == null ? null : row.version(); + } + }); + + virtualFields.set(descriptors.size()); + descriptors.add(new TechnicalDescriptor(QueryUtils.SRC_FIELD_NAME, Integer.class, descriptors.size()) { + @Override public Object value(ExecutionContext ectx, GridCacheContext cctx, CacheDataRow src) { + return cctx.cacheId(); + } + }); + Map descriptorsMap = U.newHashMap(descriptors.size()); for (CacheColumnDescriptor descriptor : descriptors) descriptorsMap.put(descriptor.name(), descriptor); @@ -212,6 +238,9 @@ else if (!F.isEmpty(typeDesc.primaryKeyFields())) { this.affFields = ImmutableIntList.copyOf(affFields); this.descriptors = descriptors.toArray(DUMMY); this.descriptorsMap = descriptorsMap; + this.updateRowFieldCnt = (int)descriptors.stream() + .filter(d -> !QueryUtils.isTechnicalFieldNameIgnoreCase(d.name())) + .count(); virtualFields.flip(0, descriptors.size()); insertFields = ImmutableBitSet.fromBitSet(virtualFields); @@ -222,6 +251,18 @@ else if (!F.isEmpty(typeDesc.primaryKeyFields())) { return rowType(factory, insertFields); } + /** {@inheritDoc} */ + @Override public RelDataType selectForUpdateRowType(IgniteTypeFactory factory) { + RelDataTypeFactory.Builder b = new RelDataTypeFactory.Builder(factory); + + for (CacheColumnDescriptor desc : descriptors) { + if (!QueryUtils.isTechnicalFieldNameIgnoreCase(desc.name())) + b.add(desc.name(), desc.logicalType(factory)); + } + + return b.build(); + } + /** {@inheritDoc} */ @Override public GridCacheContext cacheContext() { return cacheInfo.cacheContext(); @@ -278,6 +319,9 @@ else if (affFields.isEmpty()) @Override public boolean isUpdateAllowed(RelOptTable tbl, int colIdx) { final CacheColumnDescriptor desc = descriptors[colIdx]; + if (QueryUtils.isTechnicalFieldName(desc.name())) + return false; + return !desc.key() && (desc.field() || QueryUtils.isSqlType(desc.storageType())); } @@ -382,9 +426,12 @@ private Object insertVal(Row row, ExecutionContext ectx) throws Ignit for (int i = 2; i < descriptors.length; i++) { final CacheColumnDescriptor desc = descriptors[i]; + if (!desc.field() || desc.key()) + continue; + Object fieldVal = hnd.get(i, row); - if (desc.field() && !desc.key() && fieldVal != null) + if (fieldVal != null) desc.set(val, TypeUtils.fromInternal(ectx, fieldVal, desc.storageType())); } } @@ -412,7 +459,8 @@ private ModifyTuple updateTuple(Row row, List updateColList, int o Object key = Objects.requireNonNull(hnd.get(offset + QueryUtils.KEY_COL, row)); Object val = clone(Objects.requireNonNull(hnd.get(offset + QueryUtils.VAL_COL, row))); - offset += descriptorsMap.size(); + // New values start after the source fields; compute dynamically to handle both UPDATE and MERGE. + offset = hnd.columnCount(row) - updateColList.size(); for (int i = 0; i < updateColList.size(); i++) { final CacheColumnDescriptor desc = Objects.requireNonNull(descriptorsMap.get(updateColList.get(i))); @@ -442,14 +490,19 @@ private ModifyTuple mergeTuple(Row row, List updateColList, Execut int rowColumnsCnt = hnd.columnCount(row); - if (rowColumnsCnt == descriptors.length) + // An empty update column list unambiguously means there is no WHEN MATCHED clause at all (a MERGE + // statement always has at least one WHEN clause), so the row can only originate from the INSERT + // section. Note: the row width alone can't be used to detect this case, since, depending on the + // number of updated columns, it may coincide with the width of a WHEN MATCHED-only row. + if (updateColList.isEmpty()) return insertTuple(row, ectx); // Only WHEN NOT MATCHED clause in MERGE. - else if (rowColumnsCnt == descriptors.length + updateColList.size()) + else if (rowColumnsCnt == updateRowFieldCnt + updateColList.size()) return updateTuple(row, updateColList, 0, ectx); // Only WHEN MATCHED clause in MERGE. else { // Both WHEN MATCHED and WHEN NOT MATCHED clauses in MERGE. - assert rowColumnsCnt == descriptors.length * 2 + updateColList.size() : "Unexpected columns count: " + - rowColumnsCnt; + // INSERT section has all fields (insertRowType); UPDATE section excludes technical columns. + assert rowColumnsCnt == descriptors.length + updateRowFieldCnt + updateColList.size() : + "Unexpected columns count: " + rowColumnsCnt; int updateOffset = descriptors.length; // Offset of fields for update statement. @@ -805,6 +858,79 @@ private FieldDescriptor(GridQueryProperty desc, int fieldIdx) { } } + /** */ + private abstract static class TechnicalDescriptor implements CacheColumnDescriptor { + /** */ + private final String name; + + /** */ + private final Class storageType; + + /** */ + private final int fieldIdx; + + /** */ + private volatile RelDataType logicalType; + + /** */ + private TechnicalDescriptor(String name, Class storageType, int fieldIdx) { + this.name = name; + this.storageType = storageType; + this.fieldIdx = fieldIdx; + } + + /** {@inheritDoc} */ + @Override public boolean field() { + return false; + } + + /** {@inheritDoc} */ + @Override public boolean key() { + return false; + } + + /** {@inheritDoc} */ + @Override public boolean hasDefaultValue() { + return false; + } + + /** {@inheritDoc} */ + @Override public Object defaultValue() { + throw new AssertionError(); + } + + /** {@inheritDoc} */ + @Override public String name() { + return name; + } + + /** {@inheritDoc} */ + @Override public int fieldIndex() { + return fieldIdx; + } + + /** {@inheritDoc} */ + @Override public RelDataType logicalType(IgniteTypeFactory f) { + if (logicalType == null) { + logicalType = storageType == GridCacheVersion.class + ? f.createTypeWithNullability(f.createJavaType(storageType), true) + : TypeUtils.sqlType(f, storageType, PRECISION_NOT_SPECIFIED, SCALE_NOT_SPECIFIED, true); + } + + return logicalType; + } + + /** {@inheritDoc} */ + @Override public Class storageType() { + return storageType; + } + + /** {@inheritDoc} */ + @Override public void set(Object dst, Object val) { + throw new AssertionError(); + } + } + /** {@inheritDoc} */ @Override public GridQueryTypeDescriptor typeDescription() { return typeDesc; diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlSelectForUpdate.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlSelectForUpdate.java new file mode 100644 index 0000000000000..2c0dbb3cb1f1c --- /dev/null +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlSelectForUpdate.java @@ -0,0 +1,132 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.sql; + +import java.util.List; +import org.apache.calcite.sql.SqlCall; +import org.apache.calcite.sql.SqlKind; +import org.apache.calcite.sql.SqlNode; +import org.apache.calcite.sql.SqlNodeList; +import org.apache.calcite.sql.SqlOperator; +import org.apache.calcite.sql.SqlSpecialOperator; +import org.apache.calcite.sql.SqlWriter; +import org.apache.calcite.sql.parser.SqlParserPos; +import org.apache.calcite.util.ImmutableNullableList; +import org.jetbrains.annotations.Nullable; + +/** + * Parse tree for {@code SELECT ... FOR UPDATE [OF col [, col ...]] [WAIT n | NOWAIT]} statement. + * + *

The {@code FOR UPDATE} clause requests pessimistic row-level locks on the rows returned + * by the query. Actual lock acquisition is not yet supported; this node exists to reserve the + * syntax and produce a clear "not yet supported" error at query-preparation time. + * + *

Fields: + *

    + *
  • {@code query} — the underlying SELECT/WITH/VALUES query
  • + *
  • {@code ofList} — optional list of column references identifying which tables to lock; + * {@code null} means all tables referenced in FROM
  • + *
  • {@code waitSeconds} — {@code null} = use transaction timeout, + * {@code 0} = NOWAIT, positive = WAIT n seconds
  • + *
+ */ +public class IgniteSqlSelectForUpdate extends SqlCall { + /** */ + private static final SqlOperator OPERATOR = + new SqlSpecialOperator("SELECT FOR UPDATE", SqlKind.OTHER); + + /** The wrapped SELECT / WITH / VALUES query. */ + private final SqlNode query; + + /** + * Columns from the {@code OF} list, or {@code null} when not specified (lock all tables). + * Each element is a {@link org.apache.calcite.sql.SqlIdentifier} referencing a table column. + */ + @Nullable private final SqlNodeList ofList; + + /** + * Lock-wait limit: {@code null} = use transaction timeout, {@code 0} = NOWAIT, + * positive = WAIT n seconds. + */ + @Nullable private final Long waitSeconds; + + /** */ + public IgniteSqlSelectForUpdate( + SqlParserPos pos, + SqlNode query, + @Nullable SqlNodeList ofList, + @Nullable Long waitSeconds + ) { + super(pos); + + this.query = query; + this.ofList = ofList; + this.waitSeconds = waitSeconds; + } + + /** {@inheritDoc} */ + @Override public SqlOperator getOperator() { + return OPERATOR; + } + + /** {@inheritDoc} */ + @Override public List getOperandList() { + return ImmutableNullableList.of(query, ofList); + } + + /** Returns the wrapped query (SELECT / WITH / VALUES). */ + public SqlNode query() { + return query; + } + + /** + * Returns the {@code OF} column list, or {@code null} when not specified (lock all tables). + */ + @Nullable public SqlNodeList ofList() { + return ofList; + } + + /** + * Returns the wait limit: {@code null} = transaction timeout, {@code 0} = NOWAIT, + * positive = WAIT n seconds. + */ + @Nullable public Long waitSeconds() { + return waitSeconds; + } + + /** {@inheritDoc} */ + @Override public void unparse(SqlWriter writer, int leftPrec, int rightPrec) { + query.unparse(writer, leftPrec, rightPrec); + writer.keyword("FOR"); + writer.keyword("UPDATE"); + + if (ofList != null) { + writer.keyword("OF"); + ofList.unparse(writer, 0, 0); + } + + if (waitSeconds != null) { + if (waitSeconds == 0L) + writer.keyword("NOWAIT"); + else { + writer.keyword("WAIT"); + writer.print(String.valueOf(waitSeconds)); + } + } + } +} 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 05d733e02329c..4264d3335f51e 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 @@ -1102,28 +1102,30 @@ final public SqlNode SqlStmt() throws ParseException { } else if (jj_2_66(2)) { stmt = SqlStatisticsDrop(); } else if (jj_2_67(2)) { - stmt = SqlSetOption(Span.of(), null); + stmt = SqlSelectForUpdate(); } else if (jj_2_68(2)) { - stmt = SqlAlter(); + stmt = SqlSetOption(Span.of(), null); } else if (jj_2_69(2)) { - stmt = SqlCreate(); + stmt = SqlAlter(); } else if (jj_2_70(2)) { - stmt = SqlDrop(); + stmt = SqlCreate(); } else if (jj_2_71(2)) { - stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); + stmt = SqlDrop(); } else if (jj_2_72(2)) { - stmt = SqlExplain(); + stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); } else if (jj_2_73(2)) { - stmt = SqlDescribe(); + stmt = SqlExplain(); } else if (jj_2_74(2)) { - stmt = SqlInsert(); + stmt = SqlDescribe(); } else if (jj_2_75(2)) { - stmt = SqlDelete(); + stmt = SqlInsert(); } else if (jj_2_76(2)) { - stmt = SqlUpdate(); + stmt = SqlDelete(); } else if (jj_2_77(2)) { - stmt = SqlMerge(); + stmt = SqlUpdate(); } else if (jj_2_78(2)) { + stmt = SqlMerge(); + } else if (jj_2_79(2)) { stmt = SqlProcedureCall(); } else { jj_consume_token(-1); @@ -1145,7 +1147,7 @@ final public SqlNode SqlStmtEof() throws ParseException { } final public boolean IfNotExistsOpt() throws ParseException { - if (jj_2_79(2)) { + if (jj_2_80(2)) { jj_consume_token(IF); jj_consume_token(NOT); jj_consume_token(EXISTS); @@ -1159,20 +1161,20 @@ final public boolean IfNotExistsOpt() throws ParseException { final public SqlNodeList WithCreateTableOptionList() throws ParseException { List list = new ArrayList(); final Span s; - if (jj_2_83(2)) { + if (jj_2_84(2)) { jj_consume_token(WITH); s = span(); - if (jj_2_81(2)) { + if (jj_2_82(2)) { jj_consume_token(QUOTED_IDENTIFIER); {if (true) return IgniteSqlCreateTableOption.parseOptionList( SqlParserUtil.stripQuotes(token.image, DQ, DQ, DQDQ, quotedCasing), getPos().withQuoting(true) );} - } else if (jj_2_82(2)) { + } else if (jj_2_83(2)) { CreateTableOption(list); label_7: while (true) { - if (jj_2_80(2)) { + if (jj_2_81(2)) { ; } else { break label_7; @@ -1194,43 +1196,43 @@ final public SqlNodeList WithCreateTableOptionList() throws ParseException { } final public SqlLiteral CreateTableOptionKey() throws ParseException { - if (jj_2_84(2)) { + if (jj_2_85(2)) { jj_consume_token(TEMPLATE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.TEMPLATE, getPos());} - } else if (jj_2_85(2)) { + } else if (jj_2_86(2)) { jj_consume_token(BACKUPS); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.BACKUPS, getPos());} - } else if (jj_2_86(2)) { + } else if (jj_2_87(2)) { jj_consume_token(AFFINITY_KEY); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.AFFINITY_KEY, getPos());} - } else if (jj_2_87(2)) { + } else if (jj_2_88(2)) { jj_consume_token(ATOMICITY); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ATOMICITY, getPos());} - } else if (jj_2_88(2)) { + } else if (jj_2_89(2)) { jj_consume_token(WRITE_SYNCHRONIZATION_MODE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRITE_SYNCHRONIZATION_MODE, getPos());} - } else if (jj_2_89(2)) { + } else if (jj_2_90(2)) { jj_consume_token(CACHE_GROUP); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.CACHE_GROUP, getPos());} - } else if (jj_2_90(2)) { + } else if (jj_2_91(2)) { jj_consume_token(CACHE_NAME); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.CACHE_NAME, getPos());} - } else if (jj_2_91(2)) { + } else if (jj_2_92(2)) { jj_consume_token(DATA_REGION); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.DATA_REGION, getPos());} - } else if (jj_2_92(2)) { + } else if (jj_2_93(2)) { jj_consume_token(KEY_TYPE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.KEY_TYPE, getPos());} - } else if (jj_2_93(2)) { + } else if (jj_2_94(2)) { jj_consume_token(VALUE_TYPE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.VALUE_TYPE, getPos());} - } else if (jj_2_94(2)) { + } else if (jj_2_95(2)) { jj_consume_token(ENCRYPTED); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ENCRYPTED, getPos());} - } else if (jj_2_95(2)) { + } else if (jj_2_96(2)) { jj_consume_token(WRAP_KEY); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_KEY, getPos());} - } else if (jj_2_96(2)) { + } else if (jj_2_97(2)) { jj_consume_token(WRAP_VALUE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_VALUE, getPos());} } else { @@ -1247,9 +1249,9 @@ final public void CreateTableOption(List list) throws ParseException { key = CreateTableOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_97(2)) { + if (jj_2_98(2)) { val = Literal(); - } else if (jj_2_98(2)) { + } else if (jj_2_99(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -1260,9 +1262,9 @@ final public void CreateTableOption(List list) throws ParseException { final public SqlDataTypeSpec DataTypeEx() throws ParseException { final SqlDataTypeSpec dt; - if (jj_2_99(2)) { + if (jj_2_100(2)) { dt = DataType(); - } else if (jj_2_100(2)) { + } else if (jj_2_101(2)) { dt = IntervalType(); } else { jj_consume_token(-1); @@ -1290,11 +1292,11 @@ final public void TableElement(List list) throws ParseException { final ColumnStrategy strategy; final SqlNode dflt; SqlIdentifier id = null; - if (jj_2_104(2)) { + if (jj_2_105(2)) { id = SimpleIdentifier(); type = DataTypeEx(); nullable = NullableOptDefaultTrue(); - if (jj_2_101(2)) { + if (jj_2_102(2)) { jj_consume_token(DEFAULT_); s.add(this); dflt = Literal(); @@ -1304,7 +1306,7 @@ final public void TableElement(List list) throws ParseException { strategy = nullable ? ColumnStrategy.NULLABLE : ColumnStrategy.NOT_NULLABLE; } - if (jj_2_102(2)) { + if (jj_2_103(2)) { jj_consume_token(PRIMARY); s.add(this); jj_consume_token(KEY); @@ -1316,8 +1318,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_105(2)) { - if (jj_2_103(2)) { + } else if (jj_2_106(2)) { + if (jj_2_104(2)) { jj_consume_token(CONSTRAINT); s.add(this); id = SimpleIdentifier(); @@ -1343,7 +1345,7 @@ final public SqlNodeList TableElementList() throws ParseException { TableElement(list); label_8: while (true) { - if (jj_2_106(2)) { + if (jj_2_107(2)) { ; } else { break label_8; @@ -1367,12 +1369,12 @@ final public SqlCreate SqlCreateTable(Span s, boolean replace) throws ParseExcep jj_consume_token(TABLE); ifNotExists = IfNotExistsOpt(); id = CompoundIdentifier(); - if (jj_2_108(3)) { + if (jj_2_109(3)) { columnList = TableElementList(); optionList = WithCreateTableOptionList(); query = null; - } else if (jj_2_109(2)) { - if (jj_2_107(2)) { + } else if (jj_2_110(2)) { + if (jj_2_108(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1393,10 +1395,10 @@ final public SqlNode IndexedColumn() throws ParseException { final Span s; SqlNode col; col = SimpleIdentifier(); - if (jj_2_112(2)) { - if (jj_2_110(2)) { + if (jj_2_113(2)) { + if (jj_2_111(2)) { jj_consume_token(ASC); - } else if (jj_2_111(2)) { + } else if (jj_2_112(2)) { jj_consume_token(DESC); col = SqlStdOperatorTable.DESC.createCall(getPos(), col); } else { @@ -1420,7 +1422,7 @@ final public SqlNodeList IndexedColumnList() throws ParseException { list.add(col); label_9: while (true) { - if (jj_2_113(2)) { + if (jj_2_114(2)) { ; } else { break label_9; @@ -1445,7 +1447,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_114(2)) { + if (jj_2_115(2)) { idxId = SimpleIdentifier(); } else { ; @@ -1455,19 +1457,19 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep columnList = IndexedColumnList(); label_10: while (true) { - if (jj_2_115(2)) { + if (jj_2_116(2)) { ; } else { break label_10; } - if (jj_2_116(2)) { + if (jj_2_117(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_117(2)) { + } else if (jj_2_118(2)) { jj_consume_token(INLINE_SIZE); jj_consume_token(UNSIGNED_INTEGER_LITERAL); if (inlineSize != null) @@ -1484,7 +1486,7 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep } final public boolean IfExistsOpt() throws ParseException { - if (jj_2_118(2)) { + if (jj_2_119(2)) { jj_consume_token(IF); jj_consume_token(EXISTS); {if (true) return true;} @@ -1535,7 +1537,7 @@ final public SqlNodeList ColumnWithTypeList() throws ParseException { list.add(col); label_11: while (true) { - if (jj_2_119(2)) { + if (jj_2_120(2)) { ; } else { break label_11; @@ -1556,7 +1558,7 @@ final public SqlNode ColumnWithType() throws ParseException { final Span s = Span.of(); id = SimpleIdentifier(); type = DataTypeEx(); - if (jj_2_120(2)) { + if (jj_2_121(2)) { jj_consume_token(NOT); jj_consume_token(NULL); nullable = false; @@ -1570,10 +1572,10 @@ final public SqlNode ColumnWithType() throws ParseException { final public SqlNodeList ColumnWithTypeOrList() throws ParseException { SqlNode col; SqlNodeList list; - if (jj_2_121(2)) { + if (jj_2_122(2)) { col = ColumnWithType(); {if (true) return new SqlNodeList(Collections.singletonList(col), col.getParserPosition());} - } else if (jj_2_122(2)) { + } else if (jj_2_123(2)) { list = ColumnWithTypeList(); {if (true) return list;} } else { @@ -1595,15 +1597,15 @@ final public SqlNode SqlAlterTable() throws ParseException { jj_consume_token(TABLE); ifExists = IfExistsOpt(); id = CompoundIdentifier(); - if (jj_2_125(2)) { + if (jj_2_126(2)) { jj_consume_token(LOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, true);} - } else if (jj_2_126(2)) { + } else if (jj_2_127(2)) { jj_consume_token(NOLOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, false);} - } else if (jj_2_127(2)) { + } else if (jj_2_128(2)) { jj_consume_token(ADD); - if (jj_2_123(2)) { + if (jj_2_124(2)) { jj_consume_token(COLUMN); } else { ; @@ -1611,9 +1613,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_128(2)) { + } else if (jj_2_129(2)) { jj_consume_token(DROP); - if (jj_2_124(2)) { + if (jj_2_125(2)) { jj_consume_token(COLUMN); } else { ; @@ -1667,16 +1669,16 @@ final public SqlDrop SqlDropUser(Span s, boolean replace) throws ParseException final public SqlNumericLiteral SignedIntegerLiteral() throws ParseException { final Span s; - if (jj_2_129(2)) { + if (jj_2_130(2)) { jj_consume_token(PLUS); jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_130(2)) { + } else if (jj_2_131(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_131(2)) { + } else if (jj_2_132(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} } else { @@ -1780,7 +1782,7 @@ final public SqlNode SqlKillComputeTask() throws ParseException { } final public boolean IsAsyncOpt() throws ParseException { - if (jj_2_132(2)) { + if (jj_2_133(2)) { jj_consume_token(ASYNC); {if (true) return true;} } else { @@ -1811,7 +1813,7 @@ final public SqlNode SqlCommitTransaction() throws ParseException { final Span s; jj_consume_token(COMMIT); s = span(); - if (jj_2_133(2)) { + if (jj_2_134(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1824,7 +1826,7 @@ final public SqlNode SqlRollbackTransaction() throws ParseException { final Span s; jj_consume_token(ROLLBACK); s = span(); - if (jj_2_134(2)) { + if (jj_2_135(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1860,7 +1862,7 @@ final public IgniteSqlStatisticsTable StatisticsTable() throws ParseException { final SqlIdentifier id; final SqlNodeList columnList; id = CompoundIdentifier(); - if (jj_2_135(2)) { + if (jj_2_136(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1877,7 +1879,7 @@ final public SqlNodeList StatisticsTables() throws ParseException { tbls.add(tbl); label_12: while (true) { - if (jj_2_136(2)) { + if (jj_2_137(2)) { ; } else { break label_12; @@ -1893,14 +1895,14 @@ final public SqlNodeList StatisticsTables() throws ParseException { final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException { List list = new ArrayList(); final Span s; - if (jj_2_140(2)) { + if (jj_2_141(2)) { jj_consume_token(WITH); s = span(); - if (jj_2_138(2)) { + if (jj_2_139(2)) { StatisticsAnalyzeOption(list); label_13: while (true) { - if (jj_2_137(2)) { + if (jj_2_138(2)) { ; } else { break label_13; @@ -1910,7 +1912,7 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException StatisticsAnalyzeOption(list); } {if (true) return new SqlNodeList(list, s.end(this));} - } else if (jj_2_139(2)) { + } else if (jj_2_140(2)) { jj_consume_token(QUOTED_IDENTIFIER); {if (true) return IgniteSqlStatisticsAnalyzeOption.parseOptionList( SqlParserUtil.stripQuotes(token.image, DQ, DQ, DQDQ, quotedCasing), @@ -1928,19 +1930,19 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException } final public SqlLiteral StatisticsAnalyzeOptionKey() throws ParseException { - if (jj_2_141(2)) { + if (jj_2_142(2)) { jj_consume_token(DISTINCT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.DISTINCT, getPos());} - } else if (jj_2_142(2)) { + } else if (jj_2_143(2)) { jj_consume_token(TOTAL); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.TOTAL, getPos());} - } else if (jj_2_143(2)) { + } else if (jj_2_144(2)) { jj_consume_token(SIZE); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.SIZE, getPos());} - } else if (jj_2_144(2)) { + } else if (jj_2_145(2)) { jj_consume_token(NULLS); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.NULLS, getPos());} - } else if (jj_2_145(2)) { + } else if (jj_2_146(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.MAX_CHANGED_PARTITION_ROWS_PERCENT, getPos());} } else { @@ -1957,9 +1959,9 @@ final public void StatisticsAnalyzeOption(List list) throws ParseExcept key = StatisticsAnalyzeOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_146(2)) { + if (jj_2_147(2)) { val = Literal(); - } else if (jj_2_147(2)) { + } else if (jj_2_148(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -2023,18 +2025,79 @@ final public SqlDrop SqlDropView(Span s, boolean replace) throws ParseException throw new Error("Missing return statement in function"); } +/** + * Parses a query optionally followed by FOR UPDATE [OF col [, col ...]] [WAIT n | NOWAIT]. + * + * When FOR UPDATE is absent the inner query node is returned unchanged, so this rule + * transparently handles all queries that reach the StatementParser. + */ + final public SqlNode SqlSelectForUpdate() throws ParseException { + final Span s; + SqlNode qry; + SqlNodeList ofList = null; + List ofCols = null; + SqlIdentifier col; + Long waitSeconds = null; + qry = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); + s = span(); + if (jj_2_154(2147483647)) { + jj_consume_token(FOR); + jj_consume_token(UPDATE); + if (jj_2_150(2147483647)) { + jj_consume_token(OF); + ofCols = new ArrayList(); + col = CompoundIdentifier(); + ofCols.add(col); + label_14: + while (true) { + if (jj_2_149(2)) { + ; + } else { + break label_14; + } + jj_consume_token(COMMA); + col = CompoundIdentifier(); + ofCols.add(col); + } + ofList = new SqlNodeList(ofCols, s.pos()); + } else { + ; + } + if (jj_2_153(2)) { + if (jj_2_151(2147483647)) { + jj_consume_token(WAIT); + jj_consume_token(UNSIGNED_INTEGER_LITERAL); + waitSeconds = Long.parseLong(token.image); + } else if (jj_2_152(2)) { + jj_consume_token(NOWAIT); + waitSeconds = 0L; + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } else { + ; + } + {if (true) return new IgniteSqlSelectForUpdate(s.end(this), qry, ofList, waitSeconds);} + } else { + ; + } + {if (true) return qry;} + throw new Error("Missing return statement in function"); + } + final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseException { final Span s; final List list = new ArrayList(); s = span(); jj_consume_token(LPAREN); AddKeyValueOption(list); - label_14: + label_15: while (true) { - if (jj_2_148(2)) { + if (jj_2_155(2)) { ; } else { - break label_14; + break label_15; } jj_consume_token(COMMA); AddKeyValueOption(list); @@ -2051,9 +2114,9 @@ final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseExce final public void AddKeyValueOption(List list) throws ParseException { final SqlNode key; final SqlNode value; - if (jj_2_149(2)) { + if (jj_2_156(2)) { key = SimpleIdentifier(); - } else if (jj_2_150(2)) { + } else if (jj_2_157(2)) { key = StringLiteral(); } else { jj_consume_token(-1); @@ -2068,10 +2131,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_151(2)) { + if (jj_2_158(2)) { value = NumericLiteral(); list.add(value); - } else if (jj_2_152(2)) { + } else if (jj_2_159(2)) { value = StringLiteral(); list.add(value); } else { @@ -2089,12 +2152,12 @@ final public SqlNodeList ParenthesizedLiteralOptionCommaList() throws ParseExcep s = span(); jj_consume_token(LPAREN); AddOptionValue(list); - label_15: + label_16: while (true) { - if (jj_2_153(2)) { + if (jj_2_160(2)) { ; } else { - break label_15; + break label_16; } jj_consume_token(COMMA); AddOptionValue(list); @@ -2109,17 +2172,17 @@ final public void AddHint(List hints) throws ParseException { final SqlNodeList hintOptions; final SqlHint.HintOptionFormat optionFormat; hintName = SimpleIdentifier(); - if (jj_2_155(5)) { + if (jj_2_162(5)) { hintOptions = ParenthesizedKeyValueOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.KV_LIST; - } else if (jj_2_156(3)) { + } else if (jj_2_163(3)) { hintOptions = ParenthesizedSimpleIdentifierList(); optionFormat = SqlHint.HintOptionFormat.ID_LIST; - } else if (jj_2_157(3)) { + } else if (jj_2_164(3)) { hintOptions = ParenthesizedLiteralOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.LITERAL_LIST; } else { - if (jj_2_154(2)) { + if (jj_2_161(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); } else { @@ -2139,12 +2202,12 @@ final public SqlNode TableHints(SqlIdentifier tableName) throws ParseException { final List hints = new ArrayList(); jj_consume_token(HINT_BEG); AddHint(hints); - label_16: + label_17: while (true) { - if (jj_2_158(2)) { + if (jj_2_165(2)) { ; } else { - break label_16; + break label_17; } jj_consume_token(COMMA); AddHint(hints); @@ -2174,15 +2237,15 @@ final public SqlSelect SqlSelect() throws ParseException { final Span s; jj_consume_token(SELECT); s = span(); - if (jj_2_160(2)) { + if (jj_2_167(2)) { jj_consume_token(HINT_BEG); AddHint(hints); - label_17: + label_18: while (true) { - if (jj_2_159(2)) { + if (jj_2_166(2)) { ; } else { - break label_17; + break label_18; } jj_consume_token(COMMA); AddHint(hints); @@ -2192,13 +2255,13 @@ final public SqlSelect SqlSelect() throws ParseException { ; } SqlSelectKeywords(keywords); - if (jj_2_161(2)) { + if (jj_2_168(2)) { jj_consume_token(STREAM); keywords.add(SqlSelectKeyword.STREAM.symbol(getPos())); } else { ; } - if (jj_2_162(2)) { + if (jj_2_169(2)) { keyword = AllOrDistinct(); keywords.add(keyword); } else { @@ -2206,40 +2269,40 @@ final public SqlSelect SqlSelect() throws ParseException { } keywordList = new SqlNodeList(keywords, s.addAll(keywords).pos()); AddSelectItem(selectList); - label_18: + label_19: while (true) { - if (jj_2_163(2)) { + if (jj_2_170(2)) { ; } else { - break label_18; + break label_19; } jj_consume_token(COMMA); AddSelectItem(selectList); } - if (jj_2_169(2)) { + if (jj_2_176(2)) { jj_consume_token(FROM); fromClause = FromClause(); - if (jj_2_164(2)) { + if (jj_2_171(2)) { where = Where(); } else { where = null; } - if (jj_2_165(2)) { + if (jj_2_172(2)) { groupBy = GroupBy(); } else { groupBy = null; } - if (jj_2_166(2)) { + if (jj_2_173(2)) { having = Having(); } else { having = null; } - if (jj_2_167(2)) { + if (jj_2_174(2)) { windowDecls = Window(); } else { windowDecls = null; } - if (jj_2_168(2)) { + if (jj_2_175(2)) { qualify = Qualify(); } else { qualify = null; @@ -2278,21 +2341,21 @@ final public SqlNode SqlExplain() throws ParseException { final SqlExplainFormat format; jj_consume_token(EXPLAIN); jj_consume_token(PLAN); - if (jj_2_170(2)) { + if (jj_2_177(2)) { detailLevel = ExplainDetailLevel(); } else { ; } depth = ExplainDepth(); - if (jj_2_171(2)) { + if (jj_2_178(2)) { jj_consume_token(AS); jj_consume_token(XML); format = SqlExplainFormat.XML; - } else if (jj_2_172(2)) { + } else if (jj_2_179(2)) { jj_consume_token(AS); jj_consume_token(JSON); format = SqlExplainFormat.JSON; - } else if (jj_2_173(2)) { + } else if (jj_2_180(2)) { jj_consume_token(AS); jj_consume_token(DOT_FORMAT); format = SqlExplainFormat.DOT; @@ -2314,15 +2377,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_174(2)) { + if (jj_2_181(2)) { stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - } else if (jj_2_175(2)) { + } else if (jj_2_182(2)) { stmt = SqlInsert(); - } else if (jj_2_176(2)) { + } else if (jj_2_183(2)) { stmt = SqlDelete(); - } else if (jj_2_177(2)) { + } else if (jj_2_184(2)) { stmt = SqlUpdate(); - } else if (jj_2_178(2)) { + } else if (jj_2_185(2)) { stmt = SqlMerge(); } else { jj_consume_token(-1); @@ -2337,15 +2400,15 @@ final public SqlNode SqlQueryOrDml() throws ParseException { * EXPLAIN PLAN. */ final public SqlExplain.Depth ExplainDepth() throws ParseException { - if (jj_2_179(2)) { + if (jj_2_186(2)) { jj_consume_token(WITH); jj_consume_token(TYPE); {if (true) return SqlExplain.Depth.TYPE;} - } else if (jj_2_180(2)) { + } else if (jj_2_187(2)) { jj_consume_token(WITH); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.PHYSICAL;} - } else if (jj_2_181(2)) { + } else if (jj_2_188(2)) { jj_consume_token(WITHOUT); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.LOGICAL;} @@ -2360,13 +2423,13 @@ final public SqlExplain.Depth ExplainDepth() throws ParseException { */ final public SqlExplainLevel ExplainDetailLevel() throws ParseException { SqlExplainLevel level = SqlExplainLevel.EXPPLAN_ATTRIBUTES; - if (jj_2_183(2)) { + if (jj_2_190(2)) { jj_consume_token(EXCLUDING); jj_consume_token(ATTRIBUTES); level = SqlExplainLevel.NO_ATTRIBUTES; - } else if (jj_2_184(2)) { + } else if (jj_2_191(2)) { jj_consume_token(INCLUDING); - if (jj_2_182(2)) { + if (jj_2_189(2)) { jj_consume_token(ALL); level = SqlExplainLevel.ALL_ATTRIBUTES; } else { @@ -2393,12 +2456,12 @@ final public SqlNode SqlDescribe() throws ParseException { final SqlNode stmt; jj_consume_token(DESCRIBE); s = span(); - if (jj_2_190(2)) { - if (jj_2_185(2)) { + if (jj_2_197(2)) { + if (jj_2_192(2)) { jj_consume_token(DATABASE); - } else if (jj_2_186(2)) { + } else if (jj_2_193(2)) { jj_consume_token(CATALOG); - } else if (jj_2_187(2)) { + } else if (jj_2_194(2)) { jj_consume_token(SCHEMA); } else { jj_consume_token(-1); @@ -2409,21 +2472,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_191(2147483647)) { - if (jj_2_188(2)) { + } else if (jj_2_198(2147483647)) { + if (jj_2_195(2)) { jj_consume_token(TABLE); } else { ; } table = CompoundIdentifier(); - if (jj_2_189(2)) { + if (jj_2_196(2)) { column = SimpleIdentifier(); } else { column = null; } {if (true) return new SqlDescribeTable(s.add(table).addIf(column).pos(), table, column);} - } else if (jj_2_192(2)) { + } else if (jj_2_199(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case STATEMENT: jj_consume_token(STATEMENT); @@ -2474,14 +2537,14 @@ final public SqlNode NamedRoutineCall(SqlFunctionCategory routineType, name = CompoundIdentifier(); s = span(); jj_consume_token(LPAREN); - if (jj_2_194(2)) { + if (jj_2_201(2)) { AddArg0(list, exprContext); - label_19: + label_20: while (true) { - if (jj_2_193(2)) { + if (jj_2_200(2)) { ; } else { - break label_19; + break label_20; } jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected @@ -2507,14 +2570,14 @@ final public SqlNode TableParam() throws ParseException { SqlNode tableRef; s = span(); tableRef = ExplicitTable(getPos()); - if (jj_2_195(2)) { + if (jj_2_202(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_196(2)) { + if (jj_2_203(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2536,14 +2599,14 @@ final public SqlNode PartitionedByAndOrderBy(SqlNode e) throws ParseException { final SqlNodeList partitionList; final SqlNodeList orderList; s = span(); - if (jj_2_197(2)) { + if (jj_2_204(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_198(2)) { + if (jj_2_205(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2558,22 +2621,22 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { jj_consume_token(ORDER); s = span(); jj_consume_token(BY); - if (jj_2_200(2)) { + if (jj_2_207(2)) { jj_consume_token(LPAREN); AddOrderItem(list); - label_20: + label_21: while (true) { - if (jj_2_199(2)) { + if (jj_2_206(2)) { ; } else { - break label_20; + break label_21; } jj_consume_token(COMMA); AddOrderItem(list); } jj_consume_token(RPAREN); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} - } else if (jj_2_201(2)) { + } else if (jj_2_208(2)) { AddOrderItem(list); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} } else { @@ -2608,9 +2671,9 @@ final public SqlNode SqlInsert() throws ParseException { final SqlNodeList columnList; final Span s; final Pair p; - if (jj_2_202(2)) { + if (jj_2_209(2)) { jj_consume_token(INSERT); - } else if (jj_2_203(2)) { + } else if (jj_2_210(2)) { jj_consume_token(UPSERT); keywords.add(SqlInsertKeyword.UPSERT.symbol(getPos())); } else { @@ -2622,17 +2685,17 @@ final public SqlNode SqlInsert() throws ParseException { keywordList = new SqlNodeList(keywords, s.addAll(keywords).pos()); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_204(2)) { + if (jj_2_211(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_205(5)) { + if (jj_2_212(5)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_206(2)) { + if (jj_2_213(2)) { p = ParenthesizedCompoundIdentifierList(); if (!p.right.isEmpty()) { tableRef = extend(tableRef, p.right); @@ -2672,18 +2735,18 @@ final public SqlNode SqlDelete() throws ParseException { s = span(); jj_consume_token(FROM); tableName = CompoundTableIdentifier(); - if (jj_2_207(2)) { + if (jj_2_214(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_208(2)) { + if (jj_2_215(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_210(2)) { - if (jj_2_209(2)) { + if (jj_2_217(2)) { + if (jj_2_216(2)) { jj_consume_token(AS); } else { ; @@ -2692,7 +2755,7 @@ final public SqlNode SqlDelete() throws ParseException { } else { alias = null; } - if (jj_2_211(2)) { + if (jj_2_218(2)) { where = Where(); } else { where = null; @@ -2719,18 +2782,18 @@ final public SqlNode SqlUpdate() throws ParseException { targetColumnList = new SqlNodeList(s.pos()); sourceExpressionList = new SqlNodeList(s.pos()); tableName = CompoundTableIdentifier(); - if (jj_2_212(2)) { + if (jj_2_219(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_213(2)) { + if (jj_2_220(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_215(2)) { - if (jj_2_214(2)) { + if (jj_2_222(2)) { + if (jj_2_221(2)) { jj_consume_token(AS); } else { ; @@ -2744,12 +2807,12 @@ final public SqlNode SqlUpdate() throws ParseException { targetColumnList.add(id); jj_consume_token(EQ); AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); - label_21: + label_22: while (true) { - if (jj_2_216(2)) { + if (jj_2_223(2)) { ; } else { - break label_21; + break label_22; } jj_consume_token(COMMA); id = CompoundIdentifier(); @@ -2757,7 +2820,7 @@ final public SqlNode SqlUpdate() throws ParseException { jj_consume_token(EQ); AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_217(2)) { + if (jj_2_224(2)) { where = Where(); } else { where = null; @@ -2785,18 +2848,18 @@ final public SqlNode SqlMerge() throws ParseException { s = span(); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_218(2)) { + if (jj_2_225(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_219(2)) { + if (jj_2_226(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_221(2)) { - if (jj_2_220(2)) { + if (jj_2_228(2)) { + if (jj_2_227(2)) { jj_consume_token(AS); } else { ; @@ -2809,14 +2872,14 @@ final public SqlNode SqlMerge() throws ParseException { sourceTableRef = TableRef(); jj_consume_token(ON); condition = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_223(2)) { + if (jj_2_230(2)) { updateCall = WhenMatchedClause(tableRef, alias); - if (jj_2_222(2)) { + if (jj_2_229(2)) { insertCall = WhenNotMatchedClause(tableRef); } else { insertCall = null; } - } else if (jj_2_224(2)) { + } else if (jj_2_231(2)) { updateCall = null; insertCall = WhenNotMatchedClause(tableRef); } else { @@ -2844,12 +2907,12 @@ final public SqlUpdate WhenMatchedClause(SqlNode table, SqlIdentifier alias) thr updateColumnList.add(id); jj_consume_token(EQ); AddExpression(updateExprList, ExprContext.ACCEPT_SUB_QUERY); - label_22: + label_23: while (true) { - if (jj_2_225(2)) { + if (jj_2_232(2)) { ; } else { - break label_22; + break label_23; } jj_consume_token(COMMA); id = CompoundIdentifier(); @@ -2877,18 +2940,18 @@ final public SqlInsert WhenNotMatchedClause(SqlNode table) throws ParseException insertSpan = span(); SqlInsertKeywords(keywords); keywordList = new SqlNodeList(keywords, insertSpan.end(this)); - if (jj_2_226(2)) { + if (jj_2_233(2)) { insertColumnList = ParenthesizedSimpleIdentifierList(); } else { insertColumnList = null; } - if (jj_2_227(2)) { + if (jj_2_234(2)) { jj_consume_token(LPAREN); jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); jj_consume_token(RPAREN); - } else if (jj_2_228(2)) { + } else if (jj_2_235(2)) { jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); @@ -2913,10 +2976,10 @@ final public void AddSelectItem(List list) throws ParseException { SqlNode e; final SqlIdentifier id; e = SelectExpression(); - if (jj_2_232(2)) { - if (jj_2_230(2)) { + if (jj_2_239(2)) { + if (jj_2_237(2)) { jj_consume_token(AS); - if (jj_2_229(2)) { + if (jj_2_236(2)) { jj_consume_token(MEASURE); e = SqlInternalOperators.MEASURE.createCall( e.getParserPosition(), e); @@ -2926,7 +2989,7 @@ final public void AddSelectItem(List list) throws ParseException { } else { ; } - if (jj_2_231(2)) { + if (jj_2_238(2)) { id = SimpleIdentifier(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -2950,10 +3013,10 @@ final public void AddSelectItem(List list) throws ParseException { */ final public SqlNode SelectExpression() throws ParseException { SqlNode e; - if (jj_2_233(2)) { + if (jj_2_240(2)) { jj_consume_token(STAR); {if (true) return SqlIdentifier.star(getPos());} - } else if (jj_2_234(2)) { + } else if (jj_2_241(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); {if (true) return e;} } else { @@ -2964,7 +3027,7 @@ final public SqlNode SelectExpression() throws ParseException { } final public SqlLiteral Natural() throws ParseException { - if (jj_2_235(2)) { + if (jj_2_242(2)) { jj_consume_token(NATURAL); {if (true) return SqlLiteral.createBoolean(true, getPos());} } else { @@ -2976,23 +3039,23 @@ final public SqlLiteral Natural() throws ParseException { final public SqlLiteral JoinType() throws ParseException { JoinType joinType; boolean asof = false; - if (jj_2_241(2)) { + if (jj_2_248(2)) { jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_242(2)) { + } else if (jj_2_249(2)) { jj_consume_token(INNER); jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_243(2)) { + } else if (jj_2_250(2)) { jj_consume_token(ASOF); jj_consume_token(JOIN); joinType = JoinType.ASOF; - } else if (jj_2_244(2)) { + } else if (jj_2_251(2)) { jj_consume_token(LEFT); - if (jj_2_238(2)) { - if (jj_2_236(2)) { + if (jj_2_245(2)) { + if (jj_2_243(2)) { jj_consume_token(OUTER); - } else if (jj_2_237(2)) { + } else if (jj_2_244(2)) { jj_consume_token(ASOF); asof = true; } else { @@ -3004,25 +3067,25 @@ final public SqlLiteral JoinType() throws ParseException { } jj_consume_token(JOIN); joinType = asof ? JoinType.LEFT_ASOF : JoinType.LEFT; - } else if (jj_2_245(2)) { + } else if (jj_2_252(2)) { jj_consume_token(RIGHT); - if (jj_2_239(2)) { + if (jj_2_246(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.RIGHT; - } else if (jj_2_246(2)) { + } else if (jj_2_253(2)) { jj_consume_token(FULL); - if (jj_2_240(2)) { + if (jj_2_247(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.FULL; - } else if (jj_2_247(2)) { + } else if (jj_2_254(2)) { jj_consume_token(CROSS); jj_consume_token(JOIN); joinType = JoinType.CROSS; @@ -3045,7 +3108,7 @@ final public SqlNode FromClause() throws ParseException { SqlNode e, e2; SqlLiteral joinType; e = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); - label_23: + label_24: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case ASOF: @@ -3062,7 +3125,7 @@ final public SqlNode FromClause() throws ParseException { break; default: jj_la1[2] = jj_gen; - break label_23; + break label_24; } e = JoinOrCommaTable(e); } @@ -3073,7 +3136,7 @@ final public SqlNode FromClause() throws ParseException { final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { SqlNode e2; SqlLiteral joinType; - if (jj_2_248(2)) { + if (jj_2_255(2)) { jj_consume_token(COMMA); joinType = JoinType.COMMA.symbol(getPos()); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); @@ -3084,7 +3147,7 @@ final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_249(2)) { + } else if (jj_2_256(2)) { e2 = JoinTable(e); {if (true) return e2;} } else { @@ -3099,12 +3162,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_253(4)) { + if (jj_2_260(4)) { natural = Natural(); joinType = JoinType(); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); - if (jj_2_251(2)) { - if (jj_2_250(2)) { + if (jj_2_258(2)) { + if (jj_2_257(2)) { jj_consume_token(MATCH_CONDITION); matchCondition = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -3138,7 +3201,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, on, condition);} - } else if (jj_2_252(2)) { + } else if (jj_2_259(2)) { jj_consume_token(USING); using = JoinConditionType.USING.symbol(getPos()); list = ParenthesizedSimpleIdentifierList(); @@ -3158,7 +3221,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { JoinConditionType.NONE.symbol(joinType.getParserPosition()), null);} } - } else if (jj_2_254(2)) { + } else if (jj_2_261(2)) { jj_consume_token(CROSS); joinType = JoinType.CROSS.symbol(getPos()); jj_consume_token(APPLY); @@ -3173,7 +3236,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_255(2)) { + } else if (jj_2_262(2)) { jj_consume_token(OUTER); joinType = JoinType.LEFT.symbol(getPos()); jj_consume_token(APPLY); @@ -3231,36 +3294,36 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws SqlNodeList args; final SqlNodeList columnAliasList; SqlUnnestOperator unnestOp = SqlStdOperatorTable.UNNEST; - if (jj_2_266(2)) { + if (jj_2_273(2)) { tableName = CompoundTableIdentifier(); s = span(); - if (jj_2_260(3)) { + if (jj_2_267(3)) { tableRef = ImplicitTableFunctionCallArgs(tableName); } else { - if (jj_2_256(2)) { + if (jj_2_263(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_257(2)) { + if (jj_2_264(2)) { tableRef = ExtendTable(tableRef); } else { ; } tableRef = Over(tableRef); - if (jj_2_258(2)) { + if (jj_2_265(2)) { tableRef = Snapshot(tableRef); } else { ; } - if (jj_2_259(2)) { + if (jj_2_266(2)) { tableRef = MatchRecognize(tableRef); } else { ; } } - } else if (jj_2_267(2)) { - if (jj_2_261(2)) { + } else if (jj_2_274(2)) { + if (jj_2_268(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3269,13 +3332,13 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws tableRef = ParenthesizedExpression(exprContext); tableRef = Over(tableRef); tableRef = addLateral(tableRef, lateral); - if (jj_2_262(2)) { + if (jj_2_269(2)) { tableRef = MatchRecognize(tableRef); } else { ; } - } else if (jj_2_268(2)) { - if (jj_2_263(2)) { + } else if (jj_2_275(2)) { + if (jj_2_270(2)) { jj_consume_token(LATERAL); } else { ; @@ -3283,7 +3346,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_264(2)) { + if (jj_2_271(2)) { jj_consume_token(WITH); jj_consume_token(ORDINALITY); unnestOp = SqlStdOperatorTable.UNNEST_WITH_ORDINALITY; @@ -3291,8 +3354,8 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws ; } tableRef = unnestOp.createCall(s.end(this), (List) args); - } else if (jj_2_269(2)) { - if (jj_2_265(2)) { + } else if (jj_2_276(2)) { + if (jj_2_272(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3300,30 +3363,30 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } tableRef = TableFunctionCall(); tableRef = addLateral(tableRef, lateral); - } else if (jj_2_270(2)) { + } else if (jj_2_277(2)) { tableRef = ExtendedTableRef(); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_271(2)) { + if (jj_2_278(2)) { tableRef = Pivot(tableRef); } else { ; } - if (jj_2_272(2)) { + if (jj_2_279(2)) { tableRef = Unpivot(tableRef); } else { ; } - if (jj_2_275(2)) { - if (jj_2_273(2)) { + if (jj_2_282(2)) { + if (jj_2_280(2)) { jj_consume_token(AS); } else { ; } alias = SimpleIdentifier(); - if (jj_2_274(2)) { + if (jj_2_281(2)) { columnAliasList = ParenthesizedSimpleIdentifierList(); } else { columnAliasList = null; @@ -3348,7 +3411,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } else { ; } - if (jj_2_276(2)) { + if (jj_2_283(2)) { tableRef = Tablesample(tableRef); } else { ; @@ -3366,7 +3429,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { int repeatableSeed = 0; jj_consume_token(TABLESAMPLE); s = span(); checkNotJoin(tableRef); - if (jj_2_280(2)) { + if (jj_2_287(2)) { jj_consume_token(SUBSTITUTE); jj_consume_token(LPAREN); sample = StringLiteral(); @@ -3378,11 +3441,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_281(2)) { - if (jj_2_277(2)) { + } else if (jj_2_288(2)) { + if (jj_2_284(2)) { jj_consume_token(BERNOULLI); isBernoulli = true; - } else if (jj_2_278(2)) { + } else if (jj_2_285(2)) { jj_consume_token(SYSTEM); isBernoulli = false; } else { @@ -3392,7 +3455,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); samplePercentage = UnsignedNumericLiteral(); jj_consume_token(RPAREN); - if (jj_2_279(2)) { + if (jj_2_286(2)) { jj_consume_token(REPEATABLE); jj_consume_token(LPAREN); repeatableSeed = IntLiteral(); @@ -3423,7 +3486,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_282(2)) { + if (jj_2_289(2)) { jj_consume_token(EXTEND); } else { ; @@ -3439,12 +3502,12 @@ final public SqlNodeList ExtendList() throws ParseException { jj_consume_token(LPAREN); s = span(); AddColumnType(list); - label_24: + label_25: while (true) { - if (jj_2_283(2)) { + if (jj_2_290(2)) { ; } else { - break label_24; + break label_25; } jj_consume_token(COMMA); AddColumnType(list); @@ -3473,7 +3536,7 @@ final public void AddCompoundIdentifierType(List list, List ex final SqlDataTypeSpec type; final boolean nullable; name = CompoundIdentifier(); - if (jj_2_284(2)) { + if (jj_2_291(2)) { type = DataType(); nullable = NotNullOpt(); } else { @@ -3496,14 +3559,14 @@ final public SqlNode ImplicitTableFunctionCallArgs(SqlIdentifier name) throws Pa final Span s; s = span(); jj_consume_token(LPAREN); - if (jj_2_286(2)) { + if (jj_2_293(2)) { AddArg0(tableFuncArgs, ExprContext.ACCEPT_CURSOR); - label_25: + label_26: while (true) { - if (jj_2_285(2)) { + if (jj_2_292(2)) { ; } else { - break label_25; + break label_26; } jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected @@ -3530,7 +3593,7 @@ final public SqlNode TableFunctionCall() throws ParseException { jj_consume_token(TABLE); s = span(); jj_consume_token(LPAREN); - if (jj_2_287(2)) { + if (jj_2_294(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_TABLE_SPECIFIC_FUNCTION; } else { @@ -3576,10 +3639,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_288(2)) { + if (jj_2_295(2)) { jj_consume_token(VALUES); s = span(); - } else if (jj_2_289(2)) { + } else if (jj_2_296(2)) { jj_consume_token(VALUE); s = span(); if (!this.conformance.isValueAllowed()) { @@ -3590,12 +3653,12 @@ final public SqlNode TableConstructor() throws ParseException { throw new ParseException(); } AddRowConstructor(list); - label_26: + label_27: while (true) { - if (jj_2_290(2)) { + if (jj_2_297(2)) { ; } else { - break label_26; + break label_27; } jj_consume_token(COMMA); AddRowConstructor(list); @@ -3618,22 +3681,22 @@ final public SqlNode RowConstructor() throws ParseException { final SqlNodeList valueList; final SqlNode value; final Span s; - if (jj_2_292(3)) { + if (jj_2_299(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_293(3)) { - if (jj_2_291(2)) { + } else if (jj_2_300(3)) { + if (jj_2_298(2)) { jj_consume_token(ROW); s = span(); } else { s = Span.of(); } valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); - } else if (jj_2_294(2)) { + } else if (jj_2_301(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 @@ -3673,10 +3736,10 @@ final public SqlNodeList GroupBy() throws ParseException { jj_consume_token(GROUP); s = span(); jj_consume_token(BY); - if (jj_2_295(2)) { + if (jj_2_302(2)) { jj_consume_token(DISTINCT); distinct = true; - } else if (jj_2_296(2)) { + } else if (jj_2_303(2)) { jj_consume_token(ALL); distinct = false; } else { @@ -3695,12 +3758,12 @@ final public SqlNodeList GroupBy() throws ParseException { final public List GroupingElementList() throws ParseException { final List list = new ArrayList(); AddGroupingElement(list); - label_27: + label_28: while (true) { - if (jj_2_297(2)) { + if (jj_2_304(2)) { ; } else { - break label_27; + break label_28; } jj_consume_token(COMMA); AddGroupingElement(list); @@ -3713,7 +3776,7 @@ final public void AddGroupingElement(List list) throws ParseException { final List subList; final SqlNodeList nodes; final Span s; - if (jj_2_298(2)) { + if (jj_2_305(2)) { jj_consume_token(GROUPING); s = span(); jj_consume_token(SETS); @@ -3722,7 +3785,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_299(2)) { + } else if (jj_2_306(2)) { jj_consume_token(ROLLUP); s = span(); jj_consume_token(LPAREN); @@ -3730,7 +3793,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_300(2)) { + } else if (jj_2_307(2)) { jj_consume_token(CUBE); s = span(); jj_consume_token(LPAREN); @@ -3738,12 +3801,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_301(3)) { + } else if (jj_2_308(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(RPAREN); list.add(new SqlNodeList(s.end(this))); - } else if (jj_2_302(2)) { + } else if (jj_2_309(2)) { AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -3768,12 +3831,12 @@ final public SqlNodeList ExpressionCommaList(final Span s, */ final public void AddExpressions(List list, ExprContext exprContext) throws ParseException { AddExpression(list, exprContext); - label_28: + label_29: while (true) { - if (jj_2_303(2)) { + if (jj_2_310(2)) { ; } else { - break label_28; + break label_29; } jj_consume_token(COMMA); AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); @@ -3796,12 +3859,12 @@ final public SqlNodeList Window() throws ParseException { jj_consume_token(WINDOW); s = span(); AddWindowSpec(list); - label_29: + label_30: while (true) { - if (jj_2_304(2)) { + if (jj_2_311(2)) { ; } else { - break label_29; + break label_30; } jj_consume_token(COMMA); AddWindowSpec(list); @@ -3834,12 +3897,12 @@ final public SqlWindow WindowSpecification() throws ParseException { final SqlLiteral allowPartial; jj_consume_token(LPAREN); s = span(); - if (jj_2_305(2)) { + if (jj_2_312(2)) { id = SimpleIdentifier(); } else { id = null; } - if (jj_2_306(2)) { + if (jj_2_313(2)) { jj_consume_token(PARTITION); s1 = span(); jj_consume_token(BY); @@ -3847,28 +3910,28 @@ final public SqlWindow WindowSpecification() throws ParseException { } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_307(2)) { + if (jj_2_314(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_312(2)) { - if (jj_2_308(2)) { + if (jj_2_319(2)) { + if (jj_2_315(2)) { jj_consume_token(ROWS); isRows = SqlLiteral.createBoolean(true, getPos()); - } else if (jj_2_309(2)) { + } else if (jj_2_316(2)) { jj_consume_token(RANGE); isRows = SqlLiteral.createBoolean(false, getPos()); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_310(2)) { + if (jj_2_317(2)) { jj_consume_token(BETWEEN); lowerBound = WindowRange(); jj_consume_token(AND); upperBound = WindowRange(); - } else if (jj_2_311(2)) { + } else if (jj_2_318(2)) { lowerBound = WindowRange(); upperBound = null; } else { @@ -3881,12 +3944,12 @@ final public SqlWindow WindowSpecification() throws ParseException { exclude = SqlWindow.createExcludeNoOthers(getPos()); lowerBound = upperBound = null; } - if (jj_2_313(2)) { + if (jj_2_320(2)) { jj_consume_token(ALLOW); s2 = span(); jj_consume_token(PARTIAL); allowPartial = SqlLiteral.createBoolean(true, s2.end(this)); - } else if (jj_2_314(2)) { + } else if (jj_2_321(2)) { jj_consume_token(DISALLOW); s2 = span(); jj_consume_token(PARTIAL); @@ -3903,30 +3966,30 @@ final public SqlWindow WindowSpecification() throws ParseException { final public SqlNode WindowRange() throws ParseException { final SqlNode e; final Span s; - if (jj_2_319(2)) { + if (jj_2_326(2)) { jj_consume_token(CURRENT); s = span(); jj_consume_token(ROW); {if (true) return SqlWindow.createCurrentRow(s.end(this));} - } else if (jj_2_320(2)) { + } else if (jj_2_327(2)) { jj_consume_token(UNBOUNDED); s = span(); - if (jj_2_315(2)) { + if (jj_2_322(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createUnboundedPreceding(s.end(this));} - } else if (jj_2_316(2)) { + } else if (jj_2_323(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_321(2)) { + } else if (jj_2_328(2)) { e = Expression(ExprContext.ACCEPT_NON_QUERY); - if (jj_2_317(2)) { + if (jj_2_324(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createPreceding(e, getPos());} - } else if (jj_2_318(2)) { + } else if (jj_2_325(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createFollowing(e, getPos());} } else { @@ -3942,20 +4005,20 @@ final public SqlNode WindowRange() throws ParseException { /** Parses an exclusion clause for WINDOW FRAME. */ final public SqlLiteral WindowExclusion() throws ParseException { - if (jj_2_326(2)) { + if (jj_2_333(2)) { jj_consume_token(EXCLUDE); - if (jj_2_322(2)) { + if (jj_2_329(2)) { jj_consume_token(CURRENT); jj_consume_token(ROW); {if (true) return SqlWindow.createExcludeCurrentRow(getPos());} - } else if (jj_2_323(2)) { + } else if (jj_2_330(2)) { jj_consume_token(NO); jj_consume_token(OTHERS); {if (true) return SqlWindow.createExcludeNoOthers(getPos());} - } else if (jj_2_324(2)) { + } else if (jj_2_331(2)) { jj_consume_token(GROUP); {if (true) return SqlWindow.createExcludeGroup(getPos());} - } else if (jj_2_325(2)) { + } else if (jj_2_332(2)) { jj_consume_token(TIES); {if (true) return SqlWindow.createExcludeTies(getPos());} } else { @@ -3993,12 +4056,12 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { } jj_consume_token(BY); AddOrderItem(list); - label_30: + label_31: while (true) { - if (jj_2_327(2)) { + if (jj_2_334(2)) { ; } else { - break label_30; + break label_31; } jj_consume_token(COMMA); AddOrderItem(list); @@ -4013,10 +4076,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_330(2)) { - if (jj_2_328(2)) { + if (jj_2_337(2)) { + if (jj_2_335(2)) { jj_consume_token(ASC); - } else if (jj_2_329(2)) { + } else if (jj_2_336(2)) { jj_consume_token(DESC); e = SqlStdOperatorTable.DESC.createCall(getPos(), e); } else { @@ -4026,12 +4089,12 @@ final public void AddOrderItem(List list) throws ParseException { } else { ; } - if (jj_2_333(2)) { - if (jj_2_331(2)) { + if (jj_2_340(2)) { + if (jj_2_338(2)) { jj_consume_token(NULLS); jj_consume_token(FIRST); e = SqlStdOperatorTable.NULLS_FIRST.createCall(getPos(), e); - } else if (jj_2_332(2)) { + } else if (jj_2_339(2)) { jj_consume_token(NULLS); jj_consume_token(LAST); e = SqlStdOperatorTable.NULLS_LAST.createCall(getPos(), e); @@ -4103,12 +4166,12 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { s = span(); checkNotJoin(tableRef); jj_consume_token(LPAREN); AddPivotAgg(aggList); - label_31: + label_32: while (true) { - if (jj_2_334(2)) { + if (jj_2_341(2)) { ; } else { - break label_31; + break label_32; } jj_consume_token(COMMA); AddPivotAgg(aggList); @@ -4118,14 +4181,14 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { jj_consume_token(IN); jj_consume_token(LPAREN); s2 = span(); - if (jj_2_336(2)) { + if (jj_2_343(2)) { AddPivotValue(valueList); - label_32: + label_33: while (true) { - if (jj_2_335(2)) { + if (jj_2_342(2)) { ; } else { - break label_32; + break label_33; } jj_consume_token(COMMA); AddPivotValue(valueList); @@ -4147,7 +4210,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_337(2)) { + if (jj_2_344(2)) { jj_consume_token(AS); } else { ; @@ -4167,8 +4230,8 @@ final public void AddPivotValue(List list) throws ParseException { final SqlIdentifier alias; e = RowConstructor(); tuple = SqlParserUtil.stripRow(e); - if (jj_2_339(2)) { - if (jj_2_338(2)) { + if (jj_2_346(2)) { + if (jj_2_345(2)) { jj_consume_token(AS); } else { ; @@ -4193,11 +4256,11 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { final SqlNodeList inList; jj_consume_token(UNPIVOT); s = span(); checkNotJoin(tableRef); - if (jj_2_340(2)) { + if (jj_2_347(2)) { jj_consume_token(INCLUDE); jj_consume_token(NULLS); includeNulls = true; - } else if (jj_2_341(2)) { + } else if (jj_2_348(2)) { jj_consume_token(EXCLUDE); jj_consume_token(NULLS); includeNulls = false; @@ -4212,12 +4275,12 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); s2 = span(); AddUnpivotValue(values); - label_33: + label_34: while (true) { - if (jj_2_342(2)) { + if (jj_2_349(2)) { ; } else { - break label_33; + break label_34; } jj_consume_token(COMMA); AddUnpivotValue(values); @@ -4234,7 +4297,7 @@ final public void AddUnpivotValue(List list) throws ParseException { final SqlNodeList columnList; final SqlNode values; columnList = SimpleIdentifierOrList(); - if (jj_2_343(2)) { + if (jj_2_350(2)) { jj_consume_token(AS); values = RowConstructor(); final SqlNodeList valueList = SqlParserUtil.stripRow(values); @@ -4266,7 +4329,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_344(2)) { + if (jj_2_351(2)) { jj_consume_token(PARTITION); s2 = span(); jj_consume_token(BY); @@ -4274,25 +4337,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_345(2)) { + if (jj_2_352(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_346(2)) { + if (jj_2_353(2)) { jj_consume_token(MEASURES); measureList = MeasureColumnCommaList(span()); } else { measureList = SqlNodeList.EMPTY; } - if (jj_2_347(2)) { + if (jj_2_354(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_348(2)) { + } else if (jj_2_355(2)) { jj_consume_token(ALL); s0 = span(); jj_consume_token(ROWS); @@ -4302,25 +4365,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { rowsPerMatch = null; } - if (jj_2_354(2)) { + if (jj_2_361(2)) { jj_consume_token(AFTER); s1 = span(); jj_consume_token(MATCH); jj_consume_token(SKIP_); - if (jj_2_352(2)) { + if (jj_2_359(2)) { jj_consume_token(TO); - if (jj_2_350(2)) { + if (jj_2_357(2)) { jj_consume_token(NEXT); jj_consume_token(ROW); after = SqlMatchRecognize.AfterOption.SKIP_TO_NEXT_ROW .symbol(s1.end(this)); - } else if (jj_2_351(2)) { + } else if (jj_2_358(2)) { jj_consume_token(FIRST); var = SimpleIdentifier(); after = SqlMatchRecognize.SKIP_TO_FIRST.createCall( s1.end(var), var); } else if (true) { - if (jj_2_349(2)) { + if (jj_2_356(2)) { jj_consume_token(LAST); } else { ; @@ -4332,7 +4395,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_353(2)) { + } else if (jj_2_360(2)) { jj_consume_token(PAST); jj_consume_token(LAST); jj_consume_token(ROW); @@ -4347,27 +4410,27 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } jj_consume_token(PATTERN); jj_consume_token(LPAREN); - if (jj_2_355(2)) { + if (jj_2_362(2)) { jj_consume_token(CARET); isStrictStarts = SqlLiteral.createBoolean(true, getPos()); } else { isStrictStarts = SqlLiteral.createBoolean(false, getPos()); } pattern = PatternExpression(); - if (jj_2_356(2)) { + if (jj_2_363(2)) { jj_consume_token(DOLLAR); isStrictEnds = SqlLiteral.createBoolean(true, getPos()); } else { isStrictEnds = SqlLiteral.createBoolean(false, getPos()); } jj_consume_token(RPAREN); - if (jj_2_357(2)) { + if (jj_2_364(2)) { jj_consume_token(WITHIN); interval = IntervalLiteral(); } else { interval = null; } - if (jj_2_358(2)) { + if (jj_2_365(2)) { jj_consume_token(SUBSET); subsetList = SubsetDefinitionCommaList(span()); } else { @@ -4385,12 +4448,12 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce final public SqlNodeList MeasureColumnCommaList(Span s) throws ParseException { final List list = new ArrayList(); AddMeasureColumn(list); - label_34: + label_35: while (true) { - if (jj_2_359(2)) { + if (jj_2_366(2)) { ; } else { - break label_34; + break label_35; } jj_consume_token(COMMA); AddMeasureColumn(list); @@ -4412,12 +4475,12 @@ final public SqlNode PatternExpression() throws ParseException { SqlNode left; SqlNode right; left = PatternTerm(); - label_35: + label_36: while (true) { - if (jj_2_360(2)) { + if (jj_2_367(2)) { ; } else { - break label_35; + break label_36; } jj_consume_token(VERTICAL_BAR); right = PatternTerm(); @@ -4432,12 +4495,12 @@ final public SqlNode PatternTerm() throws ParseException { SqlNode left; SqlNode right; left = PatternFactor(); - label_36: + label_37: while (true) { - if (jj_2_361(2)) { + if (jj_2_368(2)) { ; } else { - break label_36; + break label_37; } right = PatternFactor(); left = SqlStdOperatorTable.PATTERN_CONCAT.createCall( @@ -4459,25 +4522,25 @@ final public SqlNode PatternFactor() throws ParseException { case HOOK: case PLUS: case STAR: - if (jj_2_367(2)) { + if (jj_2_374(2)) { jj_consume_token(STAR); startNum = LITERAL_ZERO; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_368(2)) { + } else if (jj_2_375(2)) { jj_consume_token(PLUS); startNum = LITERAL_ONE; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_369(2)) { + } else if (jj_2_376(2)) { jj_consume_token(HOOK); startNum = LITERAL_ZERO; endNum = LITERAL_ONE; - } else if (jj_2_370(2)) { + } else if (jj_2_377(2)) { jj_consume_token(LBRACE); - if (jj_2_364(2)) { + if (jj_2_371(2)) { startNum = UnsignedNumericLiteral(); - if (jj_2_363(2)) { + if (jj_2_370(2)) { jj_consume_token(COMMA); - if (jj_2_362(2)) { + if (jj_2_369(2)) { endNum = UnsignedNumericLiteral(); } else { endNum = LITERAL_MINUS_ONE; @@ -4486,12 +4549,12 @@ final public SqlNode PatternFactor() throws ParseException { endNum = startNum; } jj_consume_token(RBRACE); - } else if (jj_2_365(2)) { + } else if (jj_2_372(2)) { jj_consume_token(COMMA); endNum = UnsignedNumericLiteral(); jj_consume_token(RBRACE); startNum = LITERAL_MINUS_ONE; - } else if (jj_2_366(2)) { + } else if (jj_2_373(2)) { jj_consume_token(MINUS); extra = PatternExpression(); jj_consume_token(MINUS); @@ -4508,7 +4571,7 @@ final public SqlNode PatternFactor() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_371(2)) { + if (jj_2_378(2)) { jj_consume_token(HOOK); reluctant = SqlLiteral.createBoolean( startNum.intValue(true) != endNum.intValue(true), @@ -4530,15 +4593,15 @@ final public SqlNode PatternPrimary() throws ParseException { final Span s; SqlNode e; final List list; - if (jj_2_373(2)) { + if (jj_2_380(2)) { e = SimpleIdentifier(); {if (true) return e;} - } else if (jj_2_374(2)) { + } else if (jj_2_381(2)) { jj_consume_token(LPAREN); e = PatternExpression(); jj_consume_token(RPAREN); {if (true) return e;} - } else if (jj_2_375(2)) { + } else if (jj_2_382(2)) { jj_consume_token(LBRACE); s = span(); jj_consume_token(MINUS); @@ -4546,18 +4609,18 @@ 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_376(2)) { + } else if (jj_2_383(2)) { jj_consume_token(PERMUTE); s = span(); list = new ArrayList(); jj_consume_token(LPAREN); e = PatternExpression(); list.add(e); - label_37: + label_38: while (true) { - if (jj_2_372(2)) { + if (jj_2_379(2)) { ; } else { - break label_37; + break label_38; } jj_consume_token(COMMA); e = PatternExpression(); @@ -4576,12 +4639,12 @@ final public SqlNode PatternPrimary() throws ParseException { final public SqlNodeList SubsetDefinitionCommaList(Span s) throws ParseException { final List list = new ArrayList(); AddSubsetDefinition(list); - label_38: + label_39: while (true) { - if (jj_2_377(2)) { + if (jj_2_384(2)) { ; } else { - break label_38; + break label_39; } jj_consume_token(COMMA); AddSubsetDefinition(list); @@ -4608,12 +4671,12 @@ final public SqlNodeList PatternDefinitionCommaList(Span s) throws ParseExceptio final List eList = new ArrayList(); e = PatternDefinition(); eList.add(e); - label_39: + label_40: while (true) { - if (jj_2_378(2)) { + if (jj_2_385(2)) { ; } else { - break label_39; + break label_40; } jj_consume_token(COMMA); e = PatternDefinition(); @@ -4672,19 +4735,19 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_379(2)) { + if (jj_2_386(2)) { withList = WithList(); } else { ; } e = LeafQueryOrExpr(exprContext); list.add(e); - label_40: + label_41: while (true) { - if (jj_2_380(2)) { + if (jj_2_387(2)) { ; } else { - break label_40; + break label_41; } AddSetOpQuery(list, exprContext); } @@ -4696,19 +4759,19 @@ final public SqlNode Query(ExprContext exprContext) throws ParseException { SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_381(2)) { + if (jj_2_388(2)) { withList = WithList(); } else { ; } e = LeafQuery(exprContext); list.add(e); - label_41: + label_42: while (true) { - if (jj_2_382(2)) { + if (jj_2_389(2)) { ; } else { - break label_41; + break label_42; } AddSetOpQuery(list, exprContext); } @@ -4771,7 +4834,7 @@ final public SqlNodeList WithList() throws ParseException { final List list = new ArrayList(); boolean recursive = false; jj_consume_token(WITH); - if (jj_2_383(2)) { + if (jj_2_390(2)) { jj_consume_token(RECURSIVE); recursive = true; } else { @@ -4779,12 +4842,12 @@ final public SqlNodeList WithList() throws ParseException { } s = span(); AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); - label_42: + label_43: while (true) { - if (jj_2_384(2)) { + if (jj_2_391(2)) { ; } else { - break label_42; + break label_43; } jj_consume_token(COMMA); AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); @@ -4798,7 +4861,7 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro final SqlNodeList columnList; final SqlNode definition; id = SimpleIdentifier(); - if (jj_2_385(2)) { + if (jj_2_392(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -4814,10 +4877,10 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro */ final public SqlNode LeafQueryOrExpr(ExprContext exprContext) throws ParseException { SqlNode e; - if (jj_2_386(2)) { + if (jj_2_393(2)) { e = LeafQuery(exprContext); {if (true) return e;} - } else if (jj_2_387(2)) { + } else if (jj_2_394(2)) { e = Expression(exprContext); {if (true) return e;} } else { @@ -4848,7 +4911,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th SqlNode e; SqlOperator op; SqlNode ext; - label_43: + label_44: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case EXISTS: @@ -4860,7 +4923,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th break; default: jj_la1[4] = jj_gen; - break label_43; + break label_44; } op = PrefixRowOperator(); checkNonQueryExpression(exprContext); @@ -4868,12 +4931,12 @@ final public void AddExpression2b(List list, ExprContext exprContext) th } e = Expression3(exprContext); list.add(e); - label_44: + label_45: while (true) { - if (jj_2_388(2)) { + if (jj_2_395(2)) { ; } else { - break label_44; + break label_45; } jj_consume_token(DOT); ext = RowExpressionExtension(); @@ -4909,28 +4972,28 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlIdentifier p; final Span s = span(); AddExpression2b(list, exprContext); - if (jj_2_432(2)) { - label_45: + if (jj_2_439(2)) { + label_46: while (true) { - if (jj_2_424(2)) { + if (jj_2_431(2)) { checkNonQueryExpression(exprContext); - if (jj_2_392(2)) { + if (jj_2_399(2)) { jj_consume_token(NOT); jj_consume_token(IN); op = SqlStdOperatorTable.NOT_IN; - } else if (jj_2_393(2)) { + } else if (jj_2_400(2)) { jj_consume_token(IN); op = SqlStdOperatorTable.IN; - } else if (jj_2_394(2)) { + } else if (jj_2_401(2)) { final SqlKind k; k = comp(); - if (jj_2_389(2)) { + if (jj_2_396(2)) { jj_consume_token(SOME); op = SqlStdOperatorTable.some(k); - } else if (jj_2_390(2)) { + } else if (jj_2_397(2)) { jj_consume_token(ANY); op = SqlStdOperatorTable.some(k); - } else if (jj_2_391(2)) { + } else if (jj_2_398(2)) { jj_consume_token(ALL); op = SqlStdOperatorTable.all(k); } else { @@ -4956,18 +5019,18 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { list.add(nodeList); } - } else if (jj_2_425(2)) { + } else if (jj_2_432(2)) { checkNonQueryExpression(exprContext); - if (jj_2_401(2)) { + if (jj_2_408(2)) { jj_consume_token(NOT); jj_consume_token(BETWEEN); op = SqlStdOperatorTable.NOT_BETWEEN; s.clear().add(this); - if (jj_2_397(2)) { - if (jj_2_395(2)) { + if (jj_2_404(2)) { + if (jj_2_402(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_NOT_BETWEEN; - } else if (jj_2_396(2)) { + } else if (jj_2_403(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4976,15 +5039,15 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_402(2)) { + } else if (jj_2_409(2)) { jj_consume_token(BETWEEN); op = SqlStdOperatorTable.BETWEEN; s.clear().add(this); - if (jj_2_400(2)) { - if (jj_2_398(2)) { + if (jj_2_407(2)) { + if (jj_2_405(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_BETWEEN; - } else if (jj_2_399(2)) { + } else if (jj_2_406(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -5001,22 +5064,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_426(2)) { + } else if (jj_2_433(2)) { checkNonQueryExpression(exprContext); s.clear().add(this); - if (jj_2_414(2)) { - if (jj_2_407(2)) { + if (jj_2_421(2)) { + if (jj_2_414(2)) { jj_consume_token(NOT); - if (jj_2_403(2)) { + if (jj_2_410(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.NOT_LIKE; - } else if (jj_2_404(2)) { + } else if (jj_2_411(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.NOT_ILIKE; - } else if (jj_2_405(2)) { + } else if (jj_2_412(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.NOT_RLIKE; - } else if (jj_2_406(2)) { + } else if (jj_2_413(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.NOT_SIMILAR_TO; @@ -5024,16 +5087,16 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_408(2)) { + } else if (jj_2_415(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.LIKE; - } else if (jj_2_409(2)) { + } else if (jj_2_416(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.ILIKE; - } else if (jj_2_410(2)) { + } else if (jj_2_417(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.RLIKE; - } else if (jj_2_411(2)) { + } else if (jj_2_418(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.SIMILAR_TO; @@ -5041,20 +5104,20 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_415(2)) { + } else if (jj_2_422(2)) { jj_consume_token(NEGATE); jj_consume_token(TILDE); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_412(2)) { + if (jj_2_419(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE; } else { ; } - } else if (jj_2_416(2)) { + } else if (jj_2_423(2)) { jj_consume_token(TILDE); op = SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_413(2)) { + if (jj_2_420(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE; } else { @@ -5067,7 +5130,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_417(2)) { + if (jj_2_424(2)) { jj_consume_token(ESCAPE); e = Expression3(ExprContext.ACCEPT_SUB_QUERY); s.clear().add(this); @@ -5078,40 +5141,40 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_427(2)) { + } else if (jj_2_434(2)) { InfixCast(list, exprContext, s); - } else if (jj_2_428(3)) { + } else if (jj_2_435(3)) { op = BinaryRowOperator(); checkNonQueryExpression(exprContext); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); AddExpression2b(list, ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_429(2)) { + } else if (jj_2_436(2)) { jj_consume_token(LBRACKET); - if (jj_2_418(2)) { + if (jj_2_425(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_419(2)) { + } else if (jj_2_426(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_420(2)) { + } else if (jj_2_427(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_421(2)) { + } else if (jj_2_428(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_422(2)) { + } else if (jj_2_429(2)) { itemOp = SqlStdOperatorTable.ITEM; e = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5123,12 +5186,12 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep new SqlParserUtil.ToTreeListItem( itemOp, getPos())); list.add(e); - label_46: + label_47: while (true) { - if (jj_2_423(2)) { + if (jj_2_430(2)) { ; } else { - break label_46; + break label_47; } jj_consume_token(DOT); p = SimpleIdentifier(); @@ -5137,7 +5200,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlStdOperatorTable.DOT, getPos())); list.add(p); } - } else if (jj_2_430(2)) { + } else if (jj_2_437(2)) { checkNonQueryExpression(exprContext); op = PostfixRowOperator(); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); @@ -5145,10 +5208,10 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - if (jj_2_431(2)) { + if (jj_2_438(2)) { ; } else { - break label_45; + break label_46; } } {if (true) return list;} @@ -5160,25 +5223,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_433(2)) { + if (jj_2_440(2)) { jj_consume_token(LT); {if (true) return SqlKind.LESS_THAN;} - } else if (jj_2_434(2)) { + } else if (jj_2_441(2)) { jj_consume_token(LE); {if (true) return SqlKind.LESS_THAN_OR_EQUAL;} - } else if (jj_2_435(2)) { + } else if (jj_2_442(2)) { jj_consume_token(GT); {if (true) return SqlKind.GREATER_THAN;} - } else if (jj_2_436(2)) { + } else if (jj_2_443(2)) { jj_consume_token(GE); {if (true) return SqlKind.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_437(2)) { + } else if (jj_2_444(2)) { jj_consume_token(EQ); {if (true) return SqlKind.EQUALS;} - } else if (jj_2_438(2)) { + } else if (jj_2_445(2)) { jj_consume_token(NE); {if (true) return SqlKind.NOT_EQUALS;} - } else if (jj_2_439(2)) { + } else if (jj_2_446(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} @@ -5201,14 +5264,14 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException final SqlNodeList list1; final Span s; final Span rowSpan; - if (jj_2_442(2)) { + if (jj_2_449(2)) { e = AtomicRowExpression(); checkNonQueryExpression(exprContext); {if (true) return e;} - } else if (jj_2_443(2)) { + } else if (jj_2_450(2)) { e = CursorExpression(exprContext); {if (true) return e;} - } else if (jj_2_444(3)) { + } else if (jj_2_451(3)) { jj_consume_token(ROW); s = span(); list = ParenthesizedQueryOrCommaList(exprContext); @@ -5220,8 +5283,8 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException RESOURCE.illegalRowExpression());} } {if (true) return SqlStdOperatorTable.ROW.createCall(list);} - } else if (jj_2_445(2)) { - if (jj_2_440(2)) { + } else if (jj_2_452(2)) { + if (jj_2_447(2)) { jj_consume_token(ROW); rowSpan = span(); } else { @@ -5233,7 +5296,7 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException {if (true) return SqlStdOperatorTable.ROW.createCall(rowSpan.end(list1), (List) list1);} } - if (jj_2_441(2)) { + if (jj_2_448(2)) { e = IntervalQualifier(); if ((list1.size() == 1) && list1.get(0) instanceof SqlCall) @@ -5291,11 +5354,11 @@ final public SqlNode LambdaExpression() throws ParseException { */ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { SqlNodeList list; - if (jj_2_446(2)) { + if (jj_2_453(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); {if (true) return SqlNodeList.EMPTY;} - } else if (jj_2_447(2)) { + } else if (jj_2_454(2)) { list = SimpleIdentifierOrList(); {if (true) return list;} } else { @@ -5306,24 +5369,24 @@ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { } final public SqlOperator periodOperator() throws ParseException { - if (jj_2_448(2)) { + if (jj_2_455(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_449(2)) { + } else if (jj_2_456(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_450(2)) { + } else if (jj_2_457(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_451(2)) { + } else if (jj_2_458(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_452(2)) { + } else if (jj_2_459(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_453(2)) { + } else if (jj_2_460(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} } else { @@ -5349,9 +5412,9 @@ final public SqlCollation CollateClause() throws ParseException { */ final public SqlNode UnsignedNumericLiteralOrParam() throws ParseException { final SqlNode e; - if (jj_2_454(2)) { + if (jj_2_461(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_455(2)) { + } else if (jj_2_462(2)) { e = DynamicParam(); } else { jj_consume_token(-1); @@ -5372,20 +5435,20 @@ final public SqlNode RowExpressionExtension() throws ParseException { final List args; final SqlLiteral quantifier; p = SimpleIdentifier(); - if (jj_2_459(2147483647)) { + if (jj_2_466(2147483647)) { s = span(); - if (jj_2_456(2)) { + if (jj_2_463(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_457(2)) { + } else if (jj_2_464(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); quantifier = null; args = ImmutableList.of(); - } else if (jj_2_458(2)) { + } else if (jj_2_465(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -5412,16 +5475,16 @@ final public SqlCall StringAggFunctionCall() throws ParseException { final SqlNodeList orderBy; final Pair nullTreatment; final SqlNode separator; - if (jj_2_460(2)) { + if (jj_2_467(2)) { jj_consume_token(ARRAY_AGG); s = span(); op = SqlLibraryOperators.ARRAY_AGG; - } else if (jj_2_461(2)) { + } else if (jj_2_468(2)) { jj_consume_token(ARRAY_CONCAT_AGG); s = span(); op = SqlLibraryOperators.ARRAY_CONCAT_AGG; - } else if (jj_2_462(2)) { + } else if (jj_2_469(2)) { jj_consume_token(GROUP_CONCAT); s = span(); op = SqlLibraryOperators.GROUP_CONCAT; - } else if (jj_2_463(2)) { + } else if (jj_2_470(2)) { jj_consume_token(STRING_AGG); s = span(); op = SqlLibraryOperators.STRING_AGG; } else { @@ -5429,18 +5492,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { throw new ParseException(); } jj_consume_token(LPAREN); - if (jj_2_464(2)) { + if (jj_2_471(2)) { qualifier = AllOrDistinct(); } else { qualifier = null; } AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - label_47: + label_48: while (true) { - if (jj_2_465(2)) { + if (jj_2_472(2)) { ; } else { - break label_47; + break label_48; } jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected @@ -5448,18 +5511,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { checkNonQueryExpression(ExprContext.ACCEPT_SUB_QUERY); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_466(2)) { + if (jj_2_473(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; } - if (jj_2_467(2)) { + if (jj_2_474(2)) { orderBy = OrderBy(true); args.add(orderBy); } else { ; } - if (jj_2_468(2)) { + if (jj_2_475(2)) { jj_consume_token(SEPARATOR); s2 = span(); separator = StringLiteral(); @@ -5492,10 +5555,10 @@ final public SqlCall PercentileFunctionCall() throws ParseException { final SqlNode e; final List args = new ArrayList(); final Pair nullTreatment; - if (jj_2_469(2)) { + if (jj_2_476(2)) { jj_consume_token(PERCENTILE_CONT); op = SqlStdOperatorTable.PERCENTILE_CONT; - } else if (jj_2_470(2)) { + } else if (jj_2_477(2)) { jj_consume_token(PERCENTILE_DISC); op = SqlStdOperatorTable.PERCENTILE_DISC; } else { @@ -5505,14 +5568,14 @@ final public SqlCall PercentileFunctionCall() throws ParseException { s = span(); jj_consume_token(LPAREN); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_472(2)) { + if (jj_2_479(2)) { jj_consume_token(RPAREN); {if (true) return op.createCall(s.end(this), args);} - } else if (jj_2_473(2)) { + } else if (jj_2_480(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); - if (jj_2_471(2)) { + if (jj_2_478(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; @@ -5540,33 +5603,33 @@ final public SqlCall PercentileFunctionCall() throws ParseException { */ final public SqlNode AtomicRowExpression() throws ParseException { final SqlNode e; - if (jj_2_474(2)) { + if (jj_2_481(2)) { e = LiteralOrIntervalExpression(); - } else if (jj_2_475(2)) { + } else if (jj_2_482(2)) { e = DynamicParam(); - } else if (jj_2_476(2)) { + } else if (jj_2_483(2)) { e = BuiltinFunctionCall(); - } else if (jj_2_477(2)) { + } else if (jj_2_484(2)) { e = JdbcFunctionCall(); - } else if (jj_2_478(2)) { + } else if (jj_2_485(2)) { e = MultisetConstructor(); - } else if (jj_2_479(2)) { + } else if (jj_2_486(2)) { e = ArrayConstructor(); - } else if (jj_2_480(3)) { + } else if (jj_2_487(3)) { e = MapConstructor(); - } else if (jj_2_481(2)) { + } else if (jj_2_488(2)) { e = PeriodConstructor(); - } else if (jj_2_482(2147483647)) { + } else if (jj_2_489(2147483647)) { e = NamedFunctionCall(); - } else if (jj_2_483(2)) { + } else if (jj_2_490(2)) { e = ContextVariable(); - } else if (jj_2_484(2)) { + } else if (jj_2_491(2)) { e = CompoundIdentifier(); - } else if (jj_2_485(2)) { + } else if (jj_2_492(2)) { e = NewSpecification(); - } else if (jj_2_486(2)) { + } else if (jj_2_493(2)) { e = CaseExpression(); - } else if (jj_2_487(2)) { + } else if (jj_2_494(2)) { e = SequenceExpression(); } else { jj_consume_token(-1); @@ -5587,12 +5650,12 @@ final public SqlNode CaseExpression() throws ParseException { final List thenList = new ArrayList(); jj_consume_token(CASE); s = span(); - if (jj_2_488(2)) { + if (jj_2_495(2)) { caseIdentifier = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { caseIdentifier = null; } - label_48: + label_49: while (true) { jj_consume_token(WHEN); whenSpan.add(this); @@ -5605,13 +5668,13 @@ final public SqlNode CaseExpression() throws ParseException { thenSpan.add(this); e = Expression(ExprContext.ACCEPT_SUB_QUERY); thenList.add(e); - if (jj_2_489(2)) { + if (jj_2_496(2)) { ; } else { - break label_48; + break label_49; } } - if (jj_2_490(2)) { + if (jj_2_497(2)) { jj_consume_token(ELSE); elseClause = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5629,10 +5692,10 @@ final public SqlCall SequenceExpression() throws ParseException { final Span s; final SqlOperator f; final SqlNode sequenceRef; - if (jj_2_491(2)) { + if (jj_2_498(2)) { jj_consume_token(NEXT); f = SqlStdOperatorTable.NEXT_VALUE; s = span(); - } else if (jj_2_492(3)) { + } else if (jj_2_499(3)) { jj_consume_token(CURRENT); f = SqlStdOperatorTable.CURRENT_VALUE; s = span(); } else { @@ -5653,16 +5716,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_498(2)) { + if (jj_2_505(2)) { jj_consume_token(SET); s.add(this); name = CompoundIdentifier(); jj_consume_token(EQ); - if (jj_2_493(2)) { + if (jj_2_500(2)) { val = Literal(); - } else if (jj_2_494(2)) { + } else if (jj_2_501(2)) { val = SimpleIdentifier(); - } else if (jj_2_495(2)) { + } else if (jj_2_502(2)) { jj_consume_token(ON); // OFF is handled by SimpleIdentifier, ON handled here. val = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), @@ -5672,12 +5735,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_499(2)) { + } else if (jj_2_506(2)) { jj_consume_token(RESET); s.add(this); - if (jj_2_496(2)) { + if (jj_2_503(2)) { name = CompoundIdentifier(); - } else if (jj_2_497(2)) { + } else if (jj_2_504(2)) { jj_consume_token(ALL); name = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), getPos()); @@ -5710,9 +5773,9 @@ final public SqlAlter SqlAlter() throws ParseException { } final public String Scope() throws ParseException { - if (jj_2_500(2)) { + if (jj_2_507(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_501(2)) { + } else if (jj_2_508(2)) { jj_consume_token(SESSION); } else { jj_consume_token(-1); @@ -5731,20 +5794,20 @@ final public SqlCreate SqlCreate() throws ParseException { final SqlCreate create; jj_consume_token(CREATE); s = span(); - if (jj_2_502(2)) { + if (jj_2_509(2)) { jj_consume_token(OR); jj_consume_token(REPLACE); replace = true; } else { ; } - if (jj_2_503(2)) { + if (jj_2_510(2)) { create = SqlCreateTable(s, replace); - } else if (jj_2_504(2)) { + } else if (jj_2_511(2)) { create = SqlCreateIndex(s, replace); - } else if (jj_2_505(2)) { + } else if (jj_2_512(2)) { create = SqlCreateUser(s, replace); - } else if (jj_2_506(2)) { + } else if (jj_2_513(2)) { create = SqlCreateView(s, replace); } else { jj_consume_token(-1); @@ -5763,13 +5826,13 @@ final public SqlDrop SqlDrop() throws ParseException { final SqlDrop drop; jj_consume_token(DROP); s = span(); - if (jj_2_507(2)) { + if (jj_2_514(2)) { drop = SqlDropTable(s, replace); - } else if (jj_2_508(2)) { + } else if (jj_2_515(2)) { drop = SqlDropIndex(s, replace); - } else if (jj_2_509(2)) { + } else if (jj_2_516(2)) { drop = SqlDropUser(s, replace); - } else if (jj_2_510(2)) { + } else if (jj_2_517(2)) { drop = SqlDropView(s, replace); } else { jj_consume_token(-1); @@ -5791,9 +5854,9 @@ final public SqlDrop SqlDrop() throws ParseException { */ final public SqlNode Literal() throws ParseException { SqlNode e; - if (jj_2_511(2)) { + if (jj_2_518(2)) { e = NonIntervalLiteral(); - } else if (jj_2_512(2)) { + } else if (jj_2_519(2)) { e = IntervalLiteral(); } else { jj_consume_token(-1); @@ -5806,13 +5869,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_513(2)) { + if (jj_2_520(2)) { e = NumericLiteral(); - } else if (jj_2_514(2)) { + } else if (jj_2_521(2)) { e = StringLiteral(); - } else if (jj_2_515(2)) { + } else if (jj_2_522(2)) { e = SpecialLiteral(); - } else if (jj_2_516(2)) { + } else if (jj_2_523(2)) { e = DateTimeLiteral(); } else { jj_consume_token(-1); @@ -5830,9 +5893,9 @@ final public SqlNode NonIntervalLiteral() throws ParseException { * LOOKAHEAD. */ final public SqlNode LiteralOrIntervalExpression() throws ParseException { final SqlNode e; - if (jj_2_517(2)) { + if (jj_2_524(2)) { e = IntervalLiteralOrExpression(); - } else if (jj_2_518(2)) { + } else if (jj_2_525(2)) { e = NonIntervalLiteral(); } else { jj_consume_token(-1); @@ -5845,17 +5908,17 @@ final public SqlNode LiteralOrIntervalExpression() throws ParseException { /** Parses a unsigned numeric literal */ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final String p; - if (jj_2_519(2)) { + if (jj_2_526(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_520(2)) { + } else if (jj_2_527(2)) { jj_consume_token(DECIMAL_NUMERIC_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_521(2)) { + } else if (jj_2_528(2)) { jj_consume_token(DECIMAL); p = SimpleStringLiteral(); {if (true) return SqlParserUtil.parseDecimalLiteral(SqlParserUtil.trim(p, " "), getPos());} - } else if (jj_2_522(2)) { + } else if (jj_2_529(2)) { jj_consume_token(APPROX_NUMERIC_LITERAL); {if (true) return SqlLiteral.createApproxNumeric(token.image, getPos());} } else { @@ -5869,16 +5932,16 @@ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final public SqlLiteral NumericLiteral() throws ParseException { final SqlNumericLiteral num; final Span s; - if (jj_2_523(2)) { + if (jj_2_530(2)) { jj_consume_token(PLUS); num = UnsignedNumericLiteral(); {if (true) return num;} - } else if (jj_2_524(2)) { + } else if (jj_2_531(2)) { jj_consume_token(MINUS); s = span(); num = UnsignedNumericLiteral(); {if (true) return SqlLiteral.createNegative(num, s.end(this));} - } else if (jj_2_525(2)) { + } else if (jj_2_532(2)) { num = UnsignedNumericLiteral(); {if (true) return num;} } else { @@ -5890,16 +5953,16 @@ final public SqlLiteral NumericLiteral() throws ParseException { /** Parse a special literal keyword */ final public SqlLiteral SpecialLiteral() throws ParseException { - if (jj_2_526(2)) { + if (jj_2_533(2)) { jj_consume_token(TRUE); {if (true) return SqlLiteral.createBoolean(true, getPos());} - } else if (jj_2_527(2)) { + } else if (jj_2_534(2)) { jj_consume_token(FALSE); {if (true) return SqlLiteral.createBoolean(false, getPos());} - } else if (jj_2_528(2)) { + } else if (jj_2_535(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlLiteral.createUnknown(getPos());} - } else if (jj_2_529(2)) { + } else if (jj_2_536(2)) { jj_consume_token(NULL); {if (true) return SqlLiteral.createNull(getPos());} } else { @@ -5926,7 +5989,7 @@ final public SqlNode StringLiteral() throws ParseException { char unicodeEscapeChar = 0; String charSet = null; SqlCharStringLiteral literal; - if (jj_2_534(2)) { + if (jj_2_541(2)) { jj_consume_token(BINARY_STRING_LITERAL); frags = new ArrayList(); try { @@ -5936,7 +5999,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalBinaryString(token.image));} } - label_49: + label_50: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: @@ -5944,7 +6007,7 @@ final public SqlNode StringLiteral() throws ParseException { break; default: jj_la1[5] = jj_gen; - break label_49; + break label_50; } jj_consume_token(QUOTED_STRING); try { @@ -5962,13 +6025,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_535(2)) { - if (jj_2_530(2)) { + } else if (jj_2_542(2)) { + if (jj_2_537(2)) { jj_consume_token(PREFIXED_STRING_LITERAL); charSet = SqlParserUtil.getCharacterSet(token.image); - } else if (jj_2_531(2)) { + } else if (jj_2_538(2)) { jj_consume_token(QUOTED_STRING); - } else if (jj_2_532(2)) { + } else if (jj_2_539(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 @@ -5987,7 +6050,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - label_50: + label_51: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: @@ -5995,7 +6058,7 @@ final public SqlNode StringLiteral() throws ParseException { break; default: jj_la1[6] = jj_gen; - break label_50; + break label_51; } jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); @@ -6007,7 +6070,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unknownCharacterSet(charSet));} } } - if (jj_2_533(2)) { + if (jj_2_540(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); if (unicodeEscapeChar == 0) { @@ -6033,7 +6096,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_536(2)) { + } else if (jj_2_543(2)) { jj_consume_token(C_STYLE_ESCAPED_STRING_LITERAL); try { p = SqlParserUtil.parseCString(getToken(0).image); @@ -6042,7 +6105,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unicodeEscapeMalformed(e.i));} } {if (true) return SqlLiteral.createCharString(p, "UTF16", getPos());} - } else if (jj_2_537(2)) { + } else if (jj_2_544(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, "\\\"", Casing.UNCHANGED); @@ -6052,7 +6115,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - } else if (jj_2_538(2)) { + } else if (jj_2_545(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, "'", "'", "\\'", Casing.UNCHANGED); @@ -6074,13 +6137,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_539(2)) { + if (jj_2_546(2)) { jj_consume_token(QUOTED_STRING); {if (true) return SqlParserUtil.parseString(token.image);} - } else if (jj_2_540(2)) { + } else if (jj_2_547(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, "'", "'", "\\'", Casing.UNCHANGED);} - } else if (jj_2_541(2)) { + } else if (jj_2_548(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, DQ, DQ, "\\\"", Casing.UNCHANGED);} } else { @@ -6097,55 +6160,55 @@ final public SqlLiteral DateTimeLiteral() throws ParseException { final String p; final Span s; boolean local = false; - if (jj_2_544(2)) { + if (jj_2_551(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_545(2)) { + } else if (jj_2_552(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_546(2)) { + } else if (jj_2_553(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_547(2)) { + } else if (jj_2_554(2)) { jj_consume_token(DATE); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATE", p, s.end(this));} - } else if (jj_2_548(2)) { + } else if (jj_2_555(2)) { jj_consume_token(DATETIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATETIME", p, s.end(this));} - } else if (jj_2_549(2)) { + } else if (jj_2_556(2)) { jj_consume_token(TIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME", p, s.end(this));} - } else if (jj_2_550(2)) { + } else if (jj_2_557(2)) { jj_consume_token(UUID); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("UUID", p, s.end(this));} - } else if (jj_2_551(2)) { + } else if (jj_2_558(2)) { jj_consume_token(TIMESTAMP); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIMESTAMP", p, s.end(this));} - } else if (jj_2_552(2)) { + } else if (jj_2_559(2)) { jj_consume_token(TIME); s = span(); jj_consume_token(WITH); - if (jj_2_542(2)) { + if (jj_2_549(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6155,11 +6218,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_553(2)) { + } else if (jj_2_560(2)) { jj_consume_token(TIMESTAMP); s = span(); jj_consume_token(WITH); - if (jj_2_543(2)) { + if (jj_2_550(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6184,13 +6247,13 @@ final public SqlNode DateTimeConstructorCall() throws ParseException { final Span s; final SqlLiteral quantifier; final List args; - if (jj_2_554(2)) { + if (jj_2_561(2)) { jj_consume_token(DATE); - } else if (jj_2_555(2)) { + } else if (jj_2_562(2)) { jj_consume_token(TIME); - } else if (jj_2_556(2)) { + } else if (jj_2_563(2)) { jj_consume_token(DATETIME); - } else if (jj_2_557(2)) { + } else if (jj_2_564(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); @@ -6212,22 +6275,22 @@ final public SqlNode MultisetConstructor() throws ParseException { final Span s; jj_consume_token(MULTISET); s = span(); - if (jj_2_559(2)) { + if (jj_2_566(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_560(2)) { + } else if (jj_2_567(2)) { jj_consume_token(LBRACKET); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - label_51: + label_52: while (true) { - if (jj_2_558(2)) { + if (jj_2_565(2)) { ; } else { - break label_51; + break label_52; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); @@ -6250,12 +6313,12 @@ final public SqlNode ArrayConstructor() throws ParseException { final String p; jj_consume_token(ARRAY); s = span(); - if (jj_2_564(2)) { - if (jj_2_561(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_562(2)) { + } else if (jj_2_569(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6269,9 +6332,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_565(2)) { + } else if (jj_2_572(2)) { jj_consume_token(LBRACKET); - if (jj_2_563(2)) { + if (jj_2_570(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_SUB_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6292,29 +6355,29 @@ final public SqlCall ArrayLiteral() throws ParseException { final Span s; jj_consume_token(LBRACE); s = span(); - if (jj_2_568(2)) { + if (jj_2_575(2)) { e = Literal(); list = startList(e); - label_52: + label_53: while (true) { - if (jj_2_566(2)) { + if (jj_2_573(2)) { ; } else { - break label_52; + break label_53; } jj_consume_token(COMMA); e = Literal(); list.add(e); } - } else if (jj_2_569(2)) { + } else if (jj_2_576(2)) { e = ArrayLiteral(); list = startList(e); - label_53: + label_54: while (true) { - if (jj_2_567(2)) { + if (jj_2_574(2)) { ; } else { - break label_53; + break label_54; } jj_consume_token(COMMA); e = ArrayLiteral(); @@ -6334,12 +6397,12 @@ final public SqlNode MapConstructor() throws ParseException { final Span s; jj_consume_token(MAP); s = span(); - if (jj_2_573(2)) { - if (jj_2_570(2)) { + if (jj_2_580(2)) { + if (jj_2_577(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_571(2)) { + } else if (jj_2_578(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6352,9 +6415,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_574(2)) { + } else if (jj_2_581(2)) { jj_consume_token(LBRACKET); - if (jj_2_572(2)) { + if (jj_2_579(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6394,11 +6457,11 @@ final public SqlLiteral IntervalLiteral() throws ParseException { final Span s; jj_consume_token(INTERVAL); s = span(); - if (jj_2_577(2)) { - if (jj_2_575(2)) { + if (jj_2_584(2)) { + if (jj_2_582(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_576(2)) { + } else if (jj_2_583(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6426,11 +6489,11 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { SqlNode e; jj_consume_token(INTERVAL); s = span(); - if (jj_2_580(2)) { - if (jj_2_578(2)) { + if (jj_2_587(2)) { + if (jj_2_585(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_579(2)) { + } else if (jj_2_586(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6440,20 +6503,20 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } else { ; } - if (jj_2_584(2)) { + if (jj_2_591(2)) { // literal (with quoted string) p = SimpleStringLiteral(); intervalQualifier = IntervalQualifier(); {if (true) return SqlParserUtil.parseIntervalLiteral(s.end(intervalQualifier), sign, p, intervalQualifier);} - } else if (jj_2_585(2)) { - if (jj_2_581(2)) { + } else if (jj_2_592(2)) { + if (jj_2_588(2)) { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_582(2)) { + } else if (jj_2_589(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_583(2)) { + } else if (jj_2_590(2)) { e = CompoundIdentifier(); } else { jj_consume_token(-1); @@ -6473,10 +6536,10 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } final public TimeUnit Year() throws ParseException { - if (jj_2_586(2)) { + if (jj_2_593(2)) { jj_consume_token(YEAR); {if (true) return TimeUnit.YEAR;} - } else if (jj_2_587(2)) { + } else if (jj_2_594(2)) { jj_consume_token(YEARS); {if (true) return warn(TimeUnit.YEAR);} } else { @@ -6487,10 +6550,10 @@ final public TimeUnit Year() throws ParseException { } final public TimeUnit Quarter() throws ParseException { - if (jj_2_588(2)) { + if (jj_2_595(2)) { jj_consume_token(QUARTER); {if (true) return TimeUnit.QUARTER;} - } else if (jj_2_589(2)) { + } else if (jj_2_596(2)) { jj_consume_token(QUARTERS); {if (true) return warn(TimeUnit.QUARTER);} } else { @@ -6501,10 +6564,10 @@ final public TimeUnit Quarter() throws ParseException { } final public TimeUnit Month() throws ParseException { - if (jj_2_590(2)) { + if (jj_2_597(2)) { jj_consume_token(MONTH); {if (true) return TimeUnit.MONTH;} - } else if (jj_2_591(2)) { + } else if (jj_2_598(2)) { jj_consume_token(MONTHS); {if (true) return warn(TimeUnit.MONTH);} } else { @@ -6515,10 +6578,10 @@ final public TimeUnit Month() throws ParseException { } final public TimeUnit Week() throws ParseException { - if (jj_2_592(2)) { + if (jj_2_599(2)) { jj_consume_token(WEEK); {if (true) return TimeUnit.WEEK;} - } else if (jj_2_593(2)) { + } else if (jj_2_600(2)) { jj_consume_token(WEEKS); {if (true) return warn(TimeUnit.WEEK);} } else { @@ -6529,10 +6592,10 @@ final public TimeUnit Week() throws ParseException { } final public TimeUnit Day() throws ParseException { - if (jj_2_594(2)) { + if (jj_2_601(2)) { jj_consume_token(DAY); {if (true) return TimeUnit.DAY;} - } else if (jj_2_595(2)) { + } else if (jj_2_602(2)) { jj_consume_token(DAYS); {if (true) return warn(TimeUnit.DAY);} } else { @@ -6543,10 +6606,10 @@ final public TimeUnit Day() throws ParseException { } final public TimeUnit Hour() throws ParseException { - if (jj_2_596(2)) { + if (jj_2_603(2)) { jj_consume_token(HOUR); {if (true) return TimeUnit.HOUR;} - } else if (jj_2_597(2)) { + } else if (jj_2_604(2)) { jj_consume_token(HOURS); {if (true) return warn(TimeUnit.HOUR);} } else { @@ -6557,10 +6620,10 @@ final public TimeUnit Hour() throws ParseException { } final public TimeUnit Minute() throws ParseException { - if (jj_2_598(2)) { + if (jj_2_605(2)) { jj_consume_token(MINUTE); {if (true) return TimeUnit.MINUTE;} - } else if (jj_2_599(2)) { + } else if (jj_2_606(2)) { jj_consume_token(MINUTES); {if (true) return warn(TimeUnit.MINUTE);} } else { @@ -6571,10 +6634,10 @@ final public TimeUnit Minute() throws ParseException { } final public TimeUnit Second() throws ParseException { - if (jj_2_600(2)) { + if (jj_2_607(2)) { jj_consume_token(SECOND); {if (true) return TimeUnit.SECOND;} - } else if (jj_2_601(2)) { + } else if (jj_2_608(2)) { jj_consume_token(SECONDS); {if (true) return warn(TimeUnit.SECOND);} } else { @@ -6590,42 +6653,42 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { final TimeUnit end; final int startPrec; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_615(2)) { + if (jj_2_622(2)) { start = Year(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_602(2)) { + if (jj_2_609(2)) { jj_consume_token(TO); end = Month(); } else { end = null; } - } else if (jj_2_616(2)) { + } else if (jj_2_623(2)) { start = Quarter(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_617(2)) { + } else if (jj_2_624(2)) { start = Month(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_618(2)) { + } else if (jj_2_625(2)) { start = Week(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_619(2)) { + } else if (jj_2_626(2)) { start = Day(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_606(2)) { + if (jj_2_613(2)) { jj_consume_token(TO); - if (jj_2_603(2)) { + if (jj_2_610(2)) { end = Hour(); - } else if (jj_2_604(2)) { + } else if (jj_2_611(2)) { end = Minute(); - } else if (jj_2_605(2)) { + } else if (jj_2_612(2)) { end = Second(); secondFracPrec = PrecisionOpt(); } else { @@ -6635,17 +6698,17 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_620(2)) { + } else if (jj_2_627(2)) { start = Hour(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_610(2)) { + if (jj_2_617(2)) { jj_consume_token(TO); - if (jj_2_608(2)) { + if (jj_2_615(2)) { end = Minute(); - } else if (jj_2_609(2)) { + } else if (jj_2_616(2)) { end = Second(); - if (jj_2_607(2)) { + if (jj_2_614(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6659,14 +6722,14 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_621(2)) { + } else if (jj_2_628(2)) { start = Minute(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_612(2)) { + if (jj_2_619(2)) { jj_consume_token(TO); end = Second(); - if (jj_2_611(2)) { + if (jj_2_618(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6676,13 +6739,13 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_622(2)) { + } else if (jj_2_629(2)) { start = Second(); s = span(); - if (jj_2_614(2)) { + if (jj_2_621(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_613(2)) { + if (jj_2_620(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6708,20 +6771,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_632(2)) { - if (jj_2_623(2)) { + if (jj_2_639(2)) { + if (jj_2_630(2)) { start = Year(); - } else if (jj_2_624(2)) { + } else if (jj_2_631(2)) { start = Quarter(); - } else if (jj_2_625(2)) { + } else if (jj_2_632(2)) { start = Month(); - } else if (jj_2_626(2)) { + } else if (jj_2_633(2)) { start = Week(); - } else if (jj_2_627(2)) { + } else if (jj_2_634(2)) { start = Day(); - } else if (jj_2_628(2)) { + } else if (jj_2_635(2)) { start = Hour(); - } else if (jj_2_629(2)) { + } else if (jj_2_636(2)) { start = Minute(); } else { jj_consume_token(-1); @@ -6729,13 +6792,13 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException } s = span(); startPrec = PrecisionOpt(); - } else if (jj_2_633(2)) { + } else if (jj_2_640(2)) { start = Second(); s = span(); - if (jj_2_631(2)) { + if (jj_2_638(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_630(2)) { + if (jj_2_637(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6772,10 +6835,10 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final SqlIdentifier unitName; final SqlIntervalQualifier intervalQualifier; - if (jj_2_634(2)) { + if (jj_2_641(2)) { intervalQualifier = TimeUnit(); {if (true) return intervalQualifier;} - } else if (jj_2_635(2)) { + } else if (jj_2_642(2)) { unitName = SimpleIdentifier(); {if (true) return new SqlIntervalQualifier(unitName.getSimple(), unitName.getParserPosition());} @@ -6799,49 +6862,49 @@ final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final public SqlIntervalQualifier TimeUnit() throws ParseException { final Span span; final String w; - if (jj_2_637(2)) { + if (jj_2_644(2)) { jj_consume_token(NANOSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.NANOSECOND, null, getPos());} - } else if (jj_2_638(2)) { + } else if (jj_2_645(2)) { jj_consume_token(MICROSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MICROSECOND, null, getPos());} - } else if (jj_2_639(2)) { + } else if (jj_2_646(2)) { jj_consume_token(MILLISECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLISECOND, null, getPos());} - } else if (jj_2_640(2)) { + } else if (jj_2_647(2)) { jj_consume_token(SECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.SECOND, null, getPos());} - } else if (jj_2_641(2)) { + } else if (jj_2_648(2)) { jj_consume_token(MINUTE); {if (true) return new SqlIntervalQualifier(TimeUnit.MINUTE, null, getPos());} - } else if (jj_2_642(2)) { + } else if (jj_2_649(2)) { jj_consume_token(HOUR); {if (true) return new SqlIntervalQualifier(TimeUnit.HOUR, null, getPos());} - } else if (jj_2_643(2)) { + } else if (jj_2_650(2)) { jj_consume_token(DAY); {if (true) return new SqlIntervalQualifier(TimeUnit.DAY, null, getPos());} - } else if (jj_2_644(2)) { + } else if (jj_2_651(2)) { jj_consume_token(DAYOFWEEK); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_645(2)) { + } else if (jj_2_652(2)) { jj_consume_token(DAYOFYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_646(2)) { + } else if (jj_2_653(2)) { jj_consume_token(DOW); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_647(2)) { + } else if (jj_2_654(2)) { jj_consume_token(DOY); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_648(2)) { + } else if (jj_2_655(2)) { jj_consume_token(ISODOW); {if (true) return new SqlIntervalQualifier(TimeUnit.ISODOW, null, getPos());} - } else if (jj_2_649(2)) { + } else if (jj_2_656(2)) { jj_consume_token(ISOYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.ISOYEAR, null, getPos());} - } else if (jj_2_650(2)) { + } else if (jj_2_657(2)) { jj_consume_token(WEEK); span = span(); - if (jj_2_636(2)) { + if (jj_2_643(2)) { jj_consume_token(LPAREN); w = weekdayName(); jj_consume_token(RPAREN); @@ -6849,25 +6912,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } else { {if (true) return new SqlIntervalQualifier(TimeUnit.WEEK, null, getPos());} } - } else if (jj_2_651(2)) { + } else if (jj_2_658(2)) { jj_consume_token(MONTH); {if (true) return new SqlIntervalQualifier(TimeUnit.MONTH, null, getPos());} - } else if (jj_2_652(2)) { + } else if (jj_2_659(2)) { jj_consume_token(QUARTER); {if (true) return new SqlIntervalQualifier(TimeUnit.QUARTER, null, getPos());} - } else if (jj_2_653(2)) { + } else if (jj_2_660(2)) { jj_consume_token(YEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.YEAR, null, getPos());} - } else if (jj_2_654(2)) { + } else if (jj_2_661(2)) { jj_consume_token(EPOCH); {if (true) return new SqlIntervalQualifier(TimeUnit.EPOCH, null, getPos());} - } else if (jj_2_655(2)) { + } else if (jj_2_662(2)) { jj_consume_token(DECADE); {if (true) return new SqlIntervalQualifier(TimeUnit.DECADE, null, getPos());} - } else if (jj_2_656(2)) { + } else if (jj_2_663(2)) { jj_consume_token(CENTURY); {if (true) return new SqlIntervalQualifier(TimeUnit.CENTURY, null, getPos());} - } else if (jj_2_657(2)) { + } else if (jj_2_664(2)) { jj_consume_token(MILLENNIUM); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLENNIUM, null, getPos());} } else { @@ -6878,25 +6941,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } final public String weekdayName() throws ParseException { - if (jj_2_658(2)) { + if (jj_2_665(2)) { jj_consume_token(SUNDAY); {if (true) return "WEEK_SUNDAY";} - } else if (jj_2_659(2)) { + } else if (jj_2_666(2)) { jj_consume_token(MONDAY); {if (true) return "WEEK_MONDAY";} - } else if (jj_2_660(2)) { + } else if (jj_2_667(2)) { jj_consume_token(TUESDAY); {if (true) return "WEEK_TUESDAY";} - } else if (jj_2_661(2)) { + } else if (jj_2_668(2)) { jj_consume_token(WEDNESDAY); {if (true) return "WEEK_WEDNESDAY";} - } else if (jj_2_662(2)) { + } else if (jj_2_669(2)) { jj_consume_token(THURSDAY); {if (true) return "WEEK_THURSDAY";} - } else if (jj_2_663(2)) { + } else if (jj_2_670(2)) { jj_consume_token(FRIDAY); {if (true) return "WEEK_FRIDAY";} - } else if (jj_2_664(2)) { + } else if (jj_2_671(2)) { jj_consume_token(SATURDAY); {if (true) return "WEEK_SATURDAY";} } else { @@ -6927,41 +6990,41 @@ final public void AddIdentifierSegment(List names, List po char unicodeEscapeChar = BACKSLASH; final SqlParserPos pos; final Span span; - if (jj_2_666(2)) { + if (jj_2_673(2)) { jj_consume_token(IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_667(2)) { + } else if (jj_2_674(2)) { jj_consume_token(HYPHENATED_IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_668(2)) { + } else if (jj_2_675(2)) { jj_consume_token(QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, DQDQ, quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_669(2)) { + } else if (jj_2_676(2)) { jj_consume_token(BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "``", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_670(2)) { + } else if (jj_2_677(2)) { jj_consume_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "\\`", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_671(2)) { + } else if (jj_2_678(2)) { jj_consume_token(BRACKET_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "[", "]", "]]", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_672(2)) { + } else if (jj_2_679(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_665(2)) { + if (jj_2_672(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); String s = SqlParserUtil.parseString(token.image); @@ -6973,7 +7036,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_673(2)) { + } else if (jj_2_680(2)) { id = NonReservedKeyWord(); pos = getPos(); } else { @@ -7056,12 +7119,12 @@ final public void AddSimpleIdentifiers(List list) throws ParseException SqlIdentifier id; id = SimpleIdentifier(); list.add(id); - label_54: + label_55: while (true) { - if (jj_2_674(2)) { + if (jj_2_681(2)) { ; } else { - break label_54; + break label_55; } jj_consume_token(COMMA); id = SimpleIdentifier(); @@ -7094,10 +7157,10 @@ final public SqlNodeList ParenthesizedSimpleIdentifierList() throws ParseExcepti final public SqlNodeList SimpleIdentifierOrList() throws ParseException { SqlIdentifier id; SqlNodeList list; - if (jj_2_675(2)) { + if (jj_2_682(2)) { id = SimpleIdentifier(); {if (true) return new SqlNodeList(Collections.singletonList(id), id.getParserPosition());} - } else if (jj_2_676(2)) { + } else if (jj_2_683(2)) { list = ParenthesizedSimpleIdentifierList(); {if (true) return list;} } else { @@ -7115,17 +7178,17 @@ final public SqlIdentifier CompoundIdentifier() throws ParseException { final List posList = new ArrayList(); boolean star = false; AddIdentifierSegment(nameList, posList); - label_55: + label_56: while (true) { - if (jj_2_677(2)) { + if (jj_2_684(2)) { ; } else { - break label_55; + break label_56; } jj_consume_token(DOT); AddIdentifierSegment(nameList, posList); } - if (jj_2_678(2)) { + if (jj_2_685(2)) { jj_consume_token(DOT); jj_consume_token(STAR); star = true; @@ -7149,12 +7212,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { final List nameList = new ArrayList(); final List posList = new ArrayList(); AddTableIdentifierSegment(nameList, posList); - label_56: + label_57: while (true) { - if (jj_2_679(2)) { + if (jj_2_686(2)) { ; } else { - break label_56; + break label_57; } jj_consume_token(DOT); AddTableIdentifierSegment(nameList, posList); @@ -7169,12 +7232,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { */ final public void AddCompoundIdentifierTypes(List list, List extendList) throws ParseException { AddCompoundIdentifierType(list, extendList); - label_57: + label_58: while (true) { - if (jj_2_680(2)) { + if (jj_2_687(2)) { ; } else { - break label_57; + break label_58; } jj_consume_token(COMMA); AddCompoundIdentifierType(list, extendList); @@ -7226,10 +7289,10 @@ final public int UnsignedIntLiteral() throws ParseException { final public int IntLiteral() throws ParseException { Token t; - if (jj_2_683(2)) { - if (jj_2_681(2)) { + if (jj_2_690(2)) { + if (jj_2_688(2)) { t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); - } else if (jj_2_682(2)) { + } else if (jj_2_689(2)) { jj_consume_token(PLUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); } else { @@ -7242,7 +7305,7 @@ final public int IntLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.invalidLiteral(t.image, Integer.class.getCanonicalName()));} } - } else if (jj_2_684(2)) { + } else if (jj_2_691(2)) { jj_consume_token(MINUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); try { @@ -7264,12 +7327,12 @@ final public SqlDataTypeSpec DataType() throws ParseException { final Span s; typeName = TypeName(); s = Span.of(typeName.getParserPos()); - label_58: + label_59: while (true) { - if (jj_2_685(2)) { + if (jj_2_692(2)) { ; } else { - break label_58; + break label_59; } typeName = CollectionsTypeName(typeName); } @@ -7283,13 +7346,13 @@ final public SqlTypeNameSpec TypeName() throws ParseException { final SqlTypeNameSpec typeNameSpec; final SqlIdentifier typeName; final Span s = Span.of(); - if (jj_2_686(2)) { + if (jj_2_693(2)) { typeNameSpec = SqlTypeName(s); - } else if (jj_2_687(2)) { + } else if (jj_2_694(2)) { typeNameSpec = RowTypeName(); - } else if (jj_2_688(2)) { + } else if (jj_2_695(2)) { typeNameSpec = MapTypeName(); - } else if (jj_2_689(2)) { + } else if (jj_2_696(2)) { typeName = CompoundIdentifier(); typeNameSpec = new SqlUserDefinedTypeNameSpec(typeName, s.end(this)); } else { @@ -7303,15 +7366,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_690(2)) { + if (jj_2_697(2)) { sqlTypeNameSpec = SqlTypeName1(s); - } else if (jj_2_691(2)) { + } else if (jj_2_698(2)) { sqlTypeNameSpec = SqlTypeName2(s); - } else if (jj_2_692(2)) { + } else if (jj_2_699(2)) { sqlTypeNameSpec = SqlTypeName3(s); - } else if (jj_2_693(2)) { + } else if (jj_2_700(2)) { sqlTypeNameSpec = CharacterTypeName(s); - } else if (jj_2_694(2)) { + } else if (jj_2_701(2)) { sqlTypeNameSpec = DateTimeTypeName(); } else { jj_consume_token(-1); @@ -7325,54 +7388,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_698(2)) { + if (jj_2_705(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_699(2)) { + } else if (jj_2_706(2)) { jj_consume_token(BOOLEAN); s.add(this); sqlTypeName = SqlTypeName.BOOLEAN; - } else if (jj_2_700(2)) { - if (jj_2_695(2)) { + } else if (jj_2_707(2)) { + if (jj_2_702(2)) { jj_consume_token(INTEGER); - } else if (jj_2_696(2)) { + } else if (jj_2_703(2)) { jj_consume_token(INT); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.INTEGER; - } else if (jj_2_701(2)) { + } else if (jj_2_708(2)) { jj_consume_token(TINYINT); s.add(this); sqlTypeName = SqlTypeName.TINYINT; - } else if (jj_2_702(2)) { + } else if (jj_2_709(2)) { jj_consume_token(SMALLINT); s.add(this); sqlTypeName = SqlTypeName.SMALLINT; - } else if (jj_2_703(2)) { + } else if (jj_2_710(2)) { jj_consume_token(BIGINT); s.add(this); sqlTypeName = SqlTypeName.BIGINT; - } else if (jj_2_704(2)) { + } else if (jj_2_711(2)) { jj_consume_token(REAL); s.add(this); sqlTypeName = SqlTypeName.REAL; - } else if (jj_2_705(2)) { + } else if (jj_2_712(2)) { jj_consume_token(DOUBLE); s.add(this); - if (jj_2_697(2)) { + if (jj_2_704(2)) { jj_consume_token(PRECISION); } else { ; } sqlTypeName = SqlTypeName.DOUBLE; - } else if (jj_2_706(2)) { + } else if (jj_2_713(2)) { jj_consume_token(FLOAT); s.add(this); sqlTypeName = SqlTypeName.FLOAT; - } else if (jj_2_707(2)) { + } else if (jj_2_714(2)) { jj_consume_token(VARIANT); s.add(this); sqlTypeName = SqlTypeName.VARIANT; - } else if (jj_2_708(2)) { + } else if (jj_2_715(2)) { jj_consume_token(UUID); s.add(this); sqlTypeName = SqlTypeName.UUID; } else { @@ -7387,16 +7450,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_710(2)) { + if (jj_2_717(2)) { jj_consume_token(BINARY); s.add(this); - if (jj_2_709(2)) { + if (jj_2_716(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARBINARY; } else { sqlTypeName = SqlTypeName.BINARY; } - } else if (jj_2_711(2)) { + } else if (jj_2_718(2)) { jj_consume_token(VARBINARY); s.add(this); sqlTypeName = SqlTypeName.VARBINARY; } else { @@ -7413,29 +7476,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_715(2)) { - if (jj_2_712(2)) { + if (jj_2_722(2)) { + if (jj_2_719(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_713(2)) { + } else if (jj_2_720(2)) { jj_consume_token(DEC); - } else if (jj_2_714(2)) { + } else if (jj_2_721(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.DECIMAL; - } else if (jj_2_716(2)) { + } else if (jj_2_723(2)) { jj_consume_token(ANY); s.add(this); sqlTypeName = SqlTypeName.ANY; } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_718(2)) { + if (jj_2_725(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); - if (jj_2_717(2)) { + if (jj_2_724(2)) { jj_consume_token(COMMA); scale = IntLiteral(); } else { @@ -7451,213 +7514,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_753(2)) { - if (jj_2_719(2)) { + if (jj_2_760(2)) { + if (jj_2_726(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_720(2)) { + } else if (jj_2_727(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_CHAR;} - } else if (jj_2_754(2)) { - if (jj_2_721(2)) { + } else if (jj_2_761(2)) { + if (jj_2_728(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_722(2)) { + } else if (jj_2_729(2)) { jj_consume_token(VARCHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARCHAR;} - } else if (jj_2_755(2)) { - if (jj_2_723(2)) { + } else if (jj_2_762(2)) { + if (jj_2_730(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_724(2)) { + } else if (jj_2_731(2)) { jj_consume_token(DATE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DATE;} - } else if (jj_2_756(2)) { - if (jj_2_725(2)) { + } else if (jj_2_763(2)) { + if (jj_2_732(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_726(2)) { + } else if (jj_2_733(2)) { jj_consume_token(TIME); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIME;} - } else if (jj_2_757(2)) { - if (jj_2_727(2)) { + } else if (jj_2_764(2)) { + if (jj_2_734(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_728(2)) { + } else if (jj_2_735(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIMESTAMP;} - } else if (jj_2_758(2)) { - if (jj_2_729(2)) { + } else if (jj_2_765(2)) { + if (jj_2_736(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_730(2)) { + } else if (jj_2_737(2)) { jj_consume_token(DECIMAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DECIMAL;} - } else if (jj_2_759(2)) { - if (jj_2_731(2)) { + } else if (jj_2_766(2)) { + if (jj_2_738(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_732(2)) { + } else if (jj_2_739(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_NUMERIC;} - } else if (jj_2_760(2)) { - if (jj_2_733(2)) { + } else if (jj_2_767(2)) { + if (jj_2_740(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_734(2)) { + } else if (jj_2_741(2)) { jj_consume_token(BOOLEAN); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BOOLEAN;} - } else if (jj_2_761(2)) { - if (jj_2_735(2)) { + } else if (jj_2_768(2)) { + if (jj_2_742(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_736(2)) { + } else if (jj_2_743(2)) { jj_consume_token(INTEGER); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_INTEGER;} - } else if (jj_2_762(2)) { - if (jj_2_737(2)) { + } else if (jj_2_769(2)) { + if (jj_2_744(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_738(2)) { + } else if (jj_2_745(2)) { jj_consume_token(BINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BINARY;} - } else if (jj_2_763(2)) { - if (jj_2_739(2)) { + } else if (jj_2_770(2)) { + if (jj_2_746(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_740(2)) { + } else if (jj_2_747(2)) { jj_consume_token(VARBINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARBINARY;} - } else if (jj_2_764(2)) { - if (jj_2_741(2)) { + } else if (jj_2_771(2)) { + if (jj_2_748(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_742(2)) { + } else if (jj_2_749(2)) { jj_consume_token(TINYINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TINYINT;} - } else if (jj_2_765(2)) { - if (jj_2_743(2)) { + } else if (jj_2_772(2)) { + if (jj_2_750(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_744(2)) { + } else if (jj_2_751(2)) { jj_consume_token(SMALLINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_SMALLINT;} - } else if (jj_2_766(2)) { - if (jj_2_745(2)) { + } else if (jj_2_773(2)) { + if (jj_2_752(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_746(2)) { + } else if (jj_2_753(2)) { jj_consume_token(BIGINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BIGINT;} - } else if (jj_2_767(2)) { - if (jj_2_747(2)) { + } else if (jj_2_774(2)) { + if (jj_2_754(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_748(2)) { + } else if (jj_2_755(2)) { jj_consume_token(REAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_REAL;} - } else if (jj_2_768(2)) { - if (jj_2_749(2)) { + } else if (jj_2_775(2)) { + if (jj_2_756(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_750(2)) { + } else if (jj_2_757(2)) { jj_consume_token(DOUBLE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DOUBLE;} - } else if (jj_2_769(2)) { - if (jj_2_751(2)) { + } else if (jj_2_776(2)) { + if (jj_2_758(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_752(2)) { + } else if (jj_2_759(2)) { jj_consume_token(FLOAT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_FLOAT;} - } else if (jj_2_770(2)) { + } else if (jj_2_777(2)) { jj_consume_token(SQL_INTERVAL_YEAR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR;} - } else if (jj_2_771(2)) { + } else if (jj_2_778(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR_TO_MONTH;} - } else if (jj_2_772(2)) { + } else if (jj_2_779(2)) { jj_consume_token(SQL_INTERVAL_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MONTH;} - } else if (jj_2_773(2)) { + } else if (jj_2_780(2)) { jj_consume_token(SQL_INTERVAL_DAY); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY;} - } else if (jj_2_774(2)) { + } else if (jj_2_781(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_HOUR;} - } else if (jj_2_775(2)) { + } else if (jj_2_782(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_MINUTE;} - } else if (jj_2_776(2)) { + } else if (jj_2_783(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_SECOND;} - } else if (jj_2_777(2)) { + } else if (jj_2_784(2)) { jj_consume_token(SQL_INTERVAL_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR;} - } else if (jj_2_778(2)) { + } else if (jj_2_785(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_MINUTE;} - } else if (jj_2_779(2)) { + } else if (jj_2_786(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_SECOND;} - } else if (jj_2_780(2)) { + } else if (jj_2_787(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE;} - } else if (jj_2_781(2)) { + } else if (jj_2_788(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE_TO_SECOND;} - } else if (jj_2_782(2)) { + } else if (jj_2_789(2)) { jj_consume_token(SQL_INTERVAL_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_SECOND;} } else { @@ -7680,10 +7743,10 @@ final public SqlLiteral JdbcOdbcDataType() throws ParseException { */ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName) throws ParseException { final SqlTypeName collectionTypeName; - if (jj_2_783(2)) { + if (jj_2_790(2)) { jj_consume_token(MULTISET); collectionTypeName = SqlTypeName.MULTISET; - } else if (jj_2_784(2)) { + } else if (jj_2_791(2)) { jj_consume_token(ARRAY); collectionTypeName = SqlTypeName.ARRAY; } else { @@ -7699,10 +7762,10 @@ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName * Parse a nullable option, default is true. */ final public boolean NullableOptDefaultTrue() throws ParseException { - if (jj_2_785(2)) { + if (jj_2_792(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_786(2)) { + } else if (jj_2_793(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7716,10 +7779,10 @@ final public boolean NullableOptDefaultTrue() throws ParseException { * Parse a nullable option, default is false. */ final public boolean NullableOptDefaultFalse() throws ParseException { - if (jj_2_787(2)) { + if (jj_2_794(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_788(2)) { + } else if (jj_2_795(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7731,7 +7794,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_789(2)) { + if (jj_2_796(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7748,12 +7811,12 @@ final public boolean NotNullOpt() throws ParseException { final public void AddFieldNameTypes(List fieldNames, List fieldTypes) throws ParseException { AddFieldNameType(fieldNames, fieldTypes); - label_59: + label_60: while (true) { - if (jj_2_790(2)) { + if (jj_2_797(2)) { ; } else { - break label_59; + break label_60; } jj_consume_token(COMMA); AddFieldNameType(fieldNames, fieldTypes); @@ -7808,23 +7871,23 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { int precision = -1; final SqlTypeName sqlTypeName; String charSetName = null; - if (jj_2_794(2)) { - if (jj_2_791(2)) { + if (jj_2_801(2)) { + if (jj_2_798(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_792(2)) { + } else if (jj_2_799(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); - if (jj_2_793(2)) { + if (jj_2_800(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARCHAR; } else { sqlTypeName = SqlTypeName.CHAR; } - } else if (jj_2_795(2)) { + } else if (jj_2_802(2)) { jj_consume_token(VARCHAR); s.add(this); sqlTypeName = SqlTypeName.VARCHAR; } else { @@ -7832,7 +7895,7 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { throw new ParseException(); } precision = PrecisionOpt(); - if (jj_2_796(2)) { + if (jj_2_803(2)) { jj_consume_token(CHARACTER); jj_consume_token(SET); charSetName = Identifier(); @@ -7850,17 +7913,17 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { int precision = -1; SqlTypeName typeName; final Span s; - if (jj_2_797(2)) { + if (jj_2_804(2)) { jj_consume_token(DATE); typeName = SqlTypeName.DATE; {if (true) return new SqlBasicTypeNameSpec(typeName, getPos());} - } else if (jj_2_798(2)) { + } else if (jj_2_805(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_799(2)) { + } else if (jj_2_806(2)) { jj_consume_token(TIMESTAMP); s = span(); precision = PrecisionOpt(); @@ -7876,7 +7939,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_800(2)) { + if (jj_2_807(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -7894,14 +7957,14 @@ final public int PrecisionOpt() throws ParseException { */ final public SqlTypeName TimeZoneOpt(boolean timeType) throws ParseException { boolean local = false; - if (jj_2_802(3)) { + if (jj_2_809(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_803(2)) { + } else if (jj_2_810(2)) { jj_consume_token(WITH); - if (jj_2_801(2)) { + if (jj_2_808(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -7951,14 +8014,14 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final SqlLiteral style; // mssql convert 'style' operand final SqlFunction f; final SqlNode format; - if (jj_2_840(2)) { - if (jj_2_804(2)) { + if (jj_2_847(2)) { + if (jj_2_811(2)) { jj_consume_token(CAST); f = SqlStdOperatorTable.CAST; - } else if (jj_2_805(2)) { + } else if (jj_2_812(2)) { jj_consume_token(SAFE_CAST); f = SqlLibraryOperators.SAFE_CAST; - } else if (jj_2_806(2)) { + } else if (jj_2_813(2)) { jj_consume_token(TRY_CAST); f = SqlLibraryOperators.TRY_CAST; } else { @@ -7969,10 +8032,10 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(AS); - if (jj_2_807(2)) { + if (jj_2_814(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_808(2)) { + } else if (jj_2_815(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -7980,7 +8043,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_809(2)) { + if (jj_2_816(2)) { jj_consume_token(FORMAT); format = StringLiteral(); args.add(format); @@ -7989,7 +8052,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return f.createCall(s.end(this), args);} - } else if (jj_2_841(2)) { + } else if (jj_2_848(2)) { jj_consume_token(EXTRACT); s = span(); jj_consume_token(LPAREN); @@ -7999,7 +8062,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_842(2)) { + } else if (jj_2_849(2)) { jj_consume_token(POSITION); s = span(); jj_consume_token(LPAREN); @@ -8010,7 +8073,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(e); jj_consume_token(IN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_810(2)) { + if (jj_2_817(2)) { jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -8018,30 +8081,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_843(2)) { + } else if (jj_2_850(2)) { jj_consume_token(CONVERT); s = span(); jj_consume_token(LPAREN); - if (jj_2_820(2)) { + if (jj_2_827(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_813(2)) { + if (jj_2_820(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_814(2)) { + } else if (jj_2_821(2)) { jj_consume_token(COMMA); e = SimpleIdentifier(); args.add(e); - if (jj_2_811(2)) { + if (jj_2_818(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_812(2)) { + } else if (jj_2_819(2)) { jj_consume_token(RPAREN); {if (true) return SqlLibraryOperators.CONVERT_ORACLE.createCall(s.end(this), args);} } else { @@ -8052,11 +8115,11 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_821(2)) { - if (jj_2_815(2)) { + } else if (jj_2_828(2)) { + if (jj_2_822(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_816(2)) { + } else if (jj_2_823(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -8066,12 +8129,12 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_819(2)) { + if (jj_2_826(2)) { jj_consume_token(COMMA); - if (jj_2_817(2)) { + if (jj_2_824(2)) { style = UnsignedNumericLiteral(); args.add(style); - } else if (jj_2_818(2)) { + } else if (jj_2_825(2)) { jj_consume_token(NULL); args.add(SqlLiteral.createNull(getPos())); } else { @@ -8087,25 +8150,25 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_844(2)) { + } else if (jj_2_851(2)) { jj_consume_token(TRANSLATE); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_823(2)) { + if (jj_2_830(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_824(2)) { - label_60: + } else if (jj_2_831(2)) { + label_61: while (true) { - if (jj_2_822(2)) { + if (jj_2_829(2)) { ; } else { - break label_60; + break label_61; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); @@ -8117,7 +8180,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_845(2)) { + } else if (jj_2_852(2)) { jj_consume_token(OVERLAY); s = span(); jj_consume_token(LPAREN); @@ -8126,7 +8189,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_825(2)) { + if (jj_2_832(2)) { jj_consume_token(FOR); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -8134,15 +8197,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_846(2)) { + } else if (jj_2_853(2)) { jj_consume_token(FLOOR); s = span(); e = FloorCeilOptions(s, true); {if (true) return e;} - } else if (jj_2_847(2)) { - if (jj_2_826(2)) { + } else if (jj_2_854(2)) { + if (jj_2_833(2)) { jj_consume_token(CEIL); - } else if (jj_2_827(2)) { + } else if (jj_2_834(2)) { jj_consume_token(CEILING); } else { jj_consume_token(-1); @@ -8151,24 +8214,24 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { s = span(); e = FloorCeilOptions(s, false); {if (true) return e;} - } else if (jj_2_848(2)) { + } else if (jj_2_855(2)) { jj_consume_token(SUBSTRING); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_828(2)) { + if (jj_2_835(2)) { jj_consume_token(FROM); - } else if (jj_2_829(2)) { + } else if (jj_2_836(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); throw new ParseException(); } AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_832(2)) { - if (jj_2_830(2)) { + if (jj_2_839(2)) { + if (jj_2_837(2)) { jj_consume_token(FOR); - } else if (jj_2_831(2)) { + } else if (jj_2_838(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); @@ -8181,23 +8244,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_849(2)) { + } else if (jj_2_856(2)) { jj_consume_token(TRIM); SqlLiteral flag = null; SqlNode trimChars = null; SqlParserPos fromPos = SqlParserPos.ZERO; s = span(); jj_consume_token(LPAREN); - if (jj_2_838(2)) { - if (jj_2_833(2)) { + if (jj_2_845(2)) { + if (jj_2_840(2)) { jj_consume_token(BOTH); s.add(this); flag = SqlTrimFunction.Flag.BOTH.symbol(getPos()); - } else if (jj_2_834(2)) { + } else if (jj_2_841(2)) { jj_consume_token(TRAILING); s.add(this); flag = SqlTrimFunction.Flag.TRAILING.symbol(getPos()); - } else if (jj_2_835(2)) { + } else if (jj_2_842(2)) { jj_consume_token(LEADING); s.add(this); flag = SqlTrimFunction.Flag.LEADING.symbol(getPos()); @@ -8205,7 +8268,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_836(2)) { + if (jj_2_843(2)) { trimChars = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { ; @@ -8213,9 +8276,9 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(FROM); fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_839(2)) { + } else if (jj_2_846(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_837(2)) { + if (jj_2_844(2)) { jj_consume_token(FROM); trimChars = e; fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); @@ -8235,67 +8298,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_850(2)) { + } else if (jj_2_857(2)) { node = ContainsSubstrFunctionCall(); {if (true) return node;} - } else if (jj_2_851(2)) { + } else if (jj_2_858(2)) { node = DateTimeConstructorCall(); {if (true) return node;} - } else if (jj_2_852(2)) { + } else if (jj_2_859(2)) { node = DateDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_853(2)) { + } else if (jj_2_860(2)) { node = DateTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_854(2)) { + } else if (jj_2_861(2)) { node = DatetimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_855(2)) { + } else if (jj_2_862(2)) { node = TimestampAddFunctionCall(); {if (true) return node;} - } else if (jj_2_856(2)) { + } else if (jj_2_863(2)) { node = DatetimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_857(2)) { + } else if (jj_2_864(2)) { node = TimestampDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_858(2)) { + } else if (jj_2_865(2)) { node = TimestampDiff3FunctionCall(); {if (true) return node;} - } else if (jj_2_859(2)) { + } else if (jj_2_866(2)) { node = TimestampTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_860(2)) { + } else if (jj_2_867(2)) { node = TimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_861(2)) { + } else if (jj_2_868(2)) { node = TimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_862(2)) { + } else if (jj_2_869(2)) { node = MatchRecognizeFunctionCall(); {if (true) return node;} - } else if (jj_2_863(2)) { + } else if (jj_2_870(2)) { node = JsonExistsFunctionCall(); {if (true) return node;} - } else if (jj_2_864(2)) { + } else if (jj_2_871(2)) { node = JsonValueFunctionCall(); {if (true) return node;} - } else if (jj_2_865(2)) { + } else if (jj_2_872(2)) { node = JsonQueryFunctionCall(); {if (true) return node;} - } else if (jj_2_866(2)) { + } else if (jj_2_873(2)) { node = JsonObjectFunctionCall(); {if (true) return node;} - } else if (jj_2_867(2)) { + } else if (jj_2_874(2)) { node = JsonObjectAggFunctionCall(); {if (true) return node;} - } else if (jj_2_868(2)) { + } else if (jj_2_875(2)) { node = JsonArrayFunctionCall(); {if (true) return node;} - } else if (jj_2_869(2)) { + } else if (jj_2_876(2)) { node = JsonArrayAggFunctionCall(); {if (true) return node;} - } else if (jj_2_870(2)) { + } else if (jj_2_877(2)) { node = GroupByWindowingCall(); {if (true) return node;} } else { @@ -8307,15 +8370,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final public SqlJsonEncoding JsonRepresentation() throws ParseException { jj_consume_token(JSON); - if (jj_2_874(2)) { + if (jj_2_881(2)) { jj_consume_token(ENCODING); - if (jj_2_871(2)) { + if (jj_2_878(2)) { jj_consume_token(UTF8); {if (true) return SqlJsonEncoding.UTF8;} - } else if (jj_2_872(2)) { + } else if (jj_2_879(2)) { jj_consume_token(UTF16); {if (true) return SqlJsonEncoding.UTF16;} - } else if (jj_2_873(2)) { + } else if (jj_2_880(2)) { jj_consume_token(UTF32); {if (true) return SqlJsonEncoding.UTF32;} } else { @@ -8345,7 +8408,7 @@ final public SqlDataTypeSpec JsonReturningClause() throws ParseException { final public SqlDataTypeSpec JsonOutputClause() throws ParseException { SqlDataTypeSpec dataType; dataType = JsonReturningClause(); - if (jj_2_875(2)) { + if (jj_2_882(2)) { jj_consume_token(FORMAT); JsonRepresentation(); } else { @@ -8368,19 +8431,19 @@ 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_877(2)) { + if (jj_2_884(2)) { jj_consume_token(PASSING); e = Expression(ExprContext.ACCEPT_NON_QUERY); jj_consume_token(AS); e = SimpleIdentifier(); - label_61: + label_62: while (true) { - if (jj_2_876(2)) { + if (jj_2_883(2)) { ; } else { - break label_61; + break label_62; } jj_consume_token(COMMA); e = Expression(ExprContext.ACCEPT_NON_QUERY); @@ -8397,16 +8460,16 @@ final public List JsonApiCommonSyntax() throws ParseException { } final public SqlJsonExistsErrorBehavior JsonExistsErrorBehavior() throws ParseException { - if (jj_2_878(2)) { + if (jj_2_885(2)) { jj_consume_token(TRUE); {if (true) return SqlJsonExistsErrorBehavior.TRUE;} - } else if (jj_2_879(2)) { + } else if (jj_2_886(2)) { jj_consume_token(FALSE); {if (true) return SqlJsonExistsErrorBehavior.FALSE;} - } else if (jj_2_880(2)) { + } else if (jj_2_887(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlJsonExistsErrorBehavior.UNKNOWN;} - } else if (jj_2_881(2)) { + } else if (jj_2_888(2)) { jj_consume_token(ERROR); {if (true) return SqlJsonExistsErrorBehavior.ERROR;} } else { @@ -8426,7 +8489,7 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_882(2)) { + if (jj_2_889(2)) { errorBehavior = JsonExistsErrorBehavior(); args.add(errorBehavior.symbol(getPos())); jj_consume_token(ON); @@ -8441,13 +8504,13 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { final public List JsonValueEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_883(2)) { + if (jj_2_890(2)) { jj_consume_token(ERROR); list.add(SqlJsonValueEmptyOrErrorBehavior.ERROR.symbol(getPos())); - } else if (jj_2_884(2)) { + } else if (jj_2_891(2)) { jj_consume_token(NULL); list.add(SqlJsonValueEmptyOrErrorBehavior.NULL.symbol(getPos())); - } else if (jj_2_885(2)) { + } else if (jj_2_892(2)) { jj_consume_token(DEFAULT_); list.add(SqlJsonValueEmptyOrErrorBehavior.DEFAULT.symbol(getPos())); AddExpression(list, ExprContext.ACCEPT_NON_QUERY); @@ -8456,10 +8519,10 @@ final public List JsonValueEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_886(2)) { + if (jj_2_893(2)) { jj_consume_token(EMPTY); list.add(SqlJsonEmptyOrError.EMPTY.symbol(getPos())); - } else if (jj_2_887(2)) { + } else if (jj_2_894(2)) { jj_consume_token(ERROR); list.add(SqlJsonEmptyOrError.ERROR.symbol(getPos())); } else { @@ -8481,19 +8544,19 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_888(2)) { + if (jj_2_895(2)) { e = JsonReturningClause(); args.add(SqlJsonValueReturning.RETURNING.symbol(getPos())); args.add(e); } else { ; } - label_62: + label_63: while (true) { - if (jj_2_889(2)) { + if (jj_2_896(2)) { ; } else { - break label_62; + break label_63; } behavior = JsonValueEmptyOrErrorBehavior(); args.addAll(behavior); @@ -8505,17 +8568,17 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { final public List JsonQueryEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_890(2)) { + if (jj_2_897(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.ERROR, getPos())); - } else if (jj_2_891(2)) { + } else if (jj_2_898(2)) { jj_consume_token(NULL); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.NULL, getPos())); - } else if (jj_2_892(2)) { + } else if (jj_2_899(2)) { jj_consume_token(EMPTY); jj_consume_token(ARRAY); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_ARRAY, getPos())); - } else if (jj_2_893(2)) { + } else if (jj_2_900(2)) { jj_consume_token(EMPTY); jj_consume_token(OBJECT); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_OBJECT, getPos())); @@ -8524,10 +8587,10 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_894(2)) { + if (jj_2_901(2)) { jj_consume_token(EMPTY); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.EMPTY, getPos())); - } else if (jj_2_895(2)) { + } else if (jj_2_902(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.ERROR, getPos())); } else { @@ -8539,31 +8602,31 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException } final public SqlNode JsonQueryWrapperBehavior() throws ParseException { - if (jj_2_900(2)) { + if (jj_2_907(2)) { jj_consume_token(WITHOUT); - if (jj_2_896(2)) { + if (jj_2_903(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITHOUT_ARRAY, getPos());} - } else if (jj_2_901(2)) { + } else if (jj_2_908(2)) { jj_consume_token(WITH); jj_consume_token(CONDITIONAL); - if (jj_2_897(2)) { + if (jj_2_904(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITH_CONDITIONAL_ARRAY, getPos());} - } else if (jj_2_902(2)) { + } else if (jj_2_909(2)) { jj_consume_token(WITH); - if (jj_2_898(2)) { + if (jj_2_905(2)) { jj_consume_token(UNCONDITIONAL); } else { ; } - if (jj_2_899(2)) { + if (jj_2_906(2)) { jj_consume_token(ARRAY); } else { ; @@ -8588,25 +8651,25 @@ final public SqlCall JsonQueryFunctionCall() throws ParseException { commonSyntax = JsonApiCommonSyntax(); args[0] = commonSyntax.get(0); args[1] = commonSyntax.get(1); - if (jj_2_903(2)) { + if (jj_2_910(2)) { e = JsonReturningClause(); args[5] = e; } else { ; } - if (jj_2_904(2)) { + if (jj_2_911(2)) { e = JsonQueryWrapperBehavior(); jj_consume_token(WRAPPER); args[2] = e; } else { ; } - label_63: + label_64: while (true) { - if (jj_2_905(2)) { + if (jj_2_912(2)) { ; } else { - break label_63; + break label_64; } behavior = JsonQueryEmptyOrErrorBehavior(); final SqlJsonEmptyOrError symbol = @@ -8636,7 +8699,7 @@ final public List JsonNameAndValue() throws ParseException { final List list = new ArrayList(); final SqlNode e; boolean kvMode = false; - if (jj_2_906(2)) { + if (jj_2_913(2)) { jj_consume_token(KEY); kvMode = true; } else { @@ -8644,14 +8707,14 @@ final public List JsonNameAndValue() throws ParseException { } e = JsonName(); list.add(e); - if (jj_2_907(2)) { + if (jj_2_914(2)) { jj_consume_token(VALUE); - } else if (jj_2_908(2)) { + } else if (jj_2_915(2)) { jj_consume_token(COMMA); if (kvMode) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalComma());} } - } else if (jj_2_909(2)) { + } else if (jj_2_916(2)) { jj_consume_token(COLON); if (kvMode) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalColon());} @@ -8666,12 +8729,12 @@ final public List JsonNameAndValue() throws ParseException { } final public SqlNode JsonConstructorNullClause() throws ParseException { - if (jj_2_910(2)) { + if (jj_2_917(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_911(2)) { + } else if (jj_2_918(2)) { jj_consume_token(ABSENT); jj_consume_token(ON); jj_consume_token(NULL); @@ -8692,15 +8755,15 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { jj_consume_token(JSON_OBJECT); span = span(); jj_consume_token(LPAREN); - if (jj_2_913(2)) { + if (jj_2_920(2)) { list = JsonNameAndValue(); nvArgs.addAll(list); - label_64: + label_65: while (true) { - if (jj_2_912(2)) { + if (jj_2_919(2)) { ; } else { - break label_64; + break label_65; } jj_consume_token(COMMA); list = JsonNameAndValue(); @@ -8709,7 +8772,7 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { } else { ; } - if (jj_2_914(2)) { + if (jj_2_921(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8736,7 +8799,7 @@ final public SqlCall JsonObjectAggFunctionCall() throws ParseException { list = JsonNameAndValue(); args[0] = list.get(0); args[1] = list.get(1); - if (jj_2_915(2)) { + if (jj_2_922(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8756,14 +8819,14 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { jj_consume_token(JSON_ARRAY); span = span(); jj_consume_token(LPAREN); - if (jj_2_917(2)) { + if (jj_2_924(2)) { AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); - label_65: + label_66: while (true) { - if (jj_2_916(2)) { + if (jj_2_923(2)) { ; } else { - break label_65; + break label_66; } jj_consume_token(COMMA); AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); @@ -8771,7 +8834,7 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { } else { ; } - if (jj_2_918(2)) { + if (jj_2_925(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8804,12 +8867,12 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_NON_QUERY); valueExpr = e; - if (jj_2_919(2)) { + if (jj_2_926(2)) { orderList = JsonArrayAggOrderByClause(); } else { orderList = null; } - if (jj_2_920(2)) { + if (jj_2_927(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8818,7 +8881,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_921(2)) { + if (jj_2_928(2)) { e = withinGroup(aggCall); if (orderList != null) { {if (true) throw SqlUtil.newContextException(span.pos().plus(e.getParserPosition()), @@ -8851,9 +8914,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_922(2)) { + if (jj_2_929(2)) { jj_consume_token(RPAREN); - } else if (jj_2_923(2)) { + } else if (jj_2_930(2)) { jj_consume_token(COMMA); jj_consume_token(JSON_SCOPE); jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); @@ -8992,10 +9055,10 @@ final public SqlCall DateTruncFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); - if (jj_2_924(2)) { + if (jj_2_931(2)) { unit = TimeUnit(); args.add(unit); - } else if (jj_2_925(2)) { + } else if (jj_2_932(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9093,13 +9156,13 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final Span s; final List args; final SqlOperator op; - if (jj_2_926(2)) { + if (jj_2_933(2)) { jj_consume_token(TUMBLE); op = SqlStdOperatorTable.TUMBLE_OLD; - } else if (jj_2_927(2)) { + } else if (jj_2_934(2)) { jj_consume_token(HOP); op = SqlStdOperatorTable.HOP_OLD; - } else if (jj_2_928(2)) { + } else if (jj_2_935(2)) { jj_consume_token(SESSION); op = SqlStdOperatorTable.SESSION_OLD; } else { @@ -9115,23 +9178,23 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final public SqlCall MatchRecognizeFunctionCall() throws ParseException { final SqlCall func; final Span s; - if (jj_2_929(2)) { + if (jj_2_936(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_930(2)) { + } else if (jj_2_937(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_931(3)) { + } else if (jj_2_938(3)) { func = MatchRecognizeNavigationLogical(); - } else if (jj_2_932(2)) { + } else if (jj_2_939(2)) { func = MatchRecognizeNavigationPhysical(); - } else if (jj_2_933(2)) { + } else if (jj_2_940(2)) { func = MatchRecognizeCallWithModifier(); } else { jj_consume_token(-1); @@ -9145,10 +9208,10 @@ final public SqlCall MatchRecognizeCallWithModifier() throws ParseException { final Span s; final SqlOperator runningOp; final SqlNode func; - if (jj_2_934(2)) { + if (jj_2_941(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; - } else if (jj_2_935(2)) { + } else if (jj_2_942(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; } else { @@ -9168,19 +9231,19 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { final SqlOperator runningOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_936(2)) { + if (jj_2_943(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; s.add(this); - } else if (jj_2_937(2)) { + } else if (jj_2_944(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; s.add(this); } else { runningOp = null; } - if (jj_2_938(2)) { + if (jj_2_945(2)) { jj_consume_token(FIRST); funcOp = SqlStdOperatorTable.FIRST; - } else if (jj_2_939(2)) { + } else if (jj_2_946(2)) { jj_consume_token(LAST); funcOp = SqlStdOperatorTable.LAST; } else { @@ -9190,7 +9253,7 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { s.add(this); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_940(2)) { + if (jj_2_947(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9212,10 +9275,10 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { final SqlOperator funcOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_941(2)) { + if (jj_2_948(2)) { jj_consume_token(PREV); funcOp = SqlStdOperatorTable.PREV; - } else if (jj_2_942(2)) { + } else if (jj_2_949(2)) { jj_consume_token(NEXT); funcOp = SqlStdOperatorTable.NEXT; } else { @@ -9225,7 +9288,7 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_943(2)) { + if (jj_2_950(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9267,12 +9330,12 @@ final public SqlCall withinGroup(SqlNode arg) throws ParseException { final public Pair NullTreatment() throws ParseException { final Span span; - if (jj_2_944(2)) { + if (jj_2_951(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_945(2)) { + } else if (jj_2_952(2)) { jj_consume_token(RESPECT); span = span(); jj_consume_token(NULLS); @@ -9312,7 +9375,7 @@ final public SqlNode NamedFunctionCall() throws ParseException { final SqlNode filter; final Span overSpan; final SqlNode over; - if (jj_2_946(2)) { + if (jj_2_953(2)) { call = StringAggFunctionCall(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -9322,7 +9385,7 @@ final public SqlNode NamedFunctionCall() throws ParseException { break; default: jj_la1[7] = jj_gen; - if (jj_2_947(2)) { + if (jj_2_954(2)) { call = NamedCall(); } else { jj_consume_token(-1); @@ -9330,23 +9393,23 @@ final public SqlNode NamedFunctionCall() throws ParseException { } } } - if (jj_2_948(2)) { + if (jj_2_955(2)) { call = nullTreatment(call); } else { ; } - if (jj_2_949(2)) { + if (jj_2_956(2)) { // decide between WITHIN DISTINCT and WITHIN GROUP call = withinDistinct(call); } else { ; } - if (jj_2_950(2)) { + if (jj_2_957(2)) { call = withinGroup(call); } else { ; } - if (jj_2_951(2)) { + if (jj_2_958(2)) { jj_consume_token(FILTER); filterSpan = span(); jj_consume_token(LPAREN); @@ -9358,12 +9421,12 @@ final public SqlNode NamedFunctionCall() throws ParseException { } else { ; } - if (jj_2_954(2)) { + if (jj_2_961(2)) { jj_consume_token(OVER); overSpan = span(); - if (jj_2_952(2)) { + if (jj_2_959(2)) { over = SimpleIdentifier(); - } else if (jj_2_953(2)) { + } else if (jj_2_960(2)) { over = WindowSpecification(); } else { jj_consume_token(-1); @@ -9383,7 +9446,7 @@ final public SqlCall NamedCall() throws ParseException { final Span s; final List args; SqlLiteral quantifier = null; - if (jj_2_955(2)) { + if (jj_2_962(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_SPECIFIC_FUNCTION; } else { @@ -9391,16 +9454,16 @@ final public SqlCall NamedCall() throws ParseException { } qualifiedName = FunctionName(); s = span(); - if (jj_2_956(2)) { + if (jj_2_963(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_957(2)) { + } else if (jj_2_964(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = ImmutableList.of(); - } else if (jj_2_958(2)) { + } else if (jj_2_965(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -9423,7 +9486,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_959(2)) { + if (jj_2_966(2)) { jj_consume_token(TO); unit = TimeUnitOrName(); args.add(unit); @@ -9433,12 +9496,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_962(2)) { + if (jj_2_969(2)) { jj_consume_token(OVER); s1 = span(); - if (jj_2_960(2)) { + if (jj_2_967(2)) { e = SimpleIdentifier(); - } else if (jj_2_961(2)) { + } else if (jj_2_968(2)) { e = WindowSpecification(); } else { jj_consume_token(-1); @@ -9466,9 +9529,9 @@ final public String NonReservedJdbcFunctionName() throws ParseException { */ final public SqlIdentifier FunctionName() throws ParseException { SqlIdentifier qualifiedName; - if (jj_2_963(2)) { + if (jj_2_970(2)) { qualifiedName = CompoundIdentifier(); - } else if (jj_2_964(2)) { + } else if (jj_2_971(2)) { qualifiedName = ReservedFunctionName(); } else { jj_consume_token(-1); @@ -9482,135 +9545,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_965(2)) { + if (jj_2_972(2)) { jj_consume_token(ABS); - } else if (jj_2_966(2)) { + } else if (jj_2_973(2)) { jj_consume_token(AVG); - } else if (jj_2_967(2)) { + } else if (jj_2_974(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_968(2)) { + } else if (jj_2_975(2)) { jj_consume_token(CEILING); - } else if (jj_2_969(2)) { + } else if (jj_2_976(2)) { jj_consume_token(CHAR); - } else if (jj_2_970(2)) { + } else if (jj_2_977(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_971(2)) { + } else if (jj_2_978(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_972(2)) { + } else if (jj_2_979(2)) { jj_consume_token(COALESCE); - } else if (jj_2_973(2)) { + } else if (jj_2_980(2)) { jj_consume_token(COLLECT); - } else if (jj_2_974(2)) { + } else if (jj_2_981(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_975(2)) { + } else if (jj_2_982(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_976(2)) { + } else if (jj_2_983(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_977(2)) { + } else if (jj_2_984(2)) { jj_consume_token(COUNT); - } else if (jj_2_978(2)) { + } else if (jj_2_985(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_979(2)) { + } else if (jj_2_986(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_980(2)) { + } else if (jj_2_987(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_981(2)) { + } else if (jj_2_988(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_982(2)) { + } else if (jj_2_989(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_983(2)) { + } else if (jj_2_990(2)) { jj_consume_token(EVERY); - } else if (jj_2_984(2)) { + } else if (jj_2_991(2)) { jj_consume_token(EXP); - } else if (jj_2_985(2)) { + } else if (jj_2_992(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_986(2)) { + } else if (jj_2_993(2)) { jj_consume_token(FLOOR); - } else if (jj_2_987(2)) { + } else if (jj_2_994(2)) { jj_consume_token(FUSION); - } else if (jj_2_988(2)) { + } else if (jj_2_995(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_989(2)) { + } else if (jj_2_996(2)) { jj_consume_token(GROUPING); - } else if (jj_2_990(2)) { + } else if (jj_2_997(2)) { jj_consume_token(HOUR); - } else if (jj_2_991(2)) { + } else if (jj_2_998(2)) { jj_consume_token(LAG); - } else if (jj_2_992(2)) { + } else if (jj_2_999(2)) { jj_consume_token(LEAD); - } else if (jj_2_993(2)) { + } else if (jj_2_1000(2)) { jj_consume_token(LEFT); - } else if (jj_2_994(2)) { + } else if (jj_2_1001(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_995(2)) { + } else if (jj_2_1002(2)) { jj_consume_token(LN); - } else if (jj_2_996(2)) { + } else if (jj_2_1003(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_997(2)) { + } else if (jj_2_1004(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_998(2)) { + } else if (jj_2_1005(2)) { jj_consume_token(LOWER); - } else if (jj_2_999(2)) { + } else if (jj_2_1006(2)) { jj_consume_token(MAX); - } else if (jj_2_1000(2)) { + } else if (jj_2_1007(2)) { jj_consume_token(MIN); - } else if (jj_2_1001(2)) { + } else if (jj_2_1008(2)) { jj_consume_token(MINUTE); - } else if (jj_2_1002(2)) { + } else if (jj_2_1009(2)) { jj_consume_token(MOD); - } else if (jj_2_1003(2)) { + } else if (jj_2_1010(2)) { jj_consume_token(MONTH); - } else if (jj_2_1004(2)) { + } else if (jj_2_1011(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_1005(2)) { + } else if (jj_2_1012(2)) { jj_consume_token(NTILE); - } else if (jj_2_1006(2)) { + } else if (jj_2_1013(2)) { jj_consume_token(NULLIF); - } else if (jj_2_1007(2)) { + } else if (jj_2_1014(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_1008(2)) { + } else if (jj_2_1015(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_1009(2)) { + } else if (jj_2_1016(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_1010(2)) { + } else if (jj_2_1017(2)) { jj_consume_token(PERCENT_RANK); - } else if (jj_2_1011(2)) { + } else if (jj_2_1018(2)) { jj_consume_token(POWER); - } else if (jj_2_1012(2)) { + } else if (jj_2_1019(2)) { jj_consume_token(RANK); - } else if (jj_2_1013(2)) { + } else if (jj_2_1020(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_1014(2)) { + } else if (jj_2_1021(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_1015(2)) { + } else if (jj_2_1022(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_1016(2)) { + } else if (jj_2_1023(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1017(2)) { + } else if (jj_2_1024(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_1018(2)) { + } else if (jj_2_1025(2)) { jj_consume_token(SECOND); - } else if (jj_2_1019(2)) { + } else if (jj_2_1026(2)) { jj_consume_token(SOME); - } else if (jj_2_1020(2)) { + } else if (jj_2_1027(2)) { jj_consume_token(SQRT); - } else if (jj_2_1021(2)) { + } else if (jj_2_1028(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_1022(2)) { + } else if (jj_2_1029(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_1023(2)) { + } else if (jj_2_1030(2)) { jj_consume_token(SUM); - } else if (jj_2_1024(2)) { + } else if (jj_2_1031(2)) { jj_consume_token(UPPER); - } else if (jj_2_1025(2)) { + } else if (jj_2_1032(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_1026(2)) { + } else if (jj_2_1033(2)) { jj_consume_token(USER); - } else if (jj_2_1027(2)) { + } else if (jj_2_1034(2)) { jj_consume_token(VAR_POP); - } else if (jj_2_1028(2)) { + } else if (jj_2_1035(2)) { jj_consume_token(VAR_SAMP); - } else if (jj_2_1029(2)) { + } else if (jj_2_1036(2)) { jj_consume_token(YEAR); } else { jj_consume_token(-1); @@ -9621,33 +9684,33 @@ final public SqlIdentifier ReservedFunctionName() throws ParseException { } final public SqlIdentifier ContextVariable() throws ParseException { - if (jj_2_1030(2)) { + if (jj_2_1037(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_1031(2)) { + } else if (jj_2_1038(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_1032(2)) { + } else if (jj_2_1039(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_1033(2)) { + } else if (jj_2_1040(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_1034(2)) { + } else if (jj_2_1041(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_1035(2)) { + } else if (jj_2_1042(2)) { jj_consume_token(CURRENT_SCHEMA); - } else if (jj_2_1036(2)) { + } else if (jj_2_1043(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_1037(2)) { + } else if (jj_2_1044(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_1038(2)) { + } else if (jj_2_1045(2)) { jj_consume_token(CURRENT_USER); - } else if (jj_2_1039(2)) { + } else if (jj_2_1046(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_1040(2)) { + } else if (jj_2_1047(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_1041(2)) { + } else if (jj_2_1048(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_1042(2)) { + } else if (jj_2_1049(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_1043(2)) { + } else if (jj_2_1050(2)) { jj_consume_token(USER); } else { jj_consume_token(-1); @@ -9718,11 +9781,11 @@ final public SqlNode JdbcFunctionCall() throws ParseException { break; default: jj_la1[9] = jj_gen; - if (jj_2_1054(3)) { + if (jj_2_1061(3)) { call = TimestampDiffFunctionCall(); name = call.getOperator().getName(); args = new SqlNodeList(call.getOperandList(), getPos()); - } else if (jj_2_1055(2)) { + } else if (jj_2_1062(2)) { jj_consume_token(CONVERT); name = unquotedIdentifier(); jj_consume_token(LPAREN); @@ -9733,19 +9796,19 @@ final public SqlNode JdbcFunctionCall() throws ParseException { tl = JdbcOdbcDataType(); args.add(tl); jj_consume_token(RPAREN); - } else if (jj_2_1056(2)) { + } else if (jj_2_1063(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case INSERT: case LEFT: case RIGHT: case TRUNCATE: - if (jj_2_1044(2)) { + if (jj_2_1051(2)) { jj_consume_token(INSERT); - } else if (jj_2_1045(2)) { + } else if (jj_2_1052(2)) { jj_consume_token(LEFT); - } else if (jj_2_1046(2)) { + } else if (jj_2_1053(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1047(2)) { + } else if (jj_2_1054(2)) { jj_consume_token(TRUNCATE); } else { jj_consume_token(-1); @@ -9755,32 +9818,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { break; default: jj_la1[8] = jj_gen; - if (jj_2_1048(2)) { + if (jj_2_1055(2)) { // For cases like {fn power(1,2)} and {fn lower('a')} id = ReservedFunctionName(); name = id.getSimple(); - } else if (jj_2_1049(2)) { + } else if (jj_2_1056(2)) { // For cases like {fn substring('foo', 1,2)} name = NonReservedJdbcFunctionName(); - } else if (jj_2_1050(2)) { + } else if (jj_2_1057(2)) { name = Identifier(); } else { jj_consume_token(-1); throw new ParseException(); } } - if (jj_2_1051(2)) { + if (jj_2_1058(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_1052(2)) { + } else if (jj_2_1059(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_1053(2)) { + } else if (jj_2_1060(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9801,32 +9864,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { * Parses a binary query operator like UNION. */ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { - if (jj_2_1065(2)) { + if (jj_2_1072(2)) { jj_consume_token(UNION); - if (jj_2_1057(2)) { + if (jj_2_1064(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.UNION_ALL;} - } else if (jj_2_1058(2)) { + } else if (jj_2_1065(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.UNION;} } else { {if (true) return SqlStdOperatorTable.UNION;} } - } else if (jj_2_1066(2)) { + } else if (jj_2_1073(2)) { jj_consume_token(INTERSECT); - if (jj_2_1059(2)) { + if (jj_2_1066(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.INTERSECT_ALL;} - } else if (jj_2_1060(2)) { + } else if (jj_2_1067(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.INTERSECT;} } else { {if (true) return SqlStdOperatorTable.INTERSECT;} } - } else if (jj_2_1067(2)) { - if (jj_2_1061(2)) { + } else if (jj_2_1074(2)) { + if (jj_2_1068(2)) { jj_consume_token(EXCEPT); - } else if (jj_2_1062(2)) { + } else if (jj_2_1069(2)) { jj_consume_token(SET_MINUS); if (!this.conformance.isMinusAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.minusNotAllowed());} @@ -9835,10 +9898,10 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_1063(2)) { + if (jj_2_1070(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.EXCEPT_ALL;} - } else if (jj_2_1064(2)) { + } else if (jj_2_1071(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.EXCEPT;} } else { @@ -9856,12 +9919,12 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { */ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { jj_consume_token(MULTISET); - if (jj_2_1077(2)) { + if (jj_2_1084(2)) { jj_consume_token(UNION); - if (jj_2_1070(2)) { - if (jj_2_1068(2)) { + if (jj_2_1077(2)) { + if (jj_2_1075(2)) { jj_consume_token(ALL); - } else if (jj_2_1069(2)) { + } else if (jj_2_1076(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_UNION_DISTINCT;} } else { @@ -9872,12 +9935,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_UNION;} - } else if (jj_2_1078(2)) { + } else if (jj_2_1085(2)) { jj_consume_token(INTERSECT); - if (jj_2_1073(2)) { - if (jj_2_1071(2)) { + if (jj_2_1080(2)) { + if (jj_2_1078(2)) { jj_consume_token(ALL); - } else if (jj_2_1072(2)) { + } else if (jj_2_1079(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT_DISTINCT;} } else { @@ -9888,12 +9951,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT;} - } else if (jj_2_1079(2)) { + } else if (jj_2_1086(2)) { jj_consume_token(EXCEPT); - if (jj_2_1076(2)) { - if (jj_2_1074(2)) { + if (jj_2_1083(2)) { + if (jj_2_1081(2)) { jj_consume_token(ALL); - } else if (jj_2_1075(2)) { + } else if (jj_2_1082(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_EXCEPT_DISTINCT;} } else { @@ -9916,105 +9979,105 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { */ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { SqlBinaryOperator op; - if (jj_2_1080(2)) { + if (jj_2_1087(2)) { jj_consume_token(EQ); {if (true) return SqlStdOperatorTable.EQUALS;} - } else if (jj_2_1081(2)) { + } else if (jj_2_1088(2)) { jj_consume_token(GT); {if (true) return SqlStdOperatorTable.GREATER_THAN;} - } else if (jj_2_1082(2)) { + } else if (jj_2_1089(2)) { jj_consume_token(LT); {if (true) return SqlStdOperatorTable.LESS_THAN;} - } else if (jj_2_1083(2)) { + } else if (jj_2_1090(2)) { jj_consume_token(LE); {if (true) return SqlStdOperatorTable.LESS_THAN_OR_EQUAL;} - } else if (jj_2_1084(2)) { + } else if (jj_2_1091(2)) { jj_consume_token(GE); {if (true) return SqlStdOperatorTable.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_1085(2)) { + } else if (jj_2_1092(2)) { jj_consume_token(NE); {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1086(2)) { + } else if (jj_2_1093(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_1087(2)) { + } else if (jj_2_1094(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.PLUS;} - } else if (jj_2_1088(2)) { + } else if (jj_2_1095(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.MINUS;} - } else if (jj_2_1089(2)) { + } else if (jj_2_1096(2)) { jj_consume_token(STAR); {if (true) return SqlStdOperatorTable.MULTIPLY;} - } else if (jj_2_1090(2)) { + } else if (jj_2_1097(2)) { jj_consume_token(SLASH); {if (true) return SqlStdOperatorTable.DIVIDE;} - } else if (jj_2_1091(2)) { + } else if (jj_2_1098(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_1092(2)) { + } else if (jj_2_1099(2)) { jj_consume_token(CONCAT); {if (true) return SqlStdOperatorTable.CONCAT;} - } else if (jj_2_1093(2)) { + } else if (jj_2_1100(2)) { jj_consume_token(AND); {if (true) return SqlStdOperatorTable.AND;} - } else if (jj_2_1094(2)) { + } else if (jj_2_1101(2)) { jj_consume_token(OR); {if (true) return SqlStdOperatorTable.OR;} - } else if (jj_2_1095(2)) { + } else if (jj_2_1102(2)) { jj_consume_token(IS); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_DISTINCT_FROM;} - } else if (jj_2_1096(2)) { + } else if (jj_2_1103(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_1097(2)) { + } else if (jj_2_1104(2)) { jj_consume_token(MEMBER); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.MEMBER_OF;} - } else if (jj_2_1098(2)) { + } else if (jj_2_1105(2)) { jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.SUBMULTISET_OF;} - } else if (jj_2_1099(2)) { + } else if (jj_2_1106(2)) { jj_consume_token(NOT); jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.NOT_SUBMULTISET_OF;} - } else if (jj_2_1100(2)) { + } else if (jj_2_1107(2)) { jj_consume_token(CONTAINS); {if (true) return SqlStdOperatorTable.CONTAINS;} - } else if (jj_2_1101(2)) { + } else if (jj_2_1108(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_1102(2)) { + } else if (jj_2_1109(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} - } else if (jj_2_1103(2)) { + } else if (jj_2_1110(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_1104(2)) { + } else if (jj_2_1111(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_1105(2)) { + } else if (jj_2_1112(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_1106(2)) { + } else if (jj_2_1113(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_1107(2)) { + } else if (jj_2_1114(2)) { op = BinaryMultisetOperator(); {if (true) return op;} } else { @@ -10028,19 +10091,19 @@ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { * Parses a prefix row operator like NOT. */ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { - if (jj_2_1108(2)) { + if (jj_2_1115(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.UNARY_PLUS;} - } else if (jj_2_1109(2)) { + } else if (jj_2_1116(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.UNARY_MINUS;} - } else if (jj_2_1110(2)) { + } else if (jj_2_1117(2)) { jj_consume_token(NOT); {if (true) return SqlStdOperatorTable.NOT;} - } else if (jj_2_1111(2)) { + } else if (jj_2_1118(2)) { jj_consume_token(EXISTS); {if (true) return SqlStdOperatorTable.EXISTS;} - } else if (jj_2_1112(2)) { + } else if (jj_2_1119(2)) { jj_consume_token(UNIQUE); {if (true) return SqlStdOperatorTable.UNIQUE;} } else { @@ -10054,89 +10117,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_1137(2)) { + if (jj_2_1144(2)) { jj_consume_token(IS); - if (jj_2_1134(2)) { + if (jj_2_1141(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_A_SET;} - } else if (jj_2_1135(2)) { + } else if (jj_2_1142(2)) { jj_consume_token(NOT); - if (jj_2_1113(2)) { + if (jj_2_1120(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NOT_NULL;} - } else if (jj_2_1114(2)) { + } else if (jj_2_1121(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_NOT_TRUE;} - } else if (jj_2_1115(2)) { + } else if (jj_2_1122(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_NOT_FALSE;} - } else if (jj_2_1116(2)) { + } else if (jj_2_1123(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_NOT_UNKNOWN;} - } else if (jj_2_1117(2)) { + } else if (jj_2_1124(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_NOT_A_SET;} - } else if (jj_2_1118(2)) { + } else if (jj_2_1125(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_NOT_EMPTY;} - } else if (jj_2_1119(2)) { + } else if (jj_2_1126(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} - } else if (jj_2_1120(2)) { + } else if (jj_2_1127(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_OBJECT;} - } else if (jj_2_1121(2)) { + } else if (jj_2_1128(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_ARRAY;} - } else if (jj_2_1122(2)) { + } else if (jj_2_1129(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_SCALAR;} - } else if (jj_2_1123(2)) { + } else if (jj_2_1130(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_1136(2)) { - if (jj_2_1124(2)) { + } else if (jj_2_1143(2)) { + if (jj_2_1131(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NULL;} - } else if (jj_2_1125(2)) { + } else if (jj_2_1132(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_TRUE;} - } else if (jj_2_1126(2)) { + } else if (jj_2_1133(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_FALSE;} - } else if (jj_2_1127(2)) { + } else if (jj_2_1134(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_UNKNOWN;} - } else if (jj_2_1128(2)) { + } else if (jj_2_1135(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_EMPTY;} - } else if (jj_2_1129(2)) { + } else if (jj_2_1136(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} - } else if (jj_2_1130(2)) { + } else if (jj_2_1137(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_JSON_OBJECT;} - } else if (jj_2_1131(2)) { + } else if (jj_2_1138(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_JSON_ARRAY;} - } else if (jj_2_1132(2)) { + } else if (jj_2_1139(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_JSON_SCALAR;} - } else if (jj_2_1133(2)) { + } else if (jj_2_1140(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} } else { @@ -10147,7 +10210,7 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1138(2)) { + } else if (jj_2_1145(2)) { jj_consume_token(FORMAT); JsonRepresentation(); {if (true) return SqlStdOperatorTable.JSON_VALUE_EXPRESSION;} @@ -10173,11 +10236,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_1139(2)) { + if (jj_2_1146(2)) { NonReservedKeyWord0of3(); - } else if (jj_2_1140(2)) { + } else if (jj_2_1147(2)) { NonReservedKeyWord1of3(); - } else if (jj_2_1141(2)) { + } else if (jj_2_1148(2)) { NonReservedKeyWord2of3(); } else { jj_consume_token(-1); @@ -10189,450 +10252,450 @@ final public String NonReservedKeyWord() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord0of3() throws ParseException { - if (jj_2_1142(2)) { + if (jj_2_1149(2)) { jj_consume_token(A); - } else if (jj_2_1143(2)) { - jj_consume_token(ACTION); - } else if (jj_2_1144(2)) { - jj_consume_token(ADMIN); - } else if (jj_2_1145(2)) { - jj_consume_token(APPLY); - } else if (jj_2_1146(2)) { - jj_consume_token(ASC); - } else if (jj_2_1147(2)) { - jj_consume_token(ATTRIBUTE); - } else if (jj_2_1148(2)) { - jj_consume_token(BERNOULLI); - } else if (jj_2_1149(2)) { - jj_consume_token(CASCADE); } else if (jj_2_1150(2)) { - jj_consume_token(CENTURY); + jj_consume_token(ACTION); } else if (jj_2_1151(2)) { - jj_consume_token(CHARACTERS); + jj_consume_token(ADMIN); } else if (jj_2_1152(2)) { - jj_consume_token(CHARACTER_SET_SCHEMA); + jj_consume_token(APPLY); } else if (jj_2_1153(2)) { - jj_consume_token(COLLATION); + jj_consume_token(ASC); } else if (jj_2_1154(2)) { - jj_consume_token(COLLATION_SCHEMA); + jj_consume_token(ATTRIBUTE); } else if (jj_2_1155(2)) { - jj_consume_token(COMMAND_FUNCTION_CODE); + jj_consume_token(BERNOULLI); } else if (jj_2_1156(2)) { - jj_consume_token(CONDITION_NUMBER); + jj_consume_token(CASCADE); } else if (jj_2_1157(2)) { - jj_consume_token(CONSTRAINT_CATALOG); + jj_consume_token(CENTURY); } else if (jj_2_1158(2)) { - jj_consume_token(CONSTRAINT_SCHEMA); + jj_consume_token(CHARACTERS); } else if (jj_2_1159(2)) { - jj_consume_token(CONTINUE); + jj_consume_token(CHARACTER_SET_SCHEMA); } else if (jj_2_1160(2)) { - jj_consume_token(DATABASE); + jj_consume_token(COLLATION); } else if (jj_2_1161(2)) { - jj_consume_token(DATETIME_DIFF); + jj_consume_token(COLLATION_SCHEMA); } else if (jj_2_1162(2)) { - jj_consume_token(DATETIME_TRUNC); + jj_consume_token(COMMAND_FUNCTION_CODE); } else if (jj_2_1163(2)) { - jj_consume_token(DAYS); + jj_consume_token(CONDITION_NUMBER); } else if (jj_2_1164(2)) { - jj_consume_token(DEFERRABLE); + jj_consume_token(CONSTRAINT_CATALOG); } else if (jj_2_1165(2)) { - jj_consume_token(DEFINER); + jj_consume_token(CONSTRAINT_SCHEMA); } else if (jj_2_1166(2)) { - jj_consume_token(DERIVED); + jj_consume_token(CONTINUE); } else if (jj_2_1167(2)) { - jj_consume_token(DESCRIPTOR); + jj_consume_token(DATABASE); } else if (jj_2_1168(2)) { - jj_consume_token(DOMAIN); + jj_consume_token(DATETIME_DIFF); } else if (jj_2_1169(2)) { - jj_consume_token(DOT_FORMAT); + jj_consume_token(DATETIME_TRUNC); } else if (jj_2_1170(2)) { - jj_consume_token(ENCODING); + jj_consume_token(DAYS); } else if (jj_2_1171(2)) { - jj_consume_token(EXCEPTION); + jj_consume_token(DEFERRABLE); } else if (jj_2_1172(2)) { - jj_consume_token(FINAL); + jj_consume_token(DEFINER); } else if (jj_2_1173(2)) { - jj_consume_token(FORMAT); + jj_consume_token(DERIVED); } else if (jj_2_1174(2)) { - jj_consume_token(FRAC_SECOND); + jj_consume_token(DESCRIPTOR); } else if (jj_2_1175(2)) { - jj_consume_token(GENERATED); + jj_consume_token(DOMAIN); } else if (jj_2_1176(2)) { - jj_consume_token(GOTO); + jj_consume_token(DOT_FORMAT); } else if (jj_2_1177(2)) { - jj_consume_token(HIERARCHY); + jj_consume_token(ENCODING); } else if (jj_2_1178(2)) { - jj_consume_token(IGNORE); + jj_consume_token(EXCEPTION); } else if (jj_2_1179(2)) { - jj_consume_token(IMMEDIATELY); + jj_consume_token(FINAL); } else if (jj_2_1180(2)) { - jj_consume_token(INCLUDING); + jj_consume_token(FORMAT); } else if (jj_2_1181(2)) { - jj_consume_token(INPUT); + jj_consume_token(FRAC_SECOND); } else if (jj_2_1182(2)) { - jj_consume_token(INVOKER); + jj_consume_token(GENERATED); } else if (jj_2_1183(2)) { - jj_consume_token(ISOYEAR); + jj_consume_token(GOTO); } else if (jj_2_1184(2)) { - jj_consume_token(K); + jj_consume_token(HIERARCHY); } else if (jj_2_1185(2)) { - jj_consume_token(KEY_TYPE); + jj_consume_token(IGNORE); } else if (jj_2_1186(2)) { - jj_consume_token(LENGTH); + jj_consume_token(IMMEDIATELY); } else if (jj_2_1187(2)) { - jj_consume_token(LOCATOR); + jj_consume_token(INCLUDING); } else if (jj_2_1188(2)) { - jj_consume_token(MATCHED); + jj_consume_token(INPUT); } else if (jj_2_1189(2)) { - jj_consume_token(MESSAGE_OCTET_LENGTH); + jj_consume_token(INVOKER); } else if (jj_2_1190(2)) { - jj_consume_token(MILLENNIUM); + jj_consume_token(ISOYEAR); } else if (jj_2_1191(2)) { - jj_consume_token(MINVALUE); + jj_consume_token(K); } else if (jj_2_1192(2)) { - jj_consume_token(MUMPS); + jj_consume_token(KEY_TYPE); } else if (jj_2_1193(2)) { - jj_consume_token(NANOSECOND); + jj_consume_token(LENGTH); } else if (jj_2_1194(2)) { - jj_consume_token(NULLABLE); + jj_consume_token(LOCATOR); } else if (jj_2_1195(2)) { - jj_consume_token(OBJECT); + jj_consume_token(MATCHED); } else if (jj_2_1196(2)) { - jj_consume_token(OPTIONS); + jj_consume_token(MESSAGE_OCTET_LENGTH); } else if (jj_2_1197(2)) { - jj_consume_token(OTHERS); + jj_consume_token(MILLENNIUM); } else if (jj_2_1198(2)) { - jj_consume_token(PAD); + jj_consume_token(MINVALUE); } else if (jj_2_1199(2)) { - jj_consume_token(PARAMETER_ORDINAL_POSITION); + jj_consume_token(MUMPS); } else if (jj_2_1200(2)) { - jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); + jj_consume_token(NANOSECOND); } else if (jj_2_1201(2)) { - jj_consume_token(PASSING); + jj_consume_token(NULLABLE); } else if (jj_2_1202(2)) { - jj_consume_token(PATH); + jj_consume_token(OBJECT); } else if (jj_2_1203(2)) { - jj_consume_token(PLAN); + jj_consume_token(OPTIONS); } else if (jj_2_1204(2)) { - jj_consume_token(PRESERVE); + jj_consume_token(OTHERS); } else if (jj_2_1205(2)) { - jj_consume_token(PUBLIC); + jj_consume_token(PAD); } else if (jj_2_1206(2)) { - jj_consume_token(READ); + jj_consume_token(PARAMETER_ORDINAL_POSITION); } else if (jj_2_1207(2)) { - jj_consume_token(REPLACE); + jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); } else if (jj_2_1208(2)) { - jj_consume_token(RESTRICT); + jj_consume_token(PASSING); } else if (jj_2_1209(2)) { - jj_consume_token(RETURNED_OCTET_LENGTH); + jj_consume_token(PATH); } else if (jj_2_1210(2)) { - jj_consume_token(RLIKE); + jj_consume_token(PLAN); } else if (jj_2_1211(2)) { - jj_consume_token(ROUTINE_CATALOG); + jj_consume_token(PRESERVE); } else if (jj_2_1212(2)) { - jj_consume_token(ROW_COUNT); + jj_consume_token(PUBLIC); } else if (jj_2_1213(2)) { - jj_consume_token(SCHEMA); + jj_consume_token(READ); } else if (jj_2_1214(2)) { - jj_consume_token(SCOPE_NAME); + jj_consume_token(REPLACE); } else if (jj_2_1215(2)) { - jj_consume_token(SECTION); + jj_consume_token(RESTRICT); } else if (jj_2_1216(2)) { - jj_consume_token(SEPARATOR); + jj_consume_token(RETURNED_OCTET_LENGTH); } else if (jj_2_1217(2)) { - jj_consume_token(SERVER); + jj_consume_token(RLIKE); } else if (jj_2_1218(2)) { - jj_consume_token(SETS); + jj_consume_token(ROUTINE_CATALOG); } else if (jj_2_1219(2)) { - jj_consume_token(SOURCE); + jj_consume_token(ROW_COUNT); } else if (jj_2_1220(2)) { - jj_consume_token(SQL_BIGINT); + jj_consume_token(SCHEMA); } else if (jj_2_1221(2)) { - jj_consume_token(SQL_BLOB); + jj_consume_token(SCOPE_NAME); } else if (jj_2_1222(2)) { - jj_consume_token(SQL_CLOB); + jj_consume_token(SECTION); } else if (jj_2_1223(2)) { - jj_consume_token(SQL_DOUBLE); + jj_consume_token(SEPARATOR); } else if (jj_2_1224(2)) { - jj_consume_token(SQL_INTERVAL_DAY); + jj_consume_token(SERVER); } else if (jj_2_1225(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); + jj_consume_token(SETS); } else if (jj_2_1226(2)) { - jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); + jj_consume_token(SOURCE); } else if (jj_2_1227(2)) { - jj_consume_token(SQL_INTERVAL_MONTH); + jj_consume_token(SQL_BIGINT); } else if (jj_2_1228(2)) { - jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); + jj_consume_token(SQL_BLOB); } else if (jj_2_1229(2)) { - jj_consume_token(SQL_LONGVARNCHAR); + jj_consume_token(SQL_CLOB); } else if (jj_2_1230(2)) { - jj_consume_token(SQL_NUMERIC); + jj_consume_token(SQL_DOUBLE); } else if (jj_2_1231(2)) { - jj_consume_token(SQL_SMALLINT); + jj_consume_token(SQL_INTERVAL_DAY); } else if (jj_2_1232(2)) { - jj_consume_token(SQL_TINYINT); + jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); } else if (jj_2_1233(2)) { - jj_consume_token(SQL_TSI_HOUR); + jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); } else if (jj_2_1234(2)) { - jj_consume_token(SQL_TSI_MONTH); + jj_consume_token(SQL_INTERVAL_MONTH); } else if (jj_2_1235(2)) { - jj_consume_token(SQL_TSI_WEEK); + jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); } else if (jj_2_1236(2)) { - jj_consume_token(SQL_VARCHAR); + jj_consume_token(SQL_LONGVARNCHAR); } else if (jj_2_1237(2)) { - jj_consume_token(STRING_AGG); + jj_consume_token(SQL_NUMERIC); } else if (jj_2_1238(2)) { - jj_consume_token(SUBCLASS_ORIGIN); + jj_consume_token(SQL_SMALLINT); } else if (jj_2_1239(2)) { - jj_consume_token(TEMPORARY); + jj_consume_token(SQL_TINYINT); } else if (jj_2_1240(2)) { - jj_consume_token(TIME_TRUNC); + jj_consume_token(SQL_TSI_HOUR); } else if (jj_2_1241(2)) { - jj_consume_token(TIMESTAMP_DIFF); + jj_consume_token(SQL_TSI_MONTH); } else if (jj_2_1242(2)) { - jj_consume_token(TRANSACTION); + jj_consume_token(SQL_TSI_WEEK); } else if (jj_2_1243(2)) { - jj_consume_token(TRANSACTIONS_ROLLED_BACK); + jj_consume_token(SQL_VARCHAR); } else if (jj_2_1244(2)) { - jj_consume_token(TRIGGER_CATALOG); + jj_consume_token(STRING_AGG); } else if (jj_2_1245(2)) { - jj_consume_token(TUMBLE); + jj_consume_token(SUBCLASS_ORIGIN); } else if (jj_2_1246(2)) { - jj_consume_token(UNCOMMITTED); + jj_consume_token(TEMPORARY); } else if (jj_2_1247(2)) { - jj_consume_token(UNPIVOT); + jj_consume_token(TIME_TRUNC); } else if (jj_2_1248(2)) { - jj_consume_token(USER_DEFINED_TYPE_CATALOG); + jj_consume_token(TIMESTAMP_DIFF); } else if (jj_2_1249(2)) { - jj_consume_token(USER_DEFINED_TYPE_SCHEMA); + jj_consume_token(TRANSACTION); } else if (jj_2_1250(2)) { - jj_consume_token(UTF8); + jj_consume_token(TRANSACTIONS_ROLLED_BACK); } else if (jj_2_1251(2)) { - jj_consume_token(WEEK); + jj_consume_token(TRIGGER_CATALOG); } else if (jj_2_1252(2)) { - jj_consume_token(WRAPPER); + jj_consume_token(TUMBLE); } else if (jj_2_1253(2)) { - jj_consume_token(YEARS); + jj_consume_token(UNCOMMITTED); } else if (jj_2_1254(2)) { - jj_consume_token(BACKUPS); + jj_consume_token(UNPIVOT); } else if (jj_2_1255(2)) { - jj_consume_token(WRITE_SYNCHRONIZATION_MODE); + jj_consume_token(USER_DEFINED_TYPE_CATALOG); } else if (jj_2_1256(2)) { - jj_consume_token(DATA_REGION); + jj_consume_token(USER_DEFINED_TYPE_SCHEMA); } else if (jj_2_1257(2)) { - jj_consume_token(WRAP_VALUE); + jj_consume_token(UTF8); } else if (jj_2_1258(2)) { - jj_consume_token(INLINE_SIZE); + jj_consume_token(WEEK); } else if (jj_2_1259(2)) { - jj_consume_token(PASSWORD); + jj_consume_token(WRAPPER); } else if (jj_2_1260(2)) { - jj_consume_token(CONTINUOUS); + jj_consume_token(YEARS); } else if (jj_2_1261(2)) { - jj_consume_token(ASYNC); + jj_consume_token(BACKUPS); } else if (jj_2_1262(2)) { - jj_consume_token(REFRESH); + jj_consume_token(WRITE_SYNCHRONIZATION_MODE); } else if (jj_2_1263(2)) { - jj_consume_token(TOTAL); + jj_consume_token(DATA_REGION); } else if (jj_2_1264(2)) { - jj_consume_token(ALLOW); + jj_consume_token(WRAP_VALUE); } else if (jj_2_1265(2)) { - jj_consume_token(ASENSITIVE); + jj_consume_token(INLINE_SIZE); } else if (jj_2_1266(2)) { - jj_consume_token(ATOMIC); + jj_consume_token(PASSWORD); } else if (jj_2_1267(2)) { - jj_consume_token(BEGIN); + jj_consume_token(CONTINUOUS); } else if (jj_2_1268(2)) { - jj_consume_token(BIGINT); + jj_consume_token(ASYNC); } else if (jj_2_1269(2)) { - jj_consume_token(BLOB); + jj_consume_token(REFRESH); } else if (jj_2_1270(2)) { - jj_consume_token(CALLED); + jj_consume_token(TOTAL); } else if (jj_2_1271(2)) { - jj_consume_token(CEIL); + jj_consume_token(ABS); } else if (jj_2_1272(2)) { - jj_consume_token(CHARACTER); + jj_consume_token(ARE); } else if (jj_2_1273(2)) { - jj_consume_token(CHECK); + jj_consume_token(ASOF); } else if (jj_2_1274(2)) { - jj_consume_token(CLOSE); + jj_consume_token(AUTHORIZATION); } else if (jj_2_1275(2)) { - jj_consume_token(COLLECT); + jj_consume_token(BEGIN_FRAME); } else if (jj_2_1276(2)) { - jj_consume_token(CONNECT); + jj_consume_token(BINARY); } else if (jj_2_1277(2)) { - jj_consume_token(CORR); + jj_consume_token(BOOLEAN); } else if (jj_2_1278(2)) { - jj_consume_token(COVAR_POP); + jj_consume_token(CARDINALITY); } else if (jj_2_1279(2)) { - jj_consume_token(CUME_DIST); + jj_consume_token(CEILING); } else if (jj_2_1280(2)) { - jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); + jj_consume_token(CHARACTER_LENGTH); } else if (jj_2_1281(2)) { - jj_consume_token(CURRENT_ROW); + jj_consume_token(CLASSIFIER); } else if (jj_2_1282(2)) { - jj_consume_token(CYCLE); + jj_consume_token(COALESCE); } else if (jj_2_1283(2)) { - jj_consume_token(DAY); + jj_consume_token(COMMIT); } else if (jj_2_1284(2)) { - jj_consume_token(DECIMAL); + jj_consume_token(CONTAINS); } else if (jj_2_1285(2)) { - jj_consume_token(DENSE_RANK); + jj_consume_token(CORRESPONDING); } else if (jj_2_1286(2)) { - jj_consume_token(DETERMINISTIC); + jj_consume_token(COVAR_SAMP); } else if (jj_2_1287(2)) { - jj_consume_token(DOUBLE); + jj_consume_token(CURRENT); } else if (jj_2_1288(2)) { - jj_consume_token(ELEMENT); + jj_consume_token(CURRENT_PATH); } else if (jj_2_1289(2)) { - jj_consume_token(END_EXEC); + jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); } else if (jj_2_1290(2)) { - jj_consume_token(EQUALS); + jj_consume_token(DATE); } else if (jj_2_1291(2)) { - jj_consume_token(EXEC); + jj_consume_token(DEALLOCATE); } else if (jj_2_1292(2)) { - jj_consume_token(EXTEND); + jj_consume_token(DECLARE); } else if (jj_2_1293(2)) { - jj_consume_token(FILTER); + jj_consume_token(DEREF); } else if (jj_2_1294(2)) { - jj_consume_token(FLOOR); + jj_consume_token(DISALLOW); } else if (jj_2_1295(2)) { - jj_consume_token(FREE); + jj_consume_token(DYNAMIC); } else if (jj_2_1296(2)) { - jj_consume_token(GET); + jj_consume_token(EMPTY); } else if (jj_2_1297(2)) { - jj_consume_token(GROUPING); + jj_consume_token(END_FRAME); } else if (jj_2_1298(2)) { - jj_consume_token(HOUR); + jj_consume_token(ESCAPE); } else if (jj_2_1299(2)) { - jj_consume_token(INDICATOR); + jj_consume_token(EXECUTE); } else if (jj_2_1300(2)) { - jj_consume_token(INSENSITIVE); + jj_consume_token(EXTERNAL); } else if (jj_2_1301(2)) { - jj_consume_token(INTERSECTION); + jj_consume_token(FIRST_VALUE); } else if (jj_2_1302(2)) { - jj_consume_token(JSON_EXISTS); + jj_consume_token(FOREIGN); } else if (jj_2_1303(2)) { - jj_consume_token(JSON_QUERY); + jj_consume_token(FUNCTION); } else if (jj_2_1304(2)) { - jj_consume_token(LAG); + jj_consume_token(GLOBAL); } else if (jj_2_1305(2)) { - jj_consume_token(LAST_VALUE); + jj_consume_token(GROUPS); } else if (jj_2_1306(2)) { - jj_consume_token(LIKE_REGEX); + jj_consume_token(IDENTITY); } else if (jj_2_1307(2)) { - jj_consume_token(LOWER); + jj_consume_token(INITIAL); } else if (jj_2_1308(2)) { - jj_consume_token(MATCH_CONDITION); + jj_consume_token(INT); } else if (jj_2_1309(2)) { - jj_consume_token(MAX); + jj_consume_token(JSON_ARRAY); } else if (jj_2_1310(2)) { - jj_consume_token(MEMBER); + jj_consume_token(JSON_OBJECT); } else if (jj_2_1311(2)) { - jj_consume_token(MINUTE); + jj_consume_token(JSON_SCOPE); } else if (jj_2_1312(2)) { - jj_consume_token(MODULE); + jj_consume_token(LANGUAGE); } else if (jj_2_1313(2)) { - jj_consume_token(NATIONAL); + jj_consume_token(LATERAL); } else if (jj_2_1314(2)) { - jj_consume_token(NEW); + jj_consume_token(LN); } else if (jj_2_1315(2)) { - jj_consume_token(NONE); + jj_consume_token(MATCH); } else if (jj_2_1316(2)) { - jj_consume_token(NTILE); + jj_consume_token(MATCH_NUMBER); } else if (jj_2_1317(2)) { - jj_consume_token(OCCURRENCES_REGEX); + jj_consume_token(MEASURE); } else if (jj_2_1318(2)) { - jj_consume_token(OLD); + jj_consume_token(METHOD); } else if (jj_2_1319(2)) { - jj_consume_token(ONLY); + jj_consume_token(MOD); } else if (jj_2_1320(2)) { - jj_consume_token(OUT); + jj_consume_token(MONTH); } else if (jj_2_1321(2)) { - jj_consume_token(OVERLAY); + jj_consume_token(NCHAR); } else if (jj_2_1322(2)) { - jj_consume_token(PER); + jj_consume_token(NEXT); } else if (jj_2_1323(2)) { - jj_consume_token(PERCENTILE_DISC); + jj_consume_token(NORMALIZE); } else if (jj_2_1324(2)) { - jj_consume_token(PERMUTE); + jj_consume_token(NULLIF); } else if (jj_2_1325(2)) { - jj_consume_token(POSITION_REGEX); + jj_consume_token(OCTET_LENGTH); } else if (jj_2_1326(2)) { - jj_consume_token(PRECISION); + jj_consume_token(OMIT); } else if (jj_2_1327(2)) { - jj_consume_token(PROCEDURE); + jj_consume_token(OPEN); } else if (jj_2_1328(2)) { - jj_consume_token(RANK); + jj_consume_token(OVER); } else if (jj_2_1329(2)) { - jj_consume_token(RECURSIVE); + jj_consume_token(PARAMETER); } else if (jj_2_1330(2)) { - jj_consume_token(REFERENCING); + jj_consume_token(PERCENT); } else if (jj_2_1331(2)) { - jj_consume_token(REGR_COUNT); + jj_consume_token(PERCENT_RANK); } else if (jj_2_1332(2)) { - jj_consume_token(REGR_SLOPE); + jj_consume_token(PORTION); } else if (jj_2_1333(2)) { - jj_consume_token(REGR_SYY); + jj_consume_token(POWER); } else if (jj_2_1334(2)) { - jj_consume_token(RESULT); + jj_consume_token(PREPARE); } else if (jj_2_1335(2)) { - jj_consume_token(REVOKE); + jj_consume_token(QUALIFY); } else if (jj_2_1336(2)) { - jj_consume_token(ROWS); + jj_consume_token(READS); } else if (jj_2_1337(2)) { - jj_consume_token(SAFE_CAST); + jj_consume_token(REF); } else if (jj_2_1338(2)) { - jj_consume_token(SAVEPOINT); + jj_consume_token(REGR_AVGX); } else if (jj_2_1339(2)) { - jj_consume_token(SEARCH); + jj_consume_token(REGR_INTERCEPT); } else if (jj_2_1340(2)) { - jj_consume_token(SENSITIVE); + jj_consume_token(REGR_SXX); } else if (jj_2_1341(2)) { - jj_consume_token(SIMILAR); + jj_consume_token(RELEASE); } else if (jj_2_1342(2)) { - jj_consume_token(SPECIFIC); + jj_consume_token(RETURN); } else if (jj_2_1343(2)) { - jj_consume_token(SQLEXCEPTION); + jj_consume_token(ROLLBACK); } else if (jj_2_1344(2)) { - jj_consume_token(SQRT); + jj_consume_token(ROW_NUMBER); } else if (jj_2_1345(2)) { - jj_consume_token(STDDEV_POP); + jj_consume_token(SAFE_OFFSET); } else if (jj_2_1346(2)) { - jj_consume_token(SUBMULTISET); + jj_consume_token(SCOPE); } else if (jj_2_1347(2)) { - jj_consume_token(SUBSTRING_REGEX); + jj_consume_token(SECOND); } else if (jj_2_1348(2)) { - jj_consume_token(SYSTEM); + jj_consume_token(SESSION_USER); } else if (jj_2_1349(2)) { - jj_consume_token(TABLESAMPLE); + jj_consume_token(SKIP_); } else if (jj_2_1350(2)) { - jj_consume_token(TIMEZONE_HOUR); + jj_consume_token(SPECIFICTYPE); } else if (jj_2_1351(2)) { - jj_consume_token(TRANSLATE); + jj_consume_token(SQLSTATE); } else if (jj_2_1352(2)) { - jj_consume_token(TREAT); + jj_consume_token(START); } else if (jj_2_1353(2)) { - jj_consume_token(TRIM_ARRAY); + jj_consume_token(STDDEV_SAMP); } else if (jj_2_1354(2)) { - jj_consume_token(UESCAPE); + jj_consume_token(SUBSET); } else if (jj_2_1355(2)) { - jj_consume_token(UPPER); + jj_consume_token(SUCCEEDS); } else if (jj_2_1356(2)) { - jj_consume_token(VALUE); + jj_consume_token(SYSTEM_TIME); } else if (jj_2_1357(2)) { - jj_consume_token(VARIANT); + jj_consume_token(TIME); } else if (jj_2_1358(2)) { - jj_consume_token(VAR_POP); + jj_consume_token(TIMEZONE_MINUTE); } else if (jj_2_1359(2)) { - jj_consume_token(WHENEVER); + jj_consume_token(TRANSLATE_REGEX); } else if (jj_2_1360(2)) { - jj_consume_token(WITHIN); + jj_consume_token(TRIGGER); } else if (jj_2_1361(2)) { - jj_consume_token(MONDAY); + jj_consume_token(TRUNCATE); } else if (jj_2_1362(2)) { - jj_consume_token(THURSDAY); + jj_consume_token(UNIQUE); } else if (jj_2_1363(2)) { - jj_consume_token(SUNDAY); + jj_consume_token(UPSERT); + } else if (jj_2_1364(2)) { + jj_consume_token(VALUE_OF); + } else if (jj_2_1365(2)) { + jj_consume_token(VARCHAR); + } else if (jj_2_1366(2)) { + jj_consume_token(VAR_SAMP); + } else if (jj_2_1367(2)) { + jj_consume_token(WIDTH_BUCKET); + } else if (jj_2_1368(2)) { + jj_consume_token(WITHOUT); + } else if (jj_2_1369(2)) { + jj_consume_token(TUESDAY); + } else if (jj_2_1370(2)) { + jj_consume_token(FRIDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -10641,448 +10704,450 @@ final public void NonReservedKeyWord0of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord1of3() throws ParseException { - if (jj_2_1364(2)) { + if (jj_2_1371(2)) { jj_consume_token(ABSENT); - } else if (jj_2_1365(2)) { - jj_consume_token(ADA); - } else if (jj_2_1366(2)) { - jj_consume_token(AFTER); - } else if (jj_2_1367(2)) { - jj_consume_token(ARRAY_AGG); - } else if (jj_2_1368(2)) { - jj_consume_token(ASSERTION); - } else if (jj_2_1369(2)) { - jj_consume_token(ATTRIBUTES); - } else if (jj_2_1370(2)) { - jj_consume_token(BREADTH); - } else if (jj_2_1371(2)) { - jj_consume_token(CATALOG); } else if (jj_2_1372(2)) { - jj_consume_token(CHAIN); + jj_consume_token(ADA); } else if (jj_2_1373(2)) { - jj_consume_token(CHARACTER_SET_CATALOG); + jj_consume_token(AFTER); } else if (jj_2_1374(2)) { - jj_consume_token(CLASS_ORIGIN); + jj_consume_token(ARRAY_AGG); } else if (jj_2_1375(2)) { - jj_consume_token(COLLATION_CATALOG); + jj_consume_token(ASSERTION); } else if (jj_2_1376(2)) { - jj_consume_token(COLUMN_NAME); + jj_consume_token(ATTRIBUTES); } else if (jj_2_1377(2)) { - jj_consume_token(COMMITTED); + jj_consume_token(BREADTH); } else if (jj_2_1378(2)) { - jj_consume_token(CONNECTION); + jj_consume_token(CATALOG); } else if (jj_2_1379(2)) { - jj_consume_token(CONSTRAINT_NAME); + jj_consume_token(CHAIN); } else if (jj_2_1380(2)) { - jj_consume_token(CONSTRUCTOR); + jj_consume_token(CHARACTER_SET_CATALOG); } else if (jj_2_1381(2)) { - jj_consume_token(CURSOR_NAME); + jj_consume_token(CLASS_ORIGIN); } else if (jj_2_1382(2)) { - jj_consume_token(DATE_DIFF); + jj_consume_token(COLLATION_CATALOG); } else if (jj_2_1383(2)) { - jj_consume_token(DATETIME_INTERVAL_CODE); + jj_consume_token(COLUMN_NAME); } else if (jj_2_1384(2)) { - jj_consume_token(DAYOFWEEK); + jj_consume_token(COMMITTED); } else if (jj_2_1385(2)) { - jj_consume_token(DECADE); + jj_consume_token(CONNECTION); } else if (jj_2_1386(2)) { - jj_consume_token(DEFERRED); + jj_consume_token(CONSTRAINT_NAME); } else if (jj_2_1387(2)) { - jj_consume_token(DEGREE); + jj_consume_token(CONSTRUCTOR); } else if (jj_2_1388(2)) { - jj_consume_token(DESC); + jj_consume_token(CURSOR_NAME); } else if (jj_2_1389(2)) { - jj_consume_token(DIAGNOSTICS); + jj_consume_token(DATE_DIFF); } else if (jj_2_1390(2)) { - jj_consume_token(DOW); + jj_consume_token(DATETIME_INTERVAL_CODE); } else if (jj_2_1391(2)) { - jj_consume_token(DYNAMIC_FUNCTION); + jj_consume_token(DAYOFWEEK); } else if (jj_2_1392(2)) { - jj_consume_token(EPOCH); + jj_consume_token(DECADE); } else if (jj_2_1393(2)) { - jj_consume_token(EXCLUDE); + jj_consume_token(DEFERRED); } else if (jj_2_1394(2)) { - jj_consume_token(FIRST); + jj_consume_token(DEGREE); } else if (jj_2_1395(2)) { - jj_consume_token(FORTRAN); + jj_consume_token(DESC); } else if (jj_2_1396(2)) { - jj_consume_token(G); + jj_consume_token(DIAGNOSTICS); } else if (jj_2_1397(2)) { - jj_consume_token(GEOMETRY); + jj_consume_token(DOW); } else if (jj_2_1398(2)) { - jj_consume_token(GRANTED); + jj_consume_token(DYNAMIC_FUNCTION); } else if (jj_2_1399(2)) { - jj_consume_token(HOP); + jj_consume_token(EPOCH); } else if (jj_2_1400(2)) { - jj_consume_token(ILIKE); + jj_consume_token(EXCLUDE); } else if (jj_2_1401(2)) { - jj_consume_token(IMPLEMENTATION); + jj_consume_token(FIRST); } else if (jj_2_1402(2)) { - jj_consume_token(INCREMENT); + jj_consume_token(FORTRAN); } else if (jj_2_1403(2)) { - jj_consume_token(INSTANCE); + jj_consume_token(G); } else if (jj_2_1404(2)) { - jj_consume_token(ISODOW); + jj_consume_token(GEOMETRY); } else if (jj_2_1405(2)) { - jj_consume_token(JAVA); + jj_consume_token(GRANTED); } else if (jj_2_1406(2)) { - jj_consume_token(KEY); + jj_consume_token(HOP); } else if (jj_2_1407(2)) { - jj_consume_token(LABEL); + jj_consume_token(ILIKE); } else if (jj_2_1408(2)) { - jj_consume_token(LEVEL); + jj_consume_token(IMPLEMENTATION); } else if (jj_2_1409(2)) { - jj_consume_token(M); + jj_consume_token(INCREMENT); } else if (jj_2_1410(2)) { - jj_consume_token(MAXVALUE); + jj_consume_token(INSTANCE); } else if (jj_2_1411(2)) { - jj_consume_token(MESSAGE_TEXT); + jj_consume_token(ISODOW); } else if (jj_2_1412(2)) { - jj_consume_token(MILLISECOND); + jj_consume_token(JAVA); } else if (jj_2_1413(2)) { - jj_consume_token(MONTHS); + jj_consume_token(KEY); } else if (jj_2_1414(2)) { - jj_consume_token(NAME); + jj_consume_token(LABEL); } else if (jj_2_1415(2)) { - jj_consume_token(NESTING); + jj_consume_token(LEVEL); } else if (jj_2_1416(2)) { - jj_consume_token(NULLS); + jj_consume_token(M); } else if (jj_2_1417(2)) { - jj_consume_token(OCTETS); + jj_consume_token(MAXVALUE); } else if (jj_2_1418(2)) { - jj_consume_token(ORDERING); + jj_consume_token(MESSAGE_TEXT); } else if (jj_2_1419(2)) { - jj_consume_token(OUTPUT); + jj_consume_token(MILLISECOND); } else if (jj_2_1420(2)) { - jj_consume_token(PARAMETER_MODE); + jj_consume_token(MONTHS); } else if (jj_2_1421(2)) { - jj_consume_token(PARAMETER_SPECIFIC_CATALOG); + jj_consume_token(NAME); } else if (jj_2_1422(2)) { - jj_consume_token(PARTIAL); + jj_consume_token(NESTING); } else if (jj_2_1423(2)) { - jj_consume_token(PASSTHROUGH); + jj_consume_token(NULLS); } else if (jj_2_1424(2)) { - jj_consume_token(PIVOT); + jj_consume_token(OCTETS); } else if (jj_2_1425(2)) { - jj_consume_token(PLI); + jj_consume_token(ORDERING); } else if (jj_2_1426(2)) { - jj_consume_token(PRIOR); + jj_consume_token(OUTPUT); } else if (jj_2_1427(2)) { - jj_consume_token(QUARTER); + jj_consume_token(PARAMETER_MODE); } else if (jj_2_1428(2)) { - jj_consume_token(RELATIVE); + jj_consume_token(PARAMETER_SPECIFIC_CATALOG); } else if (jj_2_1429(2)) { - jj_consume_token(RESPECT); + jj_consume_token(PARTIAL); } else if (jj_2_1430(2)) { - jj_consume_token(RETURNED_CARDINALITY); + jj_consume_token(PASSTHROUGH); } else if (jj_2_1431(2)) { - jj_consume_token(RETURNED_SQLSTATE); + jj_consume_token(PIVOT); } else if (jj_2_1432(2)) { - jj_consume_token(ROLE); + jj_consume_token(PLI); } else if (jj_2_1433(2)) { - jj_consume_token(ROUTINE_NAME); + jj_consume_token(PRIOR); } else if (jj_2_1434(2)) { - jj_consume_token(SCALAR); + jj_consume_token(QUARTER); } else if (jj_2_1435(2)) { - jj_consume_token(SCHEMA_NAME); + jj_consume_token(RELATIVE); } else if (jj_2_1436(2)) { - jj_consume_token(SCOPE_SCHEMA); + jj_consume_token(RESPECT); } else if (jj_2_1437(2)) { - jj_consume_token(SECURITY); + jj_consume_token(RETURNED_CARDINALITY); } else if (jj_2_1438(2)) { - jj_consume_token(SEQUENCE); + jj_consume_token(RETURNED_SQLSTATE); } else if (jj_2_1439(2)) { - jj_consume_token(SERVER_NAME); + jj_consume_token(ROLE); } else if (jj_2_1440(2)) { - jj_consume_token(SIMPLE); + jj_consume_token(ROUTINE_NAME); } else if (jj_2_1441(2)) { - jj_consume_token(SPACE); + jj_consume_token(SCALAR); } else if (jj_2_1442(2)) { - jj_consume_token(SQL_BINARY); + jj_consume_token(SCHEMA_NAME); } else if (jj_2_1443(2)) { - jj_consume_token(SQL_BOOLEAN); + jj_consume_token(SCOPE_SCHEMA); } else if (jj_2_1444(2)) { - jj_consume_token(SQL_DATE); + jj_consume_token(SECURITY); } else if (jj_2_1445(2)) { - jj_consume_token(SQL_FLOAT); + jj_consume_token(SEQUENCE); } else if (jj_2_1446(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); + jj_consume_token(SERVER_NAME); } else if (jj_2_1447(2)) { - jj_consume_token(SQL_INTERVAL_HOUR); + jj_consume_token(SIMPLE); } else if (jj_2_1448(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE); + jj_consume_token(SPACE); } else if (jj_2_1449(2)) { - jj_consume_token(SQL_INTERVAL_SECOND); + jj_consume_token(SQL_BINARY); } else if (jj_2_1450(2)) { - jj_consume_token(SQL_LONGVARBINARY); + jj_consume_token(SQL_BOOLEAN); } else if (jj_2_1451(2)) { - jj_consume_token(SQL_NCHAR); + jj_consume_token(SQL_DATE); } else if (jj_2_1452(2)) { - jj_consume_token(SQL_NVARCHAR); + jj_consume_token(SQL_FLOAT); } else if (jj_2_1453(2)) { - jj_consume_token(SQL_TIME); + jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); } else if (jj_2_1454(2)) { - jj_consume_token(SQL_TSI_DAY); + jj_consume_token(SQL_INTERVAL_HOUR); } else if (jj_2_1455(2)) { - jj_consume_token(SQL_TSI_MICROSECOND); + jj_consume_token(SQL_INTERVAL_MINUTE); } else if (jj_2_1456(2)) { - jj_consume_token(SQL_TSI_QUARTER); + jj_consume_token(SQL_INTERVAL_SECOND); } else if (jj_2_1457(2)) { - jj_consume_token(SQL_TSI_YEAR); + jj_consume_token(SQL_LONGVARBINARY); } else if (jj_2_1458(2)) { - jj_consume_token(STATE); + jj_consume_token(SQL_NCHAR); } else if (jj_2_1459(2)) { - jj_consume_token(STRUCTURE); + jj_consume_token(SQL_NVARCHAR); } else if (jj_2_1460(2)) { - jj_consume_token(SUBSTITUTE); + jj_consume_token(SQL_TIME); } else if (jj_2_1461(2)) { - jj_consume_token(TIES); + jj_consume_token(SQL_TSI_DAY); } else if (jj_2_1462(2)) { - jj_consume_token(TIMESTAMPADD); + jj_consume_token(SQL_TSI_MICROSECOND); } else if (jj_2_1463(2)) { - jj_consume_token(TIMESTAMP_TRUNC); + jj_consume_token(SQL_TSI_QUARTER); } else if (jj_2_1464(2)) { - jj_consume_token(TRANSACTIONS_ACTIVE); + jj_consume_token(SQL_TSI_YEAR); } else if (jj_2_1465(2)) { - jj_consume_token(TRANSFORM); + jj_consume_token(STATE); } else if (jj_2_1466(2)) { - jj_consume_token(TRIGGER_NAME); + jj_consume_token(STRUCTURE); } else if (jj_2_1467(2)) { - jj_consume_token(TYPE); + jj_consume_token(SUBSTITUTE); } else if (jj_2_1468(2)) { - jj_consume_token(UNCONDITIONAL); + jj_consume_token(TIES); } else if (jj_2_1469(2)) { - jj_consume_token(UNNAMED); + jj_consume_token(TIMESTAMPADD); } else if (jj_2_1470(2)) { - jj_consume_token(USER_DEFINED_TYPE_CODE); + jj_consume_token(TIMESTAMP_TRUNC); } else if (jj_2_1471(2)) { - jj_consume_token(UTF16); + jj_consume_token(TRANSACTIONS_ACTIVE); } else if (jj_2_1472(2)) { - jj_consume_token(VERSION); + jj_consume_token(TRANSFORM); } else if (jj_2_1473(2)) { - jj_consume_token(WEEKS); + jj_consume_token(TRIGGER_NAME); } else if (jj_2_1474(2)) { - jj_consume_token(WRITE); + jj_consume_token(TYPE); } else if (jj_2_1475(2)) { - jj_consume_token(ZONE); + jj_consume_token(UNCONDITIONAL); } else if (jj_2_1476(2)) { - jj_consume_token(AFFINITY_KEY); + jj_consume_token(UNNAMED); } else if (jj_2_1477(2)) { - jj_consume_token(CACHE_GROUP); + jj_consume_token(USER_DEFINED_TYPE_CODE); } else if (jj_2_1478(2)) { - jj_consume_token(VALUE_TYPE); + jj_consume_token(UTF16); } else if (jj_2_1479(2)) { - jj_consume_token(ENCRYPTED); + jj_consume_token(VERSION); } else if (jj_2_1480(2)) { - jj_consume_token(LOGGING); + jj_consume_token(WEEKS); } else if (jj_2_1481(2)) { - jj_consume_token(KILL); + jj_consume_token(WRITE); } else if (jj_2_1482(2)) { - jj_consume_token(SERVICE); + jj_consume_token(ZONE); } else if (jj_2_1483(2)) { - jj_consume_token(QUERY); + jj_consume_token(AFFINITY_KEY); } else if (jj_2_1484(2)) { - jj_consume_token(ANALYZE); + jj_consume_token(CACHE_GROUP); } else if (jj_2_1485(2)) { - jj_consume_token(ABS); + jj_consume_token(VALUE_TYPE); } else if (jj_2_1486(2)) { - jj_consume_token(ARE); + jj_consume_token(ENCRYPTED); } else if (jj_2_1487(2)) { - jj_consume_token(ASOF); + jj_consume_token(LOGGING); } else if (jj_2_1488(2)) { - jj_consume_token(AUTHORIZATION); + jj_consume_token(KILL); } else if (jj_2_1489(2)) { - jj_consume_token(BEGIN_FRAME); + jj_consume_token(SERVICE); } else if (jj_2_1490(2)) { - jj_consume_token(BINARY); + jj_consume_token(QUERY); } else if (jj_2_1491(2)) { - jj_consume_token(BOOLEAN); + jj_consume_token(ANALYZE); } else if (jj_2_1492(2)) { - jj_consume_token(CARDINALITY); + jj_consume_token(WAIT); } else if (jj_2_1493(2)) { - jj_consume_token(CEILING); + jj_consume_token(ALLOCATE); } else if (jj_2_1494(2)) { - jj_consume_token(CHARACTER_LENGTH); + jj_consume_token(ARRAY_MAX_CARDINALITY); } else if (jj_2_1495(2)) { - jj_consume_token(CLASSIFIER); + jj_consume_token(AT); } else if (jj_2_1496(2)) { - jj_consume_token(COALESCE); + jj_consume_token(AVG); } else if (jj_2_1497(2)) { - jj_consume_token(COMMIT); + jj_consume_token(BEGIN_PARTITION); } else if (jj_2_1498(2)) { - jj_consume_token(CONTAINS); + jj_consume_token(BIT); } else if (jj_2_1499(2)) { - jj_consume_token(CORRESPONDING); + jj_consume_token(CALL); } else if (jj_2_1500(2)) { - jj_consume_token(COVAR_SAMP); + jj_consume_token(CASCADED); } else if (jj_2_1501(2)) { - jj_consume_token(CURRENT); + jj_consume_token(CHAR); } else if (jj_2_1502(2)) { - jj_consume_token(CURRENT_PATH); + jj_consume_token(CHAR_LENGTH); } else if (jj_2_1503(2)) { - jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); + jj_consume_token(CLOB); } else if (jj_2_1504(2)) { - jj_consume_token(DATE); + jj_consume_token(COLLATE); } else if (jj_2_1505(2)) { - jj_consume_token(DEALLOCATE); + jj_consume_token(CONDITION); } else if (jj_2_1506(2)) { - jj_consume_token(DECLARE); + jj_consume_token(CONVERT); } else if (jj_2_1507(2)) { - jj_consume_token(DEREF); + jj_consume_token(COUNT); } else if (jj_2_1508(2)) { - jj_consume_token(DISALLOW); + jj_consume_token(CUBE); } else if (jj_2_1509(2)) { - jj_consume_token(DYNAMIC); + jj_consume_token(CURRENT_CATALOG); } else if (jj_2_1510(2)) { - jj_consume_token(EMPTY); + jj_consume_token(CURRENT_ROLE); } else if (jj_2_1511(2)) { - jj_consume_token(END_FRAME); + jj_consume_token(CURSOR); } else if (jj_2_1512(2)) { - jj_consume_token(ESCAPE); + jj_consume_token(DATETIME); } else if (jj_2_1513(2)) { - jj_consume_token(EXECUTE); + jj_consume_token(DEC); } else if (jj_2_1514(2)) { - jj_consume_token(EXTERNAL); + jj_consume_token(DEFINE); } else if (jj_2_1515(2)) { - jj_consume_token(FIRST_VALUE); + jj_consume_token(DESCRIBE); } else if (jj_2_1516(2)) { - jj_consume_token(FOREIGN); + jj_consume_token(DISCONNECT); } else if (jj_2_1517(2)) { - jj_consume_token(FUNCTION); + jj_consume_token(EACH); } else if (jj_2_1518(2)) { - jj_consume_token(GLOBAL); + jj_consume_token(END); } else if (jj_2_1519(2)) { - jj_consume_token(GROUPS); + jj_consume_token(END_PARTITION); } else if (jj_2_1520(2)) { - jj_consume_token(IDENTITY); + jj_consume_token(EVERY); } else if (jj_2_1521(2)) { - jj_consume_token(INITIAL); + jj_consume_token(EXP); } else if (jj_2_1522(2)) { - jj_consume_token(INT); + jj_consume_token(EXTRACT); } else if (jj_2_1523(2)) { - jj_consume_token(JSON_ARRAY); + jj_consume_token(FLOAT); } else if (jj_2_1524(2)) { - jj_consume_token(JSON_OBJECT); + jj_consume_token(FRAME_ROW); } else if (jj_2_1525(2)) { - jj_consume_token(JSON_SCOPE); + jj_consume_token(FUSION); } else if (jj_2_1526(2)) { - jj_consume_token(LANGUAGE); + jj_consume_token(GRANT); } else if (jj_2_1527(2)) { - jj_consume_token(LATERAL); + jj_consume_token(HOLD); } else if (jj_2_1528(2)) { - jj_consume_token(LN); + jj_consume_token(IMPORT); } else if (jj_2_1529(2)) { - jj_consume_token(MATCH); + jj_consume_token(INOUT); } else if (jj_2_1530(2)) { - jj_consume_token(MATCH_NUMBER); + jj_consume_token(INTEGER); } else if (jj_2_1531(2)) { - jj_consume_token(MEASURE); + jj_consume_token(JSON_ARRAYAGG); } else if (jj_2_1532(2)) { - jj_consume_token(METHOD); + jj_consume_token(JSON_OBJECTAGG); } else if (jj_2_1533(2)) { - jj_consume_token(MOD); + jj_consume_token(JSON_VALUE); } else if (jj_2_1534(2)) { - jj_consume_token(MONTH); + jj_consume_token(LARGE); } else if (jj_2_1535(2)) { - jj_consume_token(NCHAR); + jj_consume_token(LEAD); } else if (jj_2_1536(2)) { - jj_consume_token(NEXT); + jj_consume_token(LOCAL); } else if (jj_2_1537(2)) { - jj_consume_token(NORMALIZE); + jj_consume_token(MATCHES); } else if (jj_2_1538(2)) { - jj_consume_token(NULLIF); + jj_consume_token(MATCH_RECOGNIZE); } else if (jj_2_1539(2)) { - jj_consume_token(OCTET_LENGTH); + jj_consume_token(MEASURES); } else if (jj_2_1540(2)) { - jj_consume_token(OMIT); + jj_consume_token(MIN); } else if (jj_2_1541(2)) { - jj_consume_token(OPEN); + jj_consume_token(MODIFIES); } else if (jj_2_1542(2)) { - jj_consume_token(OVER); + jj_consume_token(MULTISET); } else if (jj_2_1543(2)) { - jj_consume_token(PARAMETER); + jj_consume_token(NCLOB); } else if (jj_2_1544(2)) { - jj_consume_token(PERCENT); + jj_consume_token(NO); } else if (jj_2_1545(2)) { - jj_consume_token(PERCENT_RANK); + jj_consume_token(NTH_VALUE); } else if (jj_2_1546(2)) { - jj_consume_token(PORTION); + jj_consume_token(NUMERIC); } else if (jj_2_1547(2)) { - jj_consume_token(POWER); + jj_consume_token(OF); } else if (jj_2_1548(2)) { - jj_consume_token(PREPARE); + jj_consume_token(ONE); } else if (jj_2_1549(2)) { - jj_consume_token(QUALIFY); + jj_consume_token(ORDINAL); } else if (jj_2_1550(2)) { - jj_consume_token(READS); + jj_consume_token(OVERLAPS); } else if (jj_2_1551(2)) { - jj_consume_token(REF); + jj_consume_token(PATTERN); } else if (jj_2_1552(2)) { - jj_consume_token(REGR_AVGX); + jj_consume_token(PERCENTILE_CONT); } else if (jj_2_1553(2)) { - jj_consume_token(REGR_INTERCEPT); + jj_consume_token(PERIOD); } else if (jj_2_1554(2)) { - jj_consume_token(REGR_SXX); + jj_consume_token(POSITION); } else if (jj_2_1555(2)) { - jj_consume_token(RELEASE); + jj_consume_token(PRECEDES); } else if (jj_2_1556(2)) { - jj_consume_token(RETURN); + jj_consume_token(PREV); } else if (jj_2_1557(2)) { - jj_consume_token(ROLLBACK); + jj_consume_token(RANGE); } else if (jj_2_1558(2)) { - jj_consume_token(ROW_NUMBER); + jj_consume_token(REAL); } else if (jj_2_1559(2)) { - jj_consume_token(SAFE_OFFSET); + jj_consume_token(REFERENCES); } else if (jj_2_1560(2)) { - jj_consume_token(SCOPE); + jj_consume_token(REGR_AVGY); } else if (jj_2_1561(2)) { - jj_consume_token(SECOND); + jj_consume_token(REGR_R2); } else if (jj_2_1562(2)) { - jj_consume_token(SESSION_USER); + jj_consume_token(REGR_SXY); } else if (jj_2_1563(2)) { - jj_consume_token(SKIP_); + jj_consume_token(RESET); } else if (jj_2_1564(2)) { - jj_consume_token(SPECIFICTYPE); + jj_consume_token(RETURNS); } else if (jj_2_1565(2)) { - jj_consume_token(SQLSTATE); + jj_consume_token(ROLLUP); } else if (jj_2_1566(2)) { - jj_consume_token(START); + jj_consume_token(RUNNING); } else if (jj_2_1567(2)) { - jj_consume_token(STDDEV_SAMP); + jj_consume_token(SAFE_ORDINAL); } else if (jj_2_1568(2)) { - jj_consume_token(SUBSET); + jj_consume_token(SCROLL); } else if (jj_2_1569(2)) { - jj_consume_token(SUCCEEDS); + jj_consume_token(SEEK); } else if (jj_2_1570(2)) { - jj_consume_token(SYSTEM_TIME); + jj_consume_token(SHOW); } else if (jj_2_1571(2)) { - jj_consume_token(TIME); + jj_consume_token(SMALLINT); } else if (jj_2_1572(2)) { - jj_consume_token(TIMEZONE_MINUTE); + jj_consume_token(SQL); } else if (jj_2_1573(2)) { - jj_consume_token(TRANSLATE_REGEX); + jj_consume_token(SQLWARNING); } else if (jj_2_1574(2)) { - jj_consume_token(TRIGGER); + jj_consume_token(STATIC); } else if (jj_2_1575(2)) { - jj_consume_token(TRUNCATE); + jj_consume_token(STREAM); } else if (jj_2_1576(2)) { - jj_consume_token(UNIQUE); + jj_consume_token(SUBSTRING); } else if (jj_2_1577(2)) { - jj_consume_token(UPSERT); + jj_consume_token(SUM); } else if (jj_2_1578(2)) { - jj_consume_token(VALUE_OF); + jj_consume_token(SYSTEM_USER); } else if (jj_2_1579(2)) { - jj_consume_token(VARCHAR); + jj_consume_token(TIMESTAMP); } else if (jj_2_1580(2)) { - jj_consume_token(VAR_SAMP); + jj_consume_token(TINYINT); } else if (jj_2_1581(2)) { - jj_consume_token(WIDTH_BUCKET); + jj_consume_token(TRANSLATION); } else if (jj_2_1582(2)) { - jj_consume_token(WITHOUT); + jj_consume_token(TRIM); } else if (jj_2_1583(2)) { - jj_consume_token(TUESDAY); + jj_consume_token(TRY_CAST); } else if (jj_2_1584(2)) { - jj_consume_token(FRIDAY); + jj_consume_token(UNKNOWN); + } else if (jj_2_1585(2)) { + jj_consume_token(UUID); + } else if (jj_2_1586(2)) { + jj_consume_token(VARBINARY); + } else if (jj_2_1587(2)) { + jj_consume_token(VARYING); + } else if (jj_2_1588(2)) { + jj_consume_token(VERSIONING); + } else if (jj_2_1589(2)) { + jj_consume_token(WINDOW); + } else if (jj_2_1590(2)) { + jj_consume_token(YEAR); + } else if (jj_2_1591(2)) { + jj_consume_token(WEDNESDAY); + } else if (jj_2_1592(2)) { + jj_consume_token(SATURDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -11091,448 +11156,450 @@ final public void NonReservedKeyWord1of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord2of3() throws ParseException { - if (jj_2_1585(2)) { + if (jj_2_1593(2)) { jj_consume_token(ABSOLUTE); - } else if (jj_2_1586(2)) { - jj_consume_token(ADD); - } else if (jj_2_1587(2)) { - jj_consume_token(ALWAYS); - } else if (jj_2_1588(2)) { - jj_consume_token(ARRAY_CONCAT_AGG); - } else if (jj_2_1589(2)) { - jj_consume_token(ASSIGNMENT); - } else if (jj_2_1590(2)) { - jj_consume_token(BEFORE); - } else if (jj_2_1591(2)) { - jj_consume_token(C); - } else if (jj_2_1592(2)) { - jj_consume_token(CATALOG_NAME); - } else if (jj_2_1593(2)) { - jj_consume_token(CHARACTERISTICS); } else if (jj_2_1594(2)) { - jj_consume_token(CHARACTER_SET_NAME); + jj_consume_token(ADD); } else if (jj_2_1595(2)) { - jj_consume_token(COBOL); + jj_consume_token(ALWAYS); } else if (jj_2_1596(2)) { - jj_consume_token(COLLATION_NAME); + jj_consume_token(ARRAY_CONCAT_AGG); } else if (jj_2_1597(2)) { - jj_consume_token(COMMAND_FUNCTION); + jj_consume_token(ASSIGNMENT); } else if (jj_2_1598(2)) { - jj_consume_token(CONDITIONAL); + jj_consume_token(BEFORE); } else if (jj_2_1599(2)) { - jj_consume_token(CONNECTION_NAME); + jj_consume_token(C); } else if (jj_2_1600(2)) { - jj_consume_token(CONSTRAINTS); + jj_consume_token(CATALOG_NAME); } else if (jj_2_1601(2)) { - jj_consume_token(CONTAINS_SUBSTR); + jj_consume_token(CHARACTERISTICS); } else if (jj_2_1602(2)) { - jj_consume_token(DATA); + jj_consume_token(CHARACTER_SET_NAME); } else if (jj_2_1603(2)) { - jj_consume_token(DATE_TRUNC); + jj_consume_token(COBOL); } else if (jj_2_1604(2)) { - jj_consume_token(DATETIME_INTERVAL_PRECISION); + jj_consume_token(COLLATION_NAME); } else if (jj_2_1605(2)) { - jj_consume_token(DAYOFYEAR); + jj_consume_token(COMMAND_FUNCTION); } else if (jj_2_1606(2)) { - jj_consume_token(DEFAULTS); + jj_consume_token(CONDITIONAL); } else if (jj_2_1607(2)) { - jj_consume_token(DEFINED); + jj_consume_token(CONNECTION_NAME); } else if (jj_2_1608(2)) { - jj_consume_token(DEPTH); + jj_consume_token(CONSTRAINTS); } else if (jj_2_1609(2)) { - jj_consume_token(DESCRIPTION); + jj_consume_token(CONTAINS_SUBSTR); } else if (jj_2_1610(2)) { - jj_consume_token(DISPATCH); + jj_consume_token(DATA); } else if (jj_2_1611(2)) { - jj_consume_token(DOY); + jj_consume_token(DATE_TRUNC); } else if (jj_2_1612(2)) { - jj_consume_token(DYNAMIC_FUNCTION_CODE); + jj_consume_token(DATETIME_INTERVAL_PRECISION); } else if (jj_2_1613(2)) { - jj_consume_token(ERROR); + jj_consume_token(DAYOFYEAR); } else if (jj_2_1614(2)) { - jj_consume_token(EXCLUDING); + jj_consume_token(DEFAULTS); } else if (jj_2_1615(2)) { - jj_consume_token(FOLLOWING); + jj_consume_token(DEFINED); } else if (jj_2_1616(2)) { - jj_consume_token(FOUND); + jj_consume_token(DEPTH); } else if (jj_2_1617(2)) { - jj_consume_token(GENERAL); + jj_consume_token(DESCRIPTION); } else if (jj_2_1618(2)) { - jj_consume_token(GO); + jj_consume_token(DISPATCH); } else if (jj_2_1619(2)) { - jj_consume_token(GROUP_CONCAT); + jj_consume_token(DOY); } else if (jj_2_1620(2)) { - jj_consume_token(HOURS); + jj_consume_token(DYNAMIC_FUNCTION_CODE); } else if (jj_2_1621(2)) { - jj_consume_token(IMMEDIATE); + jj_consume_token(ERROR); } else if (jj_2_1622(2)) { - jj_consume_token(INCLUDE); + jj_consume_token(EXCLUDING); } else if (jj_2_1623(2)) { - jj_consume_token(INITIALLY); + jj_consume_token(FOLLOWING); } else if (jj_2_1624(2)) { - jj_consume_token(INSTANTIABLE); + jj_consume_token(FOUND); } else if (jj_2_1625(2)) { - jj_consume_token(ISOLATION); + jj_consume_token(GENERAL); } else if (jj_2_1626(2)) { - jj_consume_token(JSON); + jj_consume_token(GO); } else if (jj_2_1627(2)) { - jj_consume_token(KEY_MEMBER); + jj_consume_token(GROUP_CONCAT); } else if (jj_2_1628(2)) { - jj_consume_token(LAST); + jj_consume_token(HOURS); } else if (jj_2_1629(2)) { - jj_consume_token(LIBRARY); + jj_consume_token(IMMEDIATE); } else if (jj_2_1630(2)) { - jj_consume_token(MAP); + jj_consume_token(INCLUDE); } else if (jj_2_1631(2)) { - jj_consume_token(MESSAGE_LENGTH); + jj_consume_token(INITIALLY); } else if (jj_2_1632(2)) { - jj_consume_token(MICROSECOND); + jj_consume_token(INSTANTIABLE); } else if (jj_2_1633(2)) { - jj_consume_token(MINUTES); + jj_consume_token(ISOLATION); } else if (jj_2_1634(2)) { - jj_consume_token(MORE_); + jj_consume_token(JSON); } else if (jj_2_1635(2)) { - jj_consume_token(NAMES); + jj_consume_token(KEY_MEMBER); } else if (jj_2_1636(2)) { - jj_consume_token(NORMALIZED); + jj_consume_token(LAST); } else if (jj_2_1637(2)) { - jj_consume_token(NUMBER); + jj_consume_token(LIBRARY); } else if (jj_2_1638(2)) { - jj_consume_token(OPTION); + jj_consume_token(MAP); } else if (jj_2_1639(2)) { - jj_consume_token(ORDINALITY); + jj_consume_token(MESSAGE_LENGTH); } else if (jj_2_1640(2)) { - jj_consume_token(OVERRIDING); + jj_consume_token(MICROSECOND); } else if (jj_2_1641(2)) { - jj_consume_token(PARAMETER_NAME); + jj_consume_token(MINUTES); } else if (jj_2_1642(2)) { - jj_consume_token(PARAMETER_SPECIFIC_NAME); + jj_consume_token(MORE_); } else if (jj_2_1643(2)) { - jj_consume_token(PASCAL); + jj_consume_token(NAMES); } else if (jj_2_1644(2)) { - jj_consume_token(PAST); + jj_consume_token(NORMALIZED); } else if (jj_2_1645(2)) { - jj_consume_token(PLACING); + jj_consume_token(NUMBER); } else if (jj_2_1646(2)) { - jj_consume_token(PRECEDING); + jj_consume_token(OPTION); } else if (jj_2_1647(2)) { - jj_consume_token(PRIVILEGES); + jj_consume_token(ORDINALITY); } else if (jj_2_1648(2)) { - jj_consume_token(QUARTERS); + jj_consume_token(OVERRIDING); } else if (jj_2_1649(2)) { - jj_consume_token(REPEATABLE); + jj_consume_token(PARAMETER_NAME); } else if (jj_2_1650(2)) { - jj_consume_token(RESTART); + jj_consume_token(PARAMETER_SPECIFIC_NAME); } else if (jj_2_1651(2)) { - jj_consume_token(RETURNED_LENGTH); + jj_consume_token(PASCAL); } else if (jj_2_1652(2)) { - jj_consume_token(RETURNING); + jj_consume_token(PAST); } else if (jj_2_1653(2)) { - jj_consume_token(ROUTINE); + jj_consume_token(PLACING); } else if (jj_2_1654(2)) { - jj_consume_token(ROUTINE_SCHEMA); + jj_consume_token(PRECEDING); } else if (jj_2_1655(2)) { - jj_consume_token(SCALE); + jj_consume_token(PRIVILEGES); } else if (jj_2_1656(2)) { - jj_consume_token(SCOPE_CATALOGS); + jj_consume_token(QUARTERS); } else if (jj_2_1657(2)) { - jj_consume_token(SECONDS); + jj_consume_token(REPEATABLE); } else if (jj_2_1658(2)) { - jj_consume_token(SELF); + jj_consume_token(RESTART); } else if (jj_2_1659(2)) { - jj_consume_token(SERIALIZABLE); + jj_consume_token(RETURNED_LENGTH); } else if (jj_2_1660(2)) { - jj_consume_token(SESSION); + jj_consume_token(RETURNING); } else if (jj_2_1661(2)) { - jj_consume_token(SIZE); + jj_consume_token(ROUTINE); } else if (jj_2_1662(2)) { - jj_consume_token(SPECIFIC_NAME); + jj_consume_token(ROUTINE_SCHEMA); } else if (jj_2_1663(2)) { - jj_consume_token(SQL_BIT); + jj_consume_token(SCALE); } else if (jj_2_1664(2)) { - jj_consume_token(SQL_CHAR); + jj_consume_token(SCOPE_CATALOGS); } else if (jj_2_1665(2)) { - jj_consume_token(SQL_DECIMAL); + jj_consume_token(SECONDS); } else if (jj_2_1666(2)) { - jj_consume_token(SQL_INTEGER); + jj_consume_token(SELF); } else if (jj_2_1667(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); + jj_consume_token(SERIALIZABLE); } else if (jj_2_1668(2)) { - jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); + jj_consume_token(SESSION); } else if (jj_2_1669(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); + jj_consume_token(SIZE); } else if (jj_2_1670(2)) { - jj_consume_token(SQL_INTERVAL_YEAR); + jj_consume_token(SPECIFIC_NAME); } else if (jj_2_1671(2)) { - jj_consume_token(SQL_LONGVARCHAR); + jj_consume_token(SQL_BIT); } else if (jj_2_1672(2)) { - jj_consume_token(SQL_NCLOB); + jj_consume_token(SQL_CHAR); } else if (jj_2_1673(2)) { - jj_consume_token(SQL_REAL); + jj_consume_token(SQL_DECIMAL); } else if (jj_2_1674(2)) { - jj_consume_token(SQL_TIMESTAMP); + jj_consume_token(SQL_INTEGER); } else if (jj_2_1675(2)) { - jj_consume_token(SQL_TSI_FRAC_SECOND); + jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); } else if (jj_2_1676(2)) { - jj_consume_token(SQL_TSI_MINUTE); + jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); } else if (jj_2_1677(2)) { - jj_consume_token(SQL_TSI_SECOND); + jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); } else if (jj_2_1678(2)) { - jj_consume_token(SQL_VARBINARY); + jj_consume_token(SQL_INTERVAL_YEAR); } else if (jj_2_1679(2)) { - jj_consume_token(STATEMENT); + jj_consume_token(SQL_LONGVARCHAR); } else if (jj_2_1680(2)) { - jj_consume_token(STYLE); + jj_consume_token(SQL_NCLOB); } else if (jj_2_1681(2)) { - jj_consume_token(TABLE_NAME); + jj_consume_token(SQL_REAL); } else if (jj_2_1682(2)) { - jj_consume_token(TIME_DIFF); + jj_consume_token(SQL_TIMESTAMP); } else if (jj_2_1683(2)) { - jj_consume_token(TIMESTAMPDIFF); + jj_consume_token(SQL_TSI_FRAC_SECOND); } else if (jj_2_1684(2)) { - jj_consume_token(TOP_LEVEL_COUNT); + jj_consume_token(SQL_TSI_MINUTE); } else if (jj_2_1685(2)) { - jj_consume_token(TRANSACTIONS_COMMITTED); + jj_consume_token(SQL_TSI_SECOND); } else if (jj_2_1686(2)) { - jj_consume_token(TRANSFORMS); + jj_consume_token(SQL_VARBINARY); } else if (jj_2_1687(2)) { - jj_consume_token(TRIGGER_SCHEMA); + jj_consume_token(STATEMENT); } else if (jj_2_1688(2)) { - jj_consume_token(UNBOUNDED); + jj_consume_token(STYLE); } else if (jj_2_1689(2)) { - jj_consume_token(UNDER); + jj_consume_token(TABLE_NAME); } else if (jj_2_1690(2)) { - jj_consume_token(USAGE); + jj_consume_token(TIME_DIFF); } else if (jj_2_1691(2)) { - jj_consume_token(USER_DEFINED_TYPE_NAME); + jj_consume_token(TIMESTAMPDIFF); } else if (jj_2_1692(2)) { - jj_consume_token(UTF32); + jj_consume_token(TOP_LEVEL_COUNT); } else if (jj_2_1693(2)) { - jj_consume_token(VIEW); + jj_consume_token(TRANSACTIONS_COMMITTED); } else if (jj_2_1694(2)) { - jj_consume_token(WORK); + jj_consume_token(TRANSFORMS); } else if (jj_2_1695(2)) { - jj_consume_token(XML); + jj_consume_token(TRIGGER_SCHEMA); } else if (jj_2_1696(2)) { - jj_consume_token(TEMPLATE); + jj_consume_token(UNBOUNDED); } else if (jj_2_1697(2)) { - jj_consume_token(ATOMICITY); + jj_consume_token(UNDER); } else if (jj_2_1698(2)) { - jj_consume_token(CACHE_NAME); + jj_consume_token(USAGE); } else if (jj_2_1699(2)) { - jj_consume_token(WRAP_KEY); + jj_consume_token(USER_DEFINED_TYPE_NAME); } else if (jj_2_1700(2)) { - jj_consume_token(PARALLEL); + jj_consume_token(UTF32); } else if (jj_2_1701(2)) { - jj_consume_token(NOLOGGING); + jj_consume_token(VIEW); } else if (jj_2_1702(2)) { - jj_consume_token(SCAN); + jj_consume_token(WORK); } else if (jj_2_1703(2)) { - jj_consume_token(COMPUTE); + jj_consume_token(XML); } else if (jj_2_1704(2)) { - jj_consume_token(STATISTICS); + jj_consume_token(TEMPLATE); } else if (jj_2_1705(2)) { - jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); + jj_consume_token(ATOMICITY); } else if (jj_2_1706(2)) { - jj_consume_token(ALLOCATE); + jj_consume_token(CACHE_NAME); } else if (jj_2_1707(2)) { - jj_consume_token(ARRAY_MAX_CARDINALITY); + jj_consume_token(WRAP_KEY); } else if (jj_2_1708(2)) { - jj_consume_token(AT); + jj_consume_token(PARALLEL); } else if (jj_2_1709(2)) { - jj_consume_token(AVG); + jj_consume_token(NOLOGGING); } else if (jj_2_1710(2)) { - jj_consume_token(BEGIN_PARTITION); + jj_consume_token(SCAN); } else if (jj_2_1711(2)) { - jj_consume_token(BIT); + jj_consume_token(COMPUTE); } else if (jj_2_1712(2)) { - jj_consume_token(CALL); + jj_consume_token(STATISTICS); } else if (jj_2_1713(2)) { - jj_consume_token(CASCADED); + jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); } else if (jj_2_1714(2)) { - jj_consume_token(CHAR); + jj_consume_token(NOWAIT); } else if (jj_2_1715(2)) { - jj_consume_token(CHAR_LENGTH); + jj_consume_token(ALLOW); } else if (jj_2_1716(2)) { - jj_consume_token(CLOB); + jj_consume_token(ASENSITIVE); } else if (jj_2_1717(2)) { - jj_consume_token(COLLATE); + jj_consume_token(ATOMIC); } else if (jj_2_1718(2)) { - jj_consume_token(CONDITION); + jj_consume_token(BEGIN); } else if (jj_2_1719(2)) { - jj_consume_token(CONVERT); + jj_consume_token(BIGINT); } else if (jj_2_1720(2)) { - jj_consume_token(COUNT); + jj_consume_token(BLOB); } else if (jj_2_1721(2)) { - jj_consume_token(CUBE); + jj_consume_token(CALLED); } else if (jj_2_1722(2)) { - jj_consume_token(CURRENT_CATALOG); + jj_consume_token(CEIL); } else if (jj_2_1723(2)) { - jj_consume_token(CURRENT_ROLE); + jj_consume_token(CHARACTER); } else if (jj_2_1724(2)) { - jj_consume_token(CURSOR); + jj_consume_token(CHECK); } else if (jj_2_1725(2)) { - jj_consume_token(DATETIME); + jj_consume_token(CLOSE); } else if (jj_2_1726(2)) { - jj_consume_token(DEC); + jj_consume_token(COLLECT); } else if (jj_2_1727(2)) { - jj_consume_token(DEFINE); + jj_consume_token(CONNECT); } else if (jj_2_1728(2)) { - jj_consume_token(DESCRIBE); + jj_consume_token(CORR); } else if (jj_2_1729(2)) { - jj_consume_token(DISCONNECT); + jj_consume_token(COVAR_POP); } else if (jj_2_1730(2)) { - jj_consume_token(EACH); + jj_consume_token(CUME_DIST); } else if (jj_2_1731(2)) { - jj_consume_token(END); + jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); } else if (jj_2_1732(2)) { - jj_consume_token(END_PARTITION); + jj_consume_token(CURRENT_ROW); } else if (jj_2_1733(2)) { - jj_consume_token(EVERY); + jj_consume_token(CYCLE); } else if (jj_2_1734(2)) { - jj_consume_token(EXP); + jj_consume_token(DAY); } else if (jj_2_1735(2)) { - jj_consume_token(EXTRACT); + jj_consume_token(DECIMAL); } else if (jj_2_1736(2)) { - jj_consume_token(FLOAT); + jj_consume_token(DENSE_RANK); } else if (jj_2_1737(2)) { - jj_consume_token(FRAME_ROW); + jj_consume_token(DETERMINISTIC); } else if (jj_2_1738(2)) { - jj_consume_token(FUSION); + jj_consume_token(DOUBLE); } else if (jj_2_1739(2)) { - jj_consume_token(GRANT); + jj_consume_token(ELEMENT); } else if (jj_2_1740(2)) { - jj_consume_token(HOLD); + jj_consume_token(END_EXEC); } else if (jj_2_1741(2)) { - jj_consume_token(IMPORT); + jj_consume_token(EQUALS); } else if (jj_2_1742(2)) { - jj_consume_token(INOUT); + jj_consume_token(EXEC); } else if (jj_2_1743(2)) { - jj_consume_token(INTEGER); + jj_consume_token(EXTEND); } else if (jj_2_1744(2)) { - jj_consume_token(JSON_ARRAYAGG); + jj_consume_token(FILTER); } else if (jj_2_1745(2)) { - jj_consume_token(JSON_OBJECTAGG); + jj_consume_token(FLOOR); } else if (jj_2_1746(2)) { - jj_consume_token(JSON_VALUE); + jj_consume_token(FREE); } else if (jj_2_1747(2)) { - jj_consume_token(LARGE); + jj_consume_token(GET); } else if (jj_2_1748(2)) { - jj_consume_token(LEAD); + jj_consume_token(GROUPING); } else if (jj_2_1749(2)) { - jj_consume_token(LOCAL); + jj_consume_token(HOUR); } else if (jj_2_1750(2)) { - jj_consume_token(MATCHES); + jj_consume_token(INDICATOR); } else if (jj_2_1751(2)) { - jj_consume_token(MATCH_RECOGNIZE); + jj_consume_token(INSENSITIVE); } else if (jj_2_1752(2)) { - jj_consume_token(MEASURES); + jj_consume_token(INTERSECTION); } else if (jj_2_1753(2)) { - jj_consume_token(MIN); + jj_consume_token(JSON_EXISTS); } else if (jj_2_1754(2)) { - jj_consume_token(MODIFIES); + jj_consume_token(JSON_QUERY); } else if (jj_2_1755(2)) { - jj_consume_token(MULTISET); + jj_consume_token(LAG); } else if (jj_2_1756(2)) { - jj_consume_token(NCLOB); + jj_consume_token(LAST_VALUE); } else if (jj_2_1757(2)) { - jj_consume_token(NO); + jj_consume_token(LIKE_REGEX); } else if (jj_2_1758(2)) { - jj_consume_token(NTH_VALUE); + jj_consume_token(LOWER); } else if (jj_2_1759(2)) { - jj_consume_token(NUMERIC); + jj_consume_token(MATCH_CONDITION); } else if (jj_2_1760(2)) { - jj_consume_token(OF); + jj_consume_token(MAX); } else if (jj_2_1761(2)) { - jj_consume_token(ONE); + jj_consume_token(MEMBER); } else if (jj_2_1762(2)) { - jj_consume_token(ORDINAL); + jj_consume_token(MINUTE); } else if (jj_2_1763(2)) { - jj_consume_token(OVERLAPS); + jj_consume_token(MODULE); } else if (jj_2_1764(2)) { - jj_consume_token(PATTERN); + jj_consume_token(NATIONAL); } else if (jj_2_1765(2)) { - jj_consume_token(PERCENTILE_CONT); + jj_consume_token(NEW); } else if (jj_2_1766(2)) { - jj_consume_token(PERIOD); + jj_consume_token(NONE); } else if (jj_2_1767(2)) { - jj_consume_token(POSITION); + jj_consume_token(NTILE); } else if (jj_2_1768(2)) { - jj_consume_token(PRECEDES); + jj_consume_token(OCCURRENCES_REGEX); } else if (jj_2_1769(2)) { - jj_consume_token(PREV); + jj_consume_token(OLD); } else if (jj_2_1770(2)) { - jj_consume_token(RANGE); + jj_consume_token(ONLY); } else if (jj_2_1771(2)) { - jj_consume_token(REAL); + jj_consume_token(OUT); } else if (jj_2_1772(2)) { - jj_consume_token(REFERENCES); + jj_consume_token(OVERLAY); } else if (jj_2_1773(2)) { - jj_consume_token(REGR_AVGY); + jj_consume_token(PER); } else if (jj_2_1774(2)) { - jj_consume_token(REGR_R2); + jj_consume_token(PERCENTILE_DISC); } else if (jj_2_1775(2)) { - jj_consume_token(REGR_SXY); + jj_consume_token(PERMUTE); } else if (jj_2_1776(2)) { - jj_consume_token(RESET); + jj_consume_token(POSITION_REGEX); } else if (jj_2_1777(2)) { - jj_consume_token(RETURNS); + jj_consume_token(PRECISION); } else if (jj_2_1778(2)) { - jj_consume_token(ROLLUP); + jj_consume_token(PROCEDURE); } else if (jj_2_1779(2)) { - jj_consume_token(RUNNING); + jj_consume_token(RANK); } else if (jj_2_1780(2)) { - jj_consume_token(SAFE_ORDINAL); + jj_consume_token(RECURSIVE); } else if (jj_2_1781(2)) { - jj_consume_token(SCROLL); + jj_consume_token(REFERENCING); } else if (jj_2_1782(2)) { - jj_consume_token(SEEK); + jj_consume_token(REGR_COUNT); } else if (jj_2_1783(2)) { - jj_consume_token(SHOW); + jj_consume_token(REGR_SLOPE); } else if (jj_2_1784(2)) { - jj_consume_token(SMALLINT); + jj_consume_token(REGR_SYY); } else if (jj_2_1785(2)) { - jj_consume_token(SQL); + jj_consume_token(RESULT); } else if (jj_2_1786(2)) { - jj_consume_token(SQLWARNING); + jj_consume_token(REVOKE); } else if (jj_2_1787(2)) { - jj_consume_token(STATIC); + jj_consume_token(ROWS); } else if (jj_2_1788(2)) { - jj_consume_token(STREAM); + jj_consume_token(SAFE_CAST); } else if (jj_2_1789(2)) { - jj_consume_token(SUBSTRING); + jj_consume_token(SAVEPOINT); } else if (jj_2_1790(2)) { - jj_consume_token(SUM); + jj_consume_token(SEARCH); } else if (jj_2_1791(2)) { - jj_consume_token(SYSTEM_USER); + jj_consume_token(SENSITIVE); } else if (jj_2_1792(2)) { - jj_consume_token(TIMESTAMP); + jj_consume_token(SIMILAR); } else if (jj_2_1793(2)) { - jj_consume_token(TINYINT); + jj_consume_token(SPECIFIC); } else if (jj_2_1794(2)) { - jj_consume_token(TRANSLATION); + jj_consume_token(SQLEXCEPTION); } else if (jj_2_1795(2)) { - jj_consume_token(TRIM); + jj_consume_token(SQRT); } else if (jj_2_1796(2)) { - jj_consume_token(TRY_CAST); + jj_consume_token(STDDEV_POP); } else if (jj_2_1797(2)) { - jj_consume_token(UNKNOWN); + jj_consume_token(SUBMULTISET); } else if (jj_2_1798(2)) { - jj_consume_token(UUID); + jj_consume_token(SUBSTRING_REGEX); } else if (jj_2_1799(2)) { - jj_consume_token(VARBINARY); + jj_consume_token(SYSTEM); } else if (jj_2_1800(2)) { - jj_consume_token(VARYING); + jj_consume_token(TABLESAMPLE); } else if (jj_2_1801(2)) { - jj_consume_token(VERSIONING); + jj_consume_token(TIMEZONE_HOUR); } else if (jj_2_1802(2)) { - jj_consume_token(WINDOW); + jj_consume_token(TRANSLATE); } else if (jj_2_1803(2)) { - jj_consume_token(YEAR); + jj_consume_token(TREAT); } else if (jj_2_1804(2)) { - jj_consume_token(WEDNESDAY); + jj_consume_token(TRIM_ARRAY); } else if (jj_2_1805(2)) { - jj_consume_token(SATURDAY); + jj_consume_token(UESCAPE); + } else if (jj_2_1806(2)) { + jj_consume_token(UPPER); + } else if (jj_2_1807(2)) { + jj_consume_token(VALUE); + } else if (jj_2_1808(2)) { + jj_consume_token(VARIANT); + } else if (jj_2_1809(2)) { + jj_consume_token(VAR_POP); + } else if (jj_2_1810(2)) { + jj_consume_token(WHENEVER); + } else if (jj_2_1811(2)) { + jj_consume_token(WITHIN); + } else if (jj_2_1812(2)) { + jj_consume_token(MONDAY); + } else if (jj_2_1813(2)) { + jj_consume_token(THURSDAY); + } else if (jj_2_1814(2)) { + jj_consume_token(SUNDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -24191,564 +24258,392 @@ final private boolean jj_2_1805(int xla) { finally { jj_save(1804, xla); } } - final private boolean jj_3_642() { - if (jj_scan_token(HOUR)) return true; - return false; - } - - final private boolean jj_3_641() { - if (jj_scan_token(MINUTE)) return true; - return false; - } - - final private boolean jj_3_264() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(ORDINALITY)) return true; - return false; - } - - final private boolean jj_3_640() { - if (jj_scan_token(SECOND)) return true; - return false; - } - - final private boolean jj_3_639() { - if (jj_scan_token(MILLISECOND)) return true; - return false; - } - - final private boolean jj_3_638() { - if (jj_scan_token(MICROSECOND)) return true; - return false; - } - - final private boolean jj_3R_270() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_637()) { - jj_scanpos = xsp; - if (jj_3_638()) { - jj_scanpos = xsp; - if (jj_3_639()) { - jj_scanpos = xsp; - if (jj_3_640()) { - jj_scanpos = xsp; - if (jj_3_641()) { - jj_scanpos = xsp; - if (jj_3_642()) { - jj_scanpos = xsp; - if (jj_3_643()) { - jj_scanpos = xsp; - if (jj_3_644()) { - jj_scanpos = xsp; - if (jj_3_645()) { - jj_scanpos = xsp; - if (jj_3_646()) { - jj_scanpos = xsp; - if (jj_3_647()) { - jj_scanpos = xsp; - if (jj_3_648()) { - jj_scanpos = xsp; - if (jj_3_649()) { - jj_scanpos = xsp; - if (jj_3_650()) { - jj_scanpos = xsp; - if (jj_3_651()) { - jj_scanpos = xsp; - if (jj_3_652()) { - jj_scanpos = xsp; - if (jj_3_653()) { - jj_scanpos = xsp; - 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()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - return false; - } - - final private boolean jj_3_637() { - if (jj_scan_token(NANOSECOND)) return true; - return false; - } - - final private boolean jj_3_263() { - if (jj_scan_token(LATERAL)) return true; - return false; - } - - final private boolean jj_3_262() { - if (jj_3R_168()) return true; - return false; - } - - final private boolean jj_3_268() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_263()) jj_scanpos = xsp; - if (jj_scan_token(UNNEST)) return true; - if (jj_3R_173()) return true; - return false; - } - - final private boolean jj_3_259() { - if (jj_3R_168()) return true; - return false; - } - - final private boolean jj_3_261() { - if (jj_scan_token(LATERAL)) return true; - return false; - } - - final private boolean jj_3_258() { - if (jj_3R_167()) return true; - return false; - } - - final private boolean jj_3_257() { - if (jj_3R_158()) return true; - return false; - } - - final private boolean jj_3_267() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_261()) jj_scanpos = xsp; - if (jj_3R_172()) return true; - return false; - } - - final private boolean jj_3_256() { - if (jj_3R_157()) return true; - return false; - } - - final private boolean jj_3R_171() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_256()) { - jj_scanpos = xsp; - if (jj_3R_372()) return true; - } - xsp = jj_scanpos; - if (jj_3_257()) jj_scanpos = xsp; - if (jj_3R_373()) return true; - xsp = jj_scanpos; - if (jj_3_258()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_259()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_260() { - if (jj_3R_169()) return true; - return false; - } - - final private boolean jj_3_635() { - if (jj_3R_84()) return true; - return false; + final private boolean jj_2_1806(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1806(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1805, xla); } } - final private boolean jj_3R_332() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_634()) { - jj_scanpos = xsp; - if (jj_3_635()) return true; - } - return false; + final private boolean jj_2_1807(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1807(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1806, xla); } } - final private boolean jj_3_634() { - if (jj_3R_270()) return true; - return false; + final private boolean jj_2_1808(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1808(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1807, xla); } } - final private boolean jj_3_266() { - if (jj_3R_170()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_260()) { - jj_scanpos = xsp; - if (jj_3R_171()) return true; - } - return false; + final private boolean jj_2_1809(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1809(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1808, xla); } } - - final private boolean jj_3R_345() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_266()) { - jj_scanpos = xsp; - if (jj_3_267()) { - jj_scanpos = xsp; - if (jj_3_268()) { - jj_scanpos = xsp; - if (jj_3_269()) { - jj_scanpos = xsp; - if (jj_3_270()) return true; - } - } - } - } - xsp = jj_scanpos; - if (jj_3_271()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_272()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_275()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_276()) jj_scanpos = xsp; - return false; + + final private boolean jj_2_1810(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1810(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1809, xla); } } - final private boolean jj_3_630() { + final private boolean jj_2_1811(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1811(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1810, xla); } + } + + final private boolean jj_2_1812(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1812(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1811, xla); } + } + + final private boolean jj_2_1813(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1813(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1812, xla); } + } + + final private boolean jj_2_1814(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1814(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1813, xla); } + } + + final private boolean jj_3_637() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_631() { + final private boolean jj_3_638() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3R_69() { - if (jj_3R_345()) return true; + final private boolean jj_3R_70() { + if (jj_3R_348()) return true; return false; } - final private boolean jj_3_633() { - if (jj_3R_258()) return true; + final private boolean jj_3_640() { + if (jj_3R_261()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_631()) jj_scanpos = xsp; + if (jj_3_638()) jj_scanpos = xsp; return false; } - final private boolean jj_3_629() { - if (jj_3R_257()) return true; + final private boolean jj_3_636() { + if (jj_3R_260()) return true; return false; } - final private boolean jj_3_628() { - if (jj_3R_256()) return true; + final private boolean jj_3_635() { + if (jj_3R_259()) return true; return false; } - final private boolean jj_3_627() { - if (jj_3R_265()) return true; + final private boolean jj_3_634() { + if (jj_3R_268()) return true; return false; } - final private boolean jj_3_626() { - if (jj_3R_264()) return true; + final private boolean jj_3_633() { + if (jj_3R_267()) return true; return false; } - final private boolean jj_3_625() { - if (jj_3R_255()) return true; + final private boolean jj_3_632() { + if (jj_3R_258()) return true; return false; } - final private boolean jj_3_624() { - if (jj_3R_263()) return true; + final private boolean jj_3_631() { + if (jj_3R_266()) return true; return false; } - final private boolean jj_3_623() { - if (jj_3R_261()) return true; + final private boolean jj_3_630() { + if (jj_3R_264()) return true; return false; } - final private boolean jj_3_632() { + final private boolean jj_3_639() { Token xsp; xsp = jj_scanpos; - if (jj_3_623()) { + if (jj_3_630()) { jj_scanpos = xsp; - if (jj_3_624()) { + if (jj_3_631()) { jj_scanpos = xsp; - if (jj_3_625()) { + if (jj_3_632()) { jj_scanpos = xsp; - if (jj_3_626()) { + if (jj_3_633()) { jj_scanpos = xsp; - if (jj_3_627()) { + if (jj_3_634()) { jj_scanpos = xsp; - if (jj_3_628()) { + if (jj_3_635()) { jj_scanpos = xsp; - if (jj_3_629()) return true; + if (jj_3_636()) return true; } } } } } } - if (jj_3R_259()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3R_254() { + final private boolean jj_3R_257() { Token xsp; xsp = jj_scanpos; - if (jj_3_632()) { + if (jj_3_639()) { jj_scanpos = xsp; - if (jj_3_633()) return true; + if (jj_3_640()) return true; } return false; } - final private boolean jj_3R_269() { + final private boolean jj_3R_272() { return false; } - final private boolean jj_3_613() { + final private boolean jj_3_620() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_255() { + final private boolean jj_3_262() { if (jj_scan_token(OUTER)) return true; if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_614() { + final private boolean jj_3_621() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_611() { + final private boolean jj_3_618() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3R_268() { + final private boolean jj_3R_271() { return false; } - final private boolean jj_3_622() { - if (jj_3R_258()) return true; + final private boolean jj_3_629() { + if (jj_3R_261()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_614()) { + if (jj_3_621()) { jj_scanpos = xsp; - if (jj_3R_269()) return true; + if (jj_3R_272()) return true; } return false; } - final private boolean jj_3_612() { + final private boolean jj_3_619() { if (jj_scan_token(TO)) return true; - if (jj_3R_258()) return true; + if (jj_3R_261()) return true; return false; } - final private boolean jj_3_607() { + final private boolean jj_3_614() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_609() { - if (jj_3R_258()) return true; + final private boolean jj_3_616() { + if (jj_3R_261()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_607()) jj_scanpos = xsp; + if (jj_3_614()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_267() { + final private boolean jj_3R_270() { return false; } - final private boolean jj_3_254() { + final private boolean jj_3_261() { if (jj_scan_token(CROSS)) return true; if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_608() { - if (jj_3R_257()) return true; + final private boolean jj_3_615() { + if (jj_3R_260()) return true; return false; } - final private boolean jj_3_621() { - if (jj_3R_257()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_628() { + if (jj_3R_260()) return true; + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_612()) { + if (jj_3_619()) { jj_scanpos = xsp; - if (jj_3R_268()) return true; + if (jj_3R_271()) return true; } return false; } - final private boolean jj_3R_166() { + final private boolean jj_3R_169() { return false; } - final private boolean jj_3_610() { + final private boolean jj_3_617() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_608()) { + if (jj_3_615()) { jj_scanpos = xsp; - if (jj_3_609()) return true; + if (jj_3_616()) return true; } return false; } - final private boolean jj_3_605() { - if (jj_3R_258()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_612() { + if (jj_3R_261()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3R_266() { + final private boolean jj_3R_269() { return false; } - final private boolean jj_3_604() { - if (jj_3R_257()) return true; + final private boolean jj_3_611() { + if (jj_3R_260()) return true; return false; } - final private boolean jj_3_620() { - if (jj_3R_256()) return true; + final private boolean jj_3_627() { if (jj_3R_259()) return true; + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_610()) { + if (jj_3_617()) { jj_scanpos = xsp; - if (jj_3R_267()) return true; + if (jj_3R_270()) return true; } return false; } - final private boolean jj_3_603() { - if (jj_3R_256()) return true; + final private boolean jj_3_610() { + if (jj_3R_259()) return true; return false; } - final private boolean jj_3_252() { + final private boolean jj_3_259() { if (jj_scan_token(USING)) return true; - if (jj_3R_124()) return true; + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_606() { + final private boolean jj_3_613() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_603()) { + if (jj_3_610()) { jj_scanpos = xsp; - if (jj_3_604()) { + if (jj_3_611()) { jj_scanpos = xsp; - if (jj_3_605()) return true; + if (jj_3_612()) return true; } } return false; } - final private boolean jj_3_619() { - if (jj_3R_265()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_626() { + if (jj_3R_268()) return true; + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_606()) { + if (jj_3_613()) { jj_scanpos = xsp; - if (jj_3R_266()) return true; + if (jj_3R_269()) return true; } return false; } - final private boolean jj_3_618() { - if (jj_3R_264()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_625() { + if (jj_3R_267()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3_617() { - if (jj_3R_255()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_624() { + if (jj_3R_258()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3R_262() { + final private boolean jj_3R_265() { return false; } - final private boolean jj_3_602() { + final private boolean jj_3_609() { if (jj_scan_token(TO)) return true; - if (jj_3R_255()) return true; + if (jj_3R_258()) return true; return false; } - final private boolean jj_3_616() { - if (jj_3R_263()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_623() { + if (jj_3R_266()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3_615() { - if (jj_3R_261()) return true; - if (jj_3R_259()) return true; + final private boolean jj_3_622() { + if (jj_3R_264()) return true; + if (jj_3R_262()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_602()) { + if (jj_3_609()) { jj_scanpos = xsp; - if (jj_3R_262()) return true; + if (jj_3R_265()) return true; } return false; } - final private boolean jj_3R_215() { + final private boolean jj_3R_218() { Token xsp; xsp = jj_scanpos; - if (jj_3_615()) { + if (jj_3_622()) { jj_scanpos = xsp; - if (jj_3_616()) { + if (jj_3_623()) { jj_scanpos = xsp; - if (jj_3_617()) { + if (jj_3_624()) { jj_scanpos = xsp; - if (jj_3_618()) { + if (jj_3_625()) { jj_scanpos = xsp; - if (jj_3_619()) { + if (jj_3_626()) { jj_scanpos = xsp; - if (jj_3_620()) { + if (jj_3_627()) { jj_scanpos = xsp; - if (jj_3_621()) { + if (jj_3_628()) { jj_scanpos = xsp; - if (jj_3_622()) return true; + if (jj_3_629()) return true; } } } @@ -24759,352 +24654,352 @@ final private boolean jj_3R_215() { return false; } - final private boolean jj_3_250() { + final private boolean jj_3_257() { if (jj_scan_token(MATCH_CONDITION)) return true; - if (jj_3R_81()) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_251() { + final private boolean jj_3_258() { Token xsp; xsp = jj_scanpos; - if (jj_3_250()) jj_scanpos = xsp; + if (jj_3_257()) jj_scanpos = xsp; if (jj_scan_token(ON)) return true; - if (jj_3R_81()) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_66() { + final private boolean jj_3R_67() { Token xsp; xsp = jj_scanpos; - if (jj_3_253()) { + if (jj_3_260()) { jj_scanpos = xsp; - if (jj_3_254()) { + if (jj_3_261()) { jj_scanpos = xsp; - if (jj_3_255()) return true; + if (jj_3_262()) return true; } } return false; } - final private boolean jj_3_253() { - if (jj_3R_164()) return true; - if (jj_3R_165()) return true; - if (jj_3R_69()) return true; + final private boolean jj_3_260() { + if (jj_3R_167()) return true; + if (jj_3R_168()) return true; + if (jj_3R_70()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_251()) { + if (jj_3_258()) { jj_scanpos = xsp; - if (jj_3_252()) { + if (jj_3_259()) { jj_scanpos = xsp; - if (jj_3R_166()) return true; + if (jj_3R_169()) return true; } } return false; } - final private boolean jj_3_601() { + final private boolean jj_3_608() { if (jj_scan_token(SECONDS)) return true; return false; } - final private boolean jj_3R_258() { + final private boolean jj_3R_261() { Token xsp; xsp = jj_scanpos; - if (jj_3_600()) { + if (jj_3_607()) { jj_scanpos = xsp; - if (jj_3_601()) return true; + if (jj_3_608()) return true; } return false; } - final private boolean jj_3_600() { + final private boolean jj_3_607() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_599() { + final private boolean jj_3_606() { if (jj_scan_token(MINUTES)) return true; return false; } - final private boolean jj_3R_257() { + final private boolean jj_3R_260() { Token xsp; xsp = jj_scanpos; - if (jj_3_598()) { + if (jj_3_605()) { jj_scanpos = xsp; - if (jj_3_599()) return true; + if (jj_3_606()) return true; } return false; } - final private boolean jj_3_598() { + final private boolean jj_3_605() { if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_597() { + final private boolean jj_3_604() { if (jj_scan_token(HOURS)) return true; return false; } - final private boolean jj_3R_256() { + final private boolean jj_3R_259() { Token xsp; xsp = jj_scanpos; - if (jj_3_596()) { + if (jj_3_603()) { jj_scanpos = xsp; - if (jj_3_597()) return true; + if (jj_3_604()) return true; } return false; } - final private boolean jj_3_596() { + final private boolean jj_3_603() { if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_249() { - if (jj_3R_66()) return true; + final private boolean jj_3_256() { + if (jj_3R_67()) return true; return false; } - final private boolean jj_3_595() { + final private boolean jj_3_602() { if (jj_scan_token(DAYS)) return true; return false; } - final private boolean jj_3R_265() { + final private boolean jj_3R_268() { Token xsp; xsp = jj_scanpos; - if (jj_3_594()) { + if (jj_3_601()) { jj_scanpos = xsp; - if (jj_3_595()) return true; + if (jj_3_602()) return true; } return false; } - final private boolean jj_3_594() { + final private boolean jj_3_601() { if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_248() { + final private boolean jj_3_255() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_69()) return true; + if (jj_3R_70()) return true; return false; } - final private boolean jj_3_593() { + final private boolean jj_3_600() { if (jj_scan_token(WEEKS)) return true; return false; } - final private boolean jj_3R_264() { + final private boolean jj_3R_267() { Token xsp; xsp = jj_scanpos; - if (jj_3_592()) { + if (jj_3_599()) { jj_scanpos = xsp; - if (jj_3_593()) return true; + if (jj_3_600()) return true; } return false; } - final private boolean jj_3_592() { + final private boolean jj_3_599() { if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3_591() { + final private boolean jj_3_598() { if (jj_scan_token(MONTHS)) return true; return false; } - final private boolean jj_3R_255() { + final private boolean jj_3R_258() { Token xsp; xsp = jj_scanpos; - if (jj_3_590()) { + if (jj_3_597()) { jj_scanpos = xsp; - if (jj_3_591()) return true; + if (jj_3_598()) return true; } return false; } - final private boolean jj_3_590() { + final private boolean jj_3_597() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3R_150() { - if (jj_3R_69()) return true; + final private boolean jj_3R_154() { + if (jj_3R_70()) return true; return false; } - final private boolean jj_3_589() { + final private boolean jj_3_596() { if (jj_scan_token(QUARTERS)) return true; return false; } - final private boolean jj_3R_263() { + final private boolean jj_3R_266() { Token xsp; xsp = jj_scanpos; - if (jj_3_588()) { + if (jj_3_595()) { jj_scanpos = xsp; - if (jj_3_589()) return true; + if (jj_3_596()) return true; } return false; } - final private boolean jj_3_588() { + final private boolean jj_3_595() { if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_237() { + final private boolean jj_3_244() { if (jj_scan_token(ASOF)) return true; return false; } - final private boolean jj_3_240() { + final private boolean jj_3_247() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_587() { + final private boolean jj_3_594() { if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_239() { + final private boolean jj_3_246() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3R_261() { + final private boolean jj_3R_264() { Token xsp; xsp = jj_scanpos; - if (jj_3_586()) { + if (jj_3_593()) { jj_scanpos = xsp; - if (jj_3_587()) return true; + if (jj_3_594()) return true; } return false; } - final private boolean jj_3_586() { + final private boolean jj_3_593() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_236() { + final private boolean jj_3_243() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_238() { + final private boolean jj_3_245() { Token xsp; xsp = jj_scanpos; - if (jj_3_236()) { + if (jj_3_243()) { jj_scanpos = xsp; - if (jj_3_237()) return true; + if (jj_3_244()) return true; } return false; } - final private boolean jj_3_247() { + final private boolean jj_3_254() { if (jj_scan_token(CROSS)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_246() { + final private boolean jj_3_253() { if (jj_scan_token(FULL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_240()) jj_scanpos = xsp; + if (jj_3_247()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_583() { - if (jj_3R_152()) return true; + final private boolean jj_3_590() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_245() { + final private boolean jj_3_252() { if (jj_scan_token(RIGHT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_239()) jj_scanpos = xsp; + if (jj_3_246()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_582() { - if (jj_3R_198()) return true; + final private boolean jj_3_589() { + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_244() { + final private boolean jj_3_251() { if (jj_scan_token(LEFT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_238()) jj_scanpos = xsp; + if (jj_3_245()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_243() { + final private boolean jj_3_250() { if (jj_scan_token(ASOF)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_581() { + final private boolean jj_3_588() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_81()) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_242() { + final private boolean jj_3_249() { if (jj_scan_token(INNER)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_241() { + final private boolean jj_3_248() { if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_585() { + final private boolean jj_3_592() { Token xsp; xsp = jj_scanpos; - if (jj_3_581()) { + if (jj_3_588()) { jj_scanpos = xsp; - if (jj_3_582()) { + if (jj_3_589()) { jj_scanpos = xsp; - if (jj_3_583()) return true; + if (jj_3_590()) return true; } } - if (jj_3R_254()) return true; + if (jj_3R_257()) return true; return false; } - final private boolean jj_3R_165() { + final private boolean jj_3R_168() { Token xsp; xsp = jj_scanpos; - if (jj_3_241()) { + if (jj_3_248()) { jj_scanpos = xsp; - if (jj_3_242()) { + if (jj_3_249()) { jj_scanpos = xsp; - if (jj_3_243()) { + if (jj_3_250()) { jj_scanpos = xsp; - if (jj_3_244()) { + if (jj_3_251()) { jj_scanpos = xsp; - if (jj_3_245()) { + if (jj_3_252()) { jj_scanpos = xsp; - if (jj_3_246()) { + if (jj_3_253()) { jj_scanpos = xsp; - if (jj_3_247()) return true; + if (jj_3_254()) return true; } } } @@ -25114,579 +25009,579 @@ final private boolean jj_3R_165() { return false; } - final private boolean jj_3_584() { - if (jj_3R_247()) return true; - if (jj_3R_215()) return true; + final private boolean jj_3_591() { + if (jj_3R_250()) return true; + if (jj_3R_218()) return true; return false; } - final private boolean jj_3R_371() { + final private boolean jj_3R_375() { return false; } - final private boolean jj_3_579() { + final private boolean jj_3_586() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3R_164() { + final private boolean jj_3R_167() { Token xsp; xsp = jj_scanpos; - if (jj_3_235()) { + if (jj_3_242()) { jj_scanpos = xsp; - if (jj_3R_371()) return true; + if (jj_3R_375()) return true; } return false; } - final private boolean jj_3_235() { + final private boolean jj_3_242() { if (jj_scan_token(NATURAL)) return true; return false; } - final private boolean jj_3_578() { + final private boolean jj_3_585() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_580() { + final private boolean jj_3_587() { Token xsp; xsp = jj_scanpos; - if (jj_3_578()) { + if (jj_3_585()) { jj_scanpos = xsp; - if (jj_3_579()) return true; + if (jj_3_586()) return true; } return false; } - final private boolean jj_3R_246() { + final private boolean jj_3R_249() { if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_580()) jj_scanpos = xsp; + if (jj_3_587()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_584()) { + if (jj_3_591()) { jj_scanpos = xsp; - if (jj_3_585()) return true; + if (jj_3_592()) return true; } return false; } - final private boolean jj_3_234() { - if (jj_3R_81()) return true; + final private boolean jj_3_241() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_365() { + final private boolean jj_3R_369() { Token xsp; xsp = jj_scanpos; - if (jj_3_233()) { + if (jj_3_240()) { jj_scanpos = xsp; - if (jj_3_234()) return true; + if (jj_3_241()) return true; } return false; } - final private boolean jj_3_233() { + final private boolean jj_3_240() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_163() { - if (jj_3R_370()) return true; + final private boolean jj_3R_166() { + if (jj_3R_374()) return true; return false; } - final private boolean jj_3_576() { + final private boolean jj_3_583() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_231() { - if (jj_3R_84()) return true; + final private boolean jj_3_238() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_575() { + final private boolean jj_3_582() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_577() { + final private boolean jj_3_584() { Token xsp; xsp = jj_scanpos; - if (jj_3_575()) { + if (jj_3_582()) { jj_scanpos = xsp; - if (jj_3_576()) return true; + if (jj_3_583()) return true; } return false; } - final private boolean jj_3_229() { + final private boolean jj_3_236() { if (jj_scan_token(MEASURE)) return true; return false; } - final private boolean jj_3R_193() { + final private boolean jj_3R_196() { if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_577()) jj_scanpos = xsp; - if (jj_3R_247()) return true; + if (jj_3_584()) jj_scanpos = xsp; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_230() { + final private boolean jj_3_237() { if (jj_scan_token(AS)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_229()) jj_scanpos = xsp; + if (jj_3_236()) jj_scanpos = xsp; return false; } - final private boolean jj_3_232() { + final private boolean jj_3_239() { Token xsp; xsp = jj_scanpos; - if (jj_3_230()) jj_scanpos = xsp; + if (jj_3_237()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_231()) { + if (jj_3_238()) { jj_scanpos = xsp; - if (jj_3R_163()) return true; + if (jj_3R_166()) return true; } return false; } - final private boolean jj_3R_144() { - if (jj_3R_365()) return true; + final private boolean jj_3R_148() { + if (jj_3R_369()) return true; return false; } - final private boolean jj_3R_228() { + final private boolean jj_3R_231() { if (jj_scan_token(PERIOD)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_253() { + final private boolean jj_3R_256() { return false; } - final private boolean jj_3_228() { + final private boolean jj_3_235() { if (jj_scan_token(VALUES)) return true; - if (jj_3R_162()) return true; + if (jj_3R_165()) return true; return false; } - final private boolean jj_3_572() { - if (jj_3R_234()) return true; + final private boolean jj_3_579() { + if (jj_3R_237()) return true; return false; } - final private boolean jj_3_227() { + final private boolean jj_3_234() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(VALUES)) return true; return false; } - final private boolean jj_3_574() { + final private boolean jj_3_581() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_572()) { + if (jj_3_579()) { jj_scanpos = xsp; - if (jj_3R_253()) return true; + if (jj_3R_256()) return true; } return false; } - final private boolean jj_3_226() { - if (jj_3R_124()) return true; + final private boolean jj_3_233() { + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_571() { - if (jj_3R_173()) return true; + final private boolean jj_3_578() { + if (jj_3R_176()) return true; return false; } - final private boolean jj_3R_160() { + final private boolean jj_3R_163() { if (jj_scan_token(WHEN)) return true; if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_570() { + final private boolean jj_3_577() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_573() { + final private boolean jj_3_580() { Token xsp; xsp = jj_scanpos; - if (jj_3_570()) { + if (jj_3_577()) { jj_scanpos = xsp; - if (jj_3_571()) return true; + if (jj_3_578()) return true; } return false; } - final private boolean jj_3R_227() { + final private boolean jj_3R_230() { if (jj_scan_token(MAP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_573()) { + if (jj_3_580()) { jj_scanpos = xsp; - if (jj_3_574()) return true; + if (jj_3_581()) return true; } return false; } - final private boolean jj_3_225() { + final private boolean jj_3_232() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_152()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_397() { + final private boolean jj_3R_401() { return false; } - final private boolean jj_3_567() { + final private boolean jj_3_574() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_252()) return true; + if (jj_3R_255()) return true; return false; } - final private boolean jj_3_569() { - if (jj_3R_252()) return true; + final private boolean jj_3_573() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_566() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_119()) return true; + final private boolean jj_3_576() { + if (jj_3R_255()) return true; return false; } - final private boolean jj_3R_161() { + final private boolean jj_3R_164() { if (jj_scan_token(WHEN)) return true; if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_568() { - if (jj_3R_119()) return true; + final private boolean jj_3_575() { + if (jj_3R_121()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_566()) { jj_scanpos = xsp; break; } + if (jj_3_573()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_252() { + final private boolean jj_3R_255() { if (jj_scan_token(LBRACE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_568()) { + if (jj_3_575()) { jj_scanpos = xsp; - if (jj_3_569()) { + if (jj_3_576()) { jj_scanpos = xsp; - if (jj_3R_397()) return true; + if (jj_3R_401()) return true; } } return false; } - final private boolean jj_3_222() { - if (jj_3R_160()) return true; + final private boolean jj_3_229() { + if (jj_3R_163()) return true; return false; } - final private boolean jj_3_224() { - if (jj_3R_160()) return true; + final private boolean jj_3_231() { + if (jj_3R_163()) return true; return false; } - final private boolean jj_3R_251() { + final private boolean jj_3R_254() { return false; } - final private boolean jj_3_563() { - if (jj_3R_234()) return true; + final private boolean jj_3_570() { + if (jj_3R_237()) return true; return false; } - final private boolean jj_3_223() { - if (jj_3R_161()) return true; + final private boolean jj_3_230() { + if (jj_3R_164()) return true; return false; } - final private boolean jj_3_220() { + final private boolean jj_3_227() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_565() { + final private boolean jj_3_572() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_563()) { + if (jj_3_570()) { jj_scanpos = xsp; - if (jj_3R_251()) return true; + if (jj_3R_254()) return true; } return false; } - final private boolean jj_3_221() { + final private boolean jj_3_228() { Token xsp; xsp = jj_scanpos; - if (jj_3_220()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_227()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_219() { - if (jj_3R_158()) return true; + final private boolean jj_3_226() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_218() { - if (jj_3R_157()) return true; + final private boolean jj_3_225() { + if (jj_3R_160()) return true; return false; } - final private boolean jj_3R_116() { + final private boolean jj_3R_118() { if (jj_scan_token(MERGE)) return true; if (jj_scan_token(INTO)) return true; return false; } - final private boolean jj_3_562() { - if (jj_3R_173()) return true; + final private boolean jj_3_569() { + if (jj_3R_176()) return true; return false; } - final private boolean jj_3_561() { + 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_564() { + final private boolean jj_3_571() { Token xsp; xsp = jj_scanpos; - if (jj_3_561()) { + if (jj_3_568()) { jj_scanpos = xsp; - if (jj_3_562()) return true; + if (jj_3_569()) return true; } return false; } - final private boolean jj_3R_226() { + final private boolean jj_3R_229() { if (jj_scan_token(ARRAY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_564()) { + if (jj_3_571()) { jj_scanpos = xsp; - if (jj_3_565()) return true; + if (jj_3_572()) return true; } return false; } - final private boolean jj_3_217() { - if (jj_3R_145()) return true; + final private boolean jj_3_224() { + if (jj_3R_149()) return true; return false; } - final private boolean jj_3_216() { + final private boolean jj_3_223() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_152()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_214() { + final private boolean jj_3_221() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_558() { + final private boolean jj_3_565() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_215() { + final private boolean jj_3_222() { Token xsp; xsp = jj_scanpos; - if (jj_3_214()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_221()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_213() { - if (jj_3R_158()) return true; + final private boolean jj_3_220() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_212() { - if (jj_3R_157()) return true; + final private boolean jj_3_219() { + if (jj_3R_160()) return true; return false; } - final private boolean jj_3_560() { + final private boolean jj_3_567() { if (jj_scan_token(LBRACKET)) return true; - if (jj_3R_78()) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_557() { + final private boolean jj_3_564() { if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3R_115() { + final private boolean jj_3R_117() { if (jj_scan_token(UPDATE)) return true; - if (jj_3R_170()) return true; + if (jj_3R_173()) return true; return false; } - final private boolean jj_3_559() { + final private boolean jj_3_566() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_250()) return true; + if (jj_3R_253()) return true; return false; } - final private boolean jj_3_1133() { + final private boolean jj_3_1140() { if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_543() { + final private boolean jj_3_550() { if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_1132() { + final private boolean jj_3_1139() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1131() { + final private boolean jj_3_1138() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3R_225() { + final private boolean jj_3R_228() { if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_559()) { + if (jj_3_566()) { jj_scanpos = xsp; - if (jj_3_560()) return true; + if (jj_3_567()) return true; } return false; } - final private boolean jj_3_556() { + final private boolean jj_3_563() { if (jj_scan_token(DATETIME)) return true; return false; } - final private boolean jj_3_1130() { + final private boolean jj_3_1137() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_1129() { + final private boolean jj_3_1136() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_1138() { + final private boolean jj_3_1145() { if (jj_scan_token(FORMAT)) return true; - if (jj_3R_313()) return true; + if (jj_3R_316()) return true; return false; } - final private boolean jj_3_1128() { + final private boolean jj_3_1135() { if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1127() { + final private boolean jj_3_1134() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_1126() { + final private boolean jj_3_1133() { if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_1125() { + final private boolean jj_3_1132() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1124() { + final private boolean jj_3_1131() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_542() { + final private boolean jj_3_549() { if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_555() { + final private boolean jj_3_562() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_1123() { + final private boolean jj_3_1130() { if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_209() { + final private boolean jj_3_216() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1122() { + final private boolean jj_3_1129() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1136() { + final private boolean jj_3_1143() { Token xsp; xsp = jj_scanpos; - if (jj_3_1124()) { + if (jj_3_1131()) { jj_scanpos = xsp; - if (jj_3_1125()) { + if (jj_3_1132()) { jj_scanpos = xsp; - if (jj_3_1126()) { + if (jj_3_1133()) { jj_scanpos = xsp; - if (jj_3_1127()) { + if (jj_3_1134()) { jj_scanpos = xsp; - if (jj_3_1128()) { + if (jj_3_1135()) { jj_scanpos = xsp; - if (jj_3_1129()) { + if (jj_3_1136()) { jj_scanpos = xsp; - if (jj_3_1130()) { + if (jj_3_1137()) { jj_scanpos = xsp; - if (jj_3_1131()) { + if (jj_3_1138()) { jj_scanpos = xsp; - if (jj_3_1132()) { + if (jj_3_1139()) { jj_scanpos = xsp; - if (jj_3_1133()) return true; + if (jj_3_1140()) return true; } } } @@ -25699,131 +25594,131 @@ final private boolean jj_3_1136() { return false; } - final private boolean jj_3_211() { - if (jj_3R_145()) return true; + final private boolean jj_3_218() { + if (jj_3R_149()) return true; return false; } - final private boolean jj_3_1121() { + final private boolean jj_3_1128() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_210() { + final private boolean jj_3_217() { Token xsp; xsp = jj_scanpos; - if (jj_3_209()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_216()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1120() { + final private boolean jj_3_1127() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_208() { - if (jj_3R_158()) return true; + final private boolean jj_3_215() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_1119() { + final private boolean jj_3_1126() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_207() { - if (jj_3R_157()) return true; + final private boolean jj_3_214() { + if (jj_3R_160()) return true; return false; } - final private boolean jj_3_1118() { + final private boolean jj_3_1125() { if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1117() { + final private boolean jj_3_1124() { if (jj_scan_token(A)) return true; if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3_1116() { + final private boolean jj_3_1123() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_554() { + final private boolean jj_3_561() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1115() { + final private boolean jj_3_1122() { if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3R_293() { + final private boolean jj_3R_296() { Token xsp; xsp = jj_scanpos; - if (jj_3_554()) { + if (jj_3_561()) { jj_scanpos = xsp; - if (jj_3_555()) { + if (jj_3_562()) { jj_scanpos = xsp; - if (jj_3_556()) { + if (jj_3_563()) { jj_scanpos = xsp; - if (jj_3_557()) return true; + if (jj_3_564()) return true; } } } - if (jj_3R_220()) return true; + if (jj_3R_223()) return true; return false; } - final private boolean jj_3_1114() { + final private boolean jj_3_1121() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1113() { + final private boolean jj_3_1120() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3R_114() { + final private boolean jj_3R_116() { if (jj_scan_token(DELETE)) return true; if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_1135() { + final private boolean jj_3_1142() { if (jj_scan_token(NOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1113()) { + if (jj_3_1120()) { jj_scanpos = xsp; - if (jj_3_1114()) { + if (jj_3_1121()) { jj_scanpos = xsp; - if (jj_3_1115()) { + if (jj_3_1122()) { jj_scanpos = xsp; - if (jj_3_1116()) { + if (jj_3_1123()) { jj_scanpos = xsp; - if (jj_3_1117()) { + if (jj_3_1124()) { jj_scanpos = xsp; - if (jj_3_1118()) { + if (jj_3_1125()) { jj_scanpos = xsp; - if (jj_3_1119()) { + if (jj_3_1126()) { jj_scanpos = xsp; - if (jj_3_1120()) { + if (jj_3_1127()) { jj_scanpos = xsp; - if (jj_3_1121()) { + if (jj_3_1128()) { jj_scanpos = xsp; - if (jj_3_1122()) { + if (jj_3_1129()) { jj_scanpos = xsp; - if (jj_3_1123()) return true; + if (jj_3_1130()) return true; } } } @@ -25837,86 +25732,86 @@ final private boolean jj_3_1135() { return false; } - final private boolean jj_3_1134() { + final private boolean jj_3_1141() { if (jj_scan_token(A)) return true; if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3R_214() { + final private boolean jj_3R_217() { Token xsp; xsp = jj_scanpos; - if (jj_3_1137()) { + if (jj_3_1144()) { jj_scanpos = xsp; - if (jj_3_1138()) return true; + if (jj_3_1145()) return true; } return false; } - final private boolean jj_3_1137() { + final private boolean jj_3_1144() { if (jj_scan_token(IS)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1134()) { + if (jj_3_1141()) { jj_scanpos = xsp; - if (jj_3_1135()) { + if (jj_3_1142()) { jj_scanpos = xsp; - if (jj_3_1136()) return true; + if (jj_3_1143()) return true; } } return false; } - final private boolean jj_3_553() { + final private boolean jj_3_560() { if (jj_scan_token(TIMESTAMP)) return true; if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_552() { + final private boolean jj_3_559() { if (jj_scan_token(TIME)) return true; if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_1112() { + final private boolean jj_3_1119() { if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_1111() { + final private boolean jj_3_1118() { if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3_1110() { + final private boolean jj_3_1117() { if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_551() { + final private boolean jj_3_558() { if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_1109() { + final private boolean jj_3_1116() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3R_414() { + final private boolean jj_3R_418() { Token xsp; xsp = jj_scanpos; - if (jj_3_1108()) { + if (jj_3_1115()) { jj_scanpos = xsp; - if (jj_3_1109()) { + if (jj_3_1116()) { jj_scanpos = xsp; - if (jj_3_1110()) { + if (jj_3_1117()) { jj_scanpos = xsp; - if (jj_3_1111()) { + if (jj_3_1118()) { jj_scanpos = xsp; - if (jj_3_1112()) return true; + if (jj_3_1119()) return true; } } } @@ -25924,220 +25819,220 @@ final private boolean jj_3R_414() { return false; } - final private boolean jj_3_1108() { + final private boolean jj_3_1115() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_550() { + final private boolean jj_3_557() { if (jj_scan_token(UUID)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_206() { - if (jj_3R_159()) return true; + final private boolean jj_3_213() { + if (jj_3R_162()) return true; return false; } - final private boolean jj_3_549() { + final private boolean jj_3_556() { if (jj_scan_token(TIME)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_1107() { - if (jj_3R_340()) return true; + final private boolean jj_3_1114() { + if (jj_3R_343()) return true; return false; } - final private boolean jj_3_1106() { + final private boolean jj_3_1113() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_1105() { + final private boolean jj_3_1112() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_1104() { + final private boolean jj_3_1111() { if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_205() { - if (jj_3R_158()) return true; + final private boolean jj_3_212() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_548() { + final private boolean jj_3_555() { if (jj_scan_token(DATETIME)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_1103() { + final private boolean jj_3_1110() { if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_204() { - if (jj_3R_157()) return true; + final private boolean jj_3_211() { + if (jj_3R_160()) return true; return false; } - final private boolean jj_3_1102() { + final private boolean jj_3_1109() { if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_1101() { + final private boolean jj_3_1108() { if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3_1100() { + final private boolean jj_3_1107() { if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_547() { + final private boolean jj_3_554() { if (jj_scan_token(DATE)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_1099() { + final private boolean jj_3_1106() { 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_1098() { + final private boolean jj_3_1105() { if (jj_scan_token(SUBMULTISET)) return true; if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_203() { + final private boolean jj_3_210() { if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_1097() { + final private boolean jj_3_1104() { if (jj_scan_token(MEMBER)) return true; if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1096() { + final private boolean jj_3_1103() { 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_202() { + final private boolean jj_3_209() { if (jj_scan_token(INSERT)) return true; return false; } - final private boolean jj_3_1095() { + final private boolean jj_3_1102() { 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_1094() { + final private boolean jj_3_1101() { if (jj_scan_token(OR)) return true; return false; } - final private boolean jj_3_1093() { + final private boolean jj_3_1100() { if (jj_scan_token(AND)) return true; return false; } - final private boolean jj_3_546() { + final private boolean jj_3_553() { if (jj_scan_token(LBRACE_TS)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1092() { + final private boolean jj_3_1099() { if (jj_scan_token(CONCAT)) return true; return false; } - final private boolean jj_3R_113() { + final private boolean jj_3R_115() { Token xsp; xsp = jj_scanpos; - if (jj_3_202()) { + if (jj_3_209()) { jj_scanpos = xsp; - if (jj_3_203()) return true; + if (jj_3_210()) return true; } - if (jj_3R_357()) return true; + if (jj_3R_361()) return true; return false; } - final private boolean jj_3_1091() { + final private boolean jj_3_1098() { if (jj_scan_token(PERCENT_REMAINDER)) return true; return false; } - final private boolean jj_3_545() { + final private boolean jj_3_552() { if (jj_scan_token(LBRACE_T)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1090() { + final private boolean jj_3_1097() { if (jj_scan_token(SLASH)) return true; return false; } - final private boolean jj_3_1089() { + final private boolean jj_3_1096() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1088() { + final private boolean jj_3_1095() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_1087() { + final private boolean jj_3_1094() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3R_245() { + final private boolean jj_3R_248() { Token xsp; xsp = jj_scanpos; - if (jj_3_544()) { + if (jj_3_551()) { jj_scanpos = xsp; - if (jj_3_545()) { + if (jj_3_552()) { jj_scanpos = xsp; - if (jj_3_546()) { + if (jj_3_553()) { jj_scanpos = xsp; - if (jj_3_547()) { + if (jj_3_554()) { jj_scanpos = xsp; - if (jj_3_548()) { + if (jj_3_555()) { jj_scanpos = xsp; - if (jj_3_549()) { + if (jj_3_556()) { jj_scanpos = xsp; - if (jj_3_550()) { + if (jj_3_557()) { jj_scanpos = xsp; - if (jj_3_551()) { + if (jj_3_558()) { jj_scanpos = xsp; - if (jj_3_552()) { + if (jj_3_559()) { jj_scanpos = xsp; - if (jj_3_553()) return true; + if (jj_3_560()) return true; } } } @@ -26150,59 +26045,45 @@ final private boolean jj_3R_245() { return false; } - final private boolean jj_3_544() { + final private boolean jj_3_551() { if (jj_scan_token(LBRACE_D)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1086() { + final private boolean jj_3_1093() { if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3_1085() { + final private boolean jj_3_1092() { if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3_1084() { + final private boolean jj_3_1091() { if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_1083() { + final private boolean jj_3_1090() { if (jj_scan_token(LE)) return true; return false; } - final private boolean jj_3_1082() { + final private boolean jj_3_1089() { if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3_1081() { + final private boolean jj_3_1088() { if (jj_scan_token(GT)) return true; return false; } - final private boolean jj_3R_213() { + final private boolean jj_3R_216() { Token xsp; xsp = jj_scanpos; - if (jj_3_1080()) { - jj_scanpos = xsp; - if (jj_3_1081()) { - jj_scanpos = xsp; - if (jj_3_1082()) { - jj_scanpos = xsp; - if (jj_3_1083()) { - jj_scanpos = xsp; - if (jj_3_1084()) { - jj_scanpos = xsp; - if (jj_3_1085()) { - jj_scanpos = xsp; - if (jj_3_1086()) { - jj_scanpos = xsp; if (jj_3_1087()) { jj_scanpos = xsp; if (jj_3_1088()) { @@ -26243,7 +26124,21 @@ final private boolean jj_3R_213() { jj_scanpos = xsp; if (jj_3_1106()) { jj_scanpos = xsp; - if (jj_3_1107()) return true; + if (jj_3_1107()) { + jj_scanpos = xsp; + if (jj_3_1108()) { + jj_scanpos = xsp; + 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()) { + jj_scanpos = xsp; + if (jj_3_1113()) { + jj_scanpos = xsp; + if (jj_3_1114()) return true; } } } @@ -26274,601 +26169,601 @@ final private boolean jj_3R_213() { return false; } - final private boolean jj_3_1080() { + final private boolean jj_3_1087() { if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_541() { + final private boolean jj_3_548() { if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1075() { + final private boolean jj_3_1082() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1074() { + final private boolean jj_3_1081() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1076() { + final private boolean jj_3_1083() { Token xsp; xsp = jj_scanpos; - if (jj_3_1074()) { + if (jj_3_1081()) { jj_scanpos = xsp; - if (jj_3_1075()) return true; + if (jj_3_1082()) return true; } return false; } - final private boolean jj_3_540() { + final private boolean jj_3_547() { if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1072() { + final private boolean jj_3_1079() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1079() { + final private boolean jj_3_1086() { if (jj_scan_token(EXCEPT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1076()) jj_scanpos = xsp; + if (jj_3_1083()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_247() { + final private boolean jj_3R_250() { Token xsp; xsp = jj_scanpos; - if (jj_3_539()) { + if (jj_3_546()) { jj_scanpos = xsp; - if (jj_3_540()) { + if (jj_3_547()) { jj_scanpos = xsp; - if (jj_3_541()) return true; + if (jj_3_548()) return true; } } return false; } - final private boolean jj_3_539() { + final private boolean jj_3_546() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1071() { + final private boolean jj_3_1078() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1073() { + final private boolean jj_3_1080() { Token xsp; xsp = jj_scanpos; - if (jj_3_1071()) { + if (jj_3_1078()) { jj_scanpos = xsp; - if (jj_3_1072()) return true; + if (jj_3_1079()) return true; } return false; } - final private boolean jj_3_201() { - if (jj_3R_156()) return true; + final private boolean jj_3_208() { + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_1069() { + final private boolean jj_3_1076() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1078() { + final private boolean jj_3_1085() { if (jj_scan_token(INTERSECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1073()) jj_scanpos = xsp; + if (jj_3_1080()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1068() { + final private boolean jj_3_1075() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1070() { + final private boolean jj_3_1077() { Token xsp; xsp = jj_scanpos; - if (jj_3_1068()) { + if (jj_3_1075()) { jj_scanpos = xsp; - if (jj_3_1069()) return true; + if (jj_3_1076()) return true; } return false; } - final private boolean jj_3_199() { + final private boolean jj_3_206() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_156()) return true; + if (jj_3R_159()) return true; return false; } - final private boolean jj_3_1077() { + final private boolean jj_3_1084() { if (jj_scan_token(UNION)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1070()) jj_scanpos = xsp; + if (jj_3_1077()) jj_scanpos = xsp; return false; } - final private boolean jj_3_200() { + final private boolean jj_3_207() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_156()) return true; + if (jj_3R_159()) return true; return false; } - final private boolean jj_3R_340() { + final private boolean jj_3R_343() { if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1077()) { + if (jj_3_1084()) { jj_scanpos = xsp; - if (jj_3_1078()) { + if (jj_3_1085()) { jj_scanpos = xsp; - if (jj_3_1079()) return true; + if (jj_3_1086()) return true; } } return false; } - final private boolean jj_3_538() { + final private boolean jj_3_545() { if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; return false; } - final private boolean jj_3R_339() { + final private boolean jj_3R_342() { return false; } - final private boolean jj_3R_155() { + final private boolean jj_3R_158() { if (jj_scan_token(ORDER)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1064() { + final private boolean jj_3_1071() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1063() { + final private boolean jj_3_1070() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3R_410() { + final private boolean jj_3R_414() { return false; } - final private boolean jj_3_198() { - if (jj_3R_155()) return true; + final private boolean jj_3_205() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3R_409() { + final private boolean jj_3R_413() { return false; } - final private boolean jj_3_537() { + final private boolean jj_3_544() { if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1062() { + final private boolean jj_3_1069() { if (jj_scan_token(SET_MINUS)) return true; return false; } - final private boolean jj_3_197() { + final private boolean jj_3_204() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1061() { + final private boolean jj_3_1068() { if (jj_scan_token(EXCEPT)) return true; return false; } - final private boolean jj_3R_338() { + final private boolean jj_3R_341() { return false; } - final private boolean jj_3_1060() { + final private boolean jj_3_1067() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1067() { + final private boolean jj_3_1074() { Token xsp; xsp = jj_scanpos; - if (jj_3_1061()) { + if (jj_3_1068()) { jj_scanpos = xsp; - if (jj_3_1062()) return true; + if (jj_3_1069()) return true; } xsp = jj_scanpos; - if (jj_3_1063()) { + if (jj_3_1070()) { jj_scanpos = xsp; - if (jj_3_1064()) { + if (jj_3_1071()) { jj_scanpos = xsp; - if (jj_3R_339()) return true; + if (jj_3R_342()) return true; } } return false; } - final private boolean jj_3R_353() { + final private boolean jj_3R_356() { Token xsp; xsp = jj_scanpos; - if (jj_3_197()) { + if (jj_3_204()) { jj_scanpos = xsp; - if (jj_3R_409()) return true; + if (jj_3R_413()) return true; } xsp = jj_scanpos; - if (jj_3_198()) { + if (jj_3_205()) { jj_scanpos = xsp; - if (jj_3R_410()) return true; + if (jj_3R_414()) return true; } return false; } - final private boolean jj_3_1059() { + final private boolean jj_3_1066() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_536() { + final private boolean jj_3_543() { if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; return false; } - final private boolean jj_3R_337() { + final private boolean jj_3R_340() { return false; } - final private boolean jj_3_1058() { + final private boolean jj_3_1065() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1066() { + final private boolean jj_3_1073() { if (jj_scan_token(INTERSECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1059()) { + if (jj_3_1066()) { jj_scanpos = xsp; - if (jj_3_1060()) { + if (jj_3_1067()) { jj_scanpos = xsp; - if (jj_3R_338()) return true; + if (jj_3R_341()) return true; } } return false; } - final private boolean jj_3_1057() { + final private boolean jj_3_1064() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3R_88() { - if (jj_3R_79()) return true; - if (jj_3R_353()) return true; + final private boolean jj_3R_89() { + if (jj_3R_80()) return true; + if (jj_3R_356()) return true; return false; } - final private boolean jj_3_1065() { + final private boolean jj_3_1072() { if (jj_scan_token(UNION)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1057()) { + if (jj_3_1064()) { jj_scanpos = xsp; - if (jj_3_1058()) { + if (jj_3_1065()) { jj_scanpos = xsp; - if (jj_3R_337()) return true; + if (jj_3R_340()) return true; } } return false; } - final private boolean jj_3_1047() { + final private boolean jj_3_1054() { if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3R_344() { + final private boolean jj_3R_347() { Token xsp; xsp = jj_scanpos; - if (jj_3_1065()) { + if (jj_3_1072()) { jj_scanpos = xsp; - if (jj_3_1066()) { + if (jj_3_1073()) { jj_scanpos = xsp; - if (jj_3_1067()) return true; + if (jj_3_1074()) return true; } } return false; } - final private boolean jj_3R_352() { + final private boolean jj_3R_355() { return false; } - final private boolean jj_3_196() { - if (jj_3R_155()) return true; + final private boolean jj_3_203() { + if (jj_3R_158()) return true; return false; } - final private boolean jj_3R_351() { + final private boolean jj_3R_354() { return false; } - final private boolean jj_3_1046() { + final private boolean jj_3_1053() { if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_195() { + final private boolean jj_3_202() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_533() { + final private boolean jj_3_540() { if (jj_scan_token(UESCAPE)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1053() { - if (jj_3R_173()) return true; + final private boolean jj_3_1060() { + if (jj_3R_176()) return true; return false; } - final private boolean jj_3_1052() { + final private boolean jj_3_1059() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_87() { - if (jj_3R_77()) return true; + final private boolean jj_3R_88() { + if (jj_3R_78()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_195()) { + if (jj_3_202()) { jj_scanpos = xsp; - if (jj_3R_351()) return true; + if (jj_3R_354()) return true; } xsp = jj_scanpos; - if (jj_3_196()) { + if (jj_3_203()) { jj_scanpos = xsp; - if (jj_3R_352()) return true; + if (jj_3R_355()) return true; } return false; } - final private boolean jj_3_1045() { + final private boolean jj_3_1052() { if (jj_scan_token(LEFT)) return true; return false; } - final private boolean jj_3_1051() { + final private boolean jj_3_1058() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1050() { - if (jj_3R_335()) return true; + final private boolean jj_3_1057() { + if (jj_3R_338()) return true; return false; } - final private boolean jj_3R_249() { + final private boolean jj_3R_252() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1049() { - if (jj_3R_334()) return true; + final private boolean jj_3_1056() { + if (jj_3R_337()) return true; return false; } - final private boolean jj_3_1048() { - if (jj_3R_333()) return true; + final private boolean jj_3_1055() { + if (jj_3R_336()) return true; return false; } - final private boolean jj_3_1044() { + final private boolean jj_3_1051() { if (jj_scan_token(INSERT)) return true; return false; } - final private boolean jj_3R_336() { + final private boolean jj_3R_339() { Token xsp; xsp = jj_scanpos; - if (jj_3_1044()) { + if (jj_3_1051()) { jj_scanpos = xsp; - if (jj_3_1045()) { + if (jj_3_1052()) { jj_scanpos = xsp; - if (jj_3_1046()) { + if (jj_3_1053()) { jj_scanpos = xsp; - if (jj_3_1047()) return true; + if (jj_3_1054()) return true; } } } return false; } - final private boolean jj_3_193() { + final private boolean jj_3_200() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_1056() { + final private boolean jj_3_1063() { Token xsp; xsp = jj_scanpos; - if (jj_3R_336()) { + if (jj_3R_339()) { jj_scanpos = xsp; - if (jj_3_1048()) { + if (jj_3_1055()) { jj_scanpos = xsp; - if (jj_3_1049()) { + if (jj_3_1056()) { jj_scanpos = xsp; - if (jj_3_1050()) return true; + if (jj_3_1057()) return true; } } } xsp = jj_scanpos; - if (jj_3_1051()) { + if (jj_3_1058()) { jj_scanpos = xsp; - if (jj_3_1052()) { + if (jj_3_1059()) { jj_scanpos = xsp; - if (jj_3_1053()) return true; + if (jj_3_1060()) return true; } } return false; } - final private boolean jj_3_194() { - if (jj_3R_154()) return true; + final private boolean jj_3_201() { + if (jj_3R_157()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_193()) { jj_scanpos = xsp; break; } + if (jj_3_200()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_358() { - if (jj_3R_152()) return true; + final private boolean jj_3R_362() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_532() { + final private boolean jj_3_539() { if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1055() { + final private boolean jj_3_1062() { if (jj_scan_token(CONVERT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_531() { + final private boolean jj_3_538() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_530() { + final private boolean jj_3_537() { if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1054() { - if (jj_3R_299()) return true; + final private boolean jj_3_1061() { + if (jj_3R_302()) return true; return false; } - final private boolean jj_3_535() { + final private boolean jj_3_542() { Token xsp; xsp = jj_scanpos; - if (jj_3_530()) { + if (jj_3_537()) { jj_scanpos = xsp; - if (jj_3_531()) { + if (jj_3_538()) { jj_scanpos = xsp; - if (jj_3_532()) return true; + if (jj_3_539()) return true; } } while (true) { xsp = jj_scanpos; - if (jj_3R_249()) { jj_scanpos = xsp; break; } + if (jj_3R_252()) { jj_scanpos = xsp; break; } } xsp = jj_scanpos; - if (jj_3_533()) jj_scanpos = xsp; + if (jj_3_540()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_394() { - if (jj_3R_302()) return true; + final private boolean jj_3R_398() { + if (jj_3R_305()) return true; return false; } - final private boolean jj_3R_393() { - if (jj_3R_300()) return true; + final private boolean jj_3R_397() { + if (jj_3R_303()) return true; return false; } - final private boolean jj_3R_117() { + final private boolean jj_3R_119() { if (jj_scan_token(CALL)) return true; - if (jj_3R_358()) return true; + if (jj_3R_362()) return true; return false; } - final private boolean jj_3R_392() { - if (jj_3R_303()) return true; + final private boolean jj_3R_396() { + if (jj_3R_306()) return true; return false; } - final private boolean jj_3R_248() { + final private boolean jj_3R_251() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_187() { + final private boolean jj_3_194() { if (jj_scan_token(SCHEMA)) return true; return false; } - final private boolean jj_3R_391() { - if (jj_3R_301()) return true; + final private boolean jj_3R_395() { + if (jj_3R_304()) return true; return false; } - final private boolean jj_3R_390() { - if (jj_3R_295()) return true; + final private boolean jj_3R_394() { + if (jj_3R_298()) return true; return false; } - final private boolean jj_3_186() { + final private boolean jj_3_193() { if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3R_389() { - if (jj_3R_297()) return true; + final private boolean jj_3R_393() { + if (jj_3R_300()) return true; return false; } - final private boolean jj_3_192() { + final private boolean jj_3_199() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(601)) jj_scanpos = xsp; - if (jj_3R_153()) return true; + if (jj_3R_156()) return true; return false; } - final private boolean jj_3R_138() { + final private boolean jj_3R_142() { Token xsp; xsp = jj_scanpos; - if (jj_3_534()) { + if (jj_3_541()) { jj_scanpos = xsp; - if (jj_3_535()) { + if (jj_3_542()) { jj_scanpos = xsp; - if (jj_3_536()) { + if (jj_3_543()) { jj_scanpos = xsp; - if (jj_3_537()) { + if (jj_3_544()) { jj_scanpos = xsp; - if (jj_3_538()) return true; + if (jj_3_545()) return true; } } } @@ -26876,27 +26771,27 @@ final private boolean jj_3R_138() { return false; } - final private boolean jj_3_189() { - if (jj_3R_84()) return true; + final private boolean jj_3_196() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_191() { + final private boolean jj_3_198() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(622)) { jj_scanpos = xsp; - if (jj_scan_token(821)) { + if (jj_scan_token(823)) { jj_scanpos = xsp; - if (jj_scan_token(820)) { + if (jj_scan_token(822)) { jj_scanpos = xsp; - if (jj_scan_token(817)) { + if (jj_scan_token(819)) { jj_scanpos = xsp; - if (jj_scan_token(818)) { + if (jj_scan_token(820)) { jj_scanpos = xsp; - if (jj_scan_token(819)) { + if (jj_scan_token(821)) { jj_scanpos = xsp; - if (jj_scan_token(816)) return true; + if (jj_scan_token(818)) return true; } } } @@ -26906,61 +26801,53 @@ final private boolean jj_3_191() { return false; } - final private boolean jj_3_534() { + final private boolean jj_3_541() { if (jj_scan_token(BINARY_STRING_LITERAL)) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3R_248()) { jj_scanpos = xsp; break; } + if (jj_3R_251()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_388() { - if (jj_3R_298()) return true; + final private boolean jj_3R_392() { + if (jj_3R_301()) return true; return false; } - final private boolean jj_3_188() { + final private boolean jj_3_195() { if (jj_scan_token(TABLE)) return true; return false; } - final private boolean jj_3R_387() { - if (jj_3R_294()) return true; + final private boolean jj_3R_391() { + if (jj_3R_297()) return true; return false; } - final private boolean jj_3_185() { + final private boolean jj_3_192() { if (jj_scan_token(DATABASE)) return true; return false; } - final private boolean jj_3R_356() { + final private boolean jj_3R_360() { Token xsp; xsp = jj_scanpos; - if (jj_3_188()) jj_scanpos = xsp; - if (jj_3R_152()) return true; + if (jj_3_195()) jj_scanpos = xsp; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_386() { - if (jj_3R_292()) return true; + final private boolean jj_3R_390() { + if (jj_3R_295()) return true; return false; } - final private boolean jj_3R_224() { + final private boolean jj_3R_227() { if (jj_scan_token(LBRACE_FN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3R_386()) { - jj_scanpos = xsp; - if (jj_3R_387()) { - jj_scanpos = xsp; - if (jj_3R_388()) { - jj_scanpos = xsp; - if (jj_3R_389()) { - jj_scanpos = xsp; if (jj_3R_390()) { jj_scanpos = xsp; if (jj_3R_391()) { @@ -26971,11 +26858,19 @@ final private boolean jj_3R_224() { jj_scanpos = xsp; if (jj_3R_394()) { jj_scanpos = xsp; - if (jj_3_1054()) { + if (jj_3R_395()) { jj_scanpos = xsp; - if (jj_3_1055()) { + if (jj_3R_396()) { + jj_scanpos = xsp; + if (jj_3R_397()) { + jj_scanpos = xsp; + if (jj_3R_398()) { + jj_scanpos = xsp; + if (jj_3_1061()) { + jj_scanpos = xsp; + if (jj_3_1062()) { jj_scanpos = xsp; - if (jj_3_1056()) return true; + if (jj_3_1063()) return true; } } } @@ -26990,220 +26885,220 @@ final private boolean jj_3R_224() { return false; } - final private boolean jj_3_190() { + final private boolean jj_3_197() { Token xsp; xsp = jj_scanpos; - if (jj_3_185()) { + if (jj_3_192()) { jj_scanpos = xsp; - if (jj_3_186()) { + if (jj_3_193()) { jj_scanpos = xsp; - if (jj_3_187()) return true; + if (jj_3_194()) return true; } } - if (jj_3R_152()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_112() { + final private boolean jj_3R_114() { if (jj_scan_token(DESCRIBE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_190()) { + if (jj_3_197()) { jj_scanpos = xsp; - if (jj_3R_356()) { + if (jj_3R_360()) { jj_scanpos = xsp; - if (jj_3_192()) return true; + if (jj_3_199()) return true; } } return false; } - final private boolean jj_3_529() { + final private boolean jj_3_536() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_528() { + final private boolean jj_3_535() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_527() { + final private boolean jj_3_534() { if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3R_244() { + final private boolean jj_3R_247() { Token xsp; xsp = jj_scanpos; - if (jj_3_526()) { + if (jj_3_533()) { jj_scanpos = xsp; - if (jj_3_527()) { + if (jj_3_534()) { jj_scanpos = xsp; - if (jj_3_528()) { + if (jj_3_535()) { jj_scanpos = xsp; - if (jj_3_529()) return true; + if (jj_3_536()) return true; } } } return false; } - final private boolean jj_3_526() { + final private boolean jj_3_533() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1043() { + final private boolean jj_3_1050() { if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_1042() { + final private boolean jj_3_1049() { if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3_1041() { + final private boolean jj_3_1048() { if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_1040() { + final private boolean jj_3_1047() { if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_1039() { + final private boolean jj_3_1046() { if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3_182() { + final private boolean jj_3_189() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1038() { + final private boolean jj_3_1045() { if (jj_scan_token(CURRENT_USER)) return true; return false; } - final private boolean jj_3_1037() { + final private boolean jj_3_1044() { if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } - final private boolean jj_3_525() { - if (jj_3R_198()) return true; + final private boolean jj_3_532() { + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_1036() { + final private boolean jj_3_1043() { if (jj_scan_token(CURRENT_TIME)) return true; return false; } - final private boolean jj_3_184() { + final private boolean jj_3_191() { if (jj_scan_token(INCLUDING)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_182()) jj_scanpos = xsp; + if (jj_3_189()) jj_scanpos = xsp; if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_1035() { + final private boolean jj_3_1042() { if (jj_scan_token(CURRENT_SCHEMA)) return true; return false; } - final private boolean jj_3_1034() { + final private boolean jj_3_1041() { if (jj_scan_token(CURRENT_ROLE)) return true; return false; } - final private boolean jj_3_1033() { + final private boolean jj_3_1040() { if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_524() { + final private boolean jj_3_531() { if (jj_scan_token(MINUS)) return true; - if (jj_3R_198()) return true; + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_1032() { + final private boolean jj_3_1039() { if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } - final private boolean jj_3_1031() { + final private boolean jj_3_1038() { if (jj_scan_token(CURRENT_DATE)) return true; return false; } - final private boolean jj_3_183() { + final private boolean jj_3_190() { if (jj_scan_token(EXCLUDING)) return true; if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_1030() { + final private boolean jj_3_1037() { if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } - final private boolean jj_3R_139() { + final private boolean jj_3R_143() { Token xsp; xsp = jj_scanpos; - if (jj_3_523()) { + if (jj_3_530()) { jj_scanpos = xsp; - if (jj_3_524()) { + if (jj_3_531()) { jj_scanpos = xsp; - if (jj_3_525()) return true; + if (jj_3_532()) return true; } } return false; } - final private boolean jj_3_523() { + final private boolean jj_3_530() { if (jj_scan_token(PLUS)) return true; - if (jj_3R_198()) return true; + if (jj_3R_201()) return true; return false; } - final private boolean jj_3R_230() { + final private boolean jj_3R_233() { Token xsp; xsp = jj_scanpos; - if (jj_3_1030()) { + if (jj_3_1037()) { jj_scanpos = xsp; - if (jj_3_1031()) { + if (jj_3_1038()) { jj_scanpos = xsp; - if (jj_3_1032()) { + if (jj_3_1039()) { jj_scanpos = xsp; - if (jj_3_1033()) { + if (jj_3_1040()) { jj_scanpos = xsp; - if (jj_3_1034()) { + if (jj_3_1041()) { jj_scanpos = xsp; - if (jj_3_1035()) { + if (jj_3_1042()) { jj_scanpos = xsp; - if (jj_3_1036()) { + if (jj_3_1043()) { jj_scanpos = xsp; - if (jj_3_1037()) { + if (jj_3_1044()) { jj_scanpos = xsp; - if (jj_3_1038()) { + if (jj_3_1045()) { jj_scanpos = xsp; - if (jj_3_1039()) { + if (jj_3_1046()) { jj_scanpos = xsp; - if (jj_3_1040()) { + if (jj_3_1047()) { jj_scanpos = xsp; - if (jj_3_1041()) { + if (jj_3_1048()) { jj_scanpos = xsp; - if (jj_3_1042()) { + if (jj_3_1049()) { jj_scanpos = xsp; - if (jj_3_1043()) return true; + if (jj_3_1050()) return true; } } } @@ -27220,368 +27115,368 @@ final private boolean jj_3R_230() { return false; } - final private boolean jj_3R_151() { + final private boolean jj_3R_155() { Token xsp; xsp = jj_scanpos; - if (jj_3_183()) { + if (jj_3_190()) { jj_scanpos = xsp; - if (jj_3_184()) return true; + if (jj_3_191()) return true; } return false; } - final private boolean jj_3_1029() { + final private boolean jj_3_1036() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_1028() { + final private boolean jj_3_1035() { if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_522() { + final private boolean jj_3_529() { if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; return false; } - final private boolean jj_3_1027() { + final private boolean jj_3_1034() { if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3_1026() { + final private boolean jj_3_1033() { if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_1025() { + final private boolean jj_3_1032() { if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3_1024() { + final private boolean jj_3_1031() { if (jj_scan_token(UPPER)) return true; return false; } - final private boolean jj_3_1023() { + final private boolean jj_3_1030() { if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_521() { + final private boolean jj_3_528() { if (jj_scan_token(DECIMAL)) return true; - if (jj_3R_247()) return true; + if (jj_3R_250()) return true; return false; } - final private boolean jj_3_1022() { + final private boolean jj_3_1029() { if (jj_scan_token(STDDEV_SAMP)) return true; return false; } - final private boolean jj_3_1021() { + final private boolean jj_3_1028() { if (jj_scan_token(STDDEV_POP)) return true; return false; } - final private boolean jj_3_181() { + final private boolean jj_3_188() { if (jj_scan_token(WITHOUT)) return true; if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_1020() { + final private boolean jj_3_1027() { if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_1019() { + final private boolean jj_3_1026() { if (jj_scan_token(SOME)) return true; return false; } - final private boolean jj_3_520() { + final private boolean jj_3_527() { if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; return false; } - final private boolean jj_3_1018() { + final private boolean jj_3_1025() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_1017() { + final private boolean jj_3_1024() { if (jj_scan_token(ROW_NUMBER)) return true; return false; } - final private boolean jj_3_1016() { + final private boolean jj_3_1023() { if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_180() { + final private boolean jj_3_187() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_1015() { + final private boolean jj_3_1022() { if (jj_scan_token(REGR_SYY)) return true; return false; } - final private boolean jj_3R_198() { + final private boolean jj_3R_201() { Token xsp; xsp = jj_scanpos; - if (jj_3_519()) { + if (jj_3_526()) { jj_scanpos = xsp; - if (jj_3_520()) { + if (jj_3_527()) { jj_scanpos = xsp; - if (jj_3_521()) { + if (jj_3_528()) { jj_scanpos = xsp; - if (jj_3_522()) return true; + if (jj_3_529()) return true; } } } return false; } - final private boolean jj_3_519() { + final private boolean jj_3_526() { if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1014() { + final private boolean jj_3_1021() { if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3_1013() { + final private boolean jj_3_1020() { if (jj_scan_token(REGR_COUNT)) return true; return false; } - final private boolean jj_3_1012() { + final private boolean jj_3_1019() { if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3_1011() { + final private boolean jj_3_1018() { if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_1010() { + final private boolean jj_3_1017() { if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3_179() { + final private boolean jj_3_186() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_1009() { + final private boolean jj_3_1016() { if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_1008() { + final private boolean jj_3_1015() { if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_518() { - if (jj_3R_243()) return true; + final private boolean jj_3_525() { + if (jj_3R_246()) return true; return false; } - final private boolean jj_3_1007() { + final private boolean jj_3_1014() { if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1006() { + final private boolean jj_3_1013() { if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3_517() { - if (jj_3R_246()) return true; + final private boolean jj_3_524() { + if (jj_3R_249()) return true; return false; } - final private boolean jj_3_1005() { + final private boolean jj_3_1012() { if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3_1004() { + final private boolean jj_3_1011() { if (jj_scan_token(NTH_VALUE)) return true; return false; } - final private boolean jj_3_1003() { + final private boolean jj_3_1010() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_1002() { + final private boolean jj_3_1009() { if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3_1001() { + final private boolean jj_3_1008() { if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3R_222() { + final private boolean jj_3R_225() { Token xsp; xsp = jj_scanpos; - if (jj_3_517()) { + if (jj_3_524()) { jj_scanpos = xsp; - if (jj_3_518()) return true; + if (jj_3_525()) return true; } return false; } - final private boolean jj_3_1000() { + final private boolean jj_3_1007() { if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3_999() { + final private boolean jj_3_1006() { if (jj_scan_token(MAX)) return true; return false; } - final private boolean jj_3_998() { + final private boolean jj_3_1005() { if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_997() { + final private boolean jj_3_1004() { if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_178() { - if (jj_3R_116()) return true; + final private boolean jj_3_185() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_996() { + final private boolean jj_3_1003() { if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3_995() { + final private boolean jj_3_1002() { if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_177() { - if (jj_3R_115()) return true; + final private boolean jj_3_184() { + if (jj_3R_117()) return true; return false; } - final private boolean jj_3_994() { + final private boolean jj_3_1001() { if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_993() { + final private boolean jj_3_1000() { if (jj_scan_token(LEFT)) return true; return false; } - final private boolean jj_3_176() { - if (jj_3R_114()) return true; + final private boolean jj_3_183() { + if (jj_3R_116()) return true; return false; } - final private boolean jj_3_992() { + final private boolean jj_3_999() { if (jj_scan_token(LEAD)) return true; return false; } - final private boolean jj_3_991() { + final private boolean jj_3_998() { if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_175() { - if (jj_3R_113()) return true; + final private boolean jj_3_182() { + if (jj_3R_115()) return true; return false; } - final private boolean jj_3_990() { + final private boolean jj_3_997() { if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_989() { + final private boolean jj_3_996() { if (jj_scan_token(GROUPING)) return true; return false; } - final private boolean jj_3_174() { - if (jj_3R_79()) return true; + final private boolean jj_3_181() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_988() { + final private boolean jj_3_995() { if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_987() { + final private boolean jj_3_994() { if (jj_scan_token(FUSION)) return true; return false; } - final private boolean jj_3_516() { - if (jj_3R_245()) return true; + final private boolean jj_3_523() { + if (jj_3R_248()) return true; return false; } - final private boolean jj_3_986() { + final private boolean jj_3_993() { if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_985() { + final private boolean jj_3_992() { if (jj_scan_token(FIRST_VALUE)) return true; return false; } - final private boolean jj_3_515() { - if (jj_3R_244()) return true; + final private boolean jj_3_522() { + if (jj_3R_247()) return true; return false; } - final private boolean jj_3_984() { + final private boolean jj_3_991() { if (jj_scan_token(EXP)) return true; return false; } - final private boolean jj_3R_153() { + final private boolean jj_3R_156() { Token xsp; xsp = jj_scanpos; - if (jj_3_174()) { + if (jj_3_181()) { jj_scanpos = xsp; - if (jj_3_175()) { + if (jj_3_182()) { jj_scanpos = xsp; - if (jj_3_176()) { + if (jj_3_183()) { jj_scanpos = xsp; - if (jj_3_177()) { + if (jj_3_184()) { jj_scanpos = xsp; - if (jj_3_178()) return true; + if (jj_3_185()) return true; } } } @@ -27589,176 +27484,162 @@ final private boolean jj_3R_153() { return false; } - final private boolean jj_3_983() { + final private boolean jj_3_990() { if (jj_scan_token(EVERY)) return true; return false; } - final private boolean jj_3_514() { - if (jj_3R_138()) return true; + final private boolean jj_3_521() { + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_982() { + final private boolean jj_3_989() { if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_981() { + final private boolean jj_3_988() { if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3_513() { - if (jj_3R_139()) return true; + final private boolean jj_3_520() { + if (jj_3R_143()) return true; return false; } - final private boolean jj_3_980() { + final private boolean jj_3_987() { if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } - final private boolean jj_3_979() { + final private boolean jj_3_986() { if (jj_scan_token(CURRENT_TIME)) return true; return false; } - final private boolean jj_3_978() { + final private boolean jj_3_985() { if (jj_scan_token(CURRENT_DATE)) return true; return false; } - final private boolean jj_3_977() { + final private boolean jj_3_984() { if (jj_scan_token(COUNT)) return true; return false; } - final private boolean jj_3_976() { + final private boolean jj_3_983() { if (jj_scan_token(CUME_DIST)) return true; return false; } - final private boolean jj_3R_243() { + final private boolean jj_3R_246() { Token xsp; xsp = jj_scanpos; - if (jj_3_513()) { + if (jj_3_520()) { jj_scanpos = xsp; - if (jj_3_514()) { + if (jj_3_521()) { jj_scanpos = xsp; - if (jj_3_515()) { + if (jj_3_522()) { jj_scanpos = xsp; - if (jj_3_516()) return true; + if (jj_3_523()) return true; } } } return false; } - final private boolean jj_3_975() { + final private boolean jj_3_982() { if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_974() { + final private boolean jj_3_981() { if (jj_scan_token(COVAR_POP)) return true; return false; } - final private boolean jj_3_973() { + final private boolean jj_3_980() { if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3_972() { + final private boolean jj_3_979() { if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_971() { + final private boolean jj_3_978() { if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_970() { + final private boolean jj_3_977() { if (jj_scan_token(CHAR_LENGTH)) return true; return false; } - final private boolean jj_3_969() { + final private boolean jj_3_976() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_512() { - if (jj_3R_193()) return true; + final private boolean jj_3_519() { + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_968() { + final private boolean jj_3_975() { if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_967() { + final private boolean jj_3_974() { if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_173() { + final private boolean jj_3_180() { if (jj_scan_token(AS)) return true; if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3_511() { - if (jj_3R_243()) return true; + final private boolean jj_3_518() { + if (jj_3R_246()) return true; return false; } - final private boolean jj_3_966() { + final private boolean jj_3_973() { if (jj_scan_token(AVG)) return true; return false; } - final private boolean jj_3_965() { + final private boolean jj_3_972() { if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_172() { + final private boolean jj_3_179() { if (jj_scan_token(AS)) return true; if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3R_119() { + final private boolean jj_3R_121() { Token xsp; xsp = jj_scanpos; - if (jj_3_511()) { + if (jj_3_518()) { jj_scanpos = xsp; - if (jj_3_512()) return true; + if (jj_3_519()) return true; } return false; } - final private boolean jj_3R_333() { + final private boolean jj_3R_336() { Token xsp; xsp = jj_scanpos; - if (jj_3_965()) { - jj_scanpos = xsp; - if (jj_3_966()) { - jj_scanpos = xsp; - if (jj_3_967()) { - jj_scanpos = xsp; - if (jj_3_968()) { - jj_scanpos = xsp; - if (jj_3_969()) { - jj_scanpos = xsp; - if (jj_3_970()) { - jj_scanpos = xsp; - if (jj_3_971()) { - jj_scanpos = xsp; if (jj_3_972()) { jj_scanpos = xsp; if (jj_3_973()) { @@ -27873,7 +27754,21 @@ final private boolean jj_3R_333() { jj_scanpos = xsp; if (jj_3_1028()) { jj_scanpos = xsp; - if (jj_3_1029()) return true; + if (jj_3_1029()) { + jj_scanpos = xsp; + if (jj_3_1030()) { + jj_scanpos = xsp; + if (jj_3_1031()) { + jj_scanpos = xsp; + if (jj_3_1032()) { + jj_scanpos = xsp; + if (jj_3_1033()) { + jj_scanpos = xsp; + if (jj_3_1034()) { + jj_scanpos = xsp; + if (jj_3_1035()) { + jj_scanpos = xsp; + if (jj_3_1036()) return true; } } } @@ -27941,757 +27836,794 @@ final private boolean jj_3R_333() { return false; } - final private boolean jj_3_171() { + final private boolean jj_3_178() { if (jj_scan_token(AS)) return true; if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_170() { - if (jj_3R_151()) return true; + final private boolean jj_3_177() { + if (jj_3R_155()) return true; return false; } - final private boolean jj_3R_111() { + final private boolean jj_3R_113() { if (jj_scan_token(EXPLAIN)) return true; if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3_964() { - if (jj_3R_333()) return true; + final private boolean jj_3_971() { + if (jj_3R_336()) return true; return false; } - final private boolean jj_3_963() { - if (jj_3R_152()) return true; + final private boolean jj_3_970() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_229() { + final private boolean jj_3R_232() { Token xsp; xsp = jj_scanpos; - if (jj_3_963()) { + if (jj_3_970()) { jj_scanpos = xsp; - if (jj_3_964()) return true; + if (jj_3_971()) return true; } return false; } - final private boolean jj_3_510() { - if (jj_3R_242()) return true; + final private boolean jj_3_517() { + if (jj_3R_245()) return true; return false; } - final private boolean jj_3_509() { - if (jj_3R_241()) return true; + final private boolean jj_3_516() { + if (jj_3R_244()) return true; return false; } - final private boolean jj_3_508() { - if (jj_3R_240()) return true; + final private boolean jj_3_515() { + if (jj_3R_243()) return true; return false; } - final private boolean jj_3_507() { - if (jj_3R_239()) return true; + final private boolean jj_3_514() { + if (jj_3R_242()) return true; return false; } - final private boolean jj_3R_110() { + final private boolean jj_3R_112() { if (jj_scan_token(DROP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_507()) { + if (jj_3_514()) { jj_scanpos = xsp; - if (jj_3_508()) { + if (jj_3_515()) { jj_scanpos = xsp; - if (jj_3_509()) { + if (jj_3_516()) { jj_scanpos = xsp; - if (jj_3_510()) return true; + if (jj_3_517()) return true; } } } return false; } - final private boolean jj_3R_334() { + final private boolean jj_3R_337() { if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3_159() { + final private boolean jj_3_166() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_143()) return true; + if (jj_3R_147()) return true; return false; } - final private boolean jj_3_168() { - if (jj_3R_149()) return true; + final private boolean jj_3_175() { + if (jj_3R_153()) return true; return false; } - final private boolean jj_3_167() { - if (jj_3R_148()) return true; + final private boolean jj_3_174() { + if (jj_3R_152()) return true; return false; } - final private boolean jj_3_166() { - if (jj_3R_147()) return true; + final private boolean jj_3_173() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_165() { - if (jj_3R_146()) return true; + final private boolean jj_3_172() { + if (jj_3R_150()) return true; return false; } - final private boolean jj_3_961() { - if (jj_3R_331()) return true; + final private boolean jj_3_968() { + if (jj_3R_334()) return true; return false; } - final private boolean jj_3_164() { - if (jj_3R_145()) return true; + final private boolean jj_3_171() { + if (jj_3R_149()) return true; return false; } - final private boolean jj_3_506() { - if (jj_3R_238()) return true; + final private boolean jj_3_513() { + if (jj_3R_241()) return true; return false; } - final private boolean jj_3_960() { - if (jj_3R_84()) return true; + final private boolean jj_3_967() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_505() { - if (jj_3R_237()) return true; + final private boolean jj_3_512() { + if (jj_3R_240()) return true; return false; } - final private boolean jj_3_169() { + final private boolean jj_3_176() { if (jj_scan_token(FROM)) return true; - if (jj_3R_150()) return true; + if (jj_3R_154()) return true; return false; } - final private boolean jj_3_504() { - if (jj_3R_236()) return true; + final private boolean jj_3_511() { + if (jj_3R_239()) return true; return false; } - final private boolean jj_3_163() { + final private boolean jj_3_170() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_144()) return true; + if (jj_3R_148()) return true; return false; } - final private boolean jj_3_503() { - if (jj_3R_235()) return true; + final private boolean jj_3_510() { + if (jj_3R_238()) return true; return false; } - final private boolean jj_3_962() { + final private boolean jj_3_969() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_960()) { + if (jj_3_967()) { jj_scanpos = xsp; - if (jj_3_961()) return true; + if (jj_3_968()) return true; } return false; } - final private boolean jj_3_162() { - if (jj_3R_82()) return true; + final private boolean jj_3_169() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3_502() { + final private boolean jj_3_509() { if (jj_scan_token(OR)) return true; if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_161() { + final private boolean jj_3_168() { if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3_959() { + final private boolean jj_3_966() { if (jj_scan_token(TO)) return true; - if (jj_3R_332()) return true; + if (jj_3R_335()) return true; return false; } - final private boolean jj_3R_109() { + final private boolean jj_3R_111() { if (jj_scan_token(CREATE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_502()) jj_scanpos = xsp; + if (jj_3_509()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_503()) { + if (jj_3_510()) { jj_scanpos = xsp; - if (jj_3_504()) { + if (jj_3_511()) { jj_scanpos = xsp; - if (jj_3_505()) { + if (jj_3_512()) { jj_scanpos = xsp; - if (jj_3_506()) return true; + if (jj_3_513()) return true; } } } return false; } - final private boolean jj_3_501() { + final private boolean jj_3_508() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_160() { + final private boolean jj_3_167() { if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_143()) return true; + if (jj_3R_147()) return true; return false; } - final private boolean jj_3R_400() { + final private boolean jj_3R_404() { if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_158() { + final private boolean jj_3_165() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_143()) return true; + if (jj_3R_147()) return true; return false; } - final private boolean jj_3R_75() { + final private boolean jj_3R_76() { if (jj_scan_token(SELECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_160()) jj_scanpos = xsp; - if (jj_3R_346()) return true; + if (jj_3_167()) jj_scanpos = xsp; + if (jj_3R_349()) return true; return false; } - final private boolean jj_3_500() { + final private boolean jj_3_507() { if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3R_355() { + final private boolean jj_3R_359() { Token xsp; xsp = jj_scanpos; - if (jj_3_500()) { + if (jj_3_507()) { jj_scanpos = xsp; - if (jj_3_501()) return true; + if (jj_3_508()) return true; } return false; } - final private boolean jj_3_958() { - if (jj_3R_220()) return true; + final private boolean jj_3_965() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3_957() { + final private boolean jj_3_964() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_108() { + final private boolean jj_3R_110() { if (jj_scan_token(ALTER)) return true; - if (jj_3R_355()) return true; + if (jj_3R_359()) return true; return false; } - final private boolean jj_3_956() { + final private boolean jj_3_963() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_157() { + final private boolean jj_3R_160() { if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_143()) return true; + if (jj_3R_147()) return true; return false; } - final private boolean jj_3R_404() { + final private boolean jj_3R_408() { return false; } - final private boolean jj_3_497() { + final private boolean jj_3_504() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_955() { + final private boolean jj_3_962() { if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_496() { - if (jj_3R_152()) return true; + final private boolean jj_3_503() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_328() { + final private boolean jj_3R_331() { Token xsp; xsp = jj_scanpos; - if (jj_3_955()) { + if (jj_3_962()) { jj_scanpos = xsp; - if (jj_3R_404()) return true; + if (jj_3R_408()) return true; } - if (jj_3R_229()) return true; + if (jj_3R_232()) return true; return false; } - final private boolean jj_3_154() { + final private boolean jj_3_161() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_499() { + final private boolean jj_3_506() { if (jj_scan_token(RESET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_496()) { + if (jj_3_503()) { jj_scanpos = xsp; - if (jj_3_497()) return true; + if (jj_3_504()) return true; } return false; } - final private boolean jj_3_157() { - if (jj_3R_142()) return true; + final private boolean jj_3_164() { + if (jj_3R_146()) return true; return false; } - final private boolean jj_3_495() { + final private boolean jj_3_502() { if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_953() { - if (jj_3R_331()) return true; + final private boolean jj_3_960() { + if (jj_3R_334()) return true; return false; } - final private boolean jj_3_156() { - if (jj_3R_124()) return true; + final private boolean jj_3_163() { + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_494() { - if (jj_3R_84()) return true; + final private boolean jj_3_501() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_153() { + final private boolean jj_3_160() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_140()) return true; + if (jj_3R_144()) return true; return false; } - final private boolean jj_3_952() { - if (jj_3R_84()) return true; + final private boolean jj_3_959() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_493() { - if (jj_3R_119()) return true; + final private boolean jj_3_500() { + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_155() { - if (jj_3R_141()) return true; + final private boolean jj_3_162() { + if (jj_3R_145()) return true; return false; } - final private boolean jj_3_954() { + final private boolean jj_3_961() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_952()) { + if (jj_3_959()) { jj_scanpos = xsp; - if (jj_3_953()) return true; + if (jj_3_960()) return true; } return false; } - final private boolean jj_3R_143() { - if (jj_3R_84()) return true; + final private boolean jj_3R_147() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_498() { + final private boolean jj_3_505() { if (jj_scan_token(SET)) return true; - if (jj_3R_152()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_107() { + final private boolean jj_3R_109() { Token xsp; xsp = jj_scanpos; - if (jj_3_498()) { + if (jj_3_505()) { jj_scanpos = xsp; - if (jj_3_499()) return true; + if (jj_3_506()) return true; } return false; } - final private boolean jj_3_951() { + final private boolean jj_3_958() { if (jj_scan_token(FILTER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_950() { - if (jj_3R_323()) return true; + final private boolean jj_3_957() { + if (jj_3R_326()) return true; return false; } - final private boolean jj_3_949() { - if (jj_3R_330()) return true; + final private boolean jj_3_956() { + if (jj_3R_333()) return true; return false; } - final private boolean jj_3R_142() { + final private boolean jj_3R_146() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_140()) return true; + if (jj_3R_144()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_153()) { jj_scanpos = xsp; break; } + if (jj_3_160()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_948() { - if (jj_3R_329()) return true; + final private boolean jj_3_955() { + if (jj_3R_332()) return true; return false; } - final private boolean jj_3_947() { - if (jj_3R_328()) return true; + final private boolean jj_3_954() { + if (jj_3R_331()) return true; return false; } - final private boolean jj_3_492() { + final private boolean jj_3_499() { if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3R_413() { - if (jj_3R_416()) return true; + final private boolean jj_3R_417() { + if (jj_3R_420()) return true; return false; } - final private boolean jj_3_491() { + final private boolean jj_3_498() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_152() { - if (jj_3R_138()) return true; + final private boolean jj_3_159() { + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_946() { - if (jj_3R_327()) return true; + final private boolean jj_3_953() { + if (jj_3R_330()) return true; return false; } - final private boolean jj_3_151() { - if (jj_3R_139()) return true; + final private boolean jj_3_158() { + if (jj_3R_143()) return true; return false; } - final private boolean jj_3R_233() { + final private boolean jj_3R_236() { Token xsp; xsp = jj_scanpos; - if (jj_3_491()) { + if (jj_3_498()) { jj_scanpos = xsp; - if (jj_3_492()) return true; + if (jj_3_499()) return true; } if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3R_378() { + final private boolean jj_3R_382() { Token xsp; xsp = jj_scanpos; - if (jj_3_946()) { + if (jj_3_953()) { jj_scanpos = xsp; - if (jj_3R_413()) { + if (jj_3R_417()) { jj_scanpos = xsp; - if (jj_3_947()) return true; + if (jj_3_954()) return true; } } return false; } - final private boolean jj_3R_140() { + final private boolean jj_3R_144() { Token xsp; xsp = jj_scanpos; - if (jj_3_151()) { + if (jj_3_158()) { jj_scanpos = xsp; - if (jj_3_152()) return true; + if (jj_3_159()) return true; } return false; } - final private boolean jj_3_490() { + final private boolean jj_3_497() { if (jj_scan_token(ELSE)) return true; - if (jj_3R_81()) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_150() { - if (jj_3R_138()) return true; + final private boolean jj_3_157() { + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_149() { - if (jj_3R_84()) return true; + final private boolean jj_3_156() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_137() { + final private boolean jj_3R_141() { Token xsp; xsp = jj_scanpos; - if (jj_3_149()) { + if (jj_3_156()) { jj_scanpos = xsp; - if (jj_3_150()) return true; + if (jj_3_157()) return true; } if (jj_scan_token(EQ)) return true; - if (jj_3R_138()) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_489() { + final private boolean jj_3_496() { if (jj_scan_token(WHEN)) return true; - if (jj_3R_234()) return true; + if (jj_3R_237()) return true; return false; } - final private boolean jj_3R_395() { + final private boolean jj_3R_399() { return false; } - final private boolean jj_3R_329() { - if (jj_3R_221()) return true; + final private boolean jj_3R_332() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_488() { - if (jj_3R_81()) return true; + final private boolean jj_3_495() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_148() { + final private boolean jj_3_155() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_137()) return true; + if (jj_3R_141()) return true; return false; } - final private boolean jj_3R_232() { + final private boolean jj_3R_235() { if (jj_scan_token(CASE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_488()) { + if (jj_3_495()) { jj_scanpos = xsp; - if (jj_3R_395()) return true; + if (jj_3R_399()) return true; } return false; } - final private boolean jj_3_945() { + final private boolean jj_3_952() { if (jj_scan_token(RESPECT)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3R_221() { + final private boolean jj_3R_224() { Token xsp; xsp = jj_scanpos; - if (jj_3_944()) { + if (jj_3_951()) { jj_scanpos = xsp; - if (jj_3_945()) return true; + if (jj_3_952()) return true; } return false; } - final private boolean jj_3R_141() { + final private boolean jj_3R_145() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_137()) return true; + if (jj_3R_141()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_148()) { jj_scanpos = xsp; break; } + if (jj_3_155()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_944() { + final private boolean jj_3_951() { if (jj_scan_token(IGNORE)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_487() { - if (jj_3R_233()) return true; + final private boolean jj_3_151() { + if (jj_scan_token(WAIT)) return true; return false; } - final private boolean jj_3_482() { + final private boolean jj_3_494() { + if (jj_3R_236()) return true; + return false; + } + + final private boolean jj_3_489() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(542)) jj_scanpos = xsp; - if (jj_3R_229()) return true; + if (jj_3R_232()) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_486() { - if (jj_3R_232()) return true; + final private boolean jj_3_152() { + if (jj_scan_token(NOWAIT)) return true; return false; } - final private boolean jj_3_485() { - if (jj_3R_231()) return true; + final private boolean jj_3_493() { + if (jj_3R_235()) return true; return false; } - final private boolean jj_3R_242() { - if (jj_scan_token(VIEW)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_492() { + if (jj_3R_234()) return true; return false; } - final private boolean jj_3_484() { - if (jj_3R_152()) return true; + final private boolean jj_3_491() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_483() { - if (jj_3R_230()) return true; + final private boolean jj_3R_140() { + if (jj_scan_token(WAIT)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3R_323() { + final private boolean jj_3_153() { + Token xsp; + xsp = jj_scanpos; + if (jj_3R_140()) { + jj_scanpos = xsp; + if (jj_3_152()) return true; + } + return false; + } + + final private boolean jj_3_490() { + if (jj_3R_233()) return true; + return false; + } + + final private boolean jj_3R_326() { if (jj_scan_token(WITHIN)) return true; if (jj_scan_token(GROUP)) return true; return false; } - final private boolean jj_3R_384() { - if (jj_3R_378()) return true; + final private boolean jj_3_149() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_481() { - if (jj_3R_228()) return true; + final private boolean jj_3_150() { + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3R_238() { - if (jj_scan_token(VIEW)) return true; - if (jj_3R_152()) return true; + final private boolean jj_3R_388() { + if (jj_3R_382()) return true; return false; } - final private boolean jj_3_480() { - if (jj_3R_227()) return true; + final private boolean jj_3_488() { + if (jj_3R_231()) return true; return false; } - final private boolean jj_3_479() { - if (jj_3R_226()) return true; + final private boolean jj_3_154() { + if (jj_scan_token(FOR)) return true; + if (jj_scan_token(UPDATE)) return true; return false; } - final private boolean jj_3_478() { - if (jj_3R_225()) return true; + final private boolean jj_3_487() { + if (jj_3R_230()) return true; return false; } - final private boolean jj_3R_330() { + final private boolean jj_3_486() { + if (jj_3R_229()) return true; + return false; + } + + final private boolean jj_3_485() { + if (jj_3R_228()) return true; + return false; + } + + final private boolean jj_3R_333() { if (jj_scan_token(WITHIN)) return true; if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_477() { - if (jj_3R_224()) return true; + final private boolean jj_3_484() { + if (jj_3R_227()) return true; return false; } - final private boolean jj_3_476() { - if (jj_3R_223()) return true; + final private boolean jj_3R_358() { + if (jj_scan_token(FOR)) return true; return false; } - final private boolean jj_3_475() { - if (jj_3R_219()) return true; + final private boolean jj_3_483() { + if (jj_3R_226()) return true; return false; } - final private boolean jj_3R_104() { - if (jj_scan_token(ANALYZE)) return true; - if (jj_3R_354()) return true; + final private boolean jj_3_482() { + if (jj_3R_222()) return true; return false; } - final private boolean jj_3_474() { - if (jj_3R_222()) return true; + final private boolean jj_3R_108() { + if (jj_3R_80()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3R_358()) jj_scanpos = xsp; return false; } - final private boolean jj_3_943() { + final private boolean jj_3_481() { + if (jj_3R_225()) return true; + return false; + } + + final private boolean jj_3_950() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_139()) return true; + if (jj_3R_143()) return true; return false; } - final private boolean jj_3R_216() { + final private boolean jj_3R_219() { Token xsp; xsp = jj_scanpos; - if (jj_3_474()) { + if (jj_3_481()) { jj_scanpos = xsp; - if (jj_3_475()) { + if (jj_3_482()) { jj_scanpos = xsp; - if (jj_3_476()) { + if (jj_3_483()) { jj_scanpos = xsp; - if (jj_3_477()) { + if (jj_3_484()) { jj_scanpos = xsp; - if (jj_3_478()) { + if (jj_3_485()) { jj_scanpos = xsp; - if (jj_3_479()) { + if (jj_3_486()) { jj_scanpos = xsp; - if (jj_3_480()) { + if (jj_3_487()) { jj_scanpos = xsp; - if (jj_3_481()) { + if (jj_3_488()) { jj_scanpos = xsp; - if (jj_3R_384()) { + if (jj_3R_388()) { jj_scanpos = xsp; - if (jj_3_483()) { + if (jj_3_490()) { jj_scanpos = xsp; - if (jj_3_484()) { + if (jj_3_491()) { jj_scanpos = xsp; - if (jj_3_485()) { + if (jj_3_492()) { jj_scanpos = xsp; - if (jj_3_486()) { + if (jj_3_493()) { jj_scanpos = xsp; - if (jj_3_487()) return true; + if (jj_3_494()) return true; } } } @@ -28708,305 +28640,247 @@ final private boolean jj_3R_216() { return false; } - final private boolean jj_3_942() { + final private boolean jj_3_949() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_941() { + final private boolean jj_3_948() { if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3R_105() { - if (jj_scan_token(REFRESH)) return true; - if (jj_scan_token(STATISTICS)) return true; - return false; - } - - final private boolean jj_3R_325() { + final private boolean jj_3R_328() { Token xsp; xsp = jj_scanpos; - if (jj_3_941()) { + if (jj_3_948()) { jj_scanpos = xsp; - if (jj_3_942()) return true; + if (jj_3_949()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_106() { - if (jj_scan_token(DROP)) return true; - if (jj_scan_token(STATISTICS)) return true; - return false; - } - - final private boolean jj_3_471() { - if (jj_3R_221()) return true; + final private boolean jj_3R_245() { + if (jj_scan_token(VIEW)) return true; + if (jj_3R_135()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_147() { - if (jj_3R_84()) return true; + final private boolean jj_3_478() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_473() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3R_241() { + if (jj_scan_token(VIEW)) return true; if (jj_3R_139()) return true; return false; } - final private boolean jj_3_940() { + final private boolean jj_3_480() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_139()) return true; + if (jj_3R_143()) return true; return false; } - final private boolean jj_3_146() { - if (jj_3R_119()) return true; + final private boolean jj_3_947() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_143()) return true; return false; } - final private boolean jj_3_472() { + final private boolean jj_3_479() { if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_939() { + final private boolean jj_3_946() { if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3R_136() { - if (jj_3R_364()) return true; - if (jj_scan_token(EQ)) return true; - return false; - } - - final private boolean jj_3_938() { + final private boolean jj_3_945() { if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_470() { + final private boolean jj_3_477() { if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_469() { + final private boolean jj_3_476() { if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3R_403() { + final private boolean jj_3R_407() { return false; } - final private boolean jj_3_937() { + final private boolean jj_3_944() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_936() { + final private boolean jj_3R_105() { + if (jj_scan_token(ANALYZE)) return true; + if (jj_3R_357()) return true; + return false; + } + + final private boolean jj_3_943() { if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3R_416() { + final private boolean jj_3R_420() { Token xsp; xsp = jj_scanpos; - if (jj_3_469()) { + if (jj_3_476()) { jj_scanpos = xsp; - if (jj_3_470()) return true; + if (jj_3_477()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_145() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; - return false; - } - - final private boolean jj_3R_324() { + final private boolean jj_3R_327() { Token xsp; xsp = jj_scanpos; - if (jj_3_936()) { + if (jj_3_943()) { jj_scanpos = xsp; - if (jj_3_937()) { + if (jj_3_944()) { jj_scanpos = xsp; - if (jj_3R_403()) return true; + if (jj_3R_407()) return true; } } xsp = jj_scanpos; - if (jj_3_938()) { + if (jj_3_945()) { jj_scanpos = xsp; - if (jj_3_939()) return true; + if (jj_3_946()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_144() { - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3R_106() { + if (jj_scan_token(REFRESH)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_143() { - if (jj_scan_token(SIZE)) return true; + final private boolean jj_3_942() { + if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_142() { - if (jj_scan_token(TOTAL)) return true; + final private boolean jj_3_941() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3R_364() { + final private boolean jj_3R_329() { Token xsp; xsp = jj_scanpos; - if (jj_3_141()) { - jj_scanpos = xsp; - if (jj_3_142()) { - jj_scanpos = xsp; - if (jj_3_143()) { - jj_scanpos = xsp; - if (jj_3_144()) { + if (jj_3_941()) { jj_scanpos = xsp; - if (jj_3_145()) return true; - } - } - } + if (jj_3_942()) return true; } + if (jj_3R_382()) return true; return false; } - final private boolean jj_3_141() { - if (jj_scan_token(DISTINCT)) return true; - return false; - } - - final private boolean jj_3_935() { - if (jj_scan_token(FINAL)) return true; - return false; - } - - final private boolean jj_3_139() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; - return false; - } - - final private boolean jj_3_934() { - if (jj_scan_token(RUNNING)) return true; - return false; - } - - final private boolean jj_3_137() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_136()) return true; + final private boolean jj_3R_107() { + if (jj_scan_token(DROP)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3R_326() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_934()) { - jj_scanpos = xsp; - if (jj_3_935()) return true; - } - if (jj_3R_378()) return true; + final private boolean jj_3_475() { + if (jj_scan_token(SEPARATOR)) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_138() { - if (jj_3R_136()) return true; + final private boolean jj_3_148() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_468() { - if (jj_scan_token(SEPARATOR)) return true; - if (jj_3R_138()) return true; + final private boolean jj_3_474() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_140() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_138()) { - jj_scanpos = xsp; - if (jj_3_139()) return true; - } + final private boolean jj_3_940() { + if (jj_3R_329()) return true; return false; } - final private boolean jj_3_467() { - if (jj_3R_70()) return true; + final private boolean jj_3_147() { + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_933() { - if (jj_3R_326()) return true; + final private boolean jj_3_939() { + if (jj_3R_328()) return true; return false; } - final private boolean jj_3_932() { - if (jj_3R_325()) return true; + final private boolean jj_3_473() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_466() { - if (jj_3R_221()) return true; + final private boolean jj_3_938() { + if (jj_3R_327()) return true; return false; } - final private boolean jj_3_931() { - if (jj_3R_324()) return true; + final private boolean jj_3R_138() { + if (jj_3R_368()) return true; + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_930() { + final private boolean jj_3_937() { if (jj_scan_token(MATCH_NUMBER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_465() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; - return false; - } - - final private boolean jj_3_136() { + final private boolean jj_3_472() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_135()) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_929() { + final private boolean jj_3_936() { if (jj_scan_token(CLASSIFIER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_464() { - if (jj_3R_82()) return true; + final private boolean jj_3_471() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3R_304() { + final private boolean jj_3R_307() { Token xsp; xsp = jj_scanpos; - if (jj_3_929()) { + if (jj_3_936()) { jj_scanpos = xsp; - if (jj_3_930()) { + if (jj_3_937()) { jj_scanpos = xsp; - if (jj_3_931()) { + if (jj_3_938()) { jj_scanpos = xsp; - if (jj_3_932()) { + if (jj_3_939()) { jj_scanpos = xsp; - if (jj_3_933()) return true; + if (jj_3_940()) return true; } } } @@ -29014,41 +28888,80 @@ final private boolean jj_3R_304() { return false; } - final private boolean jj_3R_354() { - if (jj_3R_135()) return true; + final private boolean jj_3_146() { + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3_463() { + final private boolean jj_3_145() { + if (jj_scan_token(NULLS)) return true; + return false; + } + + final private boolean jj_3_470() { if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3_462() { + final private boolean jj_3_469() { if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_461() { + final private boolean jj_3_144() { + if (jj_scan_token(SIZE)) return true; + return false; + } + + final private boolean jj_3_468() { if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3_460() { + final private boolean jj_3_467() { if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3R_327() { + final private boolean jj_3_143() { + if (jj_scan_token(TOTAL)) return true; + return false; + } + + final private boolean jj_3R_368() { Token xsp; xsp = jj_scanpos; - if (jj_3_460()) { + if (jj_3_142()) { jj_scanpos = xsp; - if (jj_3_461()) { + if (jj_3_143()) { + jj_scanpos = xsp; + if (jj_3_144()) { + jj_scanpos = xsp; + if (jj_3_145()) { + jj_scanpos = xsp; + if (jj_3_146()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_142() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3R_330() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_467()) { + jj_scanpos = xsp; + if (jj_3_468()) { jj_scanpos = xsp; - if (jj_3_462()) { + if (jj_3_469()) { jj_scanpos = xsp; - if (jj_3_463()) return true; + if (jj_3_470()) return true; } } } @@ -29056,480 +28969,470 @@ final private boolean jj_3R_327() { return false; } - final private boolean jj_3_928() { + final private boolean jj_3_935() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_927() { + final private boolean jj_3_934() { if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_135() { - if (jj_3R_124()) return true; + final private boolean jj_3_933() { + if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3_926() { - if (jj_scan_token(TUMBLE)) return true; + final private boolean jj_3_140() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3R_312() { + final private boolean jj_3_138() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_138()) return true; + return false; + } + + final private boolean jj_3R_315() { Token xsp; xsp = jj_scanpos; - if (jj_3_926()) { + if (jj_3_933()) { jj_scanpos = xsp; - if (jj_3_927()) { + if (jj_3_934()) { jj_scanpos = xsp; - if (jj_3_928()) return true; + if (jj_3_935()) return true; } } - if (jj_3R_401()) return true; - return false; - } - - final private boolean jj_3R_135() { - if (jj_3R_152()) return true; + if (jj_3R_405()) return true; return false; } - final private boolean jj_3_134() { - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_139() { + if (jj_3R_138()) return true; return false; } - final private boolean jj_3_458() { - if (jj_3R_220()) return true; + final private boolean jj_3_465() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3R_101() { - if (jj_scan_token(ROLLBACK)) return true; - if (jj_scan_token(TO)) return true; + final private boolean jj_3_141() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_139()) { + jj_scanpos = xsp; + if (jj_3_140()) return true; + } return false; } - final private boolean jj_3_457() { + final private boolean jj_3_464() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_459() { + final private boolean jj_3_466() { if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_133() { - if (jj_scan_token(TRANSACTION)) return true; - return false; - } - - final private boolean jj_3_456() { + final private boolean jj_3_463() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_303() { + final private boolean jj_3R_306() { if (jj_scan_token(TIME_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_100() { - if (jj_scan_token(SAVEPOINT)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_137() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_137()) return true; return false; } - final private boolean jj_3R_207() { - if (jj_3R_84()) return true; + final private boolean jj_3R_357() { + if (jj_3R_137()) return true; return false; } - final private boolean jj_3R_103() { - if (jj_scan_token(ROLLBACK)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_134()) jj_scanpos = xsp; + final private boolean jj_3R_210() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_296() { + final private boolean jj_3R_299() { if (jj_scan_token(DATETIME_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_102() { - if (jj_scan_token(COMMIT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_133()) jj_scanpos = xsp; + final private boolean jj_3_136() { + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_455() { - if (jj_3R_219()) return true; + final private boolean jj_3_462() { + if (jj_3R_222()) return true; return false; } - final private boolean jj_3_454() { - if (jj_3R_198()) return true; + final private boolean jj_3_461() { + if (jj_3R_201()) return true; return false; } - final private boolean jj_3R_74() { + final private boolean jj_3R_137() { + if (jj_3R_139()) return true; + return false; + } + + final private boolean jj_3R_75() { Token xsp; xsp = jj_scanpos; - if (jj_3_454()) { + if (jj_3_461()) { jj_scanpos = xsp; - if (jj_3_455()) return true; + if (jj_3_462()) return true; } return false; } - final private boolean jj_3R_99() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(QUERY)) return true; + final private boolean jj_3_135() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3R_302() { + final private boolean jj_3R_102() { + if (jj_scan_token(ROLLBACK)) return true; + if (jj_scan_token(TO)) return true; + return false; + } + + final private boolean jj_3R_305() { if (jj_scan_token(TIME_DIFF)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_132() { - if (jj_scan_token(ASYNC)) return true; + final private boolean jj_3_134() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_453() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3R_101() { + if (jj_scan_token(SAVEPOINT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_452() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_460() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3R_98() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(COMPUTE)) return true; + final private boolean jj_3_459() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_451() { + final private boolean jj_3_458() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_450() { + final private boolean jj_3R_104() { + if (jj_scan_token(ROLLBACK)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_135()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_457() { if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3R_301() { + final private boolean jj_3R_304() { if (jj_scan_token(TIMESTAMP_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_449() { + final private boolean jj_3_456() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_448() { + final private boolean jj_3_455() { if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3R_96() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SERVICE)) return true; + final private boolean jj_3R_103() { + if (jj_scan_token(COMMIT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_134()) jj_scanpos = xsp; return false; } - final private boolean jj_3_447() { - if (jj_3R_134()) return true; + final private boolean jj_3_454() { + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_925() { - if (jj_3R_78()) return true; + final private boolean jj_3_932() { + if (jj_3R_79()) return true; return false; } - final private boolean jj_3R_415() { + final private boolean jj_3R_419() { Token xsp; xsp = jj_scanpos; - if (jj_3_446()) { + if (jj_3_453()) { jj_scanpos = xsp; - if (jj_3_447()) return true; + if (jj_3_454()) return true; } return false; } - final private boolean jj_3_446() { + final private boolean jj_3_453() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_924() { - if (jj_3R_270()) return true; + final private boolean jj_3_931() { + if (jj_3R_273()) return true; return false; } - final private boolean jj_3R_97() { + final private boolean jj_3R_100() { if (jj_scan_token(KILL)) return true; - if (jj_scan_token(TRANSACTION)) return true; + if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3R_295() { + final private boolean jj_3R_298() { if (jj_scan_token(DATE_TRUNC)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_95() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(CONTINUOUS)) return true; + final private boolean jj_3R_412() { + if (jj_3R_419()) return true; + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3R_408() { - if (jj_3R_415()) return true; - if (jj_scan_token(LAMBDA)) return true; + final private boolean jj_3_133() { + if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3R_298() { + final private boolean jj_3R_99() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(COMPUTE)) return true; + return false; + } + + final private boolean jj_3R_301() { if (jj_scan_token(DATETIME_DIFF)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_94() { + final private boolean jj_3R_97() { if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SCAN)) return true; + if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3R_300() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_98() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_441() { - if (jj_3R_215()) return true; + final private boolean jj_3R_303() { + if (jj_scan_token(TIMESTAMP_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_299() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_332()) return true; + final private boolean jj_3R_96() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(CONTINUOUS)) return true; return false; } - final private boolean jj_3_131() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_448() { + if (jj_3R_218()) return true; return false; } - final private boolean jj_3R_218() { + final private boolean jj_3R_302() { + if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_335()) return true; return false; } - final private boolean jj_3_130() { - if (jj_scan_token(MINUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3R_95() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3_440() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3R_221() { return false; } - final private boolean jj_3_129() { - if (jj_scan_token(PLUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_447() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_445() { + final private boolean jj_3_452() { Token xsp; xsp = jj_scanpos; - if (jj_3_440()) { + if (jj_3_447()) { jj_scanpos = xsp; - if (jj_3R_218()) return true; + if (jj_3R_221()) return true; } - if (jj_3R_173()) return true; + if (jj_3R_176()) return true; return false; } - final private boolean jj_3R_297() { + final private boolean jj_3R_300() { if (jj_scan_token(TIMESTAMPADD)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_241() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_444() { + final private boolean jj_3_451() { if (jj_scan_token(ROW)) return true; - if (jj_3R_173()) return true; + if (jj_3R_176()) return true; return false; } - final private boolean jj_3_443() { - if (jj_3R_217()) return true; + final private boolean jj_3_450() { + if (jj_3R_220()) return true; return false; } - final private boolean jj_3R_209() { + final private boolean jj_3R_212() { Token xsp; xsp = jj_scanpos; - if (jj_3_442()) { + if (jj_3_449()) { jj_scanpos = xsp; - if (jj_3_443()) { + if (jj_3_450()) { jj_scanpos = xsp; - if (jj_3_444()) { + if (jj_3_451()) { jj_scanpos = xsp; - if (jj_3_445()) return true; + if (jj_3_452()) return true; } } } return false; } - final private boolean jj_3_442() { - if (jj_3R_216()) return true; - return false; - } - - final private boolean jj_3R_93() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(USER)) return true; + final private boolean jj_3_449() { + if (jj_3R_219()) return true; return false; } - final private boolean jj_3R_294() { + final private boolean jj_3R_297() { if (jj_scan_token(DATE_DIFF)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_237() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_132() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_124() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3_131() { + if (jj_scan_token(MINUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_439() { + final private boolean jj_3_446() { if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3_438() { - if (jj_scan_token(NE)) return true; + final private boolean jj_3_130() { + if (jj_scan_token(PLUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_923() { - if (jj_scan_token(COMMA)) return true; - if (jj_scan_token(JSON_SCOPE)) return true; + final private boolean jj_3_445() { + if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3_123() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3_930() { + if (jj_scan_token(COMMA)) return true; + if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3_437() { + final private boolean jj_3_444() { if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_922() { + final private boolean jj_3_929() { if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_128() { - if (jj_scan_token(DROP)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_124()) jj_scanpos = xsp; - if (jj_3R_133()) return true; - if (jj_3R_134()) return true; - return false; - } - - final private boolean jj_3_436() { + final private boolean jj_3_443() { if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_435() { + final private boolean jj_3_442() { if (jj_scan_token(GT)) return true; return false; } - final private boolean jj_3_127() { - if (jj_scan_token(ADD)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_123()) jj_scanpos = xsp; - if (jj_3R_131()) return true; - if (jj_3R_132()) return true; - return false; - } - - final private boolean jj_3_434() { + final private boolean jj_3_441() { if (jj_scan_token(LE)) return true; return false; } - final private boolean jj_3R_208() { + final private boolean jj_3R_211() { Token xsp; xsp = jj_scanpos; - if (jj_3_433()) { + if (jj_3_440()) { jj_scanpos = xsp; - if (jj_3_434()) { + if (jj_3_441()) { jj_scanpos = xsp; - if (jj_3_435()) { + if (jj_3_442()) { jj_scanpos = xsp; - if (jj_3_436()) { + if (jj_3_443()) { jj_scanpos = xsp; - if (jj_3_437()) { + if (jj_3_444()) { jj_scanpos = xsp; - if (jj_3_438()) { + if (jj_3_445()) { jj_scanpos = xsp; - if (jj_3_439()) return true; + if (jj_3_446()) return true; } } } @@ -29539,115 +29442,91 @@ final private boolean jj_3R_208() { return false; } - final private boolean jj_3_126() { - if (jj_scan_token(NOLOGGING)) return true; - return false; - } - - final private boolean jj_3_433() { + final private boolean jj_3_440() { if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3R_292() { + final private boolean jj_3R_295() { if (jj_scan_token(CONTAINS_SUBSTR)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_125() { - if (jj_scan_token(LOGGING)) return true; + final private boolean jj_3R_244() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_407() { + final private boolean jj_3R_411() { return false; } - final private boolean jj_3R_92() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(TABLE)) return true; + final private boolean jj_3_437() { + if (jj_3R_217()) return true; return false; } final private boolean jj_3_430() { - if (jj_3R_214()) return true; - return false; - } - - final private boolean jj_3_423() { if (jj_scan_token(DOT)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_122() { - if (jj_3R_130()) return true; - return false; - } - - final private boolean jj_3R_132() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_121()) { - jj_scanpos = xsp; - if (jj_3_122()) return true; - } + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_121() { - if (jj_3R_129()) return true; + final private boolean jj_3R_94() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_422() { - if (jj_3R_81()) return true; + final private boolean jj_3_429() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_921() { - if (jj_3R_323()) return true; + final private boolean jj_3_928() { + if (jj_3R_326()) return true; return false; } - final private boolean jj_3_421() { + final private boolean jj_3_428() { if (jj_scan_token(SAFE_ORDINAL)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_420() { + final private boolean jj_3_427() { if (jj_scan_token(SAFE_OFFSET)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_419() { + final private boolean jj_3_426() { if (jj_scan_token(ORDINAL)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_418() { + final private boolean jj_3_425() { if (jj_scan_token(OFFSET)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_429() { + final private boolean jj_3_436() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_418()) { + if (jj_3_425()) { jj_scanpos = xsp; - if (jj_3_419()) { + if (jj_3_426()) { jj_scanpos = xsp; - if (jj_3_420()) { + if (jj_3_427()) { jj_scanpos = xsp; - if (jj_3_421()) { + if (jj_3_428()) { jj_scanpos = xsp; - if (jj_3_422()) return true; + if (jj_3_429()) return true; } } } @@ -29655,180 +29534,222 @@ final private boolean jj_3_429() { return false; } - final private boolean jj_3_120() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3R_240() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_920() { - if (jj_3R_321()) return true; + final private boolean jj_3_125() { + if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_428() { + final private boolean jj_3_927() { + if (jj_3R_324()) return true; + return false; + } + + final private boolean jj_3_124() { + if (jj_scan_token(COLUMN)) return true; + return false; + } + + final private boolean jj_3_435() { + if (jj_3R_216()) return true; if (jj_3R_213()) return true; - if (jj_3R_210()) return true; return false; } - final private boolean jj_3R_129() { - if (jj_3R_84()) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_434() { + if (jj_3R_215()) return true; return false; } - final private boolean jj_3_427() { - if (jj_3R_212()) return true; + final private boolean jj_3_926() { + if (jj_3R_325()) return true; return false; } - final private boolean jj_3_919() { - if (jj_3R_322()) return true; + final private boolean jj_3_129() { + if (jj_scan_token(DROP)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_125()) jj_scanpos = xsp; + if (jj_3R_135()) return true; + if (jj_3R_136()) return true; return false; } - final private boolean jj_3R_311() { + final private boolean jj_3_128() { + if (jj_scan_token(ADD)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_124()) jj_scanpos = xsp; + if (jj_3R_133()) return true; + if (jj_3R_134()) return true; + return false; + } + + final private boolean jj_3R_314() { if (jj_scan_token(JSON_ARRAYAGG)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_417() { + final private boolean jj_3_424() { if (jj_scan_token(ESCAPE)) return true; - if (jj_3R_209()) return true; + if (jj_3R_212()) return true; return false; } - final private boolean jj_3_119() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_129()) return true; + final private boolean jj_3_127() { + if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_413() { + final private boolean jj_3_126() { + if (jj_scan_token(LOGGING)) return true; + return false; + } + + final private boolean jj_3_420() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_416() { + final private boolean jj_3_423() { if (jj_scan_token(TILDE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_413()) jj_scanpos = xsp; + if (jj_3_420()) jj_scanpos = xsp; return false; } - final private boolean jj_3_412() { + final private boolean jj_3_419() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_411() { + final private boolean jj_3R_93() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(TABLE)) return true; + return false; + } + + final private boolean jj_3_418() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_415() { + final private boolean jj_3_422() { if (jj_scan_token(NEGATE)) return true; if (jj_scan_token(TILDE)) return true; return false; } - final private boolean jj_3R_130() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_129()) return true; - return false; - } - - final private boolean jj_3_410() { + final private boolean jj_3_417() { if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3R_322() { - if (jj_3R_70()) return true; + final private boolean jj_3R_325() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_409() { + final private boolean jj_3_416() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_406() { + final private boolean jj_3_413() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_408() { + final private boolean jj_3_415() { if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_405() { + final private boolean jj_3_412() { if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3_404() { + final private boolean jj_3_411() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_403() { + final private boolean jj_3_410() { if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_407() { + final private boolean jj_3_123() { + if (jj_3R_132()) return true; + return false; + } + + final private boolean jj_3R_134() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_122()) { + jj_scanpos = xsp; + if (jj_3_123()) return true; + } + return false; + } + + final private boolean jj_3_122() { + if (jj_3R_131()) return true; + return false; + } + + final private boolean jj_3_414() { if (jj_scan_token(NOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_403()) { + if (jj_3_410()) { jj_scanpos = xsp; - if (jj_3_404()) { + if (jj_3_411()) { jj_scanpos = xsp; - if (jj_3_405()) { + if (jj_3_412()) { jj_scanpos = xsp; - if (jj_3_406()) return true; + if (jj_3_413()) return true; } } } return false; } - final private boolean jj_3_918() { - if (jj_3R_321()) return true; + final private boolean jj_3_925() { + if (jj_3R_324()) return true; return false; } - final private boolean jj_3_916() { + final private boolean jj_3_923() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3R_212() { - if (jj_scan_token(INFIX_CAST)) return true; - if (jj_3R_122()) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_414() { + final private boolean jj_3_421() { Token xsp; xsp = jj_scanpos; - if (jj_3_407()) { + if (jj_3_414()) { jj_scanpos = xsp; - if (jj_3_408()) { + if (jj_3_415()) { jj_scanpos = xsp; - if (jj_3_409()) { + if (jj_3_416()) { jj_scanpos = xsp; - if (jj_3_410()) { + if (jj_3_417()) { jj_scanpos = xsp; - if (jj_3_411()) return true; + if (jj_3_418()) return true; } } } @@ -29836,297 +29757,284 @@ final private boolean jj_3_414() { return false; } - final private boolean jj_3_917() { - if (jj_3R_78()) return true; + final private boolean jj_3_924() { + if (jj_3R_79()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_916()) { jj_scanpos = xsp; break; } + if (jj_3_923()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_310() { + final private boolean jj_3_121() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3R_313() { if (jj_scan_token(JSON_ARRAY)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_240() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; - return false; - } - - final private boolean jj_3_426() { + final private boolean jj_3_433() { Token xsp; xsp = jj_scanpos; - if (jj_3_414()) { + if (jj_3_421()) { jj_scanpos = xsp; - if (jj_3_415()) { + if (jj_3_422()) { jj_scanpos = xsp; - if (jj_3_416()) return true; + if (jj_3_423()) return true; } } - if (jj_3R_211()) return true; + if (jj_3R_214()) return true; return false; } - final private boolean jj_3_399() { + final private boolean jj_3_406() { if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_400() { + final private boolean jj_3R_131() { + if (jj_3R_85()) return true; + if (jj_3R_124()) return true; + return false; + } + + final private boolean jj_3_407() { Token xsp; xsp = jj_scanpos; - if (jj_3_398()) { + if (jj_3_405()) { jj_scanpos = xsp; - if (jj_3_399()) return true; + if (jj_3_406()) return true; } return false; } - final private boolean jj_3_398() { + final private boolean jj_3_405() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3R_239() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_133()) return true; - if (jj_3R_152()) return true; + final private boolean jj_3_922() { + if (jj_3R_324()) return true; return false; } - final private boolean jj_3_915() { - if (jj_3R_321()) return true; + final private boolean jj_3_403() { + if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_396() { - if (jj_scan_token(ASYMMETRIC)) return true; + final private boolean jj_3_120() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_131()) return true; return false; } - final private boolean jj_3_402() { + final private boolean jj_3_409() { if (jj_scan_token(BETWEEN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_400()) jj_scanpos = xsp; + if (jj_3_407()) jj_scanpos = xsp; return false; } - final private boolean jj_3_397() { + final private boolean jj_3_404() { Token xsp; xsp = jj_scanpos; - if (jj_3_395()) { + if (jj_3_402()) { jj_scanpos = xsp; - if (jj_3_396()) return true; + if (jj_3_403()) return true; } return false; } - final private boolean jj_3_395() { + final private boolean jj_3_402() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3R_363() { + final private boolean jj_3R_132() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_131()) return true; return false; } - final private boolean jj_3R_309() { + final private boolean jj_3R_312() { if (jj_scan_token(JSON_OBJECTAGG)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_133() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_118()) { - jj_scanpos = xsp; - if (jj_3R_363()) return true; - } - return false; - } - - final private boolean jj_3_118() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(EXISTS)) return true; - return false; - } - - final private boolean jj_3_401() { + final private boolean jj_3_408() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(BETWEEN)) return true; return false; } - final private boolean jj_3_425() { + final private boolean jj_3_432() { Token xsp; xsp = jj_scanpos; - if (jj_3_401()) { + if (jj_3_408()) { jj_scanpos = xsp; - if (jj_3_402()) return true; + if (jj_3_409()) return true; } - if (jj_3R_210()) return true; - return false; - } - - final private boolean jj_3_117() { - if (jj_scan_token(INLINE_SIZE)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; - return false; - } - - final private boolean jj_3_914() { - if (jj_3R_321()) return true; + if (jj_3R_213()) return true; return false; } - final private boolean jj_3_116() { - if (jj_scan_token(PARALLEL)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3R_215() { + if (jj_scan_token(INFIX_CAST)) return true; + if (jj_3R_124()) return true; return false; } - final private boolean jj_3_115() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_116()) { - jj_scanpos = xsp; - if (jj_3_117()) return true; - } + final private boolean jj_3_921() { + if (jj_3R_324()) return true; return false; } - final private boolean jj_3_912() { + final private boolean jj_3_919() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_320()) return true; + if (jj_3R_323()) return true; return false; } - final private boolean jj_3_391() { + final private boolean jj_3_398() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_390() { + final private boolean jj_3_397() { if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_114() { - if (jj_3R_84()) return true; + final private boolean jj_3R_243() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_135()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_389() { + final private boolean jj_3_396() { if (jj_scan_token(SOME)) return true; return false; } - final private boolean jj_3_913() { - if (jj_3R_320()) return true; + final private boolean jj_3_920() { + if (jj_3R_323()) return true; return false; } - final private boolean jj_3_394() { - if (jj_3R_208()) return true; + final private boolean jj_3_401() { + if (jj_3R_211()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_389()) { + if (jj_3_396()) { jj_scanpos = xsp; - if (jj_3_390()) { + if (jj_3_397()) { jj_scanpos = xsp; - if (jj_3_391()) return true; + if (jj_3_398()) return true; } } return false; } - final private boolean jj_3R_236() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_131()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_114()) jj_scanpos = xsp; - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3R_308() { + final private boolean jj_3R_311() { if (jj_scan_token(JSON_OBJECT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_393() { + final private boolean jj_3_400() { if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_392() { + final private boolean jj_3R_242() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_135()) return true; + if (jj_3R_139()) return true; + return false; + } + + final private boolean jj_3_399() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_424() { + final private boolean jj_3_431() { Token xsp; xsp = jj_scanpos; - if (jj_3_392()) { + if (jj_3_399()) { jj_scanpos = xsp; - if (jj_3_393()) { + if (jj_3_400()) { jj_scanpos = xsp; - if (jj_3_394()) return true; + if (jj_3_401()) return true; } } - if (jj_3R_173()) return true; + if (jj_3R_176()) return true; return false; } - final private boolean jj_3_113() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_128()) return true; + final private boolean jj_3R_367() { return false; } - final private boolean jj_3_911() { + final private boolean jj_3R_135() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_119()) { + jj_scanpos = xsp; + if (jj_3R_367()) return true; + } + return false; + } + + final private boolean jj_3_119() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(EXISTS)) return true; + return false; + } + + final private boolean jj_3_918() { if (jj_scan_token(ABSENT)) return true; if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_321() { + final private boolean jj_3R_324() { Token xsp; xsp = jj_scanpos; - if (jj_3_910()) { + if (jj_3_917()) { jj_scanpos = xsp; - if (jj_3_911()) return true; + if (jj_3_918()) return true; } return false; } - final private boolean jj_3_431() { + final private boolean jj_3_438() { Token xsp; xsp = jj_scanpos; - if (jj_3_424()) { + if (jj_3_431()) { jj_scanpos = xsp; - if (jj_3_425()) { + if (jj_3_432()) { jj_scanpos = xsp; - if (jj_3_426()) { + if (jj_3_433()) { jj_scanpos = xsp; - if (jj_3_427()) { + if (jj_3_434()) { jj_scanpos = xsp; - if (jj_3_428()) { + if (jj_3_435()) { jj_scanpos = xsp; - if (jj_3_429()) { + if (jj_3_436()) { jj_scanpos = xsp; - if (jj_3_430()) return true; + if (jj_3_437()) return true; } } } @@ -30136,566 +30044,719 @@ final private boolean jj_3_431() { return false; } - final private boolean jj_3_910() { + final private boolean jj_3_917() { if (jj_scan_token(NULL)) return true; if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_432() { + final private boolean jj_3_439() { Token xsp; - if (jj_3_431()) return true; + if (jj_3_438()) return true; while (true) { xsp = jj_scanpos; - if (jj_3_431()) { jj_scanpos = xsp; break; } + if (jj_3_438()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_211() { - if (jj_3R_210()) return true; + final private boolean jj_3_118() { + if (jj_scan_token(INLINE_SIZE)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + return false; + } + + final private boolean jj_3R_214() { + if (jj_3R_213()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_432()) { + if (jj_3_439()) { jj_scanpos = xsp; - if (jj_3R_407()) return true; + if (jj_3R_411()) return true; } return false; } - final private boolean jj_3_909() { + final private boolean jj_3_916() { if (jj_scan_token(COLON)) return true; return false; } - final private boolean jj_3_111() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_117() { + if (jj_scan_token(PARALLEL)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_112() { + final private boolean jj_3_116() { Token xsp; xsp = jj_scanpos; - if (jj_3_110()) { + if (jj_3_117()) { jj_scanpos = xsp; - if (jj_3_111()) return true; + if (jj_3_118()) return true; } return false; } - final private boolean jj_3_110() { - if (jj_scan_token(ASC)) return true; - return false; - } - - final private boolean jj_3_906() { + final private boolean jj_3_913() { if (jj_scan_token(KEY)) return true; - if (jj_3R_319()) return true; + if (jj_3R_322()) return true; return false; } - final private boolean jj_3_908() { + final private boolean jj_3_915() { if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3R_128() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_907() { + final private boolean jj_3_914() { if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3R_402() { - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_115() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_126() { + final private boolean jj_3R_406() { + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_107() { - if (jj_3R_124()) return true; + final private boolean jj_3R_416() { return false; } - final private boolean jj_3R_412() { + final private boolean jj_3R_239() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_133()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_115()) jj_scanpos = xsp; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_320() { + final private boolean jj_3R_323() { Token xsp; xsp = jj_scanpos; - if (jj_3R_402()) jj_scanpos = xsp; - if (jj_3R_319()) return true; + if (jj_3R_406()) jj_scanpos = xsp; + if (jj_3R_322()) return true; xsp = jj_scanpos; - if (jj_3_907()) { + if (jj_3_914()) { jj_scanpos = xsp; - if (jj_3_908()) { + if (jj_3_915()) { jj_scanpos = xsp; - if (jj_3_909()) return true; + if (jj_3_916()) return true; } } return false; } - final private boolean jj_3_109() { + final private boolean jj_3R_379() { Token xsp; xsp = jj_scanpos; - if (jj_3_107()) { + lookingAhead = true; + jj_semLA = false; + lookingAhead = false; + if (!jj_semLA || jj_3R_416()) return true; + if (jj_scan_token(ZONE)) return true; + return false; + } + + final private boolean jj_3R_322() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_114() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_130()) return true; + return false; + } + + final private boolean jj_3_395() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_210()) return true; + return false; + } + + final private boolean jj_3R_387() { + if (jj_3R_418()) return true; + return false; + } + + final private boolean jj_3R_213() { + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3R_387()) { jj_scanpos = xsp; break; } + } + if (jj_3R_212()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_395()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3_112() { + if (jj_scan_token(DESC)) return true; + return false; + } + + final private boolean jj_3_113() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_111()) { jj_scanpos = xsp; + if (jj_3_112()) return true; + } + return false; + } + + final private boolean jj_3_111() { + if (jj_scan_token(ASC)) return true; + return false; + } + + final private boolean jj_3_912() { + if (jj_3R_321()) return true; + return false; + } + + final private boolean jj_3_911() { + if (jj_3R_320()) return true; + if (jj_scan_token(WRAPPER)) return true; + return false; + } + + final private boolean jj_3R_130() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_82() { + if (jj_3R_214()) return true; + return false; + } + + final private boolean jj_3_906() { + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3_910() { + if (jj_3R_318()) return true; + return false; + } + + final private boolean jj_3R_128() { + return false; + } + + final private boolean jj_3_108() { if (jj_3R_126()) return true; + return false; + } + + final private boolean jj_3_904() { + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3R_79() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3R_310() { + if (jj_scan_token(JSON_QUERY)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_110() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_108()) { + jj_scanpos = xsp; + if (jj_3R_128()) return true; } - if (jj_3R_127()) return true; + if (jj_3R_129()) return true; if (jj_scan_token(AS)) return true; - if (jj_3R_79()) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_108() { - if (jj_3R_125()) return true; + final private boolean jj_3_109() { + if (jj_3R_127()) return true; return false; } - final private boolean jj_3R_319() { - if (jj_3R_81()) return true; + final private boolean jj_3_905() { + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_388() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_207()) return true; + final private boolean jj_3_394() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_375() { + final private boolean jj_3R_253() { Token xsp; xsp = jj_scanpos; - lookingAhead = true; - jj_semLA = false; - lookingAhead = false; - if (!jj_semLA || jj_3R_412()) return true; - if (jj_scan_token(ZONE)) return true; + if (jj_3_393()) { + jj_scanpos = xsp; + if (jj_3_394()) return true; + } return false; } - final private boolean jj_3R_235() { + final private boolean jj_3_393() { + if (jj_3R_209()) return true; + return false; + } + + final private boolean jj_3_903() { + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3_909() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_905()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_906()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3R_238() { if (jj_scan_token(TABLE)) return true; - if (jj_3R_131()) return true; - if (jj_3R_152()) return true; + if (jj_3R_133()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_383() { - if (jj_3R_414()) return true; + final private boolean jj_3_908() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3R_210() { + final private boolean jj_3_392() { + if (jj_3R_126()) return true; + return false; + } + + final private boolean jj_3R_320() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3R_383()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_907()) { + jj_scanpos = xsp; + if (jj_3_908()) { + jj_scanpos = xsp; + if (jj_3_909()) return true; } - if (jj_3R_209()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_388()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_905() { - if (jj_3R_318()) return true; + final private boolean jj_3_907() { + if (jj_scan_token(WITHOUT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_903()) jj_scanpos = xsp; return false; } - final private boolean jj_3_106() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3R_208() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_904() { - if (jj_3R_317()) return true; - if (jj_scan_token(WRAPPER)) return true; + final private boolean jj_3_390() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3R_81() { - if (jj_3R_211()) return true; + final private boolean jj_3_902() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_899() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_107() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_125()) return true; return false; } - final private boolean jj_3R_125() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3_391() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_208()) return true; return false; } - final private boolean jj_3_903() { - if (jj_3R_315()) return true; + final private boolean jj_3_901() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_897() { - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3R_207() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_390()) jj_scanpos = xsp; + if (jj_3R_208()) return true; return false; } - final private boolean jj_3R_78() { - if (jj_3R_81()) return true; + final private boolean jj_3R_127() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_125()) return true; return false; } - final private boolean jj_3R_307() { - if (jj_scan_token(JSON_QUERY)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_900() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_103() { + final private boolean jj_3_899() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3_104() { if (jj_scan_token(CONSTRAINT)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_898() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_105() { + final private boolean jj_3_106() { Token xsp; xsp = jj_scanpos; - if (jj_3_103()) jj_scanpos = xsp; + if (jj_3_104()) jj_scanpos = xsp; if (jj_scan_token(PRIMARY)) return true; if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_898() { - if (jj_scan_token(UNCONDITIONAL)) return true; - return false; - } - - final private boolean jj_3_387() { - if (jj_3R_81()) return true; + final private boolean jj_3_897() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3R_250() { + final private boolean jj_3R_321() { Token xsp; xsp = jj_scanpos; - if (jj_3_386()) { + if (jj_3_897()) { + jj_scanpos = xsp; + if (jj_3_898()) { jj_scanpos = xsp; - if (jj_3_387()) return true; + if (jj_3_899()) { + jj_scanpos = xsp; + if (jj_3_900()) return true; + } } + } + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_102() { + final private boolean jj_3_103() { if (jj_scan_token(PRIMARY)) return true; if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_386() { - if (jj_3R_206()) return true; + final private boolean jj_3R_68() { + if (jj_3R_347()) return true; return false; } final private boolean jj_3_896() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_902() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_898()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_899()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_901() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(CONDITIONAL)) return true; + if (jj_3R_319()) return true; return false; } - final private boolean jj_3_101() { + final private boolean jj_3_102() { if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_119()) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_385() { - if (jj_3R_124()) return true; + final private boolean jj_3_895() { + if (jj_3R_318()) return true; return false; } - final private boolean jj_3R_317() { + final private boolean jj_3R_125() { Token xsp; xsp = jj_scanpos; - if (jj_3_900()) { + if (jj_3_105()) { jj_scanpos = xsp; - if (jj_3_901()) { - jj_scanpos = xsp; - if (jj_3_902()) return true; - } + if (jj_3_106()) return true; } return false; } - final private boolean jj_3_900() { - if (jj_scan_token(WITHOUT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_896()) jj_scanpos = xsp; + final private boolean jj_3_105() { + if (jj_3R_85()) return true; + if (jj_3R_124()) return true; return false; } - final private boolean jj_3R_205() { - if (jj_3R_84()) return true; + final private boolean jj_3R_309() { + if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3R_123() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_104()) { - jj_scanpos = xsp; - if (jj_3_105()) return true; - } + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_218()) return true; return false; } - final private boolean jj_3_104() { - if (jj_3R_84()) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_894() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_383() { - if (jj_scan_token(RECURSIVE)) return true; + final private boolean jj_3_893() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_895() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_101() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_384() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_205()) return true; + final private boolean jj_3_100() { + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_894() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_892() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3R_204() { - if (jj_scan_token(WITH)) return true; + final private boolean jj_3R_124() { Token xsp; xsp = jj_scanpos; - if (jj_3_383()) jj_scanpos = xsp; - if (jj_3R_205()) return true; + if (jj_3_100()) { + jj_scanpos = xsp; + if (jj_3_101()) return true; + } return false; } - final private boolean jj_3_893() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_891() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3R_121() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; + final private boolean jj_3_389() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_892() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_388() { + if (jj_3R_207()) return true; return false; } - final private boolean jj_3_891() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_99() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_100() { - if (jj_3R_121()) return true; + final private boolean jj_3_890() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_99() { - if (jj_3R_120()) return true; + final private boolean jj_3R_69() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_388()) jj_scanpos = xsp; + if (jj_3R_209()) return true; return false; } - final private boolean jj_3_890() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_98() { + if (jj_3R_121()) return true; return false; } - final private boolean jj_3R_318() { + final private boolean jj_3R_319() { Token xsp; xsp = jj_scanpos; if (jj_3_890()) { jj_scanpos = xsp; if (jj_3_891()) { jj_scanpos = xsp; - if (jj_3_892()) { - jj_scanpos = xsp; - if (jj_3_893()) return true; - } + if (jj_3_892()) return true; } } if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_122() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_99()) { - jj_scanpos = xsp; - if (jj_3_100()) return true; - } + final private boolean jj_3R_120() { + if (jj_3R_363()) return true; + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3R_67() { - if (jj_3R_344()) return true; + final private boolean jj_3_387() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_98() { - if (jj_3R_84()) return true; + final private boolean jj_3_386() { + if (jj_3R_207()) return true; return false; } - final private boolean jj_3_97() { - if (jj_3R_119()) return true; + final private boolean jj_3R_350() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_386()) jj_scanpos = xsp; + if (jj_3R_253()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_387()) { jj_scanpos = xsp; break; } + } return false; } final private boolean jj_3_889() { - if (jj_3R_316()) return true; + if (jj_3R_317()) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_118() { - if (jj_3R_359()) return true; - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_97() { + if (jj_scan_token(WRAP_VALUE)) return true; return false; } - final private boolean jj_3_888() { - if (jj_3R_315()) return true; + final private boolean jj_3_96() { + if (jj_scan_token(WRAP_KEY)) return true; return false; } - final private boolean jj_3R_306() { - if (jj_scan_token(JSON_VALUE)) return true; + final private boolean jj_3R_308() { + if (jj_scan_token(JSON_EXISTS)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_96() { - if (jj_scan_token(WRAP_VALUE)) return true; - return false; - } - final private boolean jj_3_95() { - if (jj_scan_token(WRAP_KEY)) return true; + if (jj_scan_token(ENCRYPTED)) return true; return false; } final private boolean jj_3_94() { - if (jj_scan_token(ENCRYPTED)) return true; + if (jj_scan_token(VALUE_TYPE)) return true; return false; } final private boolean jj_3_93() { - if (jj_scan_token(VALUE_TYPE)) return true; + if (jj_scan_token(KEY_TYPE)) return true; return false; } final private boolean jj_3_92() { - if (jj_scan_token(KEY_TYPE)) return true; + if (jj_scan_token(DATA_REGION)) return true; return false; } final private boolean jj_3_91() { - if (jj_scan_token(DATA_REGION)) return true; + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_887() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_90() { + if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_90() { - if (jj_scan_token(CACHE_NAME)) return true; + final private boolean jj_3_888() { + if (jj_scan_token(ERROR)) return true; return false; } final private boolean jj_3_89() { - if (jj_scan_token(CACHE_GROUP)) return true; + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3_886() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_887() { + if (jj_scan_token(UNKNOWN)) return true; return false; } final private boolean jj_3_88() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + if (jj_scan_token(ATOMICITY)) return true; return false; } - final private boolean jj_3_87() { - if (jj_scan_token(ATOMICITY)) return true; + final private boolean jj_3_886() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_86() { + final private boolean jj_3_87() { if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_85() { - if (jj_scan_token(BACKUPS)) return true; + final private boolean jj_3R_317() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_885()) { + jj_scanpos = xsp; + if (jj_3_886()) { + jj_scanpos = xsp; + if (jj_3_887()) { + jj_scanpos = xsp; + if (jj_3_888()) return true; + } + } + } return false; } final private boolean jj_3_885() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_78()) return true; + if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3R_359() { + final private boolean jj_3_86() { + if (jj_scan_token(BACKUPS)) return true; + return false; + } + + final private boolean jj_3R_363() { Token xsp; xsp = jj_scanpos; - if (jj_3_84()) { - jj_scanpos = xsp; if (jj_3_85()) { jj_scanpos = xsp; if (jj_3_86()) { @@ -30718,7 +30779,9 @@ final private boolean jj_3R_359() { jj_scanpos = xsp; if (jj_3_95()) { jj_scanpos = xsp; - if (jj_3_96()) return true; + if (jj_3_96()) { + jj_scanpos = xsp; + if (jj_3_97()) return true; } } } @@ -30734,353 +30797,410 @@ final private boolean jj_3R_359() { return false; } - final private boolean jj_3_84() { + final private boolean jj_3_85() { if (jj_scan_token(TEMPLATE)) return true; return false; } - final private boolean jj_3_80() { + final private boolean jj_3_81() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_118()) return true; + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_884() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_83() { + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_382() { - if (jj_3R_67()) return true; + final private boolean jj_3_883() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_381() { - if (jj_3R_204()) return true; + final private boolean jj_3_82() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_883() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_884() { + if (jj_scan_token(PASSING)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_68() { + final private boolean jj_3_84() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_82()) { + jj_scanpos = xsp; + if (jj_3_83()) return true; + } + return false; + } + + final private boolean jj_3R_206() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_129() { Token xsp; xsp = jj_scanpos; - if (jj_3_381()) jj_scanpos = xsp; + if (jj_3_84()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_385() { + if (jj_scan_token(COMMA)) return true; if (jj_3R_206()) return true; return false; } - final private boolean jj_3_82() { - if (jj_3R_118()) return true; + final private boolean jj_3R_366() { return false; } - final private boolean jj_3R_316() { + final private boolean jj_3R_133() { Token xsp; xsp = jj_scanpos; - if (jj_3_883()) { + if (jj_3_80()) { jj_scanpos = xsp; - if (jj_3_884()) { - jj_scanpos = xsp; - if (jj_3_885()) return true; - } + if (jj_3R_366()) return true; } - if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_81() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_80() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_380() { - if (jj_3R_67()) return true; + final private boolean jj_3_882() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_316()) return true; return false; } - final private boolean jj_3_379() { - if (jj_3R_204()) return true; + final private boolean jj_3R_205() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_347() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_379()) jj_scanpos = xsp; - if (jj_3R_250()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_380()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_79() { + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_882() { - if (jj_3R_314()) return true; - if (jj_scan_token(ON)) return true; + final private boolean jj_3R_318() { + if (jj_scan_token(RETURNING)) return true; + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_83() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_81()) { - jj_scanpos = xsp; - if (jj_3_82()) return true; - } + final private boolean jj_3_78() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3R_127() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_83()) jj_scanpos = xsp; + final private boolean jj_3_77() { + if (jj_3R_117()) return true; return false; } - final private boolean jj_3R_305() { - if (jj_scan_token(JSON_EXISTS)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_76() { + if (jj_3R_116()) return true; return false; } - final private boolean jj_3R_362() { + final private boolean jj_3_75() { + if (jj_3R_115()) return true; return false; } - final private boolean jj_3R_131() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_79()) { - jj_scanpos = xsp; - if (jj_3R_362()) return true; - } + final private boolean jj_3_384() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_205()) return true; return false; } - final private boolean jj_3_79() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_74() { + if (jj_3R_114()) return true; return false; } - final private boolean jj_3_881() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3R_197() { + if (jj_3R_205()) return true; + return false; + } + + final private boolean jj_3_73() { + if (jj_3R_113()) return true; return false; } final private boolean jj_3_880() { - if (jj_scan_token(UNKNOWN)) return true; + if (jj_scan_token(UTF32)) return true; + return false; + } + + final private boolean jj_3_72() { + if (jj_3R_80()) return true; return false; } final private boolean jj_3_879() { - if (jj_scan_token(FALSE)) return true; + if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3R_314() { + final private boolean jj_3_71() { + if (jj_3R_112()) return true; + return false; + } + + final private boolean jj_3_878() { + if (jj_scan_token(UTF8)) return true; + return false; + } + + final private boolean jj_3_70() { + if (jj_3R_111()) return true; + return false; + } + + final private boolean jj_3_379() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_204()) return true; + return false; + } + + final private boolean jj_3_69() { + if (jj_3R_110()) return true; + return false; + } + + final private boolean jj_3_68() { + if (jj_3R_109()) return true; + return false; + } + + final private boolean jj_3_881() { + if (jj_scan_token(ENCODING)) return true; Token xsp; xsp = jj_scanpos; if (jj_3_878()) { jj_scanpos = xsp; if (jj_3_879()) { jj_scanpos = xsp; - if (jj_3_880()) { - jj_scanpos = xsp; - if (jj_3_881()) return true; - } + if (jj_3_880()) return true; } } return false; } - final private boolean jj_3_878() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_67() { + if (jj_3R_108()) return true; return false; } - final private boolean jj_3_876() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_66() { + if (jj_3R_107()) return true; return false; } - final private boolean jj_3_78() { - if (jj_3R_117()) return true; + final private boolean jj_3_65() { + if (jj_3R_106()) return true; return false; } - final private boolean jj_3_77() { - if (jj_3R_116()) return true; + final private boolean jj_3_383() { + if (jj_scan_token(PERMUTE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_76() { - if (jj_3R_115()) return true; + final private boolean jj_3R_316() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_75() { - if (jj_3R_114()) return true; + final private boolean jj_3_64() { + if (jj_3R_105()) return true; return false; } - final private boolean jj_3_74() { - if (jj_3R_113()) return true; + final private boolean jj_3_63() { + if (jj_3R_104()) return true; return false; } - final private boolean jj_3_877() { - if (jj_scan_token(PASSING)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_62() { + if (jj_3R_103()) return true; return false; } - final private boolean jj_3_73() { - if (jj_3R_112()) return true; + final private boolean jj_3_382() { + if (jj_scan_token(LBRACE)) return true; + if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3R_203() { - if (jj_3R_84()) return true; + final private boolean jj_3_877() { + if (jj_3R_315()) return true; return false; } - final private boolean jj_3_72() { - if (jj_3R_111()) return true; + final private boolean jj_3_61() { + if (jj_3R_102()) return true; return false; } - final private boolean jj_3_71() { - if (jj_3R_79()) return true; + final private boolean jj_3_381() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_204()) return true; return false; } - final private boolean jj_3_70() { - if (jj_3R_110()) return true; + final private boolean jj_3_876() { + if (jj_3R_314()) return true; return false; } - final private boolean jj_3_69() { - if (jj_3R_109()) return true; + final private boolean jj_3R_384() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_380()) { + jj_scanpos = xsp; + if (jj_3_381()) { + jj_scanpos = xsp; + if (jj_3_382()) { + jj_scanpos = xsp; + if (jj_3_383()) return true; + } + } + } return false; } - final private boolean jj_3_68() { - if (jj_3R_108()) return true; + final private boolean jj_3_60() { + if (jj_3R_101()) return true; return false; } - final private boolean jj_3_67() { - if (jj_3R_107()) return true; + final private boolean jj_3_380() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_66() { - if (jj_3R_106()) return true; + final private boolean jj_3_875() { + if (jj_3R_313()) return true; return false; } - final private boolean jj_3_378() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_203()) return true; + final private boolean jj_3_59() { + if (jj_3R_100()) return true; return false; } - final private boolean jj_3_65() { - if (jj_3R_105()) return true; + final private boolean jj_3_874() { + if (jj_3R_312()) return true; return false; } - final private boolean jj_3_64() { - if (jj_3R_104()) return true; + final private boolean jj_3_58() { + if (jj_3R_99()) return true; return false; } - final private boolean jj_3_63() { - if (jj_3R_103()) return true; + final private boolean jj_3_873() { + if (jj_3R_311()) return true; return false; } - final private boolean jj_3_62() { - if (jj_3R_102()) return true; + final private boolean jj_3_57() { + if (jj_3R_98()) return true; + return false; + } + + final private boolean jj_3_872() { + if (jj_3R_310()) return true; + return false; + } + + final private boolean jj_3_56() { + if (jj_3R_97()) return true; return false; } - final private boolean jj_3_61() { - if (jj_3R_101()) return true; + final private boolean jj_3_871() { + if (jj_3R_309()) return true; return false; } - final private boolean jj_3_60() { - if (jj_3R_100()) return true; + final private boolean jj_3_55() { + if (jj_3R_96()) return true; return false; } - final private boolean jj_3_875() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_313()) return true; + final private boolean jj_3_870() { + if (jj_3R_308()) return true; return false; } - final private boolean jj_3_59() { - if (jj_3R_99()) return true; + final private boolean jj_3R_386() { return false; } - final private boolean jj_3_58() { - if (jj_3R_98()) return true; + final private boolean jj_3_54() { + if (jj_3R_95()) return true; return false; } - final private boolean jj_3_57() { - if (jj_3R_97()) return true; + final private boolean jj_3_869() { + if (jj_3R_307()) return true; return false; } - final private boolean jj_3_56() { - if (jj_3R_96()) return true; + final private boolean jj_3_53() { + if (jj_3R_94()) return true; return false; } - final private boolean jj_3_55() { - if (jj_3R_95()) return true; + final private boolean jj_3_868() { + if (jj_3R_306()) return true; return false; } - final private boolean jj_3_54() { - if (jj_3R_94()) return true; + final private boolean jj_3_52() { + if (jj_3R_93()) return true; return false; } - final private boolean jj_3R_202() { - if (jj_3R_84()) return true; + final private boolean jj_3_378() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3R_315() { - if (jj_scan_token(RETURNING)) return true; - if (jj_3R_120()) return true; + final private boolean jj_3_867() { + if (jj_3R_305()) return true; return false; } - final private boolean jj_3_53() { - if (jj_3R_93()) return true; + final private boolean jj_3_866() { + if (jj_3R_304()) return true; return false; } - final private boolean jj_3_52() { - if (jj_3R_92()) return true; + final private boolean jj_3_865() { + if (jj_3R_303()) return true; return false; } - final private boolean jj_3R_91() { + final private boolean jj_3R_92() { Token xsp; xsp = jj_scanpos; if (jj_3_52()) { @@ -31135,12 +31255,9 @@ final private boolean jj_3R_91() { jj_scanpos = xsp; if (jj_3_77()) { jj_scanpos = xsp; - if (jj_3_78()) return true; - } - } - } - } - } + if (jj_3_78()) { + jj_scanpos = xsp; + if (jj_3_79()) return true; } } } @@ -31162,121 +31279,9 @@ final private boolean jj_3R_91() { } } } - return false; - } - - final private boolean jj_3_377() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_202()) return true; - return false; - } - - final private boolean jj_3R_194() { - if (jj_3R_202()) return true; - return false; - } - - final private boolean jj_3_873() { - if (jj_scan_token(UTF32)) return true; - return false; - } - - final private boolean jj_3_872() { - if (jj_scan_token(UTF16)) return true; - return false; - } - - final private boolean jj_3_50() { - if (jj_3R_91()) return true; - return false; - } - - final private boolean jj_3_871() { - if (jj_scan_token(UTF8)) return true; - return false; - } - - final private boolean jj_3_372() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_201()) return true; - return false; - } - - final private boolean jj_3_49() { - if (jj_scan_token(SEMICOLON)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_50()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_874() { - if (jj_scan_token(ENCODING)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_871()) { - jj_scanpos = xsp; - if (jj_3_872()) { - jj_scanpos = xsp; - if (jj_3_873()) return true; } } - return false; - } - - final private boolean jj_3_376() { - if (jj_scan_token(PERMUTE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3R_313() { - if (jj_scan_token(JSON)) return true; - return false; - } - - final private boolean jj_3_51() { - if (jj_3R_91()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_49()) { jj_scanpos = xsp; break; } } - return false; - } - - final private boolean jj_3_375() { - if (jj_scan_token(LBRACE)) return true; - if (jj_scan_token(MINUS)) return true; - return false; - } - - final private boolean jj_3_870() { - if (jj_3R_312()) return true; - return false; - } - - final private boolean jj_3_374() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_201()) return true; - return false; - } - - final private boolean jj_3_869() { - if (jj_3R_311()) return true; - return false; - } - - final private boolean jj_3R_380() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_373()) { - jj_scanpos = xsp; - if (jj_3_374()) { - jj_scanpos = xsp; - if (jj_3_375()) { - jj_scanpos = xsp; - if (jj_3_376()) return true; } } } @@ -31284,1679 +31289,1622 @@ final private boolean jj_3R_380() { } final private boolean jj_3_373() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_868() { - if (jj_3R_310()) return true; - return false; - } - - final private boolean jj_3_867() { - if (jj_3R_309()) return true; - return false; - } - - 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_866() { - if (jj_3R_308()) return true; - return false; - } - - final private boolean jj_3_865() { - if (jj_3R_307()) return true; + if (jj_scan_token(MINUS)) return true; + if (jj_3R_204()) return true; return false; } final private boolean jj_3_864() { - if (jj_3R_306()) return true; + if (jj_3R_302()) return true; return false; } final private boolean jj_3_863() { - if (jj_3R_305()) return true; - return false; - } - - final private boolean jj_3R_382() { - return false; - } - - final private boolean jj_3_862() { - if (jj_3R_304()) return true; - return false; - } - - final private boolean jj_3_861() { - if (jj_3R_303()) return true; + if (jj_3R_301()) return true; return false; } - final private boolean jj_3_371() { - if (jj_scan_token(HOOK)) return true; + final private boolean jj_3R_203() { return false; } - final private boolean jj_3_860() { - if (jj_3R_302()) return true; + final private boolean jj_3R_202() { return false; } - final private boolean jj_3_859() { - if (jj_3R_301()) return true; + final private boolean jj_3_372() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_858() { + final private boolean jj_3_862() { if (jj_3R_300()) return true; return false; } - final private boolean jj_3_366() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_369() { if (jj_3R_201()) return true; return false; } - final private boolean jj_3_857() { + final private boolean jj_3_861() { if (jj_3R_299()) return true; return false; } - final private boolean jj_3_856() { - if (jj_3R_298()) return true; - return false; - } - - final private boolean jj_3R_200() { - return false; - } - - final private boolean jj_3R_199() { + final private boolean jj_3_50() { + if (jj_3R_92()) return true; return false; } - final private boolean jj_3_365() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_198()) return true; + final private boolean jj_3_860() { + if (jj_3R_298()) return true; return false; } - final private boolean jj_3_855() { + final private boolean jj_3_859() { if (jj_3R_297()) return true; return false; } - final private boolean jj_3R_80() { - if (jj_scan_token(DEFAULT_)) return true; - return false; - } - - final private boolean jj_3_362() { - if (jj_3R_198()) return true; + final private boolean jj_3_370() { + if (jj_scan_token(COMMA)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_369()) { + jj_scanpos = xsp; + if (jj_3R_202()) return true; + } return false; } - final private boolean jj_3_854() { + final private boolean jj_3_858() { if (jj_3R_296()) return true; return false; } - final private boolean jj_3R_89() { - if (jj_3R_134()) return true; + final private boolean jj_3_49() { + if (jj_scan_token(SEMICOLON)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_50()) jj_scanpos = xsp; return false; } - final private boolean jj_3_853() { + final private boolean jj_3_857() { if (jj_3R_295()) return true; return false; } - final private boolean jj_3_46() { + final private boolean jj_3_371() { + if (jj_3R_201()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3R_89()) { + if (jj_3_370()) { jj_scanpos = xsp; - if (jj_3R_90()) return true; + if (jj_3R_203()) return true; } - if (jj_scan_token(LAMBDA)) return true; + if (jj_scan_token(RBRACE)) return true; return false; } - final private boolean jj_3_852() { - if (jj_3R_294()) return true; + final private boolean jj_3_844() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_86() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_51() { + if (jj_3R_92()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_49()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_363() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_377() { + if (jj_scan_token(LBRACE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_362()) { + if (jj_3_371()) { jj_scanpos = xsp; - if (jj_3R_199()) return true; + if (jj_3_372()) { + jj_scanpos = xsp; + if (jj_3_373()) return true; + } } return false; } - final private boolean jj_3_851() { - if (jj_3R_293()) return true; + final private boolean jj_3_376() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_48() { - if (jj_3R_87()) return true; + final private boolean jj_3_843() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_850() { - if (jj_3R_292()) return true; + final private boolean jj_3_846() { + if (jj_3R_82()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_844()) jj_scanpos = xsp; return false; } - final private boolean jj_3_47() { - if (jj_3R_81()) return true; + final private boolean jj_3_842() { + if (jj_scan_token(LEADING)) return true; return false; } - final private boolean jj_3_364() { - if (jj_3R_198()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_363()) { - jj_scanpos = xsp; - if (jj_3R_200()) return true; - } - if (jj_scan_token(RBRACE)) return true; + final private boolean jj_3R_91() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_837() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_375() { + if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3R_350() { - if (jj_3R_408()) return true; + final private boolean jj_3_841() { + if (jj_scan_token(TRAILING)) return true; return false; } - final private boolean jj_3_45() { - if (jj_3R_80()) return true; + final private boolean jj_3_374() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_370() { - if (jj_scan_token(LBRACE)) return true; + final private boolean jj_3_840() { + if (jj_scan_token(BOTH)) return true; + return false; + } + + final private boolean jj_3R_385() { Token xsp; xsp = jj_scanpos; - if (jj_3_364()) { + if (jj_3_374()) { + jj_scanpos = xsp; + if (jj_3_375()) { jj_scanpos = xsp; - if (jj_3_365()) { + if (jj_3_376()) { jj_scanpos = xsp; - if (jj_3_366()) return true; + if (jj_3_377()) return true; + } } } return false; } - final private boolean jj_3R_349() { - return false; - } - - final private boolean jj_3_44() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; - return false; - } - - final private boolean jj_3_369() { - if (jj_scan_token(HOOK)) return true; - return false; - } - - final private boolean jj_3_836() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_839() { - if (jj_3R_81()) return true; + final private boolean jj_3R_200() { + if (jj_3R_384()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_837()) jj_scanpos = xsp; + if (jj_3R_385()) { + jj_scanpos = xsp; + if (jj_3R_386()) return true; + } return false; } - final private boolean jj_3R_83() { + final private boolean jj_3_845() { Token xsp; xsp = jj_scanpos; - if (jj_3_44()) { - jj_scanpos = xsp; - if (jj_3R_349()) return true; - } - xsp = jj_scanpos; - if (jj_3_45()) { - jj_scanpos = xsp; - if (jj_3R_350()) { + if (jj_3_840()) { jj_scanpos = xsp; - if (jj_3_47()) { + if (jj_3_841()) { jj_scanpos = xsp; - if (jj_3_48()) return true; - } + if (jj_3_842()) return true; } } + xsp = jj_scanpos; + if (jj_3_843()) jj_scanpos = xsp; + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_835() { - if (jj_scan_token(LEADING)) return true; - return false; - } - - final private boolean jj_3_368() { - if (jj_scan_token(PLUS)) return true; - return false; - } - - final private boolean jj_3_834() { - if (jj_scan_token(TRAILING)) return true; + final private boolean jj_3_1814() { + if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3R_85() { - if (jj_3R_134()) return true; + final private boolean jj_3R_81() { + if (jj_scan_token(DEFAULT_)) return true; return false; } - final private boolean jj_3_367() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1813() { + if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_41() { - Token xsp; - xsp = jj_scanpos; - if (jj_3R_85()) { - jj_scanpos = xsp; - if (jj_3R_86()) return true; - } - if (jj_scan_token(LAMBDA)) return true; + final private boolean jj_3_1812() { + if (jj_scan_token(MONDAY)) return true; return false; } - final private boolean jj_3_833() { - if (jj_scan_token(BOTH)) return true; + final private boolean jj_3_1811() { + if (jj_scan_token(WITHIN)) return true; return false; } - final private boolean jj_3_43() { - if (jj_3R_88()) return true; + final private boolean jj_3_838() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3R_381() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_367()) { - jj_scanpos = xsp; - if (jj_3_368()) { - jj_scanpos = xsp; - if (jj_3_369()) { - jj_scanpos = xsp; - if (jj_3_370()) return true; - } - } - } + final private boolean jj_3R_90() { + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_42() { - if (jj_3R_87()) return true; + final private boolean jj_3_1810() { + if (jj_scan_token(WHENEVER)) return true; return false; } - final private boolean jj_3R_367() { - if (jj_3R_408()) return true; + final private boolean jj_3_1809() { + if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3R_197() { - if (jj_3R_380()) return true; + final private boolean jj_3_46() { Token xsp; xsp = jj_scanpos; - if (jj_3R_381()) { + if (jj_3R_90()) { jj_scanpos = xsp; - if (jj_3R_382()) return true; + if (jj_3R_91()) return true; } + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_40() { - if (jj_3R_80()) return true; + final private boolean jj_3_1808() { + if (jj_scan_token(VARIANT)) return true; return false; } - final private boolean jj_3_838() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_833()) { - jj_scanpos = xsp; - if (jj_3_834()) { - jj_scanpos = xsp; - if (jj_3_835()) return true; - } - } - xsp = jj_scanpos; - if (jj_3_836()) jj_scanpos = xsp; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3R_87() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_366() { + final private boolean jj_3_1807() { + if (jj_scan_token(VALUE)) 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_3_1806() { + if (jj_scan_token(UPPER)) return true; return false; } - final private boolean jj_3_831() { + final private boolean jj_3_836() { if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1805() { - if (jj_scan_token(SATURDAY)) return true; + final private boolean jj_3_856() { + if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_154() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_39()) { - jj_scanpos = xsp; - if (jj_3R_366()) return true; - } - xsp = jj_scanpos; - if (jj_3_40()) { - jj_scanpos = xsp; - if (jj_3R_367()) { - jj_scanpos = xsp; - if (jj_3_42()) { - jj_scanpos = xsp; - if (jj_3_43()) return true; - } - } - } + final private boolean jj_3_1805() { + if (jj_scan_token(UESCAPE)) return true; return false; } final private boolean jj_3_1804() { - if (jj_scan_token(WEDNESDAY)) return true; + if (jj_scan_token(TRIM_ARRAY)) return true; + return false; + } + + final private boolean jj_3_48() { + if (jj_3R_88()) return true; + return false; + } + + final private boolean jj_3_368() { + if (jj_3R_200()) return true; return false; } final private boolean jj_3_1803() { - if (jj_scan_token(YEAR)) return true; + if (jj_scan_token(TREAT)) return true; + return false; + } + + final private boolean jj_3_837() { + if (jj_scan_token(FOR)) return true; return false; } final private boolean jj_3_1802() { - if (jj_scan_token(WINDOW)) return true; + if (jj_scan_token(TRANSLATE)) return true; return false; } - final private boolean jj_3_1801() { - if (jj_scan_token(VERSIONING)) return true; + final private boolean jj_3_47() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_829() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_839() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_837()) { + jj_scanpos = xsp; + if (jj_3_838()) return true; + } + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_849() { - if (jj_scan_token(TRIM)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1801() { + if (jj_scan_token(TIMEZONE_HOUR)) return true; return false; } final private boolean jj_3_1800() { - if (jj_scan_token(VARYING)) return true; + if (jj_scan_token(TABLESAMPLE)) return true; + return false; + } + + final private boolean jj_3R_353() { + if (jj_3R_412()) return true; return false; } final private boolean jj_3_1799() { - if (jj_scan_token(VARBINARY)) return true; + if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3_361() { - if (jj_3R_197()) return true; + final private boolean jj_3R_199() { + if (jj_3R_200()) return true; return false; } final private boolean jj_3_1798() { - if (jj_scan_token(UUID)) return true; + if (jj_scan_token(SUBSTRING_REGEX)) return true; return false; } - final private boolean jj_3_830() { - if (jj_scan_token(FOR)) return true; + final private boolean jj_3_834() { + if (jj_scan_token(CEILING)) return true; return false; } final private boolean jj_3_1797() { - if (jj_scan_token(UNKNOWN)) return true; + if (jj_scan_token(SUBMULTISET)) return true; return false; } - final private boolean jj_3_832() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_830()) { - jj_scanpos = xsp; - if (jj_3_831()) return true; - } - if (jj_3R_78()) return true; + final private boolean jj_3_45() { + if (jj_3R_81()) return true; + return false; + } + + final private boolean jj_3_835() { + if (jj_scan_token(FROM)) return true; return false; } final private boolean jj_3_1796() { - if (jj_scan_token(TRY_CAST)) return true; + if (jj_scan_token(STDDEV_POP)) return true; return false; } final private boolean jj_3_1795() { - if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_1794() { - if (jj_scan_token(TRANSLATION)) return true; + final private boolean jj_3R_352() { return false; } - final private boolean jj_3R_196() { - if (jj_3R_197()) return true; + final private boolean jj_3_1794() { + if (jj_scan_token(SQLEXCEPTION)) return true; return false; } final private boolean jj_3_1793() { - if (jj_scan_token(TINYINT)) return true; + if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_827() { - if (jj_scan_token(CEILING)) return true; + final private boolean jj_3_44() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } final private boolean jj_3_1792() { - if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(SIMILAR)) return true; return false; } - final private boolean jj_3_828() { - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_855() { + if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1791() { - if (jj_scan_token(SYSTEM_USER)) return true; + if (jj_scan_token(SENSITIVE)) return true; return false; } final private boolean jj_3_1790() { - if (jj_scan_token(SUM)) return true; + if (jj_scan_token(SEARCH)) return true; return false; } final private boolean jj_3_1789() { - if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(SAVEPOINT)) return true; + return false; + } + + final private boolean jj_3_833() { + if (jj_scan_token(CEIL)) return true; + return false; + } + + final private boolean jj_3R_84() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_44()) { + jj_scanpos = xsp; + if (jj_3R_352()) return true; + } + xsp = jj_scanpos; + if (jj_3_45()) { + jj_scanpos = xsp; + if (jj_3R_353()) { + jj_scanpos = xsp; + if (jj_3_47()) { + jj_scanpos = xsp; + if (jj_3_48()) return true; + } + } + } return false; } final private boolean jj_3_1788() { - if (jj_scan_token(STREAM)) return true; + if (jj_scan_token(SAFE_CAST)) return true; return false; } final private boolean jj_3_1787() { - if (jj_scan_token(STATIC)) return true; + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_848() { - if (jj_scan_token(SUBSTRING)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_854() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_833()) { + jj_scanpos = xsp; + if (jj_3_834()) return true; + } + if (jj_3R_294()) return true; return false; } final private boolean jj_3_1786() { - if (jj_scan_token(SQLWARNING)) return true; + if (jj_scan_token(REVOKE)) return true; return false; } final private boolean jj_3_1785() { - if (jj_scan_token(SQL)) return true; + if (jj_scan_token(RESULT)) return true; return false; } - final private boolean jj_3_1784() { - if (jj_scan_token(SMALLINT)) return true; + final private boolean jj_3_367() { + if (jj_scan_token(VERTICAL_BAR)) return true; + if (jj_3R_199()) return true; return false; } - final private boolean jj_3_826() { - if (jj_scan_token(CEIL)) return true; + final private boolean jj_3_1784() { + if (jj_scan_token(REGR_SYY)) return true; return false; } final private boolean jj_3_1783() { - if (jj_scan_token(SHOW)) return true; + if (jj_scan_token(REGR_SLOPE)) return true; return false; } final private boolean jj_3_1782() { - if (jj_scan_token(SEEK)) return true; + if (jj_scan_token(REGR_COUNT)) return true; return false; } - final private boolean jj_3_847() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_826()) { - jj_scanpos = xsp; - if (jj_3_827()) return true; - } - if (jj_3R_291()) return true; + final private boolean jj_3_853() { + if (jj_scan_token(FLOOR)) return true; + if (jj_3R_294()) return true; return false; } final private boolean jj_3_1781() { - if (jj_scan_token(SCROLL)) return true; - return false; - } - - final private boolean jj_3_1780() { - if (jj_scan_token(SAFE_ORDINAL)) return true; + if (jj_scan_token(REFERENCING)) return true; return false; } - final private boolean jj_3_360() { - if (jj_scan_token(VERTICAL_BAR)) return true; - if (jj_3R_196()) return true; + final private boolean jj_3R_86() { + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_1779() { - if (jj_scan_token(RUNNING)) return true; + final private boolean jj_3_1780() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3_38() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3R_204() { + if (jj_3R_199()) return true; return false; } - final private boolean jj_3_1778() { - if (jj_scan_token(ROLLUP)) return true; + final private boolean jj_3_1779() { + if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3R_82() { + final private boolean jj_3_41() { Token xsp; xsp = jj_scanpos; - if (jj_3_37()) { + if (jj_3R_86()) { jj_scanpos = xsp; - if (jj_3_38()) return true; + if (jj_3R_87()) return true; } + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_1777() { - if (jj_scan_token(RETURNS)) return true; + final private boolean jj_3_832() { + if (jj_scan_token(FOR)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_37() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_1778() { + if (jj_scan_token(PROCEDURE)) return true; return false; } - final private boolean jj_3_846() { - if (jj_scan_token(FLOOR)) return true; - if (jj_3R_291()) return true; + final private boolean jj_3_1777() { + if (jj_scan_token(PRECISION)) return true; return false; } final private boolean jj_3_1776() { - if (jj_scan_token(RESET)) return true; + if (jj_scan_token(POSITION_REGEX)) return true; return false; } final private boolean jj_3_1775() { - if (jj_scan_token(REGR_SXY)) return true; + if (jj_scan_token(PERMUTE)) return true; return false; } - final private boolean jj_3R_201() { - if (jj_3R_196()) return true; + final private boolean jj_3_43() { + if (jj_3R_89()) return true; return false; } final private boolean jj_3_1774() { - if (jj_scan_token(REGR_R2)) return true; - return false; - } - - final private boolean jj_3_825() { - if (jj_scan_token(FOR)) return true; - if (jj_3R_78()) return true; + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } final private boolean jj_3_1773() { - if (jj_scan_token(REGR_AVGY)) return true; - return false; - } - - final private boolean jj_3_1772() { - if (jj_scan_token(REFERENCES)) return true; - return false; - } - - final private boolean jj_3_1771() { - if (jj_scan_token(REAL)) return true; - return false; - } - - final private boolean jj_3_1770() { - if (jj_scan_token(RANGE)) return true; - return false; - } - - final private boolean jj_3_1769() { - if (jj_scan_token(PREV)) return true; - return false; - } - - final private boolean jj_3_1768() { - if (jj_scan_token(PRECEDES)) return true; + if (jj_scan_token(PER)) return true; return false; } - final private boolean jj_3_845() { + final private boolean jj_3_852() { if (jj_scan_token(OVERLAY)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1767() { - if (jj_scan_token(POSITION)) return true; + final private boolean jj_3_1772() { + if (jj_scan_token(OVERLAY)) return true; return false; } - final private boolean jj_3_822() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_42() { + if (jj_3R_88()) return true; return false; } - final private boolean jj_3_1766() { - if (jj_scan_token(PERIOD)) return true; + final private boolean jj_3_829() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_1765() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + final private boolean jj_3_1771() { + if (jj_scan_token(OUT)) return true; return false; } - final private boolean jj_3_36() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3_1770() { + if (jj_scan_token(ONLY)) return true; return false; } - final private boolean jj_3_824() { + final private boolean jj_3_831() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_822()) { jj_scanpos = xsp; break; } + if (jj_3_829()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1764() { - if (jj_scan_token(PATTERN)) return true; + final private boolean jj_3R_371() { + if (jj_3R_412()) return true; return false; } - final private boolean jj_3_1763() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3_1769() { + if (jj_scan_token(OLD)) return true; return false; } - final private boolean jj_3_1762() { - if (jj_scan_token(ORDINAL)) return true; + final private boolean jj_3_1768() { + if (jj_scan_token(OCCURRENCES_REGEX)) return true; return false; } - final private boolean jj_3R_385() { + final private boolean jj_3_1767() { + if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3R_195() { + final private boolean jj_3_40() { if (jj_3R_81()) return true; return false; } - final private boolean jj_3_1761() { - if (jj_scan_token(ONE)) return true; + final private boolean jj_3R_198() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1760() { - if (jj_scan_token(OF)) return true; + final private boolean jj_3_1766() { + if (jj_scan_token(NONE)) return true; return false; } - final private boolean jj_3_1759() { - if (jj_scan_token(NUMERIC)) return true; + final private boolean jj_3_1765() { + if (jj_scan_token(NEW)) return true; return false; } - final private boolean jj_3_35() { - if (jj_3R_82()) return true; + final private boolean jj_3R_370() { return false; } - final private boolean jj_3_823() { + final private boolean jj_3_1764() { + if (jj_scan_token(NATIONAL)) return true; + return false; + } + + final private boolean jj_3_830() { if (jj_scan_token(USING)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1758() { - if (jj_scan_token(NTH_VALUE)) return true; + final private boolean jj_3_1763() { + if (jj_scan_token(MODULE)) return true; return false; } - final private boolean jj_3_1757() { - if (jj_scan_token(NO)) return true; + final private boolean jj_3_39() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } - final private boolean jj_3_1756() { - if (jj_scan_token(NCLOB)) return true; + final private boolean jj_3_1762() { + if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_1755() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3_1761() { + if (jj_scan_token(MEMBER)) return true; return false; } - final private boolean jj_3_818() { + final private boolean jj_3_1760() { + if (jj_scan_token(MAX)) return true; + return false; + } + + final private boolean jj_3_825() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1754() { - if (jj_scan_token(MODIFIES)) return true; + final private boolean jj_3_1759() { + if (jj_scan_token(MATCH_CONDITION)) return true; return false; } - final private boolean jj_3R_220() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_157() { Token xsp; xsp = jj_scanpos; - if (jj_3_35()) { + if (jj_3_39()) { + jj_scanpos = xsp; + if (jj_3R_370()) return true; + } + xsp = jj_scanpos; + if (jj_3_40()) { + jj_scanpos = xsp; + if (jj_3R_371()) { jj_scanpos = xsp; - if (jj_3R_385()) return true; + if (jj_3_42()) { + jj_scanpos = xsp; + if (jj_3_43()) return true; + } + } } return false; } - final private boolean jj_3_1753() { - if (jj_scan_token(MIN)) return true; + final private boolean jj_3_1758() { + if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_359() { + final private boolean jj_3_366() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_195()) return true; + if (jj_3R_198()) return true; return false; } - final private boolean jj_3_817() { - if (jj_3R_198()) return true; + final private boolean jj_3_824() { + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_1752() { - if (jj_scan_token(MEASURES)) return true; + final private boolean jj_3_1757() { + if (jj_scan_token(LIKE_REGEX)) return true; return false; } - final private boolean jj_3_1751() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; + final private boolean jj_3_1756() { + if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_844() { + final private boolean jj_3_851() { if (jj_scan_token(TRANSLATE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_191() { - if (jj_3R_195()) return true; + final private boolean jj_3R_194() { + if (jj_3R_198()) return true; return false; } - final private boolean jj_3_1750() { - if (jj_scan_token(MATCHES)) return true; + final private boolean jj_3_1755() { + if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_1749() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1754() { + if (jj_scan_token(JSON_QUERY)) return true; return false; } - final private boolean jj_3_1748() { - if (jj_scan_token(LEAD)) return true; + final private boolean jj_3_1753() { + if (jj_scan_token(JSON_EXISTS)) return true; return false; } - final private boolean jj_3_1747() { - if (jj_scan_token(LARGE)) return true; + final private boolean jj_3_1752() { + if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_819() { + final private boolean jj_3_826() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_817()) { + if (jj_3_824()) { jj_scanpos = xsp; - if (jj_3_818()) return true; + if (jj_3_825()) return true; } return false; } - final private boolean jj_3_1746() { - if (jj_scan_token(JSON_VALUE)) return true; + final private boolean jj_3_1751() { + if (jj_scan_token(INSENSITIVE)) return true; return false; } - final private boolean jj_3_1745() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; + final private boolean jj_3_1750() { + if (jj_scan_token(INDICATOR)) return true; return false; } - final private boolean jj_3_1744() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + final private boolean jj_3_1749() { + if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_1743() { - if (jj_scan_token(INTEGER)) return true; + final private boolean jj_3_1748() { + if (jj_scan_token(GROUPING)) return true; return false; } - final private boolean jj_3_1742() { - if (jj_scan_token(INOUT)) return true; + final private boolean jj_3_1747() { + if (jj_scan_token(GET)) return true; return false; } - final private boolean jj_3_816() { + final private boolean jj_3_823() { if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; - return false; - } - - final private boolean jj_3_1741() { - if (jj_scan_token(IMPORT)) return true; + if (jj_3R_218()) return true; return false; } - final private boolean jj_3_1740() { - if (jj_scan_token(HOLD)) return true; + final private boolean jj_3_1746() { + if (jj_scan_token(FREE)) return true; return false; } - final private boolean jj_3_815() { - if (jj_3R_120()) return true; + final private boolean jj_3_1745() { + if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_1739() { - if (jj_scan_token(GRANT)) return true; + final private boolean jj_3_822() { + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_1738() { - if (jj_scan_token(FUSION)) return true; + final private boolean jj_3_1744() { + if (jj_scan_token(FILTER)) return true; return false; } - final private boolean jj_3R_401() { - if (jj_3R_220()) return true; + final private boolean jj_3_1743() { + if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3_1737() { - if (jj_scan_token(FRAME_ROW)) return true; + final private boolean jj_3_1742() { + if (jj_scan_token(EXEC)) return true; return false; } - final private boolean jj_3_358() { + final private boolean jj_3_365() { if (jj_scan_token(SUBSET)) return true; - if (jj_3R_194()) return true; + if (jj_3R_197()) return true; return false; } - final private boolean jj_3_1736() { - if (jj_scan_token(FLOAT)) return true; + final private boolean jj_3_1741() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_812() { + final private boolean jj_3_819() { if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1735() { - if (jj_scan_token(EXTRACT)) return true; + final private boolean jj_3_1740() { + if (jj_scan_token(END_EXEC)) return true; return false; } - final private boolean jj_3_821() { + final private boolean jj_3_828() { Token xsp; xsp = jj_scanpos; - if (jj_3_815()) { + if (jj_3_822()) { jj_scanpos = xsp; - if (jj_3_816()) return true; + if (jj_3_823()) return true; } if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1734() { - if (jj_scan_token(EXP)) return true; + final private boolean jj_3_1739() { + if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_1733() { - if (jj_scan_token(EVERY)) return true; + final private boolean jj_3_1738() { + if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_357() { + final private boolean jj_3_364() { if (jj_scan_token(WITHIN)) return true; - if (jj_3R_193()) return true; + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_1732() { - if (jj_scan_token(END_PARTITION)) return true; + final private boolean jj_3_1737() { + if (jj_scan_token(DETERMINISTIC)) return true; return false; } - final private boolean jj_3_1731() { - if (jj_scan_token(END)) return true; + final private boolean jj_3_1736() { + if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3_1730() { - if (jj_scan_token(EACH)) return true; + final private boolean jj_3_1735() { + if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_349() { + final private boolean jj_3_356() { if (jj_scan_token(LAST)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_811() { + final private boolean jj_3_818() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1729() { - if (jj_scan_token(DISCONNECT)) return true; + final private boolean jj_3_1734() { + if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_1728() { - if (jj_scan_token(DESCRIBE)) return true; + final private boolean jj_3_1733() { + if (jj_scan_token(CYCLE)) return true; + return false; + } + + final private boolean jj_3_38() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_356() { + final private boolean jj_3_363() { if (jj_scan_token(DOLLAR)) return true; return false; } - final private boolean jj_3_1727() { - if (jj_scan_token(DEFINE)) return true; + final private boolean jj_3_1732() { + if (jj_scan_token(CURRENT_ROW)) return true; return false; } - final private boolean jj_3_34() { - if (jj_3R_80()) return true; + final private boolean jj_3R_83() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_37()) { + jj_scanpos = xsp; + if (jj_3_38()) return true; + } return false; } - final private boolean jj_3_1726() { - if (jj_scan_token(DEC)) return true; + final private boolean jj_3_1731() { + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } - final private boolean jj_3_1725() { - if (jj_scan_token(DATETIME)) return true; + final private boolean jj_3_37() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_33() { - if (jj_3R_81()) return true; + final private boolean jj_3_1730() { + if (jj_scan_token(CUME_DIST)) return true; return false; } - final private boolean jj_3_1724() { - if (jj_scan_token(CURSOR)) return true; + final private boolean jj_3_1729() { + if (jj_scan_token(COVAR_POP)) return true; return false; } - final private boolean jj_3_814() { + final private boolean jj_3_821() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1723() { - if (jj_scan_token(CURRENT_ROLE)) return true; + final private boolean jj_3_1728() { + if (jj_scan_token(CORR)) return true; return false; } - final private boolean jj_3_355() { + final private boolean jj_3_362() { if (jj_scan_token(CARET)) return true; return false; } - final private boolean jj_3_1722() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + final private boolean jj_3_1727() { + if (jj_scan_token(CONNECT)) return true; return false; } - final private boolean jj_3_1721() { - if (jj_scan_token(CUBE)) return true; + final private boolean jj_3_1726() { + if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3_1720() { - if (jj_scan_token(COUNT)) return true; + final private boolean jj_3_1725() { + if (jj_scan_token(CLOSE)) return true; return false; } - final private boolean jj_3_1719() { - if (jj_scan_token(CONVERT)) return true; + final private boolean jj_3_1724() { + if (jj_scan_token(CHECK)) return true; return false; } - final private boolean jj_3_813() { + final private boolean jj_3_820() { if (jj_scan_token(USING)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1718() { - if (jj_scan_token(CONDITION)) return true; + final private boolean jj_3_1723() { + if (jj_scan_token(CHARACTER)) return true; return false; } - final private boolean jj_3_1717() { - if (jj_scan_token(COLLATE)) return true; + final private boolean jj_3_1722() { + if (jj_scan_token(CEIL)) return true; return false; } - final private boolean jj_3_353() { + final private boolean jj_3_360() { if (jj_scan_token(PAST)) return true; if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_1716() { - if (jj_scan_token(CLOB)) return true; - return false; - } - - final private boolean jj_3_1715() { - if (jj_scan_token(CHAR_LENGTH)) return true; + final private boolean jj_3_1721() { + if (jj_scan_token(CALLED)) 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; - } + final private boolean jj_3_1720() { + if (jj_scan_token(BLOB)) return true; return false; } - final private boolean jj_3R_192() { + final private boolean jj_3R_195() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(304)) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1714() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_1719() { + if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_1713() { - if (jj_scan_token(CASCADED)) return true; + final private boolean jj_3_36() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_1712() { - if (jj_scan_token(CALL)) return true; + final private boolean jj_3_1718() { + if (jj_scan_token(BEGIN)) return true; return false; } - final private boolean jj_3_31() { - if (jj_3R_80()) return true; + final private boolean jj_3_1717() { + if (jj_scan_token(ATOMIC)) return true; return false; } - final private boolean jj_3_820() { - if (jj_3R_78()) return true; + final private boolean jj_3_827() { + if (jj_3R_79()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_813()) { + if (jj_3_820()) { jj_scanpos = xsp; - if (jj_3_814()) return true; + if (jj_3_821()) return true; } return false; } - final private boolean jj_3_1711() { - if (jj_scan_token(BIT)) return true; - return false; - } - - final private boolean jj_3_1710() { - if (jj_scan_token(BEGIN_PARTITION)) return true; - return false; - } - - final private boolean jj_3_30() { - if (jj_3R_79()) return true; + final private boolean jj_3_1716() { + if (jj_scan_token(ASENSITIVE)) return true; return false; } - final private boolean jj_3_1709() { - if (jj_scan_token(AVG)) return true; + final private boolean jj_3R_389() { return false; } - final private boolean jj_3_1708() { - if (jj_scan_token(AT)) return true; + final private boolean jj_3_1715() { + if (jj_scan_token(ALLOW)) return true; return false; } - final private boolean jj_3_1707() { - if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; + final private boolean jj_3_1714() { + if (jj_scan_token(NOWAIT)) return true; return false; } - final private boolean jj_3_1706() { - if (jj_scan_token(ALLOCATE)) return true; + final private boolean jj_3_1713() { + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3_1705() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; + final private boolean jj_3_35() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3_1704() { + final private boolean jj_3_1712() { if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_1703() { + final private boolean jj_3_1711() { if (jj_scan_token(COMPUTE)) return true; return false; } - final private boolean jj_3_1702() { + final private boolean jj_3_1710() { if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3_1701() { + final private boolean jj_3_1709() { if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_1700() { + final private boolean jj_3_1708() { if (jj_scan_token(PARALLEL)) return true; return false; } - final private boolean jj_3_843() { - if (jj_scan_token(CONVERT)) return true; + final private boolean jj_3R_223() { if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_35()) { + jj_scanpos = xsp; + if (jj_3R_389()) return true; + } return false; } - final private boolean jj_3_1699() { + final private boolean jj_3_1707() { if (jj_scan_token(WRAP_KEY)) return true; return false; } - final private boolean jj_3_351() { - if (jj_scan_token(FIRST)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_1698() { + final private boolean jj_3_1706() { if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_1697() { + final private boolean jj_3_1705() { if (jj_scan_token(ATOMICITY)) return true; return false; } - final private boolean jj_3_810() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_850() { + if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1696() { + final private boolean jj_3_1704() { if (jj_scan_token(TEMPLATE)) return true; return false; } - final private boolean jj_3_1695() { + final private boolean jj_3_358() { + if (jj_scan_token(FIRST)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1703() { if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_1694() { + final private boolean jj_3_1702() { if (jj_scan_token(WORK)) return true; return false; } - final private boolean jj_3_1693() { - if (jj_scan_token(VIEW)) return true; + final private boolean jj_3_817() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_350() { - if (jj_scan_token(NEXT)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1701() { + if (jj_scan_token(VIEW)) return true; return false; } - final private boolean jj_3_1692() { + final private boolean jj_3_1700() { if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3R_183() { - 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; - } + final private boolean jj_3_1699() { + if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; return false; } - final private boolean jj_3_1691() { - if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; + final private boolean jj_3_1698() { + if (jj_scan_token(USAGE)) return true; return false; } - final private boolean jj_3_1690() { - if (jj_scan_token(USAGE)) return true; + final private boolean jj_3_357() { + if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1689() { + final private boolean jj_3_1697() { if (jj_scan_token(UNDER)) return true; return false; } - final private boolean jj_3_1688() { + final private boolean jj_3_1696() { if (jj_scan_token(UNBOUNDED)) return true; return false; } - final private boolean jj_3_1687() { + final private boolean jj_3_1695() { if (jj_scan_token(TRIGGER_SCHEMA)) return true; return false; } - final private boolean jj_3_352() { + final private boolean jj_3_1694() { + if (jj_scan_token(TRANSFORMS)) return true; + return false; + } + + final private boolean jj_3_1693() { + if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + return false; + } + + final private boolean jj_3_1692() { + if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + return false; + } + + final private boolean jj_3_359() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_350()) { + if (jj_3_357()) { jj_scanpos = xsp; - if (jj_3_351()) { + if (jj_3_358()) { jj_scanpos = xsp; lookingAhead = true; jj_semLA = true; lookingAhead = false; - if (!jj_semLA || jj_3R_192()) return true; + if (!jj_semLA || jj_3R_195()) return true; } } return false; } - final private boolean jj_3_842() { + final private boolean jj_3_849() { if (jj_scan_token(POSITION)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1686() { - if (jj_scan_token(TRANSFORMS)) return true; + final private boolean jj_3R_405() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3_1685() { - if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + final private boolean jj_3_1691() { + if (jj_scan_token(TIMESTAMPDIFF)) return true; return false; } - final private boolean jj_3_1684() { - if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + final private boolean jj_3_1690() { + if (jj_scan_token(TIME_DIFF)) return true; return false; } - final private boolean jj_3_1683() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; + final private boolean jj_3_1689() { + if (jj_scan_token(TABLE_NAME)) return true; return false; } - final private boolean jj_3_1682() { - if (jj_scan_token(TIME_DIFF)) return true; + final private boolean jj_3_1688() { + if (jj_scan_token(STYLE)) return true; return false; } - final private boolean jj_3_1681() { - if (jj_scan_token(TABLE_NAME)) return true; + final private boolean jj_3_1687() { + if (jj_scan_token(STATEMENT)) return true; return false; } - final private boolean jj_3_354() { + final private boolean jj_3_1686() { + if (jj_scan_token(SQL_VARBINARY)) return true; + return false; + } + + final private boolean jj_3_361() { if (jj_scan_token(AFTER)) return true; if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_1680() { - if (jj_scan_token(STYLE)) return true; + final private boolean jj_3_1685() { + if (jj_scan_token(SQL_TSI_SECOND)) return true; return false; } - final private boolean jj_3_1679() { - if (jj_scan_token(STATEMENT)) return true; + final private boolean jj_3_1684() { + if (jj_scan_token(SQL_TSI_MINUTE)) return true; return false; } - final private boolean jj_3_1678() { - if (jj_scan_token(SQL_VARBINARY)) return true; + final private boolean jj_3_1683() { + if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; return false; } - final private boolean jj_3_1677() { - if (jj_scan_token(SQL_TSI_SECOND)) return true; + final private boolean jj_3_1682() { + if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } - final private boolean jj_3_841() { + final private boolean jj_3_848() { if (jj_scan_token(EXTRACT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1676() { - if (jj_scan_token(SQL_TSI_MINUTE)) return true; + final private boolean jj_3_1681() { + if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_1675() { - if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; + final private boolean jj_3_34() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_348() { + final private boolean jj_3_1680() { + if (jj_scan_token(SQL_NCLOB)) return true; + return false; + } + + final private boolean jj_3_355() { if (jj_scan_token(ALL)) return true; if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1674() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + final private boolean jj_3_1679() { + if (jj_scan_token(SQL_LONGVARCHAR)) return true; return false; } - final private boolean jj_3_808() { + final private boolean jj_3_33() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_815() { if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_215()) return true; + if (jj_3R_218()) return true; return false; } - final private boolean jj_3_809() { + final private boolean jj_3_816() { if (jj_scan_token(FORMAT)) return true; - if (jj_3R_138()) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_1673() { - if (jj_scan_token(SQL_REAL)) return true; + final private boolean jj_3_1678() { + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } - final private boolean jj_3_1672() { - if (jj_scan_token(SQL_NCLOB)) return true; + final private boolean jj_3_1677() { + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } - final private boolean jj_3_807() { - if (jj_3R_120()) return true; + final private boolean jj_3_814() { + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_1671() { - if (jj_scan_token(SQL_LONGVARCHAR)) return true; + final private boolean jj_3_1676() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } - final private boolean jj_3_347() { + final private boolean jj_3_354() { if (jj_scan_token(ONE)) return true; if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1670() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + final private boolean jj_3_1675() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } - final private boolean jj_3_29() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1674() { + if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_1669() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + final private boolean jj_3_1673() { + if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_1668() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + final private boolean jj_3_1672() { + if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3_1667() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + final private boolean jj_3_1671() { + if (jj_scan_token(SQL_BIT)) return true; return false; } - final private boolean jj_3_1666() { - if (jj_scan_token(SQL_INTEGER)) return true; + final private boolean jj_3_1670() { + if (jj_scan_token(SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_1665() { - if (jj_scan_token(SQL_DECIMAL)) return true; + final private boolean jj_3_353() { + if (jj_scan_token(MEASURES)) return true; + if (jj_3R_194()) return true; return false; } - final private boolean jj_3_346() { - if (jj_scan_token(MEASURES)) return true; - if (jj_3R_191()) return true; + final private boolean jj_3_1669() { + if (jj_scan_token(SIZE)) return true; return false; } - final private boolean jj_3_1664() { - if (jj_scan_token(SQL_CHAR)) 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_806() { + final private boolean jj_3_813() { if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_1663() { - if (jj_scan_token(SQL_BIT)) return true; + final private boolean jj_3_1668() { + if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_804() { + final private boolean jj_3_811() { if (jj_scan_token(CAST)) return true; return false; } - final private boolean jj_3_805() { + final private boolean jj_3_812() { if (jj_scan_token(SAFE_CAST)) return true; return false; } - final private boolean jj_3_1662() { - if (jj_scan_token(SPECIFIC_NAME)) return true; + final private boolean jj_3_1667() { + if (jj_scan_token(SERIALIZABLE)) return true; return false; } - final private boolean jj_3_1661() { - if (jj_scan_token(SIZE)) return true; + final private boolean jj_3_1666() { + if (jj_scan_token(SELF)) return true; return false; } - final private boolean jj_3_1660() { - if (jj_scan_token(SESSION)) return true; + final private boolean jj_3_31() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_345() { - if (jj_3R_70()) return true; + final private boolean jj_3_1665() { + if (jj_scan_token(SECONDS)) return true; return false; } - final private boolean jj_3_840() { + final private boolean jj_3_352() { + if (jj_3R_71()) return true; + return false; + } + + final private boolean jj_3_847() { Token xsp; xsp = jj_scanpos; - if (jj_3_804()) { + if (jj_3_811()) { jj_scanpos = xsp; - if (jj_3_805()) { + if (jj_3_812()) { jj_scanpos = xsp; - if (jj_3_806()) return true; + if (jj_3_813()) return true; } } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1659() { - if (jj_scan_token(SERIALIZABLE)) return true; + final private boolean jj_3_1664() { + if (jj_scan_token(SCOPE_CATALOGS)) return true; return false; } - final private boolean jj_3_1658() { - if (jj_scan_token(SELF)) return true; + final private boolean jj_3_30() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_1657() { - if (jj_scan_token(SECONDS)) return true; + final private boolean jj_3_1663() { + if (jj_scan_token(SCALE)) return true; return false; } - final private boolean jj_3_1656() { - if (jj_scan_token(SCOPE_CATALOGS)) return true; + final private boolean jj_3_1662() { + if (jj_scan_token(ROUTINE_SCHEMA)) return true; return false; } - final private boolean jj_3R_223() { + final private boolean jj_3_1661() { + if (jj_scan_token(ROUTINE)) return true; + return false; + } + + final private boolean jj_3R_226() { Token xsp; xsp = jj_scanpos; - if (jj_3_840()) { - jj_scanpos = xsp; - if (jj_3_841()) { - jj_scanpos = xsp; - if (jj_3_842()) { - jj_scanpos = xsp; - if (jj_3_843()) { - jj_scanpos = xsp; - if (jj_3_844()) { - jj_scanpos = xsp; - if (jj_3_845()) { - jj_scanpos = xsp; - if (jj_3_846()) { - jj_scanpos = xsp; if (jj_3_847()) { jj_scanpos = xsp; if (jj_3_848()) { @@ -33003,7 +32951,21 @@ final private boolean jj_3R_223() { jj_scanpos = xsp; if (jj_3_869()) { jj_scanpos = xsp; - if (jj_3_870()) return true; + if (jj_3_870()) { + jj_scanpos = xsp; + if (jj_3_871()) { + jj_scanpos = xsp; + if (jj_3_872()) { + jj_scanpos = xsp; + if (jj_3_873()) { + jj_scanpos = xsp; + if (jj_3_874()) { + jj_scanpos = xsp; + if (jj_3_875()) { + jj_scanpos = xsp; + if (jj_3_876()) { + jj_scanpos = xsp; + if (jj_3_877()) return true; } } } @@ -33037,526 +32999,496 @@ final private boolean jj_3R_223() { return false; } - final private boolean jj_3_1655() { - if (jj_scan_token(SCALE)) return true; - return false; - } - - final private boolean jj_3_1654() { - if (jj_scan_token(ROUTINE_SCHEMA)) return true; - return false; - } - - final private boolean jj_3_344() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; - return false; - } - - final private boolean jj_3_1653() { - if (jj_scan_token(ROUTINE)) return true; - return false; - } - - final private boolean jj_3_1652() { + final private boolean jj_3_1660() { if (jj_scan_token(RETURNING)) return true; return false; } - final private boolean jj_3_1651() { + final private boolean jj_3_1659() { if (jj_scan_token(RETURNED_LENGTH)) return true; return false; } - final private boolean jj_3R_173() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_79()) return true; + final private boolean jj_3_351() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1650() { + final private boolean jj_3_1658() { if (jj_scan_token(RESTART)) return true; return false; } - final private boolean jj_3_1649() { + final private boolean jj_3_1657() { if (jj_scan_token(REPEATABLE)) return true; return false; } - final private boolean jj_3R_168() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_1648() { + final private boolean jj_3_1656() { if (jj_scan_token(QUARTERS)) return true; return false; } - final private boolean jj_3_1647() { + final private boolean jj_3_1655() { if (jj_scan_token(PRIVILEGES)) return true; return false; } - final private boolean jj_3_1646() { + final private boolean jj_3_1654() { if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_1645() { + final private boolean jj_3R_171() { + if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_1653() { if (jj_scan_token(PLACING)) return true; return false; } - final private boolean jj_3_1644() { + final private boolean jj_3_1652() { if (jj_scan_token(PAST)) return true; return false; } - final private boolean jj_3_1643() { + final private boolean jj_3_1651() { if (jj_scan_token(PASCAL)) return true; return false; } - final private boolean jj_3_1642() { + final private boolean jj_3_1650() { if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_1641() { + final private boolean jj_3_1649() { if (jj_scan_token(PARAMETER_NAME)) return true; return false; } - final private boolean jj_3_1640() { + final private boolean jj_3_1648() { if (jj_scan_token(OVERRIDING)) return true; return false; } - final private boolean jj_3_1639() { + final private boolean jj_3_1647() { if (jj_scan_token(ORDINALITY)) return true; return false; } - final private boolean jj_3_1638() { + final private boolean jj_3_1646() { if (jj_scan_token(OPTION)) return true; return false; } - final private boolean jj_3_1637() { + final private boolean jj_3R_186() { + 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_1645() { if (jj_scan_token(NUMBER)) return true; return false; } - final private boolean jj_3_1636() { + final private boolean jj_3_1644() { if (jj_scan_token(NORMALIZED)) return true; return false; } - final private boolean jj_3_1635() { + final private boolean jj_3_1643() { if (jj_scan_token(NAMES)) return true; return false; } - final private boolean jj_3_1634() { + final private boolean jj_3_1642() { if (jj_scan_token(MORE_)) return true; return false; } - final private boolean jj_3_1633() { + final private boolean jj_3_1641() { if (jj_scan_token(MINUTES)) return true; return false; } - final private boolean jj_3_1632() { + final private boolean jj_3_1640() { if (jj_scan_token(MICROSECOND)) return true; return false; } - final private boolean jj_3_1631() { + final private boolean jj_3_1639() { if (jj_scan_token(MESSAGE_LENGTH)) return true; return false; } - final private boolean jj_3_1630() { + final private boolean jj_3_1638() { if (jj_scan_token(MAP)) return true; return false; } - final private boolean jj_3_1629() { + final private boolean jj_3_1637() { if (jj_scan_token(LIBRARY)) return true; return false; } - final private boolean jj_3_1628() { + final private boolean jj_3_1636() { if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_1627() { + final private boolean jj_3_1635() { if (jj_scan_token(KEY_MEMBER)) return true; return false; } - final private boolean jj_3_1626() { + final private boolean jj_3_1634() { if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_342() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_190()) return true; - return false; - } - - final private boolean jj_3_1625() { + final private boolean jj_3_1633() { if (jj_scan_token(ISOLATION)) return true; return false; } - final private boolean jj_3R_217() { - if (jj_scan_token(CURSOR)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1632() { + if (jj_scan_token(INSTANTIABLE)) return true; return false; } - final private boolean jj_3_1624() { - if (jj_scan_token(INSTANTIABLE)) return true; + final private boolean jj_3_1631() { + if (jj_scan_token(INITIALLY)) return true; return false; } - final private boolean jj_3_1623() { - if (jj_scan_token(INITIALLY)) return true; + final private boolean jj_3_349() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_193()) return true; return false; } - final private boolean jj_3_1622() { + final private boolean jj_3_1630() { if (jj_scan_token(INCLUDE)) return true; return false; } - final private boolean jj_3_1621() { - if (jj_scan_token(IMMEDIATE)) return true; + final private boolean jj_3R_220() { + if (jj_scan_token(CURSOR)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_343() { - if (jj_scan_token(AS)) return true; - if (jj_3R_162()) return true; + final private boolean jj_3_1629() { + if (jj_scan_token(IMMEDIATE)) return true; return false; } - final private boolean jj_3_1620() { + final private boolean jj_3_1628() { if (jj_scan_token(HOURS)) return true; return false; } - final private boolean jj_3_1619() { + final private boolean jj_3_1627() { if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_1618() { + final private boolean jj_3_1626() { if (jj_scan_token(GO)) return true; return false; } - final private boolean jj_3_1617() { + final private boolean jj_3_350() { + if (jj_scan_token(AS)) return true; + if (jj_3R_165()) return true; + return false; + } + + final private boolean jj_3_1625() { if (jj_scan_token(GENERAL)) return true; return false; } - final private boolean jj_3_1616() { + final private boolean jj_3_1624() { if (jj_scan_token(FOUND)) return true; return false; } - final private boolean jj_3R_190() { - if (jj_3R_134()) return true; + final private boolean jj_3_29() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_1615() { + final private boolean jj_3_1623() { if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_801() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1622() { + if (jj_scan_token(EXCLUDING)) return true; return false; } - final private boolean jj_3_1614() { - if (jj_scan_token(EXCLUDING)) return true; + final private boolean jj_3_1621() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_1613() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3R_193() { + if (jj_3R_136()) return true; return false; } - final private boolean jj_3_1612() { + final private boolean jj_3_1620() { if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_1611() { - if (jj_scan_token(DOY)) return true; + final private boolean jj_3_808() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3R_399() { + final private boolean jj_3_1619() { + if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_1610() { + final private boolean jj_3_1618() { if (jj_scan_token(DISPATCH)) return true; return false; } - final private boolean jj_3_1609() { + final private boolean jj_3_1617() { if (jj_scan_token(DESCRIPTION)) return true; return false; } - final private boolean jj_3_1608() { + final private boolean jj_3_1616() { if (jj_scan_token(DEPTH)) return true; return false; } - final private boolean jj_3_1607() { + final private boolean jj_3R_403() { + return false; + } + + final private boolean jj_3_1615() { if (jj_scan_token(DEFINED)) return true; return false; } - final private boolean jj_3_1606() { + final private boolean jj_3_1614() { if (jj_scan_token(DEFAULTS)) return true; return false; } - final private boolean jj_3_803() { + final private boolean jj_3_1613() { + if (jj_scan_token(DAYOFYEAR)) return true; + return false; + } + + final private boolean jj_3_1612() { + if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + return false; + } + + final private boolean jj_3_1611() { + if (jj_scan_token(DATE_TRUNC)) return true; + return false; + } + + final private boolean jj_3_810() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_801()) jj_scanpos = xsp; + if (jj_3_808()) jj_scanpos = xsp; if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_1605() { - if (jj_scan_token(DAYOFYEAR)) return true; + final private boolean jj_3_1610() { + if (jj_scan_token(DATA)) return true; return false; } - final private boolean jj_3_1604() { - if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + final private boolean jj_3_1609() { + if (jj_scan_token(CONTAINS_SUBSTR)) return true; return false; } - final private boolean jj_3R_290() { + final private boolean jj_3R_293() { Token xsp; xsp = jj_scanpos; - if (jj_3_802()) { + if (jj_3_809()) { jj_scanpos = xsp; - if (jj_3_803()) { + if (jj_3_810()) { jj_scanpos = xsp; - if (jj_3R_399()) return true; + if (jj_3R_403()) return true; } } return false; } - final private boolean jj_3_1603() { - if (jj_scan_token(DATE_TRUNC)) return true; + final private boolean jj_3_1608() { + if (jj_scan_token(CONSTRAINTS)) return true; return false; } - final private boolean jj_3_802() { + final private boolean jj_3_809() { 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_1602() { - if (jj_scan_token(DATA)) return true; + final private boolean jj_3_1607() { + if (jj_scan_token(CONNECTION_NAME)) return true; return false; } - final private boolean jj_3_1601() { - if (jj_scan_token(CONTAINS_SUBSTR)) return true; + final private boolean jj_3_1606() { + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3_1600() { - if (jj_scan_token(CONSTRAINTS)) return true; + final private boolean jj_3_1605() { + if (jj_scan_token(COMMAND_FUNCTION)) return true; return false; } - final private boolean jj_3_1599() { - if (jj_scan_token(CONNECTION_NAME)) return true; + final private boolean jj_3R_176() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_1598() { - if (jj_scan_token(CONDITIONAL)) return true; + final private boolean jj_3_1604() { + if (jj_scan_token(COLLATION_NAME)) return true; return false; } - final private boolean jj_3R_376() { + final private boolean jj_3_1603() { + if (jj_scan_token(COBOL)) return true; return false; } - final private boolean jj_3_1597() { - if (jj_scan_token(COMMAND_FUNCTION)) return true; + final private boolean jj_3R_380() { return false; } - final private boolean jj_3R_172() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_374()) return true; + final private boolean jj_3_1602() { + if (jj_scan_token(CHARACTER_SET_NAME)) return true; return false; } - final private boolean jj_3_1596() { - if (jj_scan_token(COLLATION_NAME)) return true; + final private boolean jj_3_1601() { + if (jj_scan_token(CHARACTERISTICS)) return true; return false; } - final private boolean jj_3_341() { + final private boolean jj_3_348() { if (jj_scan_token(EXCLUDE)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_1595() { - if (jj_scan_token(COBOL)) return true; + final private boolean jj_3_1600() { + if (jj_scan_token(CATALOG_NAME)) return true; return false; } - final private boolean jj_3_340() { + final private boolean jj_3_347() { if (jj_scan_token(INCLUDE)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_1594() { - if (jj_scan_token(CHARACTER_SET_NAME)) return true; + final private boolean jj_3_1599() { + if (jj_scan_token(C)) return true; return false; } - final private boolean jj_3_1593() { - if (jj_scan_token(CHARACTERISTICS)) return true; + final private boolean jj_3_1598() { + if (jj_scan_token(BEFORE)) return true; return false; } - final private boolean jj_3_1592() { - if (jj_scan_token(CATALOG_NAME)) return true; + final private boolean jj_3_1597() { + if (jj_scan_token(ASSIGNMENT)) return true; return false; } - final private boolean jj_3_1591() { - if (jj_scan_token(C)) return true; + final private boolean jj_3_1596() { + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3R_398() { + final private boolean jj_3R_402() { return false; } - final private boolean jj_3_1590() { - if (jj_scan_token(BEFORE)) return true; + final private boolean jj_3_1595() { + if (jj_scan_token(ALWAYS)) return true; return false; } - final private boolean jj_3R_177() { + final private boolean jj_3R_180() { if (jj_scan_token(UNPIVOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_340()) { + if (jj_3_347()) { jj_scanpos = xsp; - if (jj_3_341()) { + if (jj_3_348()) { jj_scanpos = xsp; - if (jj_3R_376()) return true; + if (jj_3R_380()) return true; } } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1589() { - if (jj_scan_token(ASSIGNMENT)) return true; - return false; - } - - final private boolean jj_3_1588() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; - return false; - } - - final private boolean jj_3_1587() { - if (jj_scan_token(ALWAYS)) return true; + final private boolean jj_3_1594() { + if (jj_scan_token(ADD)) return true; return false; } - final private boolean jj_3_1586() { - if (jj_scan_token(ADD)) return true; + final private boolean jj_3_1593() { + if (jj_scan_token(ABSOLUTE)) return true; return false; } - final private boolean jj_3R_259() { + final private boolean jj_3R_262() { Token xsp; xsp = jj_scanpos; - if (jj_3_800()) { + if (jj_3_807()) { jj_scanpos = xsp; - if (jj_3R_398()) return true; + if (jj_3R_402()) return true; } return false; } - final private boolean jj_3_1585() { - if (jj_scan_token(ABSOLUTE)) return true; - return false; - } - - final private boolean jj_3_800() { + final private boolean jj_3_807() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; - return false; - } - - final private boolean jj_3_28() { - if (jj_3R_77()) return true; - return false; - } - - final private boolean jj_3_27() { - if (jj_3R_76()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3R_343() { + final private boolean jj_3R_346() { Token xsp; xsp = jj_scanpos; - if (jj_3_1585()) { - jj_scanpos = xsp; - if (jj_3_1586()) { - jj_scanpos = xsp; - if (jj_3_1587()) { - jj_scanpos = xsp; - if (jj_3_1588()) { - jj_scanpos = xsp; - if (jj_3_1589()) { - jj_scanpos = xsp; - if (jj_3_1590()) { - jj_scanpos = xsp; - if (jj_3_1591()) { - jj_scanpos = xsp; - if (jj_3_1592()) { - jj_scanpos = xsp; if (jj_3_1593()) { jj_scanpos = xsp; if (jj_3_1594()) { @@ -33981,7 +33913,26 @@ final private boolean jj_3R_343() { jj_scanpos = xsp; if (jj_3_1804()) { jj_scanpos = xsp; - if (jj_3_1805()) return true; + if (jj_3_1805()) { + jj_scanpos = xsp; + if (jj_3_1806()) { + jj_scanpos = xsp; + if (jj_3_1807()) { + jj_scanpos = xsp; + if (jj_3_1808()) { + jj_scanpos = xsp; + if (jj_3_1809()) { + jj_scanpos = xsp; + if (jj_3_1810()) { + jj_scanpos = xsp; + if (jj_3_1811()) { + jj_scanpos = xsp; + if (jj_3_1812()) { + jj_scanpos = xsp; + if (jj_3_1813()) { + jj_scanpos = xsp; + if (jj_3_1814()) return true; + } } } } @@ -34205,2166 +34156,2173 @@ final private boolean jj_3R_343() { return false; } - final private boolean jj_3R_379() { + final private boolean jj_3_1592() { + if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3R_206() { - 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_3R_383() { return false; } - final private boolean jj_3_26() { - if (jj_3R_75()) return true; + final private boolean jj_3_1591() { + if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_1584() { - if (jj_scan_token(FRIDAY)) return true; + final private boolean jj_3_1590() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_1583() { - if (jj_scan_token(TUESDAY)) return true; + final private boolean jj_3_1589() { + if (jj_scan_token(WINDOW)) return true; return false; } - final private boolean jj_3_1582() { - if (jj_scan_token(WITHOUT)) return true; + final private boolean jj_3_1588() { + if (jj_scan_token(VERSIONING)) return true; return false; } - final private boolean jj_3_338() { + final private boolean jj_3_1587() { + if (jj_scan_token(VARYING)) return true; + return false; + } + + final private boolean jj_3_345() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1581() { - if (jj_scan_token(WIDTH_BUCKET)) return true; + final private boolean jj_3_1586() { + if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_1580() { - if (jj_scan_token(VAR_SAMP)) return true; + final private boolean jj_3_1585() { + if (jj_scan_token(UUID)) return true; return false; } - final private boolean jj_3_339() { + final private boolean jj_3_346() { Token xsp; xsp = jj_scanpos; - if (jj_3_338()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_345()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_799() { + final private boolean jj_3_806() { if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_259()) return true; - if (jj_3R_290()) return true; - return false; - } - - final private boolean jj_3_1579() { - if (jj_scan_token(VARCHAR)) return true; - return false; - } - - final private boolean jj_3_1578() { - if (jj_scan_token(VALUE_OF)) return true; + if (jj_3R_262()) return true; + if (jj_3R_293()) return true; return false; } - final private boolean jj_3_1577() { - if (jj_scan_token(UPSERT)) return true; + final private boolean jj_3_1584() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_25() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1583() { + if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_1576() { - if (jj_scan_token(UNIQUE)) return true; + final private boolean jj_3_1582() { + if (jj_scan_token(TRIM)) return true; return false; } - final private boolean jj_3_1575() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3_1581() { + if (jj_scan_token(TRANSLATION)) return true; return false; } - final private boolean jj_3_24() { - if (jj_3R_74()) return true; + final private boolean jj_3_1580() { + if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3R_189() { - if (jj_3R_162()) return true; + final private boolean jj_3R_192() { + if (jj_3R_165()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_339()) { + if (jj_3_346()) { jj_scanpos = xsp; - if (jj_3R_379()) return true; + if (jj_3R_383()) return true; } return false; } - final private boolean jj_3_1574() { - if (jj_scan_token(TRIGGER)) return true; - return false; - } - - final private boolean jj_3_1573() { - if (jj_scan_token(TRANSLATE_REGEX)) return true; + final private boolean jj_3_1579() { + if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_1572() { - if (jj_scan_token(TIMEZONE_MINUTE)) return true; + final private boolean jj_3_1578() { + if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3_798() { - if (jj_scan_token(TIME)) return true; - if (jj_3R_259()) return true; - if (jj_3R_290()) return true; + final private boolean jj_3_1577() { + if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_1571() { + final private boolean jj_3_805() { if (jj_scan_token(TIME)) return true; + if (jj_3R_262()) return true; + if (jj_3R_293()) return true; return false; } - final private boolean jj_3_1570() { - if (jj_scan_token(SYSTEM_TIME)) return true; + final private boolean jj_3_1576() { + if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3_1569() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_1575() { + if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3_22() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1574() { + if (jj_scan_token(STATIC)) return true; return false; } - final private boolean jj_3_1568() { - if (jj_scan_token(SUBSET)) return true; + final private boolean jj_3_1573() { + if (jj_scan_token(SQLWARNING)) return true; return false; } - final private boolean jj_3R_285() { + final private boolean jj_3R_288() { Token xsp; xsp = jj_scanpos; - if (jj_3_797()) { + if (jj_3_804()) { jj_scanpos = xsp; - if (jj_3_798()) { + if (jj_3_805()) { jj_scanpos = xsp; - if (jj_3_799()) return true; + if (jj_3_806()) return true; } } return false; } - final private boolean jj_3_1567() { - if (jj_scan_token(STDDEV_SAMP)) return true; + final private boolean jj_3_1572() { + if (jj_scan_token(SQL)) return true; return false; } - final private boolean jj_3_797() { + final private boolean jj_3_804() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1566() { - if (jj_scan_token(START)) return true; + final private boolean jj_3_1571() { + if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1565() { - if (jj_scan_token(SQLSTATE)) return true; + final private boolean jj_3_1570() { + if (jj_scan_token(SHOW)) return true; return false; } - final private boolean jj_3_21() { - if (jj_3R_74()) return true; + final private boolean jj_3_1569() { + if (jj_scan_token(SEEK)) return true; return false; } - final private boolean jj_3_1564() { - if (jj_scan_token(SPECIFICTYPE)) return true; + final private boolean jj_3_342() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_192()) return true; return false; } - final private boolean jj_3_335() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_189()) return true; + final private boolean jj_3_1568() { + if (jj_scan_token(SCROLL)) return true; + return false; + } + + final private boolean jj_3_344() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3_1567() { + if (jj_scan_token(SAFE_ORDINAL)) return true; + return false; + } + + final private boolean jj_3_1566() { + if (jj_scan_token(RUNNING)) return true; + return false; + } + + final private boolean jj_3_1565() { + if (jj_scan_token(ROLLUP)) return true; + return false; + } + + final private boolean jj_3_1564() { + if (jj_scan_token(RETURNS)) return true; return false; } final private boolean jj_3_1563() { - if (jj_scan_token(SKIP_)) return true; + if (jj_scan_token(RESET)) return true; return false; } - final private boolean jj_3_337() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1562() { + if (jj_scan_token(REGR_SXY)) return true; return false; } - final private boolean jj_3_1562() { - if (jj_scan_token(SESSION_USER)) return true; + final private boolean jj_3_799() { + if (jj_scan_token(CHAR)) return true; return false; } final private boolean jj_3_1561() { - if (jj_scan_token(SECOND)) return true; + if (jj_scan_token(REGR_R2)) return true; return false; } final private boolean jj_3_1560() { - if (jj_scan_token(SCOPE)) return true; + if (jj_scan_token(REGR_AVGY)) return true; return false; } - final private boolean jj_3_1559() { - if (jj_scan_token(SAFE_OFFSET)) return true; + final private boolean jj_3_341() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_191()) return true; return false; } - final private boolean jj_3_1558() { - if (jj_scan_token(ROW_NUMBER)) return true; + final private boolean jj_3R_175() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_378()) return true; return false; } - final private boolean jj_3_1557() { - if (jj_scan_token(ROLLBACK)) return true; + final private boolean jj_3_1559() { + if (jj_scan_token(REFERENCES)) return true; return false; } - final private boolean jj_3_23() { - if (jj_3R_74()) return true; - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3R_191() { + if (jj_3R_382()) return true; return false; } - final private boolean jj_3_18() { - if (jj_scan_token(NEXT)) return true; + final private boolean jj_3_1558() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_792() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_803() { + if (jj_scan_token(CHARACTER)) return true; + if (jj_scan_token(SET)) return true; + return false; + } + + final private boolean jj_3_1557() { + if (jj_scan_token(RANGE)) return true; return false; } final private boolean jj_3_1556() { - if (jj_scan_token(RETURN)) return true; + if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3_1555() { - if (jj_scan_token(RELEASE)) return true; + final private boolean jj_3R_292() { return false; } - final private boolean jj_3_334() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_188()) return true; + final private boolean jj_3_1555() { + if (jj_scan_token(PRECEDES)) return true; return false; } final private boolean jj_3_1554() { - if (jj_scan_token(REGR_SXX)) return true; + if (jj_scan_token(POSITION)) return true; return false; } - final private boolean jj_3R_188() { - if (jj_3R_378()) return true; + final private boolean jj_3_802() { + if (jj_scan_token(VARCHAR)) return true; return false; } final private boolean jj_3_1553() { - if (jj_scan_token(REGR_INTERCEPT)) return true; + if (jj_scan_token(PERIOD)) return true; return false; } - final private boolean jj_3_796() { - if (jj_scan_token(CHARACTER)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_800() { + if (jj_scan_token(VARYING)) return true; return false; } final private boolean jj_3_1552() { - if (jj_scan_token(REGR_AVGX)) return true; + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } final private boolean jj_3_1551() { - if (jj_scan_token(REF)) return true; - return false; - } - - final private boolean jj_3R_289() { - 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; - } - } + if (jj_scan_token(PATTERN)) return true; return false; } final private boolean jj_3_1550() { - if (jj_scan_token(READS)) return true; + if (jj_scan_token(OVERLAPS)) return true; return false; } final private boolean jj_3_1549() { - if (jj_scan_token(QUALIFY)) return true; - return false; - } - - final private boolean jj_3_795() { - if (jj_scan_token(VARCHAR)) return true; + if (jj_scan_token(ORDINAL)) return true; return false; } final private boolean jj_3_1548() { - if (jj_scan_token(PREPARE)) return true; + if (jj_scan_token(ONE)) return true; return false; } - final private boolean jj_3_20() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_798() { + if (jj_scan_token(CHARACTER)) return true; return false; } - final private boolean jj_3_793() { - if (jj_scan_token(VARYING)) return true; + final private boolean jj_3_1547() { + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1547() { - if (jj_scan_token(POWER)) return true; + final private boolean jj_3_28() { + if (jj_3R_78()) return true; return false; } - final private boolean jj_3_17() { - if (jj_scan_token(FIRST)) return true; + final private boolean jj_3_801() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_798()) { + jj_scanpos = xsp; + if (jj_3_799()) return true; + } + xsp = jj_scanpos; + if (jj_3_800()) { + jj_scanpos = xsp; + if (jj_3R_292()) return true; + } return false; } final private boolean jj_3_1546() { - if (jj_scan_token(PORTION)) return true; + if (jj_scan_token(NUMERIC)) return true; return false; } final private boolean jj_3_1545() { - if (jj_scan_token(PERCENT_RANK)) return true; - return false; - } - - final private boolean jj_3_1544() { - if (jj_scan_token(PERCENT)) return true; + if (jj_scan_token(NTH_VALUE)) return true; return false; } - final private boolean jj_3_1543() { - if (jj_scan_token(PARAMETER)) return true; + final private boolean jj_3_27() { + if (jj_3R_77()) return true; return false; } - final private boolean jj_3_791() { - if (jj_scan_token(CHARACTER)) return true; + final private boolean jj_3_1544() { + if (jj_scan_token(NO)) return true; return false; } - final private boolean jj_3_1542() { - if (jj_scan_token(OVER)) return true; + final private boolean jj_3_1543() { + if (jj_scan_token(NCLOB)) return true; return false; } - final private boolean jj_3_794() { + final private boolean jj_3R_287() { Token xsp; xsp = jj_scanpos; - if (jj_3_791()) { + if (jj_3_801()) { jj_scanpos = xsp; - if (jj_3_792()) return true; + if (jj_3_802()) return true; } + if (jj_3R_262()) return true; xsp = jj_scanpos; - if (jj_3_793()) { - jj_scanpos = xsp; - if (jj_3R_289()) return true; - } - return false; - } - - final private boolean jj_3_1541() { - if (jj_scan_token(OPEN)) return true; + if (jj_3_803()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1540() { - if (jj_scan_token(OMIT)) return true; + final private boolean jj_3_1542() { + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3_19() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_343() { + if (jj_3R_192()) return true; return false; } - final private boolean jj_3_1539() { - if (jj_scan_token(OCTET_LENGTH)) return true; + final private boolean jj_3_1541() { + if (jj_scan_token(MODIFIES)) return true; return false; } - final private boolean jj_3_1538() { - if (jj_scan_token(NULLIF)) return true; + final private boolean jj_3_1540() { + if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3R_284() { + final private boolean jj_3R_209() { Token xsp; xsp = jj_scanpos; - if (jj_3_794()) { + if (jj_3_26()) { + jj_scanpos = xsp; + if (jj_3_27()) { jj_scanpos = xsp; - if (jj_3_795()) return true; + if (jj_3_28()) return true; + } } - if (jj_3R_259()) return true; - xsp = jj_scanpos; - if (jj_3_796()) jj_scanpos = xsp; 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; - } + final private boolean jj_3_1539() { + if (jj_scan_token(MEASURES)) return true; return false; } - final private boolean jj_3_1537() { - if (jj_scan_token(NORMALIZE)) return true; + final private boolean jj_3_26() { + if (jj_3R_76()) return true; return false; } - final private boolean jj_3_336() { - if (jj_3R_189()) return true; + final private boolean jj_3_1538() { + if (jj_scan_token(MATCH_RECOGNIZE)) return true; + return false; + } + + final private boolean jj_3_1537() { + if (jj_scan_token(MATCHES)) return true; return false; } final private boolean jj_3_1536() { - if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_1535() { - if (jj_scan_token(NCHAR)) return true; + final private boolean jj_3R_179() { + if (jj_scan_token(PIVOT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_15() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_1535() { + if (jj_scan_token(LEAD)) return true; return false; } final private boolean jj_3_1534() { - if (jj_scan_token(MONTH)) return true; + if (jj_scan_token(LARGE)) return true; return false; } final private boolean jj_3_1533() { - if (jj_scan_token(MOD)) return true; + if (jj_scan_token(JSON_VALUE)) return true; return false; } final private boolean jj_3_1532() { - if (jj_scan_token(METHOD)) return true; + if (jj_scan_token(JSON_OBJECTAGG)) return true; return false; } final private boolean jj_3_1531() { - if (jj_scan_token(MEASURE)) return true; + if (jj_scan_token(JSON_ARRAYAGG)) return true; return false; } - final private boolean jj_3R_176() { - if (jj_scan_token(PIVOT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_25() { + if (jj_scan_token(ALL)) return true; return false; } final private boolean jj_3_1530() { - if (jj_scan_token(MATCH_NUMBER)) return true; + if (jj_scan_token(INTEGER)) return true; return false; } final private boolean jj_3_1529() { - if (jj_scan_token(MATCH)) return true; - return false; - } - - final private boolean jj_3_1528() { - if (jj_scan_token(LN)) return true; + if (jj_scan_token(INOUT)) return true; return false; } - final private boolean jj_3_1527() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_24() { + if (jj_3R_75()) return true; return false; } - final private boolean jj_3_14() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1528() { + if (jj_scan_token(IMPORT)) 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_1527() { + if (jj_scan_token(HOLD)) return true; return false; } final private boolean jj_3_1526() { - if (jj_scan_token(LANGUAGE)) return true; + if (jj_scan_token(GRANT)) return true; return false; } final private boolean jj_3_1525() { - if (jj_scan_token(JSON_SCOPE)) return true; + if (jj_scan_token(FUSION)) return true; return false; } final private boolean jj_3_1524() { - if (jj_scan_token(JSON_OBJECT)) return true; + if (jj_scan_token(FRAME_ROW)) return true; 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_1523() { + if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_1523() { - if (jj_scan_token(JSON_ARRAY)) return true; + final private boolean jj_3_22() { + if (jj_scan_token(ALL)) return true; return false; } final private boolean jj_3_1522() { - if (jj_scan_token(INT)) return true; + if (jj_scan_token(EXTRACT)) return true; + return false; + } + + final private boolean jj_3R_283() { + if (jj_scan_token(MAP)) return true; + if (jj_scan_token(LT)) return true; + if (jj_3R_122()) return true; return false; } final private boolean jj_3_1521() { - if (jj_scan_token(INITIAL)) return true; + if (jj_scan_token(EXP)) return true; return false; } final private boolean jj_3_1520() { - if (jj_scan_token(IDENTITY)) return true; + if (jj_scan_token(EVERY)) return true; return false; } final private boolean jj_3_1519() { - if (jj_scan_token(GROUPS)) return true; + if (jj_scan_token(END_PARTITION)) return true; return false; } - final private boolean jj_3_1518() { - if (jj_scan_token(GLOBAL)) return true; + final private boolean jj_3_21() { + if (jj_3R_75()) return true; return false; } - final private boolean jj_3_1517() { - if (jj_scan_token(FUNCTION)) return true; + final private boolean jj_3_1518() { + if (jj_scan_token(END)) return true; return false; } - final private boolean jj_3R_280() { - if (jj_scan_token(MAP)) return true; - if (jj_scan_token(LT)) return true; - if (jj_3R_120()) return true; + final private boolean jj_3_1517() { + if (jj_scan_token(EACH)) return true; return false; } final private boolean jj_3_1516() { - if (jj_scan_token(FOREIGN)) return true; + if (jj_scan_token(DISCONNECT)) return true; return false; } final private boolean jj_3_1515() { - if (jj_scan_token(FIRST_VALUE)) return true; + if (jj_scan_token(DESCRIBE)) return true; return false; } final private boolean jj_3_1514() { - if (jj_scan_token(EXTERNAL)) return true; + if (jj_scan_token(DEFINE)) return true; return false; } final private boolean jj_3_1513() { - if (jj_scan_token(EXECUTE)) return true; + if (jj_scan_token(DEC)) return true; return false; } final private boolean jj_3_1512() { - if (jj_scan_token(ESCAPE)) return true; + if (jj_scan_token(DATETIME)) return true; return false; } final private boolean jj_3_1511() { - if (jj_scan_token(END_FRAME)) return true; + if (jj_scan_token(CURSOR)) return true; return false; } - final private boolean jj_3_1510() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_23() { + if (jj_3R_75()) return true; + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1509() { - if (jj_scan_token(DYNAMIC)) return true; + final private boolean jj_3_18() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_1508() { - if (jj_scan_token(DISALLOW)) return true; + final private boolean jj_3_1510() { + if (jj_scan_token(CURRENT_ROLE)) return true; return false; } - final private boolean jj_3_1507() { - if (jj_scan_token(DEREF)) return true; + final private boolean jj_3R_170() { + if (jj_scan_token(FOR)) return true; + if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_8() { - if (jj_3R_73()) return true; + final private boolean jj_3_1509() { + if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } - final private boolean jj_3_1506() { - if (jj_scan_token(DECLARE)) return true; + final private boolean jj_3R_282() { + if (jj_scan_token(ROW)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_421()) return true; return false; } - final private boolean jj_3_12() { - if (jj_3R_73()) return true; + final private boolean jj_3_1508() { + if (jj_scan_token(CUBE)) return true; return false; } - final private boolean jj_3_1505() { - if (jj_scan_token(DEALLOCATE)) return true; + final private boolean jj_3_1507() { + if (jj_scan_token(COUNT)) return true; return false; } - final private boolean jj_3R_167() { - if (jj_scan_token(FOR)) return true; - if (jj_scan_token(SYSTEM_TIME)) return true; + final private boolean jj_3_1506() { + if (jj_scan_token(CONVERT)) return true; return false; } - final private boolean jj_3_1504() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_1505() { + if (jj_scan_token(CONDITION)) return true; return false; } - final private boolean jj_3R_279() { - if (jj_scan_token(ROW)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_417()) return true; + final private boolean jj_3R_73() { + 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_1504() { + if (jj_scan_token(COLLATE)) return true; return false; } final private boolean jj_3_1503() { - if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; + if (jj_scan_token(CLOB)) return true; return false; } final private boolean jj_3_1502() { - if (jj_scan_token(CURRENT_PATH)) return true; + if (jj_scan_token(CHAR_LENGTH)) return true; return false; } - final private boolean jj_3_1501() { - if (jj_scan_token(CURRENT)) return true; + final private boolean jj_3_20() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1500() { - if (jj_scan_token(COVAR_SAMP)) return true; + final private boolean jj_3_1501() { + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_7() { - if (jj_3R_72()) return true; + final private boolean jj_3_17() { + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_9() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_7()) { - jj_scanpos = xsp; - if (jj_3_8()) return true; - } + final private boolean jj_3_1500() { + if (jj_scan_token(CASCADED)) return true; return false; } final private boolean jj_3_1499() { - if (jj_scan_token(CORRESPONDING)) return true; + if (jj_scan_token(CALL)) return true; return false; } final private boolean jj_3_1498() { - if (jj_scan_token(CONTAINS)) return true; + if (jj_scan_token(BIT)) return true; return false; } final private boolean jj_3_1497() { - if (jj_scan_token(COMMIT)) return true; + if (jj_scan_token(BEGIN_PARTITION)) return true; return false; } final private boolean jj_3_1496() { - if (jj_scan_token(COALESCE)) return true; + if (jj_scan_token(AVG)) return true; return false; } final private boolean jj_3_1495() { - if (jj_scan_token(CLASSIFIER)) return true; + if (jj_scan_token(AT)) return true; return false; } final private boolean jj_3_1494() { - if (jj_scan_token(CHARACTER_LENGTH)) return true; - return false; - } - - final private boolean jj_3_6() { - if (jj_3R_71()) return true; + if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; return false; } - final private boolean jj_3_11() { - if (jj_3R_71()) return true; + final private boolean jj_3_19() { + if (jj_scan_token(ROW)) return true; return false; } final private boolean jj_3_1493() { - if (jj_scan_token(CEILING)) return true; + if (jj_scan_token(ALLOCATE)) return true; return false; } final private boolean jj_3_1492() { - if (jj_scan_token(CARDINALITY)) return true; - return false; - } - - final private boolean jj_3_1491() { - if (jj_scan_token(BOOLEAN)) return true; - return false; - } - - final private boolean jj_3_10() { - if (jj_3R_72()) return true; + if (jj_scan_token(WAIT)) return true; return false; } - final private boolean jj_3_13() { + final private boolean jj_3R_74() { + if (jj_scan_token(FETCH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_10()) { - jj_scanpos = xsp; - if (jj_3_11()) { + if (jj_3_17()) { jj_scanpos = xsp; - if (jj_3_12()) return true; - } + if (jj_3_18()) return true; } return false; } - final private boolean jj_3_1490() { - if (jj_scan_token(BINARY)) return true; - return false; - } - - final private boolean jj_3_1489() { - if (jj_scan_token(BEGIN_FRAME)) return true; - return false; - } - - final private boolean jj_3R_406() { - return false; - } - - final private boolean jj_3_1488() { - if (jj_scan_token(AUTHORIZATION)) return true; - return false; - } - - final private boolean jj_3_1487() { - if (jj_scan_token(ASOF)) return true; - return false; - } - - final private boolean jj_3_5() { - if (jj_3R_70()) return true; - return false; - } - - final private boolean jj_3_1486() { - if (jj_scan_token(ARE)) return true; - return false; - } - - final private boolean jj_3_1485() { - if (jj_scan_token(ABS)) return true; - return false; - } - - final private boolean jj_3_1484() { + final private boolean jj_3_1491() { if (jj_scan_token(ANALYZE)) return true; return false; } - final private boolean jj_3R_288() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_1483() { + final private boolean jj_3_1490() { if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3_1482() { + final private boolean jj_3_1489() { if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3_1481() { - if (jj_scan_token(KILL)) return true; + final private boolean jj_3_15() { + if (jj_scan_token(ROWS)) return true; return false; - } - - final private boolean jj_3R_348() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_5()) { - jj_scanpos = xsp; - if (jj_3R_406()) return true; - } - xsp = jj_scanpos; - if (jj_3_13()) jj_scanpos = xsp; + } + + final private boolean jj_3R_291() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1480() { + final private boolean jj_3_1488() { + if (jj_scan_token(KILL)) return true; + return false; + } + + final private boolean jj_3_1487() { if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3_1479() { + final private boolean jj_3_1486() { if (jj_scan_token(ENCRYPTED)) return true; return false; } - final private boolean jj_3_1478() { + final private boolean jj_3_1485() { if (jj_scan_token(VALUE_TYPE)) return true; return false; } - final private boolean jj_3R_373() { - if (jj_3R_411()) return true; + final private boolean jj_3_1484() { + if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_1477() { - if (jj_scan_token(CACHE_GROUP)) return true; + final private boolean jj_3_1483() { + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_1476() { - if (jj_scan_token(AFFINITY_KEY)) return true; + final private boolean jj_3R_377() { + if (jj_3R_415()) return true; return false; } - final private boolean jj_3_1475() { + final private boolean jj_3_1482() { if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1474() { + final private boolean jj_3_1481() { if (jj_scan_token(WRITE)) return true; return false; } - final private boolean jj_3_790() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_288()) return true; + final private boolean jj_3_14() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1473() { + 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_1480() { if (jj_scan_token(WEEKS)) return true; return false; } - final private boolean jj_3_1472() { + final private boolean jj_3_1479() { if (jj_scan_token(VERSION)) return true; return false; } - final private boolean jj_3R_417() { - if (jj_3R_288()) return true; + final private boolean jj_3_797() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_291()) return true; return false; } - final private boolean jj_3_1471() { + final private boolean jj_3_1478() { if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3_1470() { + final private boolean jj_3R_72() { + if (jj_scan_token(OFFSET)) return true; + if (jj_3R_75()) return true; + return false; + } + + final private boolean jj_3_1477() { if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; return false; } - final private boolean jj_3_1469() { + final private boolean jj_3R_421() { + if (jj_3R_291()) return true; + return false; + } + + final private boolean jj_3_1476() { if (jj_scan_token(UNNAMED)) return true; return false; } - final private boolean jj_3_1468() { + final private boolean jj_3_1475() { if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_1467() { + final private boolean jj_3_1474() { if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_1466() { + final private boolean jj_3_1473() { if (jj_scan_token(TRIGGER_NAME)) return true; return false; } - final private boolean jj_3_1465() { + final private boolean jj_3_1472() { if (jj_scan_token(TRANSFORM)) return true; return false; } - final private boolean jj_3_332() { - if (jj_scan_token(NULLS)) return true; - if (jj_scan_token(LAST)) return true; - return false; - } - - final private boolean jj_3R_79() { - if (jj_3R_347()) return true; - if (jj_3R_348()) return true; + final private boolean jj_3_1471() { + if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; return false; } - final private boolean jj_3_1464() { - if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; + final private boolean jj_3_1470() { + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; return false; } - final private boolean jj_3_1463() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + final private boolean jj_3_339() { + if (jj_scan_token(NULLS)) return true; + if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_1462() { + final private boolean jj_3_1469() { if (jj_scan_token(TIMESTAMPADD)) return true; return false; } - final private boolean jj_3_1461() { + final private boolean jj_3_1468() { if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3_1460() { + final private boolean jj_3_1467() { if (jj_scan_token(SUBSTITUTE)) return true; return false; } - final private boolean jj_3_333() { + final private boolean jj_3_1466() { + if (jj_scan_token(STRUCTURE)) return true; + return false; + } + + final private boolean jj_3_1465() { + if (jj_scan_token(STATE)) return true; + return false; + } + + final private boolean jj_3_340() { Token xsp; xsp = jj_scanpos; - if (jj_3_331()) { + if (jj_3_338()) { jj_scanpos = xsp; - if (jj_3_332()) return true; + if (jj_3_339()) return true; } return false; } - final private boolean jj_3_331() { + final private boolean jj_3_338() { if (jj_scan_token(NULLS)) return true; if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3R_377() { + final private boolean jj_3R_381() { return false; } - final private boolean jj_3_1459() { - if (jj_scan_token(STRUCTURE)) return true; + final private boolean jj_3_1464() { + if (jj_scan_token(SQL_TSI_YEAR)) return true; return false; } - final private boolean jj_3_1458() { - if (jj_scan_token(STATE)) return true; + final private boolean jj_3_1463() { + if (jj_scan_token(SQL_TSI_QUARTER)) return true; return false; } - final private boolean jj_3R_181() { + final private boolean jj_3R_184() { Token xsp; xsp = jj_scanpos; - if (jj_3_789()) { + if (jj_3_796()) { jj_scanpos = xsp; - if (jj_3R_377()) return true; + if (jj_3R_381()) return true; } return false; } - final private boolean jj_3_1457() { - if (jj_scan_token(SQL_TSI_YEAR)) return true; + final private boolean jj_3_1462() { + if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; return false; } - final private boolean jj_3_789() { + final private boolean jj_3_796() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1456() { - if (jj_scan_token(SQL_TSI_QUARTER)) return true; + final private boolean jj_3_1461() { + if (jj_scan_token(SQL_TSI_DAY)) return true; return false; } - final private boolean jj_3_1455() { - if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; + final private boolean jj_3_8() { + if (jj_3R_74()) return true; return false; } - final private boolean jj_3_329() { + final private boolean jj_3_1460() { + if (jj_scan_token(SQL_TIME)) return true; + return false; + } + + final private boolean jj_3_12() { + if (jj_3R_74()) return true; + return false; + } + + final private boolean jj_3_336() { if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_1454() { - if (jj_scan_token(SQL_TSI_DAY)) return true; + final private boolean jj_3_1459() { + if (jj_scan_token(SQL_NVARCHAR)) return true; return false; } - final private boolean jj_3_330() { + final private boolean jj_3_337() { Token xsp; xsp = jj_scanpos; - if (jj_3_328()) { + if (jj_3_335()) { jj_scanpos = xsp; - if (jj_3_329()) return true; + if (jj_3_336()) return true; } return false; } - final private boolean jj_3_328() { + final private boolean jj_3_335() { if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1453() { - if (jj_scan_token(SQL_TIME)) return true; + final private boolean jj_3_1458() { + if (jj_scan_token(SQL_NCHAR)) return true; return false; } - final private boolean jj_3_1452() { - if (jj_scan_token(SQL_NVARCHAR)) return true; + final private boolean jj_3_1457() { + if (jj_scan_token(SQL_LONGVARBINARY)) return true; return false; } - final private boolean jj_3_1451() { - if (jj_scan_token(SQL_NCHAR)) return true; + final private boolean jj_3_1456() { + if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3_1450() { - if (jj_scan_token(SQL_LONGVARBINARY)) return true; + final private boolean jj_3_1455() { + if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_1449() { - if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; + final private boolean jj_3_1454() { + if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3R_156() { - if (jj_3R_81()) return true; + final private boolean jj_3_7() { + if (jj_3R_73()) return true; + return false; + } + + final private boolean jj_3_9() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_7()) { + jj_scanpos = xsp; + if (jj_3_8()) return true; + } + return false; + } + + final private boolean jj_3R_159() { + if (jj_3R_82()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_330()) jj_scanpos = xsp; + if (jj_3_337()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_333()) jj_scanpos = xsp; + if (jj_3_340()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1448() { - if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; + final private boolean jj_3_1453() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1447() { - if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; + final private boolean jj_3_1452() { + if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_788() { + final private boolean jj_3_795() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1446() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; + final private boolean jj_3_1451() { + if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_1445() { - if (jj_scan_token(SQL_FLOAT)) return true; + final private boolean jj_3_1450() { + if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_787() { + final private boolean jj_3_794() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1444() { - if (jj_scan_token(SQL_DATE)) return true; + final private boolean jj_3_1449() { + if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_1443() { - if (jj_scan_token(SQL_BOOLEAN)) return true; + final private boolean jj_3_1448() { + if (jj_scan_token(SPACE)) return true; return false; } - final private boolean jj_3_1442() { - if (jj_scan_token(SQL_BINARY)) return true; + final private boolean jj_3_6() { + if (jj_3R_72()) return true; return false; } - final private boolean jj_3_1441() { - if (jj_scan_token(SPACE)) return true; + final private boolean jj_3_11() { + if (jj_3R_72()) return true; return false; } - final private boolean jj_3_1440() { + final private boolean jj_3_1447() { if (jj_scan_token(SIMPLE)) return true; return false; } - final private boolean jj_3_1439() { + final private boolean jj_3_1446() { if (jj_scan_token(SERVER_NAME)) return true; return false; } - final private boolean jj_3_1438() { + final private boolean jj_3_1445() { if (jj_scan_token(SEQUENCE)) return true; return false; } - final private boolean jj_3_1437() { - if (jj_scan_token(SECURITY)) return true; + final private boolean jj_3_10() { + if (jj_3R_73()) return true; return false; } - final private boolean jj_3_327() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_156()) return true; + final private boolean jj_3_13() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_10()) { + jj_scanpos = xsp; + if (jj_3_11()) { + jj_scanpos = xsp; + if (jj_3_12()) return true; + } + } return false; } - final private boolean jj_3_1436() { + final private boolean jj_3_1444() { + if (jj_scan_token(SECURITY)) return true; + return false; + } + + final private boolean jj_3_1443() { if (jj_scan_token(SCOPE_SCHEMA)) return true; return false; } - final private boolean jj_3_1435() { + final private boolean jj_3R_410() { + return false; + } + + final private boolean jj_3_1442() { if (jj_scan_token(SCHEMA_NAME)) return true; return false; } - final private boolean jj_3_1434() { + final private boolean jj_3_334() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_159()) return true; + return false; + } + + final private boolean jj_3_1441() { if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1433() { - if (jj_scan_token(ROUTINE_NAME)) return true; + final private boolean jj_3_5() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_786() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1440() { + if (jj_scan_token(ROUTINE_NAME)) return true; return false; } - final private boolean jj_3_1432() { + final private boolean jj_3_1439() { if (jj_scan_token(ROLE)) return true; return false; } - final private boolean jj_3_1431() { + final private boolean jj_3_1438() { if (jj_scan_token(RETURNED_SQLSTATE)) return true; return false; } - final private boolean jj_3_785() { + final private boolean jj_3_793() { + if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1430() { + final private boolean jj_3_1437() { if (jj_scan_token(RETURNED_CARDINALITY)) return true; return false; } - final private boolean jj_3_1429() { + final private boolean jj_3_1436() { if (jj_scan_token(RESPECT)) return true; return false; } - final private boolean jj_3_2() { - if (jj_3R_67()) return true; + final private boolean jj_3_792() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1428() { + final private boolean jj_3_1435() { if (jj_scan_token(RELATIVE)) return true; return false; } - final private boolean jj_3_1427() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3R_351() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_5()) { + jj_scanpos = xsp; + if (jj_3R_410()) return true; + } + xsp = jj_scanpos; + if (jj_3_13()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1() { - if (jj_3R_66()) return true; + final private boolean jj_3_1434() { + if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_1426() { + final private boolean jj_3_1433() { if (jj_scan_token(PRIOR)) return true; return false; } - final private boolean jj_3_1425() { + final private boolean jj_3_1432() { if (jj_scan_token(PLI)) return true; return false; } - final private boolean jj_3_1424() { + final private boolean jj_3_1431() { if (jj_scan_token(PIVOT)) 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; } - } - return false; - } - - final private boolean jj_3_1423() { + final private boolean jj_3_1430() { if (jj_scan_token(PASSTHROUGH)) return true; return false; } - final private boolean jj_3_1422() { + final private boolean jj_3_1429() { if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3_1421() { + final private boolean jj_3_1428() { if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; return false; } - final private boolean jj_3R_70() { - if (jj_scan_token(ORDER)) return true; - if (jj_scan_token(BY)) return true; - return false; - } - - final private boolean jj_3_1420() { + final private boolean jj_3_1427() { if (jj_scan_token(PARAMETER_MODE)) return true; return false; } - final private boolean jj_3_784() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_1419() { + final private boolean jj_3_1426() { if (jj_scan_token(OUTPUT)) return true; return false; } - final private boolean jj_3_3() { - if (jj_3R_68()) return true; + final private boolean jj_3R_71() { + if (jj_scan_token(ORDER)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1418() { + final private boolean jj_3_1425() { if (jj_scan_token(ORDERING)) return true; return false; } - final private boolean jj_3_783() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3_791() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_1417() { + final private boolean jj_3_1424() { if (jj_scan_token(OCTETS)) return true; return false; } - final private boolean jj_3_1416() { + final private boolean jj_3_1423() { if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_1415() { - if (jj_scan_token(NESTING)) return true; + final private boolean jj_3_790() { + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3R_374() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_3()) { - jj_scanpos = xsp; - if (jj_3_4()) return true; - } + final private boolean jj_3_1422() { + if (jj_scan_token(NESTING)) return true; return false; } - final private boolean jj_3_1414() { + final private boolean jj_3_1421() { if (jj_scan_token(NAME)) return true; return false; } - final private boolean jj_3R_277() { + final private boolean jj_3_1420() { + if (jj_scan_token(MONTHS)) return true; + return false; + } + + final private boolean jj_3_1419() { + if (jj_scan_token(MILLISECOND)) return true; + return false; + } + + final private boolean jj_3R_280() { Token xsp; xsp = jj_scanpos; - if (jj_3_783()) { + if (jj_3_790()) { jj_scanpos = xsp; - if (jj_3_784()) return true; + if (jj_3_791()) return true; } return false; } - final private boolean jj_3_1413() { - if (jj_scan_token(MONTHS)) return true; - return false; - } - - final private boolean jj_3_1412() { - if (jj_scan_token(MILLISECOND)) return true; + final private boolean jj_3R_80() { + if (jj_3R_350()) return true; + if (jj_3R_351()) return true; return false; } - final private boolean jj_3_1411() { + final private boolean jj_3_1418() { if (jj_scan_token(MESSAGE_TEXT)) return true; return false; } - final private boolean jj_3_1410() { + final private boolean jj_3_1417() { if (jj_scan_token(MAXVALUE)) return true; return false; } - final private boolean jj_3_1409() { + final private boolean jj_3_1416() { if (jj_scan_token(M)) return true; return false; } - final private boolean jj_3R_149() { - if (jj_scan_token(QUALIFY)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1415() { + if (jj_scan_token(LEVEL)) return true; return false; } - final private boolean jj_3_1408() { - if (jj_scan_token(LEVEL)) return true; + final private boolean jj_3_1414() { + if (jj_scan_token(LABEL)) return true; return false; } - final private boolean jj_3_1407() { - if (jj_scan_token(LABEL)) return true; + final private boolean jj_3R_153() { + if (jj_scan_token(QUALIFY)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1406() { + final private boolean jj_3_1413() { if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_1405() { + final private boolean jj_3_1412() { if (jj_scan_token(JAVA)) return true; return false; } - final private boolean jj_3_1404() { + final private boolean jj_3_1411() { if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_1403() { + final private boolean jj_3_1410() { if (jj_scan_token(INSTANCE)) return true; return false; } - final private boolean jj_3_325() { - if (jj_scan_token(TIES)) return true; - return false; - } - - final private boolean jj_3_1402() { + final private boolean jj_3_1409() { if (jj_scan_token(INCREMENT)) return true; return false; } - final private boolean jj_3_1401() { + final private boolean jj_3_1408() { if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_324() { - if (jj_scan_token(GROUP)) return true; + final private boolean jj_3_332() { + if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3_1400() { + final private boolean jj_3_1407() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_1399() { + final private boolean jj_3_1406() { if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_323() { - if (jj_scan_token(NO)) return true; - if (jj_scan_token(OTHERS)) return true; + final private boolean jj_3_331() { + if (jj_scan_token(GROUP)) return true; return false; } - final private boolean jj_3_1398() { + final private boolean jj_3_1405() { if (jj_scan_token(GRANTED)) return true; return false; } - final private boolean jj_3_1397() { + final private boolean jj_3_1404() { if (jj_scan_token(GEOMETRY)) return true; return false; } - final private boolean jj_3_322() { - if (jj_scan_token(CURRENT)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_330() { + if (jj_scan_token(NO)) return true; + if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_1396() { + final private boolean jj_3_1403() { if (jj_scan_token(G)) return true; return false; } - final private boolean jj_3_1395() { + final private boolean jj_3_1402() { if (jj_scan_token(FORTRAN)) return true; return false; } - final private boolean jj_3_1394() { + final private boolean jj_3_329() { + if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(ROW)) return true; + return false; + } + + final private boolean jj_3_1401() { if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_1393() { + final private boolean jj_3_1400() { if (jj_scan_token(EXCLUDE)) return true; return false; } - final private boolean jj_3_750() { + final private boolean jj_3_1399() { + if (jj_scan_token(EPOCH)) return true; + return false; + } + + final private boolean jj_3_1398() { + if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + return false; + } + + final private boolean jj_3_757() { if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_752() { + final private boolean jj_3_759() { if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_1392() { - if (jj_scan_token(EPOCH)) return true; + final private boolean jj_3_1397() { + if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_744() { + final private boolean jj_3_751() { if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1391() { - if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + final private boolean jj_3_1396() { + if (jj_scan_token(DIAGNOSTICS)) return true; return false; } - final private boolean jj_3_326() { + final private boolean jj_3_333() { if (jj_scan_token(EXCLUDE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_322()) { + if (jj_3_329()) { jj_scanpos = xsp; - if (jj_3_323()) { + if (jj_3_330()) { jj_scanpos = xsp; - if (jj_3_324()) { + if (jj_3_331()) { jj_scanpos = xsp; - if (jj_3_325()) return true; + if (jj_3_332()) return true; } } } return false; } - final private boolean jj_3_740() { + final private boolean jj_3_747() { if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_746() { + final private boolean jj_3_753() { if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_782() { + final private boolean jj_3_789() { if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3_1390() { - if (jj_scan_token(DOW)) return true; + final private boolean jj_3_1395() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_742() { + final private boolean jj_3_749() { if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_781() { + final private boolean jj_3_788() { if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } - final private boolean jj_3_1389() { - if (jj_scan_token(DIAGNOSTICS)) return true; + final private boolean jj_3_1394() { + if (jj_scan_token(DEGREE)) return true; return false; } - final private boolean jj_3_748() { + final private boolean jj_3_755() { if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_780() { + final private boolean jj_3_787() { if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_1388() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_1393() { + if (jj_scan_token(DEFERRED)) return true; return false; } - final private boolean jj_3_779() { + final private boolean jj_3_786() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_1387() { - if (jj_scan_token(DEGREE)) return true; + final private boolean jj_3_1392() { + if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_736() { + final private boolean jj_3_743() { if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_738() { + final private boolean jj_3_745() { if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_778() { + final private boolean jj_3_785() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } - final private boolean jj_3_1386() { - if (jj_scan_token(DEFERRED)) return true; + final private boolean jj_3_1391() { + if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_734() { + final private boolean jj_3_741() { if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_777() { + final private boolean jj_3_784() { if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3_1385() { - if (jj_scan_token(DECADE)) return true; + final private boolean jj_3_1390() { + if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; return false; } - final private boolean jj_3_728() { + final private boolean jj_3_735() { if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_732() { + final private boolean jj_3_739() { if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_776() { + final private boolean jj_3_783() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } - final private boolean jj_3_1384() { - if (jj_scan_token(DAYOFWEEK)) return true; + final private boolean jj_3_1389() { + if (jj_scan_token(DATE_DIFF)) return true; return false; } - final private boolean jj_3_730() { + final private boolean jj_3_737() { if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_775() { + final private boolean jj_3_782() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } - final private boolean jj_3_1383() { - if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; + final private boolean jj_3_1388() { + if (jj_scan_token(CURSOR_NAME)) return true; return false; } - final private boolean jj_3_774() { + final private boolean jj_3_781() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1382() { - if (jj_scan_token(DATE_DIFF)) return true; + final private boolean jj_3_1387() { + if (jj_scan_token(CONSTRUCTOR)) return true; return false; } - final private boolean jj_3_773() { + final private boolean jj_3_780() { if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } - final private boolean jj_3_1381() { - if (jj_scan_token(CURSOR_NAME)) return true; + final private boolean jj_3_1386() { + if (jj_scan_token(CONSTRAINT_NAME)) return true; return false; } - final private boolean jj_3_772() { + final private boolean jj_3_779() { if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3_1380() { - if (jj_scan_token(CONSTRUCTOR)) return true; + final private boolean jj_3_1385() { + if (jj_scan_token(CONNECTION)) return true; return false; } - final private boolean jj_3_722() { + final private boolean jj_3_729() { if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_771() { + final private boolean jj_3_778() { if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } - final private boolean jj_3_1379() { - if (jj_scan_token(CONSTRAINT_NAME)) return true; + final private boolean jj_3_1384() { + if (jj_scan_token(COMMITTED)) return true; return false; } - final private boolean jj_3_318() { + final private boolean jj_3_325() { if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_726() { + final private boolean jj_3_733() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_751() { + final private boolean jj_3_758() { if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_770() { + final private boolean jj_3_777() { if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } - final private boolean jj_3_1378() { - if (jj_scan_token(CONNECTION)) return true; + final private boolean jj_3_1383() { + if (jj_scan_token(COLUMN_NAME)) return true; return false; } - final private boolean jj_3_724() { + final private boolean jj_3_2() { + if (jj_3R_68()) return true; + return false; + } + + final private boolean jj_3_731() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_749() { + final private boolean jj_3_756() { if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_769() { + final private boolean jj_3_776() { Token xsp; xsp = jj_scanpos; - if (jj_3_751()) { + if (jj_3_758()) { jj_scanpos = xsp; - if (jj_3_752()) return true; + if (jj_3_759()) return true; } return false; } - final private boolean jj_3_1377() { - if (jj_scan_token(COMMITTED)) return true; + final private boolean jj_3_1382() { + if (jj_scan_token(COLLATION_CATALOG)) return true; return false; } - final private boolean jj_3_747() { + final private boolean jj_3_754() { if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_768() { + final private boolean jj_3_775() { Token xsp; xsp = jj_scanpos; - if (jj_3_749()) { + if (jj_3_756()) { jj_scanpos = xsp; - if (jj_3_750()) return true; + if (jj_3_757()) return true; } return false; } - final private boolean jj_3_1376() { - if (jj_scan_token(COLUMN_NAME)) return true; + final private boolean jj_3_1381() { + if (jj_scan_token(CLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_720() { + final private boolean jj_3_1() { + if (jj_3R_67()) return true; + return false; + } + + final private boolean jj_3_727() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_745() { + final private boolean jj_3_752() { if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_767() { + final private boolean jj_3_774() { Token xsp; xsp = jj_scanpos; - if (jj_3_747()) { + if (jj_3_754()) { jj_scanpos = xsp; - if (jj_3_748()) return true; + if (jj_3_755()) return true; } return false; } - final private boolean jj_3_1375() { - if (jj_scan_token(COLLATION_CATALOG)) return true; + final private boolean jj_3_1380() { + if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; return false; } - final private boolean jj_3_317() { + final private boolean jj_3_324() { if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_743() { + final private boolean jj_3_750() { if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_766() { + final private boolean jj_3_773() { Token xsp; xsp = jj_scanpos; - if (jj_3_745()) { + if (jj_3_752()) { jj_scanpos = xsp; - if (jj_3_746()) return true; + if (jj_3_753()) return true; } return false; } - final private boolean jj_3_1374() { - if (jj_scan_token(CLASS_ORIGIN)) return true; + final private boolean jj_3_1379() { + if (jj_scan_token(CHAIN)) return true; return false; } - final private boolean jj_3_741() { + final private boolean jj_3_748() { if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_765() { + final private boolean jj_3_772() { Token xsp; xsp = jj_scanpos; - if (jj_3_743()) { + if (jj_3_750()) { jj_scanpos = xsp; - if (jj_3_744()) return true; + if (jj_3_751()) return true; } return false; } - final private boolean jj_3_1373() { - if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; + final private boolean jj_3_1378() { + if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3_739() { + final private boolean jj_3_4() { + if (jj_3R_70()) 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_746() { if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_764() { + final private boolean jj_3_771() { Token xsp; xsp = jj_scanpos; - if (jj_3_741()) { + if (jj_3_748()) { jj_scanpos = xsp; - if (jj_3_742()) return true; + if (jj_3_749()) return true; } return false; } - final private boolean jj_3_1372() { - if (jj_scan_token(CHAIN)) return true; + final private boolean jj_3_1377() { + if (jj_scan_token(BREADTH)) return true; return false; } - final private boolean jj_3_737() { + final private boolean jj_3_744() { if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_763() { + final private boolean jj_3_770() { Token xsp; xsp = jj_scanpos; - if (jj_3_739()) { + if (jj_3_746()) { jj_scanpos = xsp; - if (jj_3_740()) return true; + if (jj_3_747()) return true; } return false; } - final private boolean jj_3_1371() { - if (jj_scan_token(CATALOG)) return true; + final private boolean jj_3_1376() { + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_735() { + final private boolean jj_3_742() { if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_762() { + final private boolean jj_3_769() { Token xsp; xsp = jj_scanpos; - if (jj_3_737()) { + if (jj_3_744()) { jj_scanpos = xsp; - if (jj_3_738()) return true; + if (jj_3_745()) return true; } return false; } - final private boolean jj_3_1370() { - if (jj_scan_token(BREADTH)) return true; + final private boolean jj_3_1375() { + if (jj_scan_token(ASSERTION)) return true; return false; } - final private boolean jj_3_733() { + final private boolean jj_3_740() { if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_761() { + final private boolean jj_3_768() { Token xsp; xsp = jj_scanpos; - if (jj_3_735()) { + if (jj_3_742()) { jj_scanpos = xsp; - if (jj_3_736()) return true; + if (jj_3_743()) return true; } return false; } - final private boolean jj_3_1369() { - if (jj_scan_token(ATTRIBUTES)) return true; + final private boolean jj_3_1374() { + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3_321() { - if (jj_3R_81()) return true; + final private boolean jj_3_328() { + if (jj_3R_82()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_317()) { + if (jj_3_324()) { jj_scanpos = xsp; - if (jj_3_318()) return true; + if (jj_3_325()) return true; } return false; } - final private boolean jj_3_731() { + final private boolean jj_3_738() { if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_760() { + final private boolean jj_3_767() { Token xsp; xsp = jj_scanpos; - if (jj_3_733()) { + if (jj_3_740()) { jj_scanpos = xsp; - if (jj_3_734()) return true; + if (jj_3_741()) return true; } return false; } - final private boolean jj_3_1368() { - if (jj_scan_token(ASSERTION)) return true; + final private boolean jj_3_1373() { + if (jj_scan_token(AFTER)) return true; return false; } - final private boolean jj_3_316() { + final private boolean jj_3_3() { + if (jj_3R_69()) return true; + return false; + } + + final private boolean jj_3_323() { if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_729() { + final private boolean jj_3_736() { if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_759() { + final private boolean jj_3_766() { Token xsp; xsp = jj_scanpos; - if (jj_3_731()) { + if (jj_3_738()) { jj_scanpos = xsp; - if (jj_3_732()) return true; + if (jj_3_739()) return true; } return false; } - final private boolean jj_3_1367() { - if (jj_scan_token(ARRAY_AGG)) return true; + final private boolean jj_3_1372() { + if (jj_scan_token(ADA)) return true; return false; } - final private boolean jj_3_727() { + final private boolean jj_3_734() { if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } - final private boolean jj_3_758() { + final private boolean jj_3_765() { Token xsp; xsp = jj_scanpos; - if (jj_3_729()) { + if (jj_3_736()) { jj_scanpos = xsp; - if (jj_3_730()) return true; + if (jj_3_737()) return true; } return false; } - final private boolean jj_3_1366() { - if (jj_scan_token(AFTER)) return true; + final private boolean jj_3_1371() { + if (jj_scan_token(ABSENT)) return true; return false; } - final private boolean jj_3_725() { + final private boolean jj_3_732() { if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_757() { + final private boolean jj_3_764() { Token xsp; xsp = jj_scanpos; - if (jj_3_727()) { + if (jj_3_734()) { jj_scanpos = xsp; - if (jj_3_728()) return true; + if (jj_3_735()) return true; } return false; } - final private boolean jj_3_1365() { - if (jj_scan_token(ADA)) return true; - return false; - } - - final private boolean jj_3_723() { + final private boolean jj_3_730() { if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_756() { + final private boolean jj_3_763() { Token xsp; xsp = jj_scanpos; - if (jj_3_725()) { + if (jj_3_732()) { jj_scanpos = xsp; - if (jj_3_726()) return true; + if (jj_3_733()) return true; } return false; } - final private boolean jj_3_1364() { - if (jj_scan_token(ABSENT)) return true; - return false; - } - - final private boolean jj_3_315() { + final private boolean jj_3_322() { if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_714() { + final private boolean jj_3_721() { if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_721() { + final private boolean jj_3_728() { if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_755() { + final private boolean jj_3_762() { Token xsp; xsp = jj_scanpos; - if (jj_3_723()) { + if (jj_3_730()) { jj_scanpos = xsp; - if (jj_3_724()) return true; + if (jj_3_731()) return true; } return false; } - final private boolean jj_3_719() { + final private boolean jj_3R_378() { + 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_726() { if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3_754() { + final private boolean jj_3_761() { Token xsp; xsp = jj_scanpos; - if (jj_3_721()) { + if (jj_3_728()) { jj_scanpos = xsp; - if (jj_3_722()) return true; + if (jj_3_729()) return true; } return false; } - final private boolean jj_3_753() { + final private boolean jj_3_760() { Token xsp; xsp = jj_scanpos; - if (jj_3_719()) { + if (jj_3_726()) { jj_scanpos = xsp; - if (jj_3_720()) return true; + if (jj_3_727()) return true; } return false; } - final private boolean jj_3R_342() { + final private boolean jj_3R_345() { Token xsp; xsp = jj_scanpos; - if (jj_3_1364()) { - jj_scanpos = xsp; - if (jj_3_1365()) { - jj_scanpos = xsp; - if (jj_3_1366()) { - jj_scanpos = xsp; - if (jj_3_1367()) { - jj_scanpos = xsp; - if (jj_3_1368()) { - jj_scanpos = xsp; - if (jj_3_1369()) { - jj_scanpos = xsp; - if (jj_3_1370()) { - jj_scanpos = xsp; if (jj_3_1371()) { jj_scanpos = xsp; if (jj_3_1372()) { @@ -36791,7 +36749,24 @@ final private boolean jj_3R_342() { jj_scanpos = xsp; if (jj_3_1583()) { jj_scanpos = xsp; - if (jj_3_1584()) return true; + if (jj_3_1584()) { + jj_scanpos = xsp; + if (jj_3_1585()) { + jj_scanpos = xsp; + if (jj_3_1586()) { + jj_scanpos = xsp; + if (jj_3_1587()) { + jj_scanpos = xsp; + if (jj_3_1588()) { + jj_scanpos = xsp; + if (jj_3_1589()) { + jj_scanpos = xsp; + if (jj_3_1590()) { + jj_scanpos = xsp; + if (jj_3_1591()) { + jj_scanpos = xsp; + if (jj_3_1592()) return true; + } } } } @@ -37015,715 +36990,725 @@ final private boolean jj_3R_342() { return false; } - final private boolean jj_3_320() { + final private boolean jj_3_327() { if (jj_scan_token(UNBOUNDED)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_315()) { + if (jj_3_322()) { jj_scanpos = xsp; - if (jj_3_316()) return true; + if (jj_3_323()) return true; } return false; } - final private boolean jj_3_713() { + final private boolean jj_3_1370() { + if (jj_scan_token(FRIDAY)) return true; + return false; + } + + final private boolean jj_3_720() { if (jj_scan_token(DEC)) return true; return false; } - final private boolean jj_3_717() { + final private boolean jj_3_1369() { + if (jj_scan_token(TUESDAY)) return true; + return false; + } + + final private boolean jj_3_724() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_287()) return true; + if (jj_3R_290()) return true; return false; } - final private boolean jj_3_1363() { - if (jj_scan_token(SUNDAY)) return true; + final private boolean jj_3_1368() { + if (jj_scan_token(WITHOUT)) return true; return false; } - final private boolean jj_3_1362() { - if (jj_scan_token(THURSDAY)) return true; + final private boolean jj_3_1367() { + if (jj_scan_token(WIDTH_BUCKET)) return true; return false; } - final private boolean jj_3R_187() { + final private boolean jj_3R_190() { Token xsp; xsp = jj_scanpos; - if (jj_3_319()) { + if (jj_3_326()) { jj_scanpos = xsp; - if (jj_3_320()) { + if (jj_3_327()) { jj_scanpos = xsp; - if (jj_3_321()) return true; + if (jj_3_328()) return true; } } return false; } - final private boolean jj_3_1361() { - if (jj_scan_token(MONDAY)) return true; + final private boolean jj_3_1366() { + if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_319() { + final private boolean jj_3_326() { if (jj_scan_token(CURRENT)) return true; if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1360() { - if (jj_scan_token(WITHIN)) return true; + final private boolean jj_3_1365() { + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_1359() { - if (jj_scan_token(WHENEVER)) return true; + final private boolean jj_3_1364() { + if (jj_scan_token(VALUE_OF)) return true; return false; } - final private boolean jj_3_1358() { - if (jj_scan_token(VAR_POP)) return true; + final private boolean jj_3_1363() { + if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_1357() { - if (jj_scan_token(VARIANT)) return true; + final private boolean jj_3_1362() { + if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_718() { + final private boolean jj_3_725() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_260()) return true; + if (jj_3R_263()) return true; return false; } - final private boolean jj_3_1356() { - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1361() { + if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3_1355() { - if (jj_scan_token(UPPER)) return true; + final private boolean jj_3_1360() { + if (jj_scan_token(TRIGGER)) return true; return false; } - final private boolean jj_3_1354() { - if (jj_scan_token(UESCAPE)) return true; + final private boolean jj_3_1359() { + if (jj_scan_token(TRANSLATE_REGEX)) return true; return false; } - final private boolean jj_3_716() { + final private boolean jj_3_723() { if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_1353() { - if (jj_scan_token(TRIM_ARRAY)) return true; + final private boolean jj_3_1358() { + if (jj_scan_token(TIMEZONE_MINUTE)) return true; return false; } - final private boolean jj_3_712() { + final private boolean jj_3_719() { if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_1352() { - if (jj_scan_token(TREAT)) return true; + final private boolean jj_3_1357() { + if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_715() { + final private boolean jj_3_722() { Token xsp; xsp = jj_scanpos; - if (jj_3_712()) { + if (jj_3_719()) { jj_scanpos = xsp; - if (jj_3_713()) { + if (jj_3_720()) { jj_scanpos = xsp; - if (jj_3_714()) return true; + if (jj_3_721()) return true; } } return false; } - final private boolean jj_3_1351() { - if (jj_scan_token(TRANSLATE)) return true; + final private boolean jj_3_1356() { + if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_1350() { - if (jj_scan_token(TIMEZONE_HOUR)) return true; + final private boolean jj_3_1355() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_1349() { - if (jj_scan_token(TABLESAMPLE)) return true; + final private boolean jj_3_1354() { + if (jj_scan_token(SUBSET)) return true; return false; } - final private boolean jj_3_1348() { - if (jj_scan_token(SYSTEM)) return true; + final private boolean jj_3_1353() { + if (jj_scan_token(STDDEV_SAMP)) return true; return false; } - final private boolean jj_3R_283() { + final private boolean jj_3R_286() { Token xsp; xsp = jj_scanpos; - if (jj_3_715()) { + if (jj_3_722()) { jj_scanpos = xsp; - if (jj_3_716()) return true; + if (jj_3_723()) return true; } xsp = jj_scanpos; - if (jj_3_718()) jj_scanpos = xsp; + if (jj_3_725()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1347() { - if (jj_scan_token(SUBSTRING_REGEX)) return true; + final private boolean jj_3_1352() { + if (jj_scan_token(START)) return true; return false; } - final private boolean jj_3_314() { + final private boolean jj_3_321() { if (jj_scan_token(DISALLOW)) return true; if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3_1346() { - if (jj_scan_token(SUBMULTISET)) return true; + final private boolean jj_3_1351() { + if (jj_scan_token(SQLSTATE)) return true; return false; } - final private boolean jj_3_1345() { - if (jj_scan_token(STDDEV_POP)) return true; + final private boolean jj_3_1350() { + if (jj_scan_token(SPECIFICTYPE)) return true; return false; } - final private boolean jj_3_1344() { - if (jj_scan_token(SQRT)) return true; + final private boolean jj_3_1349() { + if (jj_scan_token(SKIP_)) return true; return false; } - final private boolean jj_3_1343() { - if (jj_scan_token(SQLEXCEPTION)) return true; + final private boolean jj_3_1348() { + if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_313() { + final private boolean jj_3_320() { if (jj_scan_token(ALLOW)) return true; if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3_1342() { - if (jj_scan_token(SPECIFIC)) return true; + final private boolean jj_3_1347() { + if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_1341() { - if (jj_scan_token(SIMILAR)) return true; + final private boolean jj_3_1346() { + if (jj_scan_token(SCOPE)) return true; return false; } - final private boolean jj_3_1340() { - if (jj_scan_token(SENSITIVE)) return true; + final private boolean jj_3_1345() { + if (jj_scan_token(SAFE_OFFSET)) return true; return false; } - final private boolean jj_3_1339() { - if (jj_scan_token(SEARCH)) return true; + final private boolean jj_3_1344() { + if (jj_scan_token(ROW_NUMBER)) return true; return false; } - final private boolean jj_3_1338() { - if (jj_scan_token(SAVEPOINT)) return true; + final private boolean jj_3_1343() { + if (jj_scan_token(ROLLBACK)) return true; return false; } - final private boolean jj_3_1337() { - if (jj_scan_token(SAFE_CAST)) return true; + final private boolean jj_3_1342() { + if (jj_scan_token(RETURN)) return true; return false; } - final private boolean jj_3R_286() { + final private boolean jj_3R_289() { return false; } - final private boolean jj_3_1336() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_1341() { + if (jj_scan_token(RELEASE)) return true; return false; } - final private boolean jj_3_1335() { - if (jj_scan_token(REVOKE)) return true; + final private boolean jj_3_1340() { + if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3_311() { - if (jj_3R_187()) return true; + final private boolean jj_3_318() { + if (jj_3R_190()) return true; return false; } - final private boolean jj_3_711() { + final private boolean jj_3_718() { if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_1334() { - if (jj_scan_token(RESULT)) return true; + final private boolean jj_3_1339() { + if (jj_scan_token(REGR_INTERCEPT)) return true; return false; } - final private boolean jj_3_709() { + final private boolean jj_3_716() { if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_1333() { - if (jj_scan_token(REGR_SYY)) return true; + final private boolean jj_3_1338() { + if (jj_scan_token(REGR_AVGX)) return true; return false; } - final private boolean jj_3_1332() { - if (jj_scan_token(REGR_SLOPE)) return true; + final private boolean jj_3_1337() { + if (jj_scan_token(REF)) return true; return false; } - final private boolean jj_3_310() { + final private boolean jj_3_317() { if (jj_scan_token(BETWEEN)) return true; - if (jj_3R_187()) return true; + if (jj_3R_190()) return true; return false; } - final private boolean jj_3_1331() { - if (jj_scan_token(REGR_COUNT)) return true; + final private boolean jj_3_1336() { + if (jj_scan_token(READS)) return true; return false; } - final private boolean jj_3_1330() { - if (jj_scan_token(REFERENCING)) return true; + final private boolean jj_3_1335() { + if (jj_scan_token(QUALIFY)) return true; return false; } - final private boolean jj_3_1329() { - if (jj_scan_token(RECURSIVE)) return true; + final private boolean jj_3_1334() { + if (jj_scan_token(PREPARE)) return true; return false; } - final private boolean jj_3_309() { + final private boolean jj_3_316() { if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3_1328() { - if (jj_scan_token(RANK)) return true; + final private boolean jj_3_1333() { + if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_710() { + final private boolean jj_3_717() { if (jj_scan_token(BINARY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_709()) { + if (jj_3_716()) { jj_scanpos = xsp; - if (jj_3R_286()) return true; + if (jj_3R_289()) return true; } return false; } - final private boolean jj_3_1327() { - if (jj_scan_token(PROCEDURE)) return true; + final private boolean jj_3_1332() { + if (jj_scan_token(PORTION)) return true; return false; } - final private boolean jj_3_308() { + final private boolean jj_3_315() { if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1326() { - if (jj_scan_token(PRECISION)) return true; + final private boolean jj_3_1331() { + if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3_1325() { - if (jj_scan_token(POSITION_REGEX)) return true; + final private boolean jj_3_1330() { + if (jj_scan_token(PERCENT)) return true; return false; } - final private boolean jj_3_1324() { - if (jj_scan_token(PERMUTE)) return true; + final private boolean jj_3_1329() { + if (jj_scan_token(PARAMETER)) return true; return false; } - final private boolean jj_3R_282() { + final private boolean jj_3R_285() { Token xsp; xsp = jj_scanpos; - if (jj_3_710()) { + if (jj_3_717()) { jj_scanpos = xsp; - if (jj_3_711()) return true; + if (jj_3_718()) return true; } - if (jj_3R_259()) return true; + if (jj_3R_262()) return true; return false; } - final private boolean jj_3_1323() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + final private boolean jj_3_1328() { + if (jj_scan_token(OVER)) return true; return false; } - final private boolean jj_3_1322() { - if (jj_scan_token(PER)) return true; + final private boolean jj_3_1327() { + if (jj_scan_token(OPEN)) return true; return false; } - final private boolean jj_3_312() { + final private boolean jj_3_319() { Token xsp; xsp = jj_scanpos; - if (jj_3_308()) { + if (jj_3_315()) { jj_scanpos = xsp; - if (jj_3_309()) return true; + if (jj_3_316()) return true; } xsp = jj_scanpos; - if (jj_3_310()) { + if (jj_3_317()) { jj_scanpos = xsp; - if (jj_3_311()) return true; + if (jj_3_318()) return true; } return false; } - final private boolean jj_3_1321() { - if (jj_scan_token(OVERLAY)) return true; + final private boolean jj_3_1326() { + if (jj_scan_token(OMIT)) return true; return false; } - final private boolean jj_3_1320() { - if (jj_scan_token(OUT)) return true; + final private boolean jj_3_1325() { + if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1319() { - if (jj_scan_token(ONLY)) return true; + final private boolean jj_3_1324() { + if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3_1318() { - if (jj_scan_token(OLD)) return true; + final private boolean jj_3_1323() { + if (jj_scan_token(NORMALIZE)) return true; return false; } - final private boolean jj_3_307() { - if (jj_3R_70()) return true; + final private boolean jj_3_314() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_1317() { - if (jj_scan_token(OCCURRENCES_REGEX)) return true; + final private boolean jj_3_1322() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_1316() { - if (jj_scan_token(NTILE)) return true; + final private boolean jj_3_1321() { + if (jj_scan_token(NCHAR)) return true; return false; } - final private boolean jj_3_1315() { - if (jj_scan_token(NONE)) return true; + final private boolean jj_3_1320() { + if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_1314() { - if (jj_scan_token(NEW)) return true; + final private boolean jj_3_1319() { + if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3_1313() { - if (jj_scan_token(NATIONAL)) return true; + final private boolean jj_3_1318() { + if (jj_scan_token(METHOD)) return true; return false; } - final private boolean jj_3_708() { + final private boolean jj_3_715() { if (jj_scan_token(UUID)) return true; return false; } - final private boolean jj_3_1312() { - if (jj_scan_token(MODULE)) return true; + final private boolean jj_3_1317() { + if (jj_scan_token(MEASURE)) return true; return false; } - final private boolean jj_3_306() { + final private boolean jj_3_313() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1311() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_1316() { + if (jj_scan_token(MATCH_NUMBER)) return true; return false; } - final private boolean jj_3_707() { + final private boolean jj_3_714() { if (jj_scan_token(VARIANT)) return true; return false; } - final private boolean jj_3_1310() { - if (jj_scan_token(MEMBER)) return true; + final private boolean jj_3_1315() { + if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_696() { + final private boolean jj_3_703() { if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3R_405() { + final private boolean jj_3R_409() { return false; } - final private boolean jj_3_1309() { - if (jj_scan_token(MAX)) return true; + final private boolean jj_3_1314() { + if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_697() { + final private boolean jj_3_704() { if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_706() { + final private boolean jj_3_713() { if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_1308() { - if (jj_scan_token(MATCH_CONDITION)) return true; + final private boolean jj_3_1313() { + if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_305() { - if (jj_3R_84()) return true; + final private boolean jj_3_312() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1307() { - if (jj_scan_token(LOWER)) return true; + final private boolean jj_3_1312() { + if (jj_scan_token(LANGUAGE)) return true; return false; } - final private boolean jj_3_1306() { - if (jj_scan_token(LIKE_REGEX)) return true; + final private boolean jj_3_1311() { + if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3_705() { + final private boolean jj_3_712() { if (jj_scan_token(DOUBLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_697()) jj_scanpos = xsp; + if (jj_3_704()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1305() { - if (jj_scan_token(LAST_VALUE)) return true; + final private boolean jj_3_1310() { + if (jj_scan_token(JSON_OBJECT)) return true; return false; } - final private boolean jj_3_1304() { - if (jj_scan_token(LAG)) return true; + final private boolean jj_3_1309() { + if (jj_scan_token(JSON_ARRAY)) return true; return false; } - final private boolean jj_3_704() { + final private boolean jj_3_711() { if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_1303() { - if (jj_scan_token(JSON_QUERY)) return true; + final private boolean jj_3_1308() { + if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3R_331() { + final private boolean jj_3R_334() { if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_305()) { + if (jj_3_312()) { jj_scanpos = xsp; - if (jj_3R_405()) return true; + if (jj_3R_409()) return true; } return false; } - final private boolean jj_3_1302() { - if (jj_scan_token(JSON_EXISTS)) return true; + final private boolean jj_3_1307() { + if (jj_scan_token(INITIAL)) return true; return false; } - final private boolean jj_3_703() { + final private boolean jj_3_710() { if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_1301() { - if (jj_scan_token(INTERSECTION)) return true; + final private boolean jj_3_1306() { + if (jj_scan_token(IDENTITY)) return true; return false; } - final private boolean jj_3_1300() { - if (jj_scan_token(INSENSITIVE)) return true; + final private boolean jj_3_1305() { + if (jj_scan_token(GROUPS)) return true; return false; } - final private boolean jj_3_702() { + final private boolean jj_3_709() { if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1299() { - if (jj_scan_token(INDICATOR)) return true; + final private boolean jj_3_1304() { + if (jj_scan_token(GLOBAL)) return true; return false; } - final private boolean jj_3_1298() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3_1303() { + if (jj_scan_token(FUNCTION)) return true; return false; } - final private boolean jj_3_695() { + final private boolean jj_3_702() { if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_701() { + final private boolean jj_3_708() { if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_1297() { - if (jj_scan_token(GROUPING)) return true; + final private boolean jj_3_1302() { + if (jj_scan_token(FOREIGN)) return true; return false; } - final private boolean jj_3_1296() { - if (jj_scan_token(GET)) return true; + final private boolean jj_3_1301() { + if (jj_scan_token(FIRST_VALUE)) return true; return false; } - final private boolean jj_3_700() { + final private boolean jj_3_707() { Token xsp; xsp = jj_scanpos; - if (jj_3_695()) { + if (jj_3_702()) { jj_scanpos = xsp; - if (jj_3_696()) return true; + if (jj_3_703()) return true; } return false; } - final private boolean jj_3_1295() { - if (jj_scan_token(FREE)) return true; + final private boolean jj_3_1300() { + if (jj_scan_token(EXTERNAL)) return true; return false; } - final private boolean jj_3_1294() { - if (jj_scan_token(FLOOR)) return true; + final private boolean jj_3_1299() { + if (jj_scan_token(EXECUTE)) return true; return false; } - final private boolean jj_3_699() { + final private boolean jj_3_706() { if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_1293() { - if (jj_scan_token(FILTER)) return true; + final private boolean jj_3_1298() { + if (jj_scan_token(ESCAPE)) return true; return false; } - final private boolean jj_3_1292() { - if (jj_scan_token(EXTEND)) return true; + final private boolean jj_3_1297() { + if (jj_scan_token(END_FRAME)) return true; return false; } - final private boolean jj_3_1291() { - if (jj_scan_token(EXEC)) return true; + final private boolean jj_3_1296() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1290() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3_1295() { + if (jj_scan_token(DYNAMIC)) return true; return false; } - final private boolean jj_3_1289() { - if (jj_scan_token(END_EXEC)) return true; + final private boolean jj_3_1294() { + if (jj_scan_token(DISALLOW)) return true; return false; } - final private boolean jj_3_1288() { - if (jj_scan_token(ELEMENT)) return true; + final private boolean jj_3_1293() { + if (jj_scan_token(DEREF)) return true; return false; } - final private boolean jj_3_1287() { - if (jj_scan_token(DOUBLE)) return true; + final private boolean jj_3_1292() { + if (jj_scan_token(DECLARE)) return true; return false; } - final private boolean jj_3_1286() { - if (jj_scan_token(DETERMINISTIC)) return true; + final private boolean jj_3_1291() { + if (jj_scan_token(DEALLOCATE)) return true; return false; } - final private boolean jj_3_698() { + final private boolean jj_3_705() { if (jj_scan_token(GEOMETRY)) return true; return false; } - final private boolean jj_3_1285() { - if (jj_scan_token(DENSE_RANK)) return true; + final private boolean jj_3_1290() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1284() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3_1289() { + if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; return false; } - final private boolean jj_3_1283() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_1288() { + if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_1282() { - if (jj_scan_token(CYCLE)) return true; + final private boolean jj_3_1287() { + if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3R_281() { + final private boolean jj_3R_284() { Token xsp; xsp = jj_scanpos; - if (jj_3_698()) { + if (jj_3_705()) { jj_scanpos = xsp; - if (jj_3_699()) { + if (jj_3_706()) { jj_scanpos = xsp; - if (jj_3_700()) { + if (jj_3_707()) { jj_scanpos = xsp; - if (jj_3_701()) { + if (jj_3_708()) { jj_scanpos = xsp; - if (jj_3_702()) { + if (jj_3_709()) { jj_scanpos = xsp; - if (jj_3_703()) { + if (jj_3_710()) { jj_scanpos = xsp; - if (jj_3_704()) { + if (jj_3_711()) { jj_scanpos = xsp; - if (jj_3_705()) { + if (jj_3_712()) { jj_scanpos = xsp; - if (jj_3_706()) { + if (jj_3_713()) { jj_scanpos = xsp; - if (jj_3_707()) { + if (jj_3_714()) { jj_scanpos = xsp; - if (jj_3_708()) return true; + if (jj_3_715()) return true; } } } @@ -37737,175 +37722,175 @@ final private boolean jj_3R_281() { return false; } - final private boolean jj_3R_186() { - if (jj_3R_84()) return true; + final private boolean jj_3R_189() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1281() { - if (jj_scan_token(CURRENT_ROW)) return true; + final private boolean jj_3_1286() { + if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_1280() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + final private boolean jj_3_1285() { + if (jj_scan_token(CORRESPONDING)) return true; return false; } - final private boolean jj_3_1279() { - if (jj_scan_token(CUME_DIST)) return true; + final private boolean jj_3_1284() { + if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_1278() { - if (jj_scan_token(COVAR_POP)) return true; + final private boolean jj_3_1283() { + if (jj_scan_token(COMMIT)) return true; return false; } - final private boolean jj_3_1277() { - if (jj_scan_token(CORR)) return true; + final private boolean jj_3_1282() { + if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_1276() { - if (jj_scan_token(CONNECT)) return true; + final private boolean jj_3_1281() { + if (jj_scan_token(CLASSIFIER)) return true; return false; } - final private boolean jj_3_1275() { - if (jj_scan_token(COLLECT)) return true; + final private boolean jj_3_1280() { + if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_1274() { - if (jj_scan_token(CLOSE)) return true; + final private boolean jj_3_1279() { + if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_1273() { - if (jj_scan_token(CHECK)) return true; + final private boolean jj_3_1278() { + if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_1272() { - if (jj_scan_token(CHARACTER)) return true; + final private boolean jj_3_1277() { + if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_1271() { - if (jj_scan_token(CEIL)) return true; + final private boolean jj_3_1276() { + if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_304() { + final private boolean jj_3_311() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_186()) return true; + if (jj_3R_189()) return true; return false; } - final private boolean jj_3_694() { - if (jj_3R_285()) return true; + final private boolean jj_3_701() { + if (jj_3R_288()) return true; return false; } - final private boolean jj_3_1270() { - if (jj_scan_token(CALLED)) return true; + final private boolean jj_3_1275() { + if (jj_scan_token(BEGIN_FRAME)) return true; return false; } - final private boolean jj_3_1269() { - if (jj_scan_token(BLOB)) return true; + final private boolean jj_3_1274() { + if (jj_scan_token(AUTHORIZATION)) return true; return false; } - final private boolean jj_3_693() { - if (jj_3R_284()) return true; + final private boolean jj_3_700() { + if (jj_3R_287()) return true; return false; } - final private boolean jj_3_1268() { - if (jj_scan_token(BIGINT)) return true; + final private boolean jj_3_1273() { + if (jj_scan_token(ASOF)) return true; return false; } - final private boolean jj_3_1267() { - if (jj_scan_token(BEGIN)) return true; + final private boolean jj_3_1272() { + if (jj_scan_token(ARE)) return true; return false; } - final private boolean jj_3_692() { - if (jj_3R_283()) return true; + final private boolean jj_3_699() { + if (jj_3R_286()) return true; return false; } - final private boolean jj_3_1266() { - if (jj_scan_token(ATOMIC)) return true; + final private boolean jj_3_1271() { + if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_1265() { - if (jj_scan_token(ASENSITIVE)) return true; + final private boolean jj_3_1270() { + if (jj_scan_token(TOTAL)) return true; return false; } - final private boolean jj_3_691() { - if (jj_3R_282()) return true; + final private boolean jj_3_698() { + if (jj_3R_285()) return true; return false; } - final private boolean jj_3R_148() { + final private boolean jj_3R_152() { if (jj_scan_token(WINDOW)) return true; - if (jj_3R_186()) return true; + if (jj_3R_189()) return true; return false; } - final private boolean jj_3_1264() { - if (jj_scan_token(ALLOW)) return true; + final private boolean jj_3_1269() { + if (jj_scan_token(REFRESH)) return true; return false; } - final private boolean jj_3_1263() { - if (jj_scan_token(TOTAL)) return true; + final private boolean jj_3_1268() { + if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3_690() { - if (jj_3R_281()) return true; + final private boolean jj_3_697() { + if (jj_3R_284()) return true; return false; } - final private boolean jj_3_1262() { - if (jj_scan_token(REFRESH)) return true; + final private boolean jj_3_1267() { + if (jj_scan_token(CONTINUOUS)) return true; return false; } - final private boolean jj_3_1261() { - if (jj_scan_token(ASYNC)) return true; + final private boolean jj_3_1266() { + if (jj_scan_token(PASSWORD)) return true; return false; } - final private boolean jj_3_1260() { - if (jj_scan_token(CONTINUOUS)) return true; + final private boolean jj_3_1265() { + if (jj_scan_token(INLINE_SIZE)) return true; return false; } - final private boolean jj_3_1259() { - if (jj_scan_token(PASSWORD)) return true; + final private boolean jj_3_1264() { + if (jj_scan_token(WRAP_VALUE)) return true; return false; } - final private boolean jj_3R_278() { + final private boolean jj_3R_281() { Token xsp; xsp = jj_scanpos; - if (jj_3_690()) { + if (jj_3_697()) { jj_scanpos = xsp; - if (jj_3_691()) { + if (jj_3_698()) { jj_scanpos = xsp; - if (jj_3_692()) { + if (jj_3_699()) { jj_scanpos = xsp; - if (jj_3_693()) { + if (jj_3_700()) { jj_scanpos = xsp; - if (jj_3_694()) return true; + if (jj_3_701()) return true; } } } @@ -37913,460 +37898,460 @@ final private boolean jj_3R_278() { return false; } - final private boolean jj_3_1258() { - if (jj_scan_token(INLINE_SIZE)) return true; - return false; - } - - final private boolean jj_3_1257() { - if (jj_scan_token(WRAP_VALUE)) return true; - return false; - } - - final private boolean jj_3_1256() { + final private boolean jj_3_1263() { if (jj_scan_token(DATA_REGION)) return true; return false; } - final private boolean jj_3_1255() { + final private boolean jj_3_1262() { if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3R_147() { - if (jj_scan_token(HAVING)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1261() { + if (jj_scan_token(BACKUPS)) return true; return false; } - final private boolean jj_3_1254() { - if (jj_scan_token(BACKUPS)) return true; + final private boolean jj_3_1260() { + if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_1253() { - if (jj_scan_token(YEARS)) return true; + final private boolean jj_3R_151() { + if (jj_scan_token(HAVING)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1252() { + final private boolean jj_3_1259() { if (jj_scan_token(WRAPPER)) return true; return false; } - final private boolean jj_3_1251() { + final private boolean jj_3_1258() { if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3_1250() { + final private boolean jj_3_1257() { if (jj_scan_token(UTF8)) return true; return false; } - final private boolean jj_3_1249() { + final private boolean jj_3_1256() { if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; return false; } - final private boolean jj_3_1248() { + final private boolean jj_3_1255() { if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; return false; } - final private boolean jj_3_1247() { + final private boolean jj_3_1254() { if (jj_scan_token(UNPIVOT)) return true; return false; } - final private boolean jj_3_303() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1253() { + if (jj_scan_token(UNCOMMITTED)) return true; return false; } - final private boolean jj_3_689() { - if (jj_3R_152()) return true; + final private boolean jj_3_1252() { + if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3_1246() { - if (jj_scan_token(UNCOMMITTED)) return true; + final private boolean jj_3_310() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_1245() { - if (jj_scan_token(TUMBLE)) return true; + final private boolean jj_3_696() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_1244() { + final private boolean jj_3_1251() { if (jj_scan_token(TRIGGER_CATALOG)) return true; return false; } - final private boolean jj_3_688() { - if (jj_3R_280()) return true; - return false; - } - - final private boolean jj_3_1243() { + final private boolean jj_3_1250() { if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; return false; } - final private boolean jj_3_1242() { + final private boolean jj_3_1249() { if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_687() { - if (jj_3R_279()) return true; + final private boolean jj_3_695() { + if (jj_3R_283()) return true; return false; } - final private boolean jj_3_1241() { + final private boolean jj_3_1248() { if (jj_scan_token(TIMESTAMP_DIFF)) return true; return false; } - final private boolean jj_3_1240() { + final private boolean jj_3_1247() { if (jj_scan_token(TIME_TRUNC)) return true; return false; } - final private boolean jj_3R_396() { - if (jj_3R_78()) return true; + final private boolean jj_3_694() { + if (jj_3R_282()) return true; + return false; + } + + final private boolean jj_3_1246() { + if (jj_scan_token(TEMPORARY)) return true; + return false; + } + + final private boolean jj_3_1245() { + if (jj_scan_token(SUBCLASS_ORIGIN)) return true; + return false; + } + + final private boolean jj_3R_400() { + if (jj_3R_79()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_303()) { jj_scanpos = xsp; break; } + if (jj_3_310()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_1239() { - if (jj_scan_token(TEMPORARY)) return true; + final private boolean jj_3_1244() { + if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3_686() { - if (jj_3R_278()) return true; + final private boolean jj_3_693() { + if (jj_3R_281()) return true; return false; } - final private boolean jj_3_1238() { - if (jj_scan_token(SUBCLASS_ORIGIN)) return true; + final private boolean jj_3_1243() { + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_1237() { - if (jj_scan_token(STRING_AGG)) return true; + final private boolean jj_3_1242() { + if (jj_scan_token(SQL_TSI_WEEK)) return true; return false; } - final private boolean jj_3_1236() { - if (jj_scan_token(SQL_VARCHAR)) return true; + final private boolean jj_3_1241() { + if (jj_scan_token(SQL_TSI_MONTH)) return true; return false; } - final private boolean jj_3_1235() { - if (jj_scan_token(SQL_TSI_WEEK)) return true; + final private boolean jj_3_1240() { + if (jj_scan_token(SQL_TSI_HOUR)) return true; return false; } - final private boolean jj_3R_360() { + final private boolean jj_3R_364() { Token xsp; xsp = jj_scanpos; - if (jj_3_686()) { + if (jj_3_693()) { jj_scanpos = xsp; - if (jj_3_687()) { + if (jj_3_694()) { jj_scanpos = xsp; - if (jj_3_688()) { + if (jj_3_695()) { jj_scanpos = xsp; - if (jj_3_689()) return true; + if (jj_3_696()) return true; } } } return false; } - final private boolean jj_3_1234() { - if (jj_scan_token(SQL_TSI_MONTH)) return true; - return false; - } - - final private boolean jj_3_1233() { - if (jj_scan_token(SQL_TSI_HOUR)) return true; - return false; - } - - final private boolean jj_3_1232() { + final private boolean jj_3_1239() { if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_1231() { + final private boolean jj_3_1238() { if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_1230() { + final private boolean jj_3_1237() { if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_1229() { + final private boolean jj_3_1236() { if (jj_scan_token(SQL_LONGVARNCHAR)) return true; return false; } - final private boolean jj_3_1228() { + final private boolean jj_3_1235() { if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } - final private boolean jj_3_1227() { + final private boolean jj_3_1234() { if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3R_234() { - if (jj_3R_396()) return true; + final private boolean jj_3_1233() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_1226() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; + final private boolean jj_3_1232() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } - final private boolean jj_3_1225() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + final private boolean jj_3R_237() { + if (jj_3R_400()) return true; return false; } - final private boolean jj_3_1224() { + final private boolean jj_3_1231() { if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } - final private boolean jj_3_1223() { + final private boolean jj_3_1230() { if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_1222() { + final private boolean jj_3_1229() { if (jj_scan_token(SQL_CLOB)) return true; return false; } - final private boolean jj_3_685() { - if (jj_3R_277()) return true; + final private boolean jj_3_1228() { + if (jj_scan_token(SQL_BLOB)) return true; return false; } - final private boolean jj_3_1221() { - if (jj_scan_token(SQL_BLOB)) return true; + final private boolean jj_3_1227() { + if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_1220() { - if (jj_scan_token(SQL_BIGINT)) return true; + final private boolean jj_3_692() { + if (jj_3R_280()) return true; return false; } - final private boolean jj_3_1219() { + final private boolean jj_3_1226() { if (jj_scan_token(SOURCE)) return true; return false; } - final private boolean jj_3_1218() { + final private boolean jj_3_1225() { if (jj_scan_token(SETS)) return true; return false; } - final private boolean jj_3_1217() { + final private boolean jj_3_1224() { if (jj_scan_token(SERVER)) return true; return false; } - final private boolean jj_3_1216() { + final private boolean jj_3_1223() { if (jj_scan_token(SEPARATOR)) return true; return false; } - final private boolean jj_3_1215() { + final private boolean jj_3_1222() { if (jj_scan_token(SECTION)) return true; return false; } - final private boolean jj_3R_120() { - if (jj_3R_360()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_685()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3_1214() { + final private boolean jj_3_1221() { if (jj_scan_token(SCOPE_NAME)) return true; return false; } - final private boolean jj_3_1213() { + final private boolean jj_3_1220() { if (jj_scan_token(SCHEMA)) return true; return false; } - final private boolean jj_3_302() { - if (jj_3R_78()) return true; + final private boolean jj_3R_122() { + if (jj_3R_364()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_692()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1212() { + final private boolean jj_3_1219() { if (jj_scan_token(ROW_COUNT)) return true; return false; } - final private boolean jj_3_1211() { + final private boolean jj_3_1218() { if (jj_scan_token(ROUTINE_CATALOG)) return true; return false; } - final private boolean jj_3_1210() { - if (jj_scan_token(RLIKE)) return true; + final private boolean jj_3_309() { + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_1209() { - if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; + final private boolean jj_3_1217() { + if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3_301() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1216() { + if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1208() { + final private boolean jj_3_1215() { if (jj_scan_token(RESTRICT)) return true; return false; } - final private boolean jj_3_1207() { + final private boolean jj_3_1214() { if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_1206() { + final private boolean jj_3_308() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; + return false; + } + + final private boolean jj_3_1213() { if (jj_scan_token(READ)) return true; return false; } - final private boolean jj_3_1205() { + final private boolean jj_3_1212() { if (jj_scan_token(PUBLIC)) return true; return false; } - final private boolean jj_3_1204() { + final private boolean jj_3_1211() { if (jj_scan_token(PRESERVE)) return true; return false; } - final private boolean jj_3_1203() { + final private boolean jj_3_1210() { if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3_300() { - if (jj_scan_token(CUBE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1209() { + if (jj_scan_token(PATH)) return true; return false; } - final private boolean jj_3_1202() { - if (jj_scan_token(PATH)) return true; + final private boolean jj_3_1208() { + if (jj_scan_token(PASSING)) return true; return false; } - final private boolean jj_3_1201() { - if (jj_scan_token(PASSING)) return true; + final private boolean jj_3_307() { + if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1200() { + final private boolean jj_3_1207() { if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; return false; } - final private boolean jj_3_1199() { + final private boolean jj_3_1206() { if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; return false; } - final private boolean jj_3_1198() { + final private boolean jj_3_1205() { if (jj_scan_token(PAD)) return true; return false; } - final private boolean jj_3_1197() { + final private boolean jj_3_1204() { if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_299() { + final private boolean jj_3_1203() { + if (jj_scan_token(OPTIONS)) return true; + return false; + } + + final private boolean jj_3_1202() { + if (jj_scan_token(OBJECT)) return true; + return false; + } + + final private boolean jj_3_306() { if (jj_scan_token(ROLLUP)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_684() { + final private boolean jj_3_691() { if (jj_scan_token(MINUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1196() { - if (jj_scan_token(OPTIONS)) return true; + final private boolean jj_3_1201() { + if (jj_scan_token(NULLABLE)) return true; return false; } - final private boolean jj_3_1195() { - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_1200() { + if (jj_scan_token(NANOSECOND)) return true; return false; } - final private boolean jj_3_1194() { - if (jj_scan_token(NULLABLE)) return true; + final private boolean jj_3_1199() { + if (jj_scan_token(MUMPS)) return true; return false; } - final private boolean jj_3_1193() { - if (jj_scan_token(NANOSECOND)) return true; + final private boolean jj_3_1198() { + if (jj_scan_token(MINVALUE)) return true; return false; } - final private boolean jj_3_1192() { - if (jj_scan_token(MUMPS)) return true; + final private boolean jj_3_1197() { + if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3R_185() { + final private boolean jj_3R_188() { Token xsp; xsp = jj_scanpos; - if (jj_3_298()) { + if (jj_3_305()) { jj_scanpos = xsp; - if (jj_3_299()) { + if (jj_3_306()) { jj_scanpos = xsp; - if (jj_3_300()) { + if (jj_3_307()) { jj_scanpos = xsp; - if (jj_3_301()) { + if (jj_3_308()) { jj_scanpos = xsp; - if (jj_3_302()) return true; + if (jj_3_309()) return true; } } } @@ -38374,354 +38359,325 @@ final private boolean jj_3R_185() { return false; } - final private boolean jj_3_1191() { - if (jj_scan_token(MINVALUE)) return true; + final private boolean jj_3_1196() { + if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_298() { + final private boolean jj_3_305() { if (jj_scan_token(GROUPING)) return true; if (jj_scan_token(SETS)) return true; return false; } - final private boolean jj_3_1190() { - if (jj_scan_token(MILLENNIUM)) return true; + final private boolean jj_3_1195() { + if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_682() { + final private boolean jj_3_689() { if (jj_scan_token(PLUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1189() { - if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; + final private boolean jj_3_1194() { + if (jj_scan_token(LOCATOR)) return true; return false; } - final private boolean jj_3_1188() { - if (jj_scan_token(MATCHED)) return true; + final private boolean jj_3_1193() { + if (jj_scan_token(LENGTH)) return true; return false; } - final private boolean jj_3_681() { + final private boolean jj_3_688() { if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1187() { - if (jj_scan_token(LOCATOR)) return true; + final private boolean jj_3_1192() { + if (jj_scan_token(KEY_TYPE)) return true; return false; } - final private boolean jj_3_1186() { - if (jj_scan_token(LENGTH)) return true; + final private boolean jj_3_1191() { + if (jj_scan_token(K)) return true; return false; } - final private boolean jj_3_1185() { - if (jj_scan_token(KEY_TYPE)) return true; + final private boolean jj_3_1190() { + if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_1184() { - if (jj_scan_token(K)) return true; + final private boolean jj_3_1189() { + if (jj_scan_token(INVOKER)) return true; return false; } - final private boolean jj_3R_287() { + final private boolean jj_3R_290() { Token xsp; xsp = jj_scanpos; - if (jj_3_683()) { + if (jj_3_690()) { jj_scanpos = xsp; - if (jj_3_684()) return true; + if (jj_3_691()) return true; } return false; } - final private boolean jj_3_1183() { - if (jj_scan_token(ISOYEAR)) return true; + final private boolean jj_3_1188() { + if (jj_scan_token(INPUT)) return true; return false; } - final private boolean jj_3_683() { + final private boolean jj_3_690() { Token xsp; xsp = jj_scanpos; - if (jj_3_681()) { + if (jj_3_688()) { jj_scanpos = xsp; - if (jj_3_682()) return true; + if (jj_3_689()) return true; } return false; } - final private boolean jj_3_1182() { - if (jj_scan_token(INVOKER)) return true; + final private boolean jj_3_1187() { + if (jj_scan_token(INCLUDING)) return true; return false; } - final private boolean jj_3_297() { + final private boolean jj_3_304() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_185()) return true; - return false; - } - - final private boolean jj_3_1181() { - if (jj_scan_token(INPUT)) return true; - return false; - } - - final private boolean jj_3_1180() { - if (jj_scan_token(INCLUDING)) return true; + if (jj_3R_188()) return true; return false; } - final private boolean jj_3_1179() { + final private boolean jj_3_1186() { if (jj_scan_token(IMMEDIATELY)) return true; return false; } - final private boolean jj_3_1178() { + final private boolean jj_3_1185() { if (jj_scan_token(IGNORE)) return true; return false; } - final private boolean jj_3_1177() { + final private boolean jj_3_1184() { if (jj_scan_token(HIERARCHY)) return true; return false; } - final private boolean jj_3_1176() { + final private boolean jj_3_1183() { if (jj_scan_token(GOTO)) return true; return false; } - final private boolean jj_3_1175() { + final private boolean jj_3_1182() { if (jj_scan_token(GENERATED)) return true; return false; } - final private boolean jj_3_1174() { + final private boolean jj_3_1181() { if (jj_scan_token(FRAC_SECOND)) return true; return false; } - final private boolean jj_3_1173() { + final private boolean jj_3_1180() { if (jj_scan_token(FORMAT)) return true; return false; } - final private boolean jj_3_1172() { + final private boolean jj_3_1179() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_1171() { + final private boolean jj_3_1178() { if (jj_scan_token(EXCEPTION)) return true; return false; } - final private boolean jj_3_1170() { + final private boolean jj_3_1177() { if (jj_scan_token(ENCODING)) return true; return false; } - final private boolean jj_3_1169() { + final private boolean jj_3_1176() { if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3_1168() { + final private boolean jj_3_1175() { if (jj_scan_token(DOMAIN)) return true; return false; } - final private boolean jj_3R_260() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; - return false; - } - - final private boolean jj_3_1167() { + final private boolean jj_3_1174() { if (jj_scan_token(DESCRIPTOR)) return true; return false; } - final private boolean jj_3_1166() { + final private boolean jj_3_1173() { if (jj_scan_token(DERIVED)) return true; return false; } - final private boolean jj_3_1165() { - if (jj_scan_token(DEFINER)) return true; + final private boolean jj_3R_263() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_296() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1172() { + if (jj_scan_token(DEFINER)) return true; return false; } - final private boolean jj_3_1164() { + final private boolean jj_3_1171() { if (jj_scan_token(DEFERRABLE)) return true; return false; } - final private boolean jj_3_295() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_1170() { + if (jj_scan_token(DAYS)) return true; return false; } - final private boolean jj_3_1163() { - if (jj_scan_token(DAYS)) return true; + final private boolean jj_3_303() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1162() { + final private boolean jj_3_1169() { if (jj_scan_token(DATETIME_TRUNC)) return true; return false; } - final private boolean jj_3_1161() { + final private boolean jj_3_302() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1168() { if (jj_scan_token(DATETIME_DIFF)) return true; return false; } - final private boolean jj_3_1160() { + final private boolean jj_3_1167() { if (jj_scan_token(DATABASE)) return true; return false; } - final private boolean jj_3_1159() { + final private boolean jj_3_1166() { if (jj_scan_token(CONTINUE)) return true; return false; } - final private boolean jj_3_1158() { + final private boolean jj_3_1165() { if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; return false; } - final private boolean jj_3R_146() { - if (jj_scan_token(GROUP)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_1164() { + if (jj_scan_token(CONSTRAINT_CATALOG)) return true; return false; } - final private boolean jj_3_1157() { - if (jj_scan_token(CONSTRAINT_CATALOG)) return true; + final private boolean jj_3_1163() { + if (jj_scan_token(CONDITION_NUMBER)) return true; return false; } - final private boolean jj_3_1156() { - if (jj_scan_token(CONDITION_NUMBER)) return true; + final private boolean jj_3R_150() { + if (jj_scan_token(GROUP)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1155() { + final private boolean jj_3_1162() { if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_1154() { + final private boolean jj_3_1161() { if (jj_scan_token(COLLATION_SCHEMA)) return true; return false; } - final private boolean jj_3R_231() { - if (jj_scan_token(NEW)) return true; - if (jj_3R_358()) return true; + final private boolean jj_3_1160() { + if (jj_scan_token(COLLATION)) return true; return false; } - final private boolean jj_3_1153() { - if (jj_scan_token(COLLATION)) return true; + final private boolean jj_3_1159() { + if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; return false; } - final private boolean jj_3_1152() { - if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; + final private boolean jj_3R_234() { + if (jj_scan_token(NEW)) return true; + if (jj_3R_362()) return true; return false; } - final private boolean jj_3_1151() { + final private boolean jj_3_1158() { if (jj_scan_token(CHARACTERS)) return true; return false; } - final private boolean jj_3_1150() { + final private boolean jj_3_1157() { if (jj_scan_token(CENTURY)) return true; return false; } - final private boolean jj_3_1149() { + final private boolean jj_3_1156() { if (jj_scan_token(CASCADE)) return true; return false; } - final private boolean jj_3_1148() { + final private boolean jj_3_1155() { if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_1147() { + final private boolean jj_3_1154() { if (jj_scan_token(ATTRIBUTE)) return true; return false; } - final private boolean jj_3_1146() { + final private boolean jj_3_1153() { if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1145() { + final private boolean jj_3_1152() { if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3R_145() { - if (jj_scan_token(WHERE)) return true; - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_1144() { + final private boolean jj_3_1151() { if (jj_scan_token(ADMIN)) return true; return false; } - final private boolean jj_3_1143() { + final private boolean jj_3_1150() { if (jj_scan_token(ACTION)) return true; return false; } - final private boolean jj_3_1142() { - if (jj_scan_token(A)) return true; + final private boolean jj_3R_149() { + if (jj_scan_token(WHERE)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_291() { - if (jj_3R_400()) return true; + final private boolean jj_3_1149() { + if (jj_scan_token(A)) return true; return false; } - final private boolean jj_3R_341() { + final private boolean jj_3R_344() { Token xsp; xsp = jj_scanpos; - if (jj_3_1142()) { - jj_scanpos = xsp; - if (jj_3_1143()) { - jj_scanpos = xsp; - if (jj_3_1144()) { - jj_scanpos = xsp; - if (jj_3_1145()) { - jj_scanpos = xsp; - if (jj_3_1146()) { - jj_scanpos = xsp; - if (jj_3_1147()) { - jj_scanpos = xsp; - if (jj_3_1148()) { - jj_scanpos = xsp; if (jj_3_1149()) { jj_scanpos = xsp; if (jj_3_1150()) { @@ -39150,7 +39106,21 @@ final private boolean jj_3R_341() { jj_scanpos = xsp; if (jj_3_1362()) { jj_scanpos = xsp; - if (jj_3_1363()) return true; + if (jj_3_1363()) { + jj_scanpos = xsp; + if (jj_3_1364()) { + jj_scanpos = xsp; + if (jj_3_1365()) { + jj_scanpos = xsp; + if (jj_3_1366()) { + jj_scanpos = xsp; + if (jj_3_1367()) { + jj_scanpos = xsp; + if (jj_3_1368()) { + jj_scanpos = xsp; + if (jj_3_1369()) { + jj_scanpos = xsp; + if (jj_3_1370()) return true; } } } @@ -39375,435 +39345,440 @@ final private boolean jj_3R_341() { return false; } - final private boolean jj_3R_159() { + final private boolean jj_3R_162() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_369()) return true; - return false; - } - - final private boolean jj_3_1141() { - if (jj_3R_343()) return true; - return false; - } - - final private boolean jj_3_1140() { - if (jj_3R_342()) return true; - return false; - } - - final private boolean jj_3R_357() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + if (jj_3R_373()) return true; return false; } - final private boolean jj_3_1139() { - if (jj_3R_341()) return true; + final private boolean jj_3_1148() { + if (jj_3R_346()) return true; return false; } - final private boolean jj_3_680() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_276()) return true; + final private boolean jj_3_1147() { + if (jj_3R_345()) return true; return false; } - final private boolean jj_3R_369() { - if (jj_3R_276()) return true; + final private boolean jj_3_1146() { + if (jj_3R_344()) return true; return false; } - final private boolean jj_3R_273() { + final private boolean jj_3R_276() { Token xsp; xsp = jj_scanpos; - if (jj_3_1139()) { + if (jj_3_1146()) { jj_scanpos = xsp; - if (jj_3_1140()) { + if (jj_3_1147()) { jj_scanpos = xsp; - if (jj_3_1141()) return true; + if (jj_3_1148()) return true; } } return false; } - final private boolean jj_3R_184() { + final private boolean jj_3_687() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_279()) return true; return false; } - final private boolean jj_3_294() { - if (jj_3R_81()) return true; + final private boolean jj_3R_373() { + if (jj_3R_279()) return true; return false; } - final private boolean jj_3R_346() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + final private boolean jj_3R_187() { return false; } - final private boolean jj_3_291() { + final private boolean jj_3_301() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_298() { if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_293() { + final private boolean jj_3_300() { Token xsp; xsp = jj_scanpos; - if (jj_3_291()) { + if (jj_3_298()) { jj_scanpos = xsp; - if (jj_3R_184()) return true; + if (jj_3R_187()) return true; } - if (jj_3R_183()) return true; + if (jj_3R_186()) return true; return false; } - final private boolean jj_3_679() { + final private boolean jj_3_686() { if (jj_scan_token(DOT)) return true; - if (jj_3R_275()) return true; - return false; - } - - final private boolean jj_3R_411() { + if (jj_3R_278()) return true; return false; } - final private boolean jj_3_292() { + final private boolean jj_3_299() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(ROW)) return true; - if (jj_3R_183()) return true; + if (jj_3R_186()) return true; return false; } - final private boolean jj_3R_170() { - if (jj_3R_275()) return true; + final private boolean jj_3R_173() { + if (jj_3R_278()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_679()) { jj_scanpos = xsp; break; } + if (jj_3_686()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_162() { + final private boolean jj_3R_165() { Token xsp; xsp = jj_scanpos; - if (jj_3_292()) { + if (jj_3_299()) { jj_scanpos = xsp; - if (jj_3_293()) { + if (jj_3_300()) { jj_scanpos = xsp; - if (jj_3_294()) return true; + if (jj_3_301()) return true; } } return false; } - final private boolean jj_3R_175() { - if (jj_3R_375()) return true; + final private boolean jj_3R_294() { + if (jj_3R_404()) return true; return false; } - final private boolean jj_3R_182() { - if (jj_3R_162()) return true; + final private boolean jj_3R_185() { + if (jj_3R_165()) return true; return false; } - final private boolean jj_3_678() { + final private boolean jj_3_685() { if (jj_scan_token(DOT)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_677() { + final private boolean jj_3R_361() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + return false; + } + + final private boolean jj_3_684() { if (jj_scan_token(DOT)) return true; - if (jj_3R_274()) return true; + if (jj_3R_277()) return true; return false; } - final private boolean jj_3_290() { + final private boolean jj_3_297() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_182()) return true; + if (jj_3R_185()) return true; return false; } - final private boolean jj_3R_152() { - if (jj_3R_274()) return true; + final private boolean jj_3R_139() { + if (jj_3R_277()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_677()) { jj_scanpos = xsp; break; } + if (jj_3_684()) { jj_scanpos = xsp; break; } } xsp = jj_scanpos; - if (jj_3_678()) jj_scanpos = xsp; + if (jj_3_685()) jj_scanpos = xsp; return false; } - final private boolean jj_3_289() { + final private boolean jj_3R_349() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + return false; + } + + final private boolean jj_3_296() { if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_288() { + final private boolean jj_3_295() { if (jj_scan_token(VALUES)) return true; return false; } - final private boolean jj_3R_76() { + final private boolean jj_3R_77() { Token xsp; xsp = jj_scanpos; - if (jj_3_288()) { + if (jj_3_295()) { jj_scanpos = xsp; - if (jj_3_289()) return true; + if (jj_3_296()) return true; } - if (jj_3R_182()) return true; + if (jj_3R_185()) return true; return false; } - final private boolean jj_3_676() { - if (jj_3R_124()) return true; + final private boolean jj_3R_415() { return false; } - final private boolean jj_3R_134() { + final private boolean jj_3_683() { + if (jj_3R_126()) return true; + return false; + } + + final private boolean jj_3R_136() { Token xsp; xsp = jj_scanpos; - if (jj_3_675()) { + if (jj_3_682()) { jj_scanpos = xsp; - if (jj_3_676()) return true; + if (jj_3_683()) return true; } return false; } - final private boolean jj_3_675() { - if (jj_3R_84()) return true; + final private boolean jj_3_682() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_77() { + final private boolean jj_3R_178() { + if (jj_3R_379()) return true; + return false; + } + + final private boolean jj_3R_78() { if (jj_scan_token(TABLE)) return true; - if (jj_3R_152()) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_124() { + final private boolean jj_3R_126() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_361()) return true; + if (jj_3R_365()) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_674() { + final private boolean jj_3_681() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_361() { - if (jj_3R_84()) return true; + final private boolean jj_3R_365() { + if (jj_3R_85()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_674()) { jj_scanpos = xsp; break; } + if (jj_3_681()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_287() { + final private boolean jj_3_294() { if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3R_174() { + final private boolean jj_3R_177() { if (jj_scan_token(TABLE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_370() { + final private boolean jj_3R_374() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_285() { + final private boolean jj_3_292() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3R_84() { - if (jj_3R_274()) return true; + final private boolean jj_3R_85() { + if (jj_3R_277()) return true; return false; } - final private boolean jj_3_286() { - if (jj_3R_154()) return true; + final private boolean jj_3_293() { + if (jj_3R_157()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_285()) { jj_scanpos = xsp; break; } + if (jj_3_292()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3R_169() { + final private boolean jj_3R_172() { if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_286()) jj_scanpos = xsp; + if (jj_3_293()) jj_scanpos = xsp; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_335() { - if (jj_3R_274()) return true; + final private boolean jj_3R_338() { + if (jj_3R_277()) return true; return false; } - final private boolean jj_3_284() { - if (jj_3R_120()) return true; - if (jj_3R_181()) return true; + final private boolean jj_3_291() { + if (jj_3R_122()) return true; + if (jj_3R_184()) return true; return false; } - final private boolean jj_3R_276() { - if (jj_3R_152()) return true; + final private boolean jj_3R_279() { + if (jj_3R_139()) return true; return false; } - final private boolean jj_3R_275() { - if (jj_3R_274()) return true; + final private boolean jj_3R_278() { + if (jj_3R_277()) return true; return false; } - final private boolean jj_3R_180() { - if (jj_3R_152()) return true; - if (jj_3R_120()) return true; - if (jj_3R_181()) return true; + final private boolean jj_3R_183() { + if (jj_3R_139()) return true; + if (jj_3R_122()) return true; + if (jj_3R_184()) return true; return false; } - final private boolean jj_3_673() { - if (jj_3R_273()) return true; + final private boolean jj_3_680() { + if (jj_3R_276()) return true; return false; } - final private boolean jj_3_283() { + final private boolean jj_3_290() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_180()) return true; + if (jj_3R_183()) return true; return false; } - final private boolean jj_3_665() { + final private boolean jj_3_672() { if (jj_scan_token(UESCAPE)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3R_368() { + final private boolean jj_3R_372() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_180()) return true; + if (jj_3R_183()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_283()) { jj_scanpos = xsp; break; } + if (jj_3_290()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_672() { + final private boolean jj_3_679() { if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_665()) jj_scanpos = xsp; + if (jj_3_672()) jj_scanpos = xsp; return false; } - final private boolean jj_3_282() { + final private boolean jj_3_289() { if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3R_158() { + final private boolean jj_3R_161() { Token xsp; xsp = jj_scanpos; - if (jj_3_282()) jj_scanpos = xsp; - if (jj_3R_368()) return true; + if (jj_3_289()) jj_scanpos = xsp; + if (jj_3R_372()) return true; return false; } - final private boolean jj_3_671() { + final private boolean jj_3_678() { if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_670() { + final private boolean jj_3_677() { if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_669() { + final private boolean jj_3_676() { if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_668() { + final private boolean jj_3_675() { if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_279() { + final private boolean jj_3_286() { if (jj_scan_token(REPEATABLE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_667() { + final private boolean jj_3_674() { if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_278() { + final private boolean jj_3_285() { if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3_277() { + final private boolean jj_3_284() { if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_666() { + final private boolean jj_3_673() { if (jj_scan_token(IDENTIFIER)) return true; return false; } - final private boolean jj_3_281() { + final private boolean jj_3_288() { Token xsp; xsp = jj_scanpos; - if (jj_3_277()) { + if (jj_3_284()) { jj_scanpos = xsp; - if (jj_3_278()) return true; + if (jj_3_285()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_274() { + final private boolean jj_3R_277() { Token xsp; xsp = jj_scanpos; - if (jj_3_666()) { + if (jj_3_673()) { jj_scanpos = xsp; - if (jj_3_667()) { + if (jj_3_674()) { jj_scanpos = xsp; - if (jj_3_668()) { + if (jj_3_675()) { jj_scanpos = xsp; - if (jj_3_669()) { + if (jj_3_676()) { jj_scanpos = xsp; - if (jj_3_670()) { + if (jj_3_677()) { jj_scanpos = xsp; - if (jj_3_671()) { + if (jj_3_678()) { jj_scanpos = xsp; - if (jj_3_672()) { + if (jj_3_679()) { jj_scanpos = xsp; - if (jj_3_673()) return true; + if (jj_3_680()) return true; } } } @@ -39814,79 +39789,79 @@ final private boolean jj_3R_274() { return false; } - final private boolean jj_3_280() { + final private boolean jj_3_287() { if (jj_scan_token(SUBSTITUTE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_179() { + final private boolean jj_3R_182() { if (jj_scan_token(TABLESAMPLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_280()) { + if (jj_3_287()) { jj_scanpos = xsp; - if (jj_3_281()) return true; + if (jj_3_288()) return true; } return false; } - final private boolean jj_3R_219() { + final private boolean jj_3R_222() { if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_276() { - if (jj_3R_179()) return true; + final private boolean jj_3_283() { + if (jj_3R_182()) return true; return false; } - final private boolean jj_3_664() { + final private boolean jj_3_671() { if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3_663() { + final private boolean jj_3_670() { if (jj_scan_token(FRIDAY)) return true; return false; } - final private boolean jj_3_662() { + final private boolean jj_3_669() { if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_661() { + final private boolean jj_3_668() { if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_660() { + final private boolean jj_3_667() { if (jj_scan_token(TUESDAY)) return true; return false; } - final private boolean jj_3_659() { + final private boolean jj_3_666() { if (jj_scan_token(MONDAY)) return true; return false; } - final private boolean jj_3R_271() { + final private boolean jj_3R_274() { Token xsp; xsp = jj_scanpos; - if (jj_3_658()) { + if (jj_3_665()) { jj_scanpos = xsp; - if (jj_3_659()) { + if (jj_3_666()) { jj_scanpos = xsp; - if (jj_3_660()) { + if (jj_3_667()) { jj_scanpos = xsp; - if (jj_3_661()) { + if (jj_3_668()) { jj_scanpos = xsp; - if (jj_3_662()) { + if (jj_3_669()) { jj_scanpos = xsp; - if (jj_3_663()) { + if (jj_3_670()) { jj_scanpos = xsp; - if (jj_3_664()) return true; + if (jj_3_671()) return true; } } } @@ -39896,161 +39871,396 @@ final private boolean jj_3R_271() { return false; } - final private boolean jj_3_658() { + final private boolean jj_3_665() { if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3R_178() { + final private boolean jj_3R_181() { return false; } - final private boolean jj_3_657() { + final private boolean jj_3_664() { if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3_274() { - if (jj_3R_124()) return true; + final private boolean jj_3_281() { + if (jj_3R_126()) return true; return false; } - final private boolean jj_3_656() { + final private boolean jj_3_663() { if (jj_scan_token(CENTURY)) return true; return false; } - final private boolean jj_3_655() { + final private boolean jj_3_662() { if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_654() { + final private boolean jj_3_661() { if (jj_scan_token(EPOCH)) return true; return false; } - final private boolean jj_3R_272() { + final private boolean jj_3R_275() { return false; } - final private boolean jj_3_653() { + final private boolean jj_3_660() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_273() { + final private boolean jj_3_280() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_652() { + final private boolean jj_3_659() { if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_651() { + final private boolean jj_3_658() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_275() { + final private boolean jj_3_282() { Token xsp; xsp = jj_scanpos; - if (jj_3_273()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_280()) jj_scanpos = xsp; + if (jj_3R_85()) return true; xsp = jj_scanpos; - if (jj_3_274()) { + if (jj_3_281()) { jj_scanpos = xsp; - if (jj_3R_178()) return true; + if (jj_3R_181()) return true; } return false; } - final private boolean jj_3R_372() { + final private boolean jj_3R_376() { return false; } - final private boolean jj_3_636() { + final private boolean jj_3_643() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_271()) return true; + if (jj_3R_274()) return true; return false; } - final private boolean jj_3_272() { - if (jj_3R_177()) return true; + final private boolean jj_3_279() { + if (jj_3R_180()) return true; return false; } - final private boolean jj_3_271() { - if (jj_3R_176()) return true; + final private boolean jj_3_278() { + if (jj_3R_179()) return true; return false; } - final private boolean jj_3_650() { + final private boolean jj_3_657() { if (jj_scan_token(WEEK)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_636()) { + if (jj_3_643()) { jj_scanpos = xsp; - if (jj_3R_272()) return true; + if (jj_3R_275()) return true; } return false; } - final private boolean jj_3_270() { - if (jj_3R_175()) return true; + final private boolean jj_3_277() { + if (jj_3R_178()) return true; return false; } - final private boolean jj_3_649() { + final private boolean jj_3_656() { if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_648() { + final private boolean jj_3_655() { if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_265() { + final private boolean jj_3_272() { if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_647() { + final private boolean jj_3_654() { if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_646() { + final private boolean jj_3_653() { if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_269() { + final private boolean jj_3_276() { Token xsp; xsp = jj_scanpos; - if (jj_3_265()) jj_scanpos = xsp; - if (jj_3R_174()) return true; + if (jj_3_272()) jj_scanpos = xsp; + if (jj_3R_177()) return true; return false; } - final private boolean jj_3_645() { + final private boolean jj_3_652() { if (jj_scan_token(DAYOFYEAR)) return true; return false; } - final private boolean jj_3_644() { + final private boolean jj_3_651() { if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_643() { + final private boolean jj_3_650() { if (jj_scan_token(DAY)) return true; return false; } + final private boolean jj_3_649() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_271() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(ORDINALITY)) return true; + return false; + } + + final private boolean jj_3_648() { + if (jj_scan_token(MINUTE)) return true; + return false; + } + + final private boolean jj_3_647() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3_646() { + if (jj_scan_token(MILLISECOND)) return true; + return false; + } + + final private boolean jj_3_645() { + if (jj_scan_token(MICROSECOND)) return true; + return false; + } + + final private boolean jj_3R_273() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_644()) { + jj_scanpos = xsp; + if (jj_3_645()) { + jj_scanpos = xsp; + if (jj_3_646()) { + jj_scanpos = xsp; + if (jj_3_647()) { + jj_scanpos = xsp; + if (jj_3_648()) { + jj_scanpos = xsp; + if (jj_3_649()) { + jj_scanpos = xsp; + if (jj_3_650()) { + jj_scanpos = xsp; + if (jj_3_651()) { + jj_scanpos = xsp; + if (jj_3_652()) { + jj_scanpos = xsp; + if (jj_3_653()) { + jj_scanpos = xsp; + 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()) { + jj_scanpos = xsp; + if (jj_3_658()) { + jj_scanpos = xsp; + if (jj_3_659()) { + jj_scanpos = xsp; + if (jj_3_660()) { + jj_scanpos = xsp; + if (jj_3_661()) { + jj_scanpos = xsp; + if (jj_3_662()) { + jj_scanpos = xsp; + if (jj_3_663()) { + jj_scanpos = xsp; + if (jj_3_664()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_644() { + if (jj_scan_token(NANOSECOND)) return true; + return false; + } + + final private boolean jj_3_270() { + if (jj_scan_token(LATERAL)) return true; + return false; + } + + final private boolean jj_3_269() { + if (jj_3R_171()) return true; + return false; + } + + final private boolean jj_3_275() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_270()) jj_scanpos = xsp; + if (jj_scan_token(UNNEST)) return true; + if (jj_3R_176()) return true; + return false; + } + + final private boolean jj_3_266() { + if (jj_3R_171()) return true; + return false; + } + + final private boolean jj_3_268() { + if (jj_scan_token(LATERAL)) return true; + return false; + } + + final private boolean jj_3_265() { + if (jj_3R_170()) return true; + return false; + } + + final private boolean jj_3_264() { + if (jj_3R_161()) return true; + return false; + } + + final private boolean jj_3_274() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_268()) jj_scanpos = xsp; + if (jj_3R_175()) return true; + return false; + } + + final private boolean jj_3_263() { + if (jj_3R_160()) return true; + return false; + } + + final private boolean jj_3R_174() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_263()) { + jj_scanpos = xsp; + if (jj_3R_376()) return true; + } + xsp = jj_scanpos; + if (jj_3_264()) jj_scanpos = xsp; + if (jj_3R_377()) return true; + xsp = jj_scanpos; + if (jj_3_265()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_266()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_267() { + if (jj_3R_172()) return true; + return false; + } + + final private boolean jj_3_642() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_335() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_641()) { + jj_scanpos = xsp; + if (jj_3_642()) return true; + } + return false; + } + + final private boolean jj_3_641() { + if (jj_3R_273()) return true; + return false; + } + + final private boolean jj_3_273() { + if (jj_3R_173()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_267()) { + jj_scanpos = xsp; + if (jj_3R_174()) return true; + } + return false; + } + + final private boolean jj_3R_348() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_273()) { + jj_scanpos = xsp; + if (jj_3_274()) { + jj_scanpos = xsp; + if (jj_3_275()) { + jj_scanpos = xsp; + if (jj_3_276()) { + jj_scanpos = xsp; + if (jj_3_277()) return true; + } + } + } + } + xsp = jj_scanpos; + if (jj_3_278()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_279()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_282()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_283()) jj_scanpos = xsp; + return false; + } + public IgniteSqlParserImplTokenManager token_source; SimpleCharStream jj_input_stream; public Token token, jj_nt; @@ -40185,15 +40395,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,0x400000,0x0,0x0,0x0,0x400000,0x400000,0x0,0x0,0x0,}; + jj_la1_23 = new int[] {0x0,0x1000000,0x0,0x0,0x0,0x1000000,0x1000000,0x0,0x0,0x0,}; } private static void jj_la1_24() { - jj_la1_24 = new int[] {0x0,0x0,0x400,0x904010,0x300000,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_24 = new int[] {0x0,0x0,0x1000,0x2410040,0xc00000,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[1805]; + final private JJCalls[] jj_2_rtns = new JJCalls[1814]; private boolean jj_rescan = false; private int jj_gc = 0; @@ -40368,8 +40578,8 @@ private void jj_add_error_token(int kind, int pos) { public ParseException generateParseException() { jj_expentries.removeAllElements(); - boolean[] la1tokens = new boolean[827]; - for (int i = 0; i < 827; i++) { + boolean[] la1tokens = new boolean[829]; + for (int i = 0; i < 829; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { @@ -40460,7 +40670,7 @@ public ParseException generateParseException() { } } } - for (int i = 0; i < 827; i++) { + for (int i = 0; i < 829; i++) { if (la1tokens[i]) { jj_expentry = new int[1]; jj_expentry[0] = i; @@ -40485,7 +40695,7 @@ final public void disable_tracing() { final private void jj_rescan_token() { jj_rescan = true; - for (int i = 0; i < 1805; i++) { + for (int i = 0; i < 1814; i++) { try { JJCalls p = jj_2_rtns[i]; do { @@ -42297,6 +42507,15 @@ final private void jj_rescan_token() { case 1802: jj_3_1803(); break; case 1803: jj_3_1804(); break; case 1804: jj_3_1805(); break; + case 1805: jj_3_1806(); break; + case 1806: jj_3_1807(); break; + case 1807: jj_3_1808(); break; + case 1808: jj_3_1809(); break; + case 1809: jj_3_1810(); break; + case 1810: jj_3_1811(); break; + case 1811: jj_3_1812(); break; + case 1812: jj_3_1813(); break; + case 1813: jj_3_1814(); 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 d047b221b6b18..a2fb63e671ac9 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 @@ -754,74 +754,76 @@ public interface IgniteSqlParserImplConstants { 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 WAIT = 751; + int NOWAIT = 752; + int UNSIGNED_INTEGER_LITERAL = 753; + int APPROX_NUMERIC_LITERAL = 754; + int DECIMAL_NUMERIC_LITERAL = 755; + int EXPONENT = 756; + int HEXDIGIT = 757; + int WHITESPACE = 758; + int BINARY_STRING_LITERAL = 759; + int QUOTED_STRING = 760; + int PREFIXED_STRING_LITERAL = 761; + int UNICODE_STRING_LITERAL = 762; + int C_STYLE_ESCAPED_STRING_LITERAL = 763; + int CHARSETNAME = 764; + int BIG_QUERY_DOUBLE_QUOTED_STRING = 765; + int BIG_QUERY_QUOTED_STRING = 766; + int UNICODE_QUOTED_ESCAPE_CHAR = 767; + int LPAREN = 768; + int RPAREN = 769; + int LBRACE_D = 770; + int LBRACE_T = 771; + int LBRACE_TS = 772; + int LBRACE_FN = 773; + int LBRACE = 774; + int RBRACE = 775; + int LBRACKET = 776; + int RBRACKET = 777; + int SEMICOLON = 778; + int DOT = 779; + int COMMA = 780; + int EQ = 781; + int GT = 782; + int LT = 783; + int HOOK = 784; + int COLON = 785; + int LE = 786; + int GE = 787; + int NE = 788; + int NE2 = 789; + int PLUS = 790; + int MINUS = 791; + int LAMBDA = 792; + int STAR = 793; + int SLASH = 794; + int PERCENT_REMAINDER = 795; + int CONCAT = 796; + int NAMED_ARGUMENT_ASSIGNMENT = 797; + int DOUBLE_PERIOD = 798; + int QUOTE = 799; + int DOUBLE_QUOTE = 800; + int VERTICAL_BAR = 801; + int CARET = 802; + int DOLLAR = 803; + int INFIX_CAST = 804; + int HINT_BEG = 810; + int COMMENT_END = 811; + int SINGLE_LINE_COMMENT = 814; + int FORMAL_COMMENT = 815; + int MULTI_LINE_COMMENT = 816; + int BRACKET_QUOTED_IDENTIFIER = 818; + int QUOTED_IDENTIFIER = 819; + int BACK_QUOTED_IDENTIFIER = 820; + int BIG_QUERY_BACK_QUOTED_IDENTIFIER = 821; + int HYPHENATED_IDENTIFIER = 822; + int IDENTIFIER = 823; + int COLLATION_ID = 824; + int UNICODE_QUOTED_IDENTIFIER = 825; + int LETTER = 826; + int DIGIT = 827; + int BEL = 828; int DEFAULT = 0; int DQID = 1; @@ -1583,6 +1585,8 @@ public interface IgniteSqlParserImplConstants { "\"ANALYZE\"", "\"MAX_CHANGED_PARTITION_ROWS_PERCENT\"", "\"TOTAL\"", + "\"WAIT\"", + "\"NOWAIT\"", "", "", "", @@ -1642,12 +1646,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 c40a22919dfc5..925443931d071 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 @@ -146,98 +146,98 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 0: if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; return 16; } - if ((active12 & 0x10L) != 0L) - return 94; - if ((active12 & 0x20000000L) != 0L) - return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 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 & 0xce55ef27efffL) != 0L) { - jjmatchedKind = 821; - return 95; + jjmatchedKind = 823; + return 94; } - if ((active12 & 0x90001000000L) != 0L) + if ((active12 & 0x40L) != 0L) + return 95; + if ((active12 & 0x80000000L) != 0L) + return 63; + if ((active12 & 0x240004000000L) != 0L) return 92; + if ((active12 & 0x100000000L) != 0L) + return 96; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; return 1; } - 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 & 0x4e55ef27efffL) != 0L) - { - jjmatchedKind = 821; - return 97; - } if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x1000200000000L) != 0L) + { + jjmatchedKind = 823; return 97; - if ((active12 & 0x10000200L) != 0L) + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x800000000L) != 0L) + return 94; + if ((active12 & 0x40000800L) != 0L) return 98; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0x1800000L) != 0L) 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 ((active12 & 0x240000000000L) != 0L) + return 90; + 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 & 0xbefd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 1; } - return 97; + return 94; } - 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; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x14102a0110000L) != 0L) + return 94; 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 & 0x1d7fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 2; } - return 97; + return 94; } 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 94; 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 & 0x180100e3c7L) != 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 & 0x7fe7fefe0c38L) != 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 & 0x80180100e3c7L) != 0L) + return 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + 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 & 0x17fe7fefe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 97; + return 94; } - 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 & 0x430022204809L) != 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 & 0x3ce7ddde05b4L) != 0L) + return 94; + 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 & 0x13ce7ddde05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 4; } - return 97; + return 94; } if ((active2 & 0x8000000000000000L) != 0L) return 99; @@ -247,44 +247,44 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 5; } - return 97; + return 94; } - 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 & 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 & 0x10000001000a0L) != 0L) + return 94; if ((active2 & 0x8000000000000000L) != 0L) 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) - 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 6; } - return 97; + return 94; } + 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 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; 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 & 0x444020004L) != 0L) - return 97; + return 94; 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 & 0x24229bf80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 7; } - return 97; + return 94; } return -1; case 8: @@ -292,38 +292,38 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 8; } - return 97; + return 94; } 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 94; 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 & 0x200081680010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 9; } - return 97; + return 94; } 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 94; 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 & 0x81400000L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 10; } - return 97; + return 94; } return -1; case 11: @@ -331,42 +331,42 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 11; } - return 97; + return 94; } 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 94; 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 12; - return 97; + return 94; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 97; + return 94; return -1; 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 13; - return 97; + return 94; } 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 14; - return 97; + return 94; } return -1; case 15: @@ -374,182 +374,182 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 15; } - return 97; + return 94; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 97; + return 94; 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 (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 16; } - return 97; + return 94; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 97; + return 94; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 17; - return 97; + return 94; } return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 18; } - return 97; + return 94; } 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 19; - return 97; + return 94; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 97; + return 94; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 20; - return 97; + return 94; } return -1; case 21: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 21; - return 97; + return 94; } if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 97; + return 94; return -1; case 22: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 22; - return 97; + return 94; } if ((active6 & 0x10000000L) != 0L) - return 97; + return 94; return -1; case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 23; - return 97; + return 94; } return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 24; - return 97; + return 94; } return -1; case 25: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 25; - return 97; + return 94; } if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 97; + return 94; return -1; case 26: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 26; - return 97; + return 94; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 97; + return 94; return -1; case 27: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 27; - return 97; + return 94; } return -1; case 28: if ((active8 & 0x200000000000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 28; - return 97; + return 94; } return -1; case 29: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 29; - return 97; + return 94; } return -1; case 30: if ((active1 & 0x400000000000000L) != 0L) - return 97; + return 94; if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 30; - return 97; + return 94; } return -1; case 31: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 31; - return 97; + return 94; } if ((active2 & 0x2L) != 0L) - return 97; + return 94; return -1; case 32: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 32; - return 97; + return 94; } return -1; default : @@ -580,57 +580,57 @@ private final int jjMoveStringLiteralDfa0_1() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 34: - return jjStartNfaWithStates_1(0, 798, 96); + return jjStartNfaWithStates_1(0, 800, 96); case 36: - return jjStartNfaWithStates_1(0, 801, 97); + return jjStartNfaWithStates_1(0, 803, 94); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 795); case 39: - return jjStartNfaWithStates_1(0, 797, 63); + return jjStartNfaWithStates_1(0, 799, 63); case 40: - return jjStopAtPos(0, 766); + return jjStopAtPos(0, 768); case 41: - return jjStopAtPos(0, 767); + return jjStopAtPos(0, 769); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 790); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 780); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 794; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x240000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 62: - jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 784); case 91: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 777); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 802); case 65: case 97: jjmatchedKind = 3; @@ -677,7 +677,7 @@ private final int jjMoveStringLiteralDfa0_1() 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, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -704,7 +704,7 @@ private final int jjMoveStringLiteralDfa0_1() 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, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x80000c200fffL, 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, 772, 94); + return jjStartNfaWithStates_1(0, 774, 95); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 801; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 126: return jjStopAtPos(0, 2); default : @@ -737,43 +737,43 @@ private final int jjMoveStringLiteralDfa1_1(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x200000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 813; 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, 0x10000000000L); + 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, 0x40000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x40000000L) != 0L) + return jjStopAtPos(1, 798); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(1, 811); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x1000000000L) != 0L) + return jjStopAtPos(1, 804); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) - return jjStopAtPos(1, 785); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); else if ((active12 & 0x80000L) != 0L) return jjStopAtPos(1, 787); + else if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 62: - 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); + if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); + else if ((active12 & 0x1000000L) != 0L) + return jjStopAtPos(1, 792); + else if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); 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, 0x200443c40000L, 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, 0xa00443c40000L, 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); @@ -794,7 +794,7 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedPos = 1; } else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(1, 720, 97); + return jjStartNfaWithStates_1(1, 720, 94); return jjMoveStringLiteralDfa2_1(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); case 71: case 103: @@ -822,7 +822,7 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(1, 316, 97); + return jjStartNfaWithStates_1(1, 316, 94); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; @@ -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, 0x140a300008200L, 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); @@ -894,11 +894,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(1, 51, 97); + return jjStartNfaWithStates_1(1, 51, 94); 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 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; default : break; @@ -917,13 +917,13 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x40000000000L) != 0L) + return jjStopAtPos(2, 810); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_1(2, 8, 97); + return jjStartNfaWithStates_1(2, 8, 94); 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, 0x14100c006400L, active12, 0L); case 66: case 98: @@ -931,7 +931,7 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(2, 27, 97); + return jjStartNfaWithStates_1(2, 27, 94); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; @@ -941,9 +941,9 @@ else if ((active2 & 0x200000L) != 0L) case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_1(2, 9, 97); + return jjStartNfaWithStates_1(2, 9, 94); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(2, 17, 97); + return jjStartNfaWithStates_1(2, 17, 94); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -955,16 +955,16 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_1(2, 385, 97); + return jjStartNfaWithStates_1(2, 385, 94); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(2, 406, 97); + return jjStartNfaWithStates_1(2, 406, 94); 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); + return jjStartNfaWithStates_1(2, 20, 94); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_1(2, 388, 97); + return jjStartNfaWithStates_1(2, 388, 94); 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: @@ -977,9 +977,9 @@ else if ((active6 & 0x10L) != 0L) case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(2, 37, 97); + return jjStartNfaWithStates_1(2, 37, 94); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(2, 301, 97); + return jjStartNfaWithStates_1(2, 301, 94); 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: @@ -987,8 +987,8 @@ else if ((active4 & 0x200000000000L) != 0L) case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 432, 97); - return jjMoveStringLiteralDfa3_1(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_1(2, 432, 94); + return jjMoveStringLiteralDfa3_1(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x800000200800L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1008,12 +1008,12 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedPos = 2; } else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(2, 716, 97); + return jjStartNfaWithStates_1(2, 716, 94); 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, 0xa82000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(2, 616, 97); + return jjStartNfaWithStates_1(2, 616, 94); 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: @@ -1034,9 +1034,9 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 250, 97); + return jjStartNfaWithStates_1(2, 250, 94); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_1(2, 323, 97); + return jjStartNfaWithStates_1(2, 323, 94); return jjMoveStringLiteralDfa3_1(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); case 81: case 113: @@ -1065,18 +1065,18 @@ else if ((active6 & 0x4000000000L) != 0L) case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(2, 46, 97); + return jjStartNfaWithStates_1(2, 46, 94); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 177, 97); + return jjStartNfaWithStates_1(2, 177, 94); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(2, 237, 97); + return jjStartNfaWithStates_1(2, 237, 94); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 370, 97); + return jjStartNfaWithStates_1(2, 370, 94); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -1097,15 +1097,15 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 179, 97); + return jjStartNfaWithStates_1(2, 179, 94); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(2, 364, 97); + return jjStartNfaWithStates_1(2, 364, 94); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000000000L, active12, 0L); case 88: case 120: if ((active5 & 0x400L) != 0L) @@ -1117,14 +1117,14 @@ else if ((active7 & 0x800000000000L) != 0L) case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(2, 18, 97); + return jjStartNfaWithStates_1(2, 18, 94); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 180, 97); + return jjStartNfaWithStates_1(2, 180, 94); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; @@ -1158,7 +1158,7 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); case 56: if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(3, 686, 97); + return jjStartNfaWithStates_1(3, 686, 94); 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); @@ -1170,14 +1170,14 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, jjmatchedPos = 3; } 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, 0x400041000000L); + return jjStartNfaWithStates_1(3, 285, 94); + 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, 0x1400041000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(3, 47, 97); + return jjStartNfaWithStates_1(3, 47, 94); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(3, 78, 97); + return jjStartNfaWithStates_1(3, 78, 94); return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); case 67: case 99: @@ -1195,7 +1195,7 @@ else if ((active3 & 0x800L) != 0L) case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 249, 97); + return jjStartNfaWithStates_1(3, 249, 94); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -1207,61 +1207,61 @@ else if ((active7 & 0x20L) != 0L) jjmatchedPos = 3; } else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 689, 97); + return jjStartNfaWithStates_1(3, 689, 94); return jjMoveStringLiteralDfa4_1(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 58, 97); + return jjStartNfaWithStates_1(3, 58, 94); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 117, 97); + return jjStartNfaWithStates_1(3, 117, 94); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 187, 97); + return jjStartNfaWithStates_1(3, 187, 94); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(3, 227, 97); + return jjStartNfaWithStates_1(3, 227, 94); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(3, 353, 97); + return jjStartNfaWithStates_1(3, 353, 94); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(3, 367, 97); + return jjStartNfaWithStates_1(3, 367, 94); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(3, 488, 97); + return jjStartNfaWithStates_1(3, 488, 94); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(3, 536, 97); + return jjStartNfaWithStates_1(3, 536, 94); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(3, 539, 97); + return jjStartNfaWithStates_1(3, 539, 94); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(3, 659, 97); + return jjStartNfaWithStates_1(3, 659, 94); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(3, 664, 97); + return jjStartNfaWithStates_1(3, 664, 94); else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(3, 719, 97); + return jjStartNfaWithStates_1(3, 719, 94); 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) - return jjStartNfaWithStates_1(3, 26, 97); + return jjStartNfaWithStates_1(3, 26, 94); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_1(3, 521, 97); + return jjStartNfaWithStates_1(3, 521, 94); break; case 71: case 103: @@ -1269,11 +1269,11 @@ else if ((active8 & 0x200L) != 0L) case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 49, 97); + return jjStartNfaWithStates_1(3, 49, 94); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 185, 97); + return jjStartNfaWithStates_1(3, 185, 94); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(3, 420, 97); + return jjStartNfaWithStates_1(3, 420, 94); else if ((active11 & 0x40L) != 0L) { jjmatchedKind = 710; @@ -1286,16 +1286,16 @@ else if ((active11 & 0x40L) != 0L) case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_1(3, 452, 97); + return jjStartNfaWithStates_1(3, 452, 94); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_1(3, 519, 97); + return jjStartNfaWithStates_1(3, 519, 94); else if ((active10 & 0x8000000000000000L) != 0L) { jjmatchedKind = 703; jjmatchedPos = 3; } else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_1(3, 713, 97); + return jjStartNfaWithStates_1(3, 713, 94); return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); case 76: case 108: @@ -1310,21 +1310,21 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(3, 230, 97); + return jjStartNfaWithStates_1(3, 230, 94); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_1(3, 455, 97); + return jjStartNfaWithStates_1(3, 455, 94); else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(3, 739, 97); + return jjStartNfaWithStates_1(3, 739, 94); 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) - return jjStartNfaWithStates_1(3, 229, 97); + return jjStartNfaWithStates_1(3, 229, 94); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; @@ -1334,39 +1334,39 @@ else if ((active10 & 0x20000L) != 0L) case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(3, 286, 97); + return jjStartNfaWithStates_1(3, 286, 94); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_1(3, 390, 97); + return jjStartNfaWithStates_1(3, 390, 94); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(3, 431, 97); + return jjStartNfaWithStates_1(3, 431, 94); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 626, 97); + return jjStartNfaWithStates_1(3, 626, 94); else if ((active11 & 0x2L) != 0L) { jjmatchedKind = 705; jjmatchedPos = 3; } else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(3, 740, 97); + return jjStartNfaWithStates_1(3, 740, 94); 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); + return jjStartNfaWithStates_1(3, 240, 94); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(3, 279, 97); + return jjStartNfaWithStates_1(3, 279, 94); 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); + return jjStartNfaWithStates_1(3, 181, 94); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(3, 537, 97); + return jjStartNfaWithStates_1(3, 537, 94); 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, 0x800c020400L); case 81: case 113: @@ -1407,33 +1407,35 @@ else if ((active11 & 0x2000L) != 0L) case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(3, 147, 97); + return jjStartNfaWithStates_1(3, 147, 94); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 498, 97); + return jjStartNfaWithStates_1(3, 498, 94); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(3, 531, 97); + return jjStartNfaWithStates_1(3, 531, 94); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 628, 97); + return jjStartNfaWithStates_1(3, 628, 94); 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) - return jjStartNfaWithStates_1(3, 59, 97); + return jjStartNfaWithStates_1(3, 59, 94); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 309, 97); + return jjStartNfaWithStates_1(3, 309, 94); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(3, 365, 97); + return jjStartNfaWithStates_1(3, 365, 94); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_1(3, 386, 97); + return jjStartNfaWithStates_1(3, 386, 94); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(3, 419, 97); + return jjStartNfaWithStates_1(3, 419, 94); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(3, 598, 97); + return jjStartNfaWithStates_1(3, 598, 94); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(3, 751, 94); 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: @@ -1441,19 +1443,19 @@ else if ((active9 & 0x400000L) != 0L) case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 442, 97); + return jjStartNfaWithStates_1(3, 442, 94); 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) - return jjStartNfaWithStates_1(3, 533, 97); + return jjStartNfaWithStates_1(3, 533, 94); else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 701, 97); + return jjStartNfaWithStates_1(3, 701, 94); return jjMoveStringLiteralDfa4_1(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_1(3, 389, 97); + return jjStartNfaWithStates_1(3, 389, 94); return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); default : break; @@ -1473,11 +1475,11 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, { case 50: if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 688, 97); + return jjStartNfaWithStates_1(4, 688, 94); break; case 54: if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(4, 687, 97); + return jjStartNfaWithStates_1(4, 687, 94); 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, 0xd000000L); @@ -1487,68 +1489,68 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(4, 362, 97); + return jjStartNfaWithStates_1(4, 362, 94); 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 jjStartNfaWithStates_1(4, 744, 94); 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) - return jjStartNfaWithStates_1(4, 224, 97); + return jjStartNfaWithStates_1(4, 224, 94); return jjMoveStringLiteralDfa5_1(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(4, 79, 97); + return jjStartNfaWithStates_1(4, 79, 94); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_1(4, 133, 97); + return jjStartNfaWithStates_1(4, 133, 94); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(4, 211, 97); + return jjStartNfaWithStates_1(4, 211, 94); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 255, 97); + return jjStartNfaWithStates_1(4, 255, 94); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(4, 303, 97); + return jjStartNfaWithStates_1(4, 303, 94); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(4, 335, 97); + return jjStartNfaWithStates_1(4, 335, 94); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 372, 97); + return jjStartNfaWithStates_1(4, 372, 94); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_1(4, 451, 97); + return jjStartNfaWithStates_1(4, 451, 94); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(4, 487, 97); + return jjStartNfaWithStates_1(4, 487, 94); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 506, 97); + return jjStartNfaWithStates_1(4, 506, 94); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 541, 97); + return jjStartNfaWithStates_1(4, 541, 94); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(4, 608, 97); + return jjStartNfaWithStates_1(4, 608, 94); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(4, 679, 97); + return jjStartNfaWithStates_1(4, 679, 94); else if ((active10 & 0x4000000000000L) != 0L) { jjmatchedKind = 690; jjmatchedPos = 4; } else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_1(4, 707, 97); + return jjStartNfaWithStates_1(4, 707, 94); else if ((active11 & 0x800L) != 0L) { jjmatchedKind = 715; @@ -1558,21 +1560,21 @@ else if ((active11 & 0x800L) != 0L) case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(4, 164, 97); + return jjStartNfaWithStates_1(4, 164, 94); return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(4, 685, 97); + return jjStartNfaWithStates_1(4, 685, 94); 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) - return jjStartNfaWithStates_1(4, 163, 97); + return jjStartNfaWithStates_1(4, 163, 94); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_1(4, 194, 97); + return jjStartNfaWithStates_1(4, 194, 94); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(4, 212, 97); + return jjStartNfaWithStates_1(4, 212, 94); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -1586,29 +1588,29 @@ 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, 0x1046100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_1(4, 75, 97); + return jjStartNfaWithStates_1(4, 75, 94); return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(4, 81, 97); + return jjStartNfaWithStates_1(4, 81, 94); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(4, 214, 97); + return jjStartNfaWithStates_1(4, 214, 94); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(4, 300, 97); + return jjStartNfaWithStates_1(4, 300, 94); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 311, 97); + return jjStartNfaWithStates_1(4, 311, 94); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(4, 750, 97); + return jjStartNfaWithStates_1(4, 750, 94); 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: @@ -1616,16 +1618,16 @@ else if ((active11 & 0x400000000000L) != 0L) case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_1(4, 10, 97); + return jjStartNfaWithStates_1(4, 10, 94); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_1(4, 65, 97); + return jjStartNfaWithStates_1(4, 65, 94); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(4, 670, 97); + return jjStartNfaWithStates_1(4, 670, 94); 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: @@ -1641,88 +1643,88 @@ else if ((active10 & 0x40000000L) != 0L) case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_1(4, 11, 97); + return jjStartNfaWithStates_1(4, 11, 94); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(4, 15, 97); + return jjStartNfaWithStates_1(4, 15, 94); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_1(4, 196, 97); + return jjStartNfaWithStates_1(4, 196, 94); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(4, 218, 97); + return jjStartNfaWithStates_1(4, 218, 94); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_1(4, 267, 97); + return jjStartNfaWithStates_1(4, 267, 94); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_1(4, 321, 97); + return jjStartNfaWithStates_1(4, 321, 94); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(4, 361, 97); + return jjStartNfaWithStates_1(4, 361, 94); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(4, 400, 97); + return jjStartNfaWithStates_1(4, 400, 94); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 436, 97); + return jjStartNfaWithStates_1(4, 436, 94); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 444, 97); + return jjStartNfaWithStates_1(4, 444, 94); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 669, 97); + return jjStartNfaWithStates_1(4, 669, 94); else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(4, 677, 97); + return jjStartNfaWithStates_1(4, 677, 94); return jjMoveStringLiteralDfa5_1(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 116, 97); + return jjStartNfaWithStates_1(4, 116, 94); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 252, 97); + return jjStartNfaWithStates_1(4, 252, 94); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(4, 355, 97); + return jjStartNfaWithStates_1(4, 355, 94); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(4, 357, 97); + return jjStartNfaWithStates_1(4, 357, 94); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 376, 97); + return jjStartNfaWithStates_1(4, 376, 94); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_1(4, 454, 97); + return jjStartNfaWithStates_1(4, 454, 94); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(4, 532, 97); + return jjStartNfaWithStates_1(4, 532, 94); else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_1(4, 704, 97); + return jjStartNfaWithStates_1(4, 704, 94); else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 718, 97); + return jjStartNfaWithStates_1(4, 718, 94); return jjMoveStringLiteralDfa5_1(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 112, 97); + return jjStartNfaWithStates_1(4, 112, 94); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(4, 217, 97); + return jjStartNfaWithStates_1(4, 217, 94); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(4, 268, 97); + return jjStartNfaWithStates_1(4, 268, 94); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(4, 269, 97); + return jjStartNfaWithStates_1(4, 269, 94); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 315, 97); + return jjStartNfaWithStates_1(4, 315, 94); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(4, 429, 97); + return jjStartNfaWithStates_1(4, 429, 94); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(4, 473, 97); + return jjStartNfaWithStates_1(4, 473, 94); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(4, 486, 97); + return jjStartNfaWithStates_1(4, 486, 94); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(4, 599, 97); + return jjStartNfaWithStates_1(4, 599, 94); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(4, 652, 97); + return jjStartNfaWithStates_1(4, 652, 94); 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: @@ -1733,28 +1735,28 @@ else if ((active10 & 0x1000L) != 0L) case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 14, 97); + return jjStartNfaWithStates_1(4, 14, 94); 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 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 733, 97); + return jjStartNfaWithStates_1(4, 733, 94); 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: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(4, 19, 97); + return jjStartNfaWithStates_1(4, 19, 94); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 188, 97); + return jjStartNfaWithStates_1(4, 188, 94); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_1(4, 198, 97); + return jjStartNfaWithStates_1(4, 198, 94); else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(4, 745, 97); + return jjStartNfaWithStates_1(4, 745, 94); 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: @@ -1796,20 +1798,20 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 447, 97); + return jjStartNfaWithStates_1(5, 447, 94); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(5, 602, 97); + return jjStartNfaWithStates_1(5, 602, 94); 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) - return jjStartNfaWithStates_1(5, 54, 97); + return jjStartNfaWithStates_1(5, 54, 94); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(5, 208, 97); + return jjStartNfaWithStates_1(5, 208, 94); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(5, 339, 97); + return jjStartNfaWithStates_1(5, 339, 94); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(5, 427, 97); + return jjStartNfaWithStates_1(5, 427, 94); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; @@ -1819,62 +1821,62 @@ else if ((active8 & 0x8L) != 0L) case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(5, 38, 97); + return jjStartNfaWithStates_1(5, 38, 94); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 115, 97); + return jjStartNfaWithStates_1(5, 115, 94); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(5, 150, 97); + return jjStartNfaWithStates_1(5, 150, 94); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(5, 160, 97); + return jjStartNfaWithStates_1(5, 160, 94); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(5, 161, 97); + return jjStartNfaWithStates_1(5, 161, 94); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 178, 97); + return jjStartNfaWithStates_1(5, 178, 94); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_1(5, 197, 97); + return jjStartNfaWithStates_1(5, 197, 94); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 254, 97); + return jjStartNfaWithStates_1(5, 254, 94); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(5, 349, 97); + return jjStartNfaWithStates_1(5, 349, 94); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(5, 485, 97); + return jjStartNfaWithStates_1(5, 485, 94); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(5, 535, 97); + return jjStartNfaWithStates_1(5, 535, 94); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(5, 540, 97); + return jjStartNfaWithStates_1(5, 540, 94); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(5, 663, 97); + return jjStartNfaWithStates_1(5, 663, 94); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(5, 671, 97); + return jjStartNfaWithStates_1(5, 671, 94); else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(5, 676, 97); + return jjStartNfaWithStates_1(5, 676, 94); 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) - return jjStartNfaWithStates_1(5, 375, 97); + return jjStartNfaWithStates_1(5, 375, 94); return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 247, 97); + return jjStartNfaWithStates_1(5, 247, 94); 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); + return jjStartNfaWithStates_1(5, 310, 94); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_1(5, 514, 97); + return jjStartNfaWithStates_1(5, 514, 94); 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: @@ -1885,16 +1887,16 @@ else if ((active8 & 0x4L) != 0L) case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(5, 238, 97); + return jjStartNfaWithStates_1(5, 238, 94); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(5, 416, 97); + return jjStartNfaWithStates_1(5, 416, 94); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_1(5, 513, 97); + return jjStartNfaWithStates_1(5, 513, 94); 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) - return jjStartNfaWithStates_1(5, 605, 97); + return jjStartNfaWithStates_1(5, 605, 94); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -1904,16 +1906,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_1(5, 7, 97); + return jjStartNfaWithStates_1(5, 7, 94); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 176, 97); + return jjStartNfaWithStates_1(5, 176, 94); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(5, 232, 97); + return jjStartNfaWithStates_1(5, 232, 94); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -1925,7 +1927,7 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedPos = 5; } else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_1(5, 711, 97); + return jjStartNfaWithStates_1(5, 711, 94); 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: @@ -1933,7 +1935,7 @@ else if ((active11 & 0x80L) != 0L) case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(5, 490, 97); + return jjStartNfaWithStates_1(5, 490, 94); 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: @@ -1946,13 +1948,13 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(5, 213, 97); + return jjStartNfaWithStates_1(5, 213, 94); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(5, 334, 97); + return jjStartNfaWithStates_1(5, 334, 94); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 377, 97); + return jjStartNfaWithStates_1(5, 377, 94); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 505, 97); + return jjStartNfaWithStates_1(5, 505, 94); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; @@ -1962,28 +1964,28 @@ else if ((active8 & 0x4000L) != 0L) case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(5, 16, 97); + return jjStartNfaWithStates_1(5, 16, 94); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_1(5, 195, 97); + return jjStartNfaWithStates_1(5, 195, 94); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(5, 205, 97); + return jjStartNfaWithStates_1(5, 205, 94); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 246, 97); + return jjStartNfaWithStates_1(5, 246, 94); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(5, 352, 97); + return jjStartNfaWithStates_1(5, 352, 94); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 382, 97); + return jjStartNfaWithStates_1(5, 382, 94); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(5, 398, 97); + return jjStartNfaWithStates_1(5, 398, 94); else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 691, 97); + return jjStartNfaWithStates_1(5, 691, 94); 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) - return jjStartNfaWithStates_1(5, 5, 97); + return jjStartNfaWithStates_1(5, 5, 94); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(5, 44, 97); + return jjStartNfaWithStates_1(5, 44, 94); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -1995,27 +1997,29 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(5, 221, 97); + return jjStartNfaWithStates_1(5, 221, 94); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_1(5, 259, 97); + return jjStartNfaWithStates_1(5, 259, 94); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(5, 271, 97); + return jjStartNfaWithStates_1(5, 271, 94); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 379, 97); + return jjStartNfaWithStates_1(5, 379, 94); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_1(5, 384, 97); + return jjStartNfaWithStates_1(5, 384, 94); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(5, 401, 97); + return jjStartNfaWithStates_1(5, 401, 94); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(5, 477, 97); + return jjStartNfaWithStates_1(5, 477, 94); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_1(5, 520, 97); + return jjStartNfaWithStates_1(5, 520, 94); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(5, 611, 97); + return jjStartNfaWithStates_1(5, 611, 94); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(5, 675, 97); + return jjStartNfaWithStates_1(5, 675, 94); else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(5, 678, 97); + return jjStartNfaWithStates_1(5, 678, 94); + else if ((active11 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 752, 94); 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: @@ -2026,9 +2030,9 @@ else if ((active10 & 0x4000000000L) != 0L) case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(5, 282, 97); + return jjStartNfaWithStates_1(5, 282, 94); else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_1(5, 709, 97); + return jjStartNfaWithStates_1(5, 709, 94); return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -2036,13 +2040,13 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(5, 45, 97); + return jjStartNfaWithStates_1(5, 45, 94); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(5, 228, 97); + return jjStartNfaWithStates_1(5, 228, 94); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(5, 350, 97); + return jjStartNfaWithStates_1(5, 350, 94); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(5, 617, 97); + return jjStartNfaWithStates_1(5, 617, 94); 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: @@ -2065,7 +2069,7 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(6, 464, 97); + return jjStartNfaWithStates_1(6, 464, 94); 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); @@ -2083,20 +2087,20 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 378, 97); + return jjStartNfaWithStates_1(6, 378, 94); return jjMoveStringLiteralDfa7_1(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(6, 158, 97); + return jjStartNfaWithStates_1(6, 158, 94); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(6, 165, 97); + return jjStartNfaWithStates_1(6, 165, 94); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 242, 97); + return jjStartNfaWithStates_1(6, 242, 94); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_1(6, 325, 97); + return jjStartNfaWithStates_1(6, 325, 94); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(6, 674, 97); + return jjStartNfaWithStates_1(6, 674, 94); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); case 69: case 101: @@ -2106,41 +2110,41 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 82, 97); + return jjStartNfaWithStates_1(6, 82, 94); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(6, 152, 97); + return jjStartNfaWithStates_1(6, 152, 94); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_1(6, 201, 97); + return jjStartNfaWithStates_1(6, 201, 94); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(6, 204, 97); + return jjStartNfaWithStates_1(6, 204, 94); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_1(6, 261, 97); + return jjStartNfaWithStates_1(6, 261, 94); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(6, 428, 97); + return jjStartNfaWithStates_1(6, 428, 94); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 440, 97); + return jjStartNfaWithStates_1(6, 440, 94); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 470, 97); + return jjStartNfaWithStates_1(6, 470, 94); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(6, 472, 97); + return jjStartNfaWithStates_1(6, 472, 94); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(6, 665, 97); + return jjStartNfaWithStates_1(6, 665, 94); else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(6, 742, 97); + return jjStartNfaWithStates_1(6, 742, 94); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(6, 743, 97); + return jjStartNfaWithStates_1(6, 743, 94); else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(6, 748, 97); + return jjStartNfaWithStates_1(6, 748, 94); 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, 0x45000004L); case 70: case 102: @@ -2153,28 +2157,28 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 63, 97); + return jjStartNfaWithStates_1(6, 63, 94); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 308, 97); + return jjStartNfaWithStates_1(6, 308, 94); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 363, 97); + return jjStartNfaWithStates_1(6, 363, 94); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(6, 417, 97); + return jjStartNfaWithStates_1(6, 417, 94); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(6, 430, 97); + return jjStartNfaWithStates_1(6, 430, 94); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 499, 97); + return jjStartNfaWithStates_1(6, 499, 94); else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 698, 97); + return jjStartNfaWithStates_1(6, 698, 94); else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 736, 97); + return jjStartNfaWithStates_1(6, 736, 94); 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); + return jjStartNfaWithStates_1(6, 50, 94); else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 747, 97); + return jjStartNfaWithStates_1(6, 747, 94); 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: @@ -2182,25 +2186,25 @@ else if ((active11 & 0x80000000000L) != 0L) case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(6, 151, 97); + return jjStartNfaWithStates_1(6, 151, 94); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(6, 234, 97); + return jjStartNfaWithStates_1(6, 234, 94); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 306, 97); + return jjStartNfaWithStates_1(6, 306, 94); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(6, 360, 97); + return jjStartNfaWithStates_1(6, 360, 94); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(6, 414, 97); + return jjStartNfaWithStates_1(6, 414, 94); return jjMoveStringLiteralDfa7_1(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: @@ -2208,28 +2212,28 @@ else if ((active6 & 0x40000000L) != 0L) case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 43, 97); + return jjStartNfaWithStates_1(6, 43, 94); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 48, 97); + return jjStartNfaWithStates_1(6, 48, 94); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(6, 207, 97); + return jjStartNfaWithStates_1(6, 207, 94); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(6, 222, 97); + return jjStartNfaWithStates_1(6, 222, 94); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(6, 223, 97); + return jjStartNfaWithStates_1(6, 223, 94); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(6, 421, 97); + return jjStartNfaWithStates_1(6, 421, 94); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 433, 97); + return jjStartNfaWithStates_1(6, 433, 94); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_1(6, 517, 97); + return jjStartNfaWithStates_1(6, 517, 94); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 672, 97); + return jjStartNfaWithStates_1(6, 672, 94); else if ((active10 & 0x800000000000000L) != 0L) { jjmatchedKind = 699; @@ -2242,63 +2246,63 @@ else if ((active10 & 0x800000000000000L) != 0L) case 80: case 112: if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 693, 97); + return jjStartNfaWithStates_1(6, 693, 94); return jjMoveStringLiteralDfa7_1(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(6, 159, 97); + return jjStartNfaWithStates_1(6, 159, 94); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(6, 275, 97); + return jjStartNfaWithStates_1(6, 275, 94); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(6, 280, 97); + return jjStartNfaWithStates_1(6, 280, 94); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(6, 283, 97); + return jjStartNfaWithStates_1(6, 283, 94); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 320, 97); + return jjStartNfaWithStates_1(6, 320, 94); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 534, 97); + return jjStartNfaWithStates_1(6, 534, 94); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 696, 97); + return jjStartNfaWithStates_1(6, 696, 94); else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_1(6, 714, 97); + return jjStartNfaWithStates_1(6, 714, 94); 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) - return jjStartNfaWithStates_1(6, 326, 97); + return jjStartNfaWithStates_1(6, 326, 94); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(6, 345, 97); + return jjStartNfaWithStates_1(6, 345, 94); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_1(6, 392, 97); + return jjStartNfaWithStates_1(6, 392, 94); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(6, 484, 97); + return jjStartNfaWithStates_1(6, 484, 94); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_1(6, 516, 97); + return jjStartNfaWithStates_1(6, 516, 94); else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 722, 97); + return jjStartNfaWithStates_1(6, 722, 94); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(6, 87, 97); + return jjStartNfaWithStates_1(6, 87, 94); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(6, 109, 97); + return jjStartNfaWithStates_1(6, 109, 94); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -2310,28 +2314,28 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 186, 97); + return jjStartNfaWithStates_1(6, 186, 94); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 210, 97); + return jjStartNfaWithStates_1(6, 210, 94); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(6, 474, 97); + return jjStartNfaWithStates_1(6, 474, 94); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(6, 475, 97); + return jjStartNfaWithStates_1(6, 475, 94); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(6, 551, 97); + return jjStartNfaWithStates_1(6, 551, 94); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 639, 97); + return jjStartNfaWithStates_1(6, 639, 94); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(6, 673, 97); + return jjStartNfaWithStates_1(6, 673, 94); else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 697, 97); + return jjStartNfaWithStates_1(6, 697, 94); else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_1(6, 712, 97); + return jjStartNfaWithStates_1(6, 712, 94); 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, 0x400120a0000L); case 85: case 117: @@ -2345,17 +2349,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 64, 97); + return jjStartNfaWithStates_1(6, 64, 94); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 312, 97); + return jjStartNfaWithStates_1(6, 312, 94); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(6, 404, 97); + return jjStartNfaWithStates_1(6, 404, 94); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 443, 97); + return jjStartNfaWithStates_1(6, 443, 94); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 448, 97); + return jjStartNfaWithStates_1(6, 448, 94); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 662, 97); + return jjStartNfaWithStates_1(6, 662, 94); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -2381,9 +2385,9 @@ private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(7, 552, 97); + return jjStartNfaWithStates_1(7, 552, 94); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(7, 555, 97); + return jjStartNfaWithStates_1(7, 555, 94); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -2398,83 +2402,83 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 57, 97); + return jjStartNfaWithStates_1(7, 57, 94); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(7, 156, 97); + return jjStartNfaWithStates_1(7, 156, 94); else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 738, 97); + return jjStartNfaWithStates_1(7, 738, 94); 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: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_1(7, 6, 97); + return jjStartNfaWithStates_1(7, 6, 94); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(7, 13, 97); + return jjStartNfaWithStates_1(7, 13, 94); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(7, 80, 97); + return jjStartNfaWithStates_1(7, 80, 94); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(7, 108, 97); + return jjStartNfaWithStates_1(7, 108, 94); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_1(7, 135, 97); + return jjStartNfaWithStates_1(7, 135, 94); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 167, 97); + return jjStartNfaWithStates_1(7, 167, 94); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(7, 272, 97); + return jjStartNfaWithStates_1(7, 272, 94); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(7, 299, 97); + return jjStartNfaWithStates_1(7, 299, 94); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(7, 302, 97); + return jjStartNfaWithStates_1(7, 302, 94); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_1(7, 331, 97); + return jjStartNfaWithStates_1(7, 331, 94); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 346, 97); + return jjStartNfaWithStates_1(7, 346, 94); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 374, 97); + return jjStartNfaWithStates_1(7, 374, 94); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 441, 97); + return jjStartNfaWithStates_1(7, 441, 94); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(7, 469, 97); + return jjStartNfaWithStates_1(7, 469, 94); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(7, 524, 97); + return jjStartNfaWithStates_1(7, 524, 94); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(7, 547, 97); + return jjStartNfaWithStates_1(7, 547, 94); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(7, 556, 97); + return jjStartNfaWithStates_1(7, 556, 94); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(7, 660, 97); + return jjStartNfaWithStates_1(7, 660, 94); else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(7, 721, 97); + return jjStartNfaWithStates_1(7, 721, 94); 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) - return jjStartNfaWithStates_1(7, 692, 97); + return jjStartNfaWithStates_1(7, 692, 94); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 189, 97); + return jjStartNfaWithStates_1(7, 189, 94); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 245, 97); + return jjStartNfaWithStates_1(7, 245, 94); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_1(7, 395, 97); + return jjStartNfaWithStates_1(7, 395, 94); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_1(7, 642, 97); + return jjStartNfaWithStates_1(7, 642, 94); 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) - return jjStartNfaWithStates_1(7, 174, 97); + return jjStartNfaWithStates_1(7, 174, 94); 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: @@ -2485,20 +2489,20 @@ else if ((active10 & 0x4L) != 0L) case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(7, 489, 97); + return jjStartNfaWithStates_1(7, 489, 94); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(7, 209, 97); + return jjStartNfaWithStates_1(7, 209, 94); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(7, 278, 97); + return jjStartNfaWithStates_1(7, 278, 94); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 359, 97); + return jjStartNfaWithStates_1(7, 359, 94); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_1(7, 581, 97); + return jjStartNfaWithStates_1(7, 581, 94); else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(7, 734, 97); + return jjStartNfaWithStates_1(7, 734, 94); 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, 0x8000000L); case 77: case 109: @@ -2506,7 +2510,7 @@ else if ((active11 & 0x40000000L) != 0L) case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 231, 97); + return jjStartNfaWithStates_1(7, 231, 94); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; @@ -2519,14 +2523,14 @@ else if ((active6 & 0x4000000000000L) != 0L) case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 694, 97); + return jjStartNfaWithStates_1(7, 694, 94); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(7, 554, 97); + return jjStartNfaWithStates_1(7, 554, 94); else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_1(7, 706, 97); + return jjStartNfaWithStates_1(7, 706, 94); 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: @@ -2536,32 +2540,32 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 154, 97); + return jjStartNfaWithStates_1(7, 154, 94); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(7, 333, 97); + return jjStartNfaWithStates_1(7, 333, 94); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(7, 348, 97); + return jjStartNfaWithStates_1(7, 348, 94); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(7, 403, 97); + return jjStartNfaWithStates_1(7, 403, 94); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 437, 97); + return jjStartNfaWithStates_1(7, 437, 94); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_1(7, 450, 97); + return jjStartNfaWithStates_1(7, 450, 94); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 615, 97); + return jjStartNfaWithStates_1(7, 615, 94); 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) - return jjStartNfaWithStates_1(7, 175, 97); + return jjStartNfaWithStates_1(7, 175, 94); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 354, 97); + return jjStartNfaWithStates_1(7, 354, 94); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(7, 476, 97); + return jjStartNfaWithStates_1(7, 476, 94); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 538, 97); + return jjStartNfaWithStates_1(7, 538, 94); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(7, 661, 97); + return jjStartNfaWithStates_1(7, 661, 94); return jjMoveStringLiteralDfa8_1(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); case 85: case 117: @@ -2572,31 +2576,31 @@ else if ((active10 & 0x200000L) != 0L) case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(7, 172, 97); + return jjStartNfaWithStates_1(7, 172, 94); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(7, 466, 97); + return jjStartNfaWithStates_1(7, 466, 94); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(7, 236, 97); + return jjStartNfaWithStates_1(7, 236, 94); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 253, 97); + return jjStartNfaWithStates_1(7, 253, 94); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(7, 467, 97); + return jjStartNfaWithStates_1(7, 467, 94); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(7, 468, 97); + return jjStartNfaWithStates_1(7, 468, 94); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 503, 97); + return jjStartNfaWithStates_1(7, 503, 94); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_1(7, 518, 97); + return jjStartNfaWithStates_1(7, 518, 94); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 627, 97); + return jjStartNfaWithStates_1(7, 627, 94); else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 730, 97); + return jjStartNfaWithStates_1(7, 730, 94); 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: @@ -2625,23 +2629,23 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_1(8, 578, 97); + return jjStartNfaWithStates_1(8, 578, 94); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(8, 618, 97); + return jjStartNfaWithStates_1(8, 618, 94); 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) - return jjStartNfaWithStates_1(8, 93, 97); + return jjStartNfaWithStates_1(8, 93, 94); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(8, 235, 97); + return jjStartNfaWithStates_1(8, 235, 94); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(8, 666, 97); + return jjStartNfaWithStates_1(8, 666, 94); else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 732, 97); + return jjStartNfaWithStates_1(8, 732, 94); 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: @@ -2651,7 +2655,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_1(8, 192, 97); + return jjStartNfaWithStates_1(8, 192, 94); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -2668,15 +2672,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 371, 97); + return jjStartNfaWithStates_1(8, 371, 94); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 446, 97); + return jjStartNfaWithStates_1(8, 446, 94); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_1(8, 456, 97); + return jjStartNfaWithStates_1(8, 456, 94); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_1(8, 522, 97); + return jjStartNfaWithStates_1(8, 522, 94); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(8, 607, 97); + return jjStartNfaWithStates_1(8, 607, 94); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -2686,31 +2690,31 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_1(8, 137, 97); + return jjStartNfaWithStates_1(8, 137, 94); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 630, 97); + return jjStartNfaWithStates_1(8, 630, 94); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(8, 22, 97); + return jjStartNfaWithStates_1(8, 22, 94); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_1(8, 202, 97); + return jjStartNfaWithStates_1(8, 202, 94); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(8, 219, 97); + return jjStartNfaWithStates_1(8, 219, 94); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_1(8, 262, 97); + return jjStartNfaWithStates_1(8, 262, 94); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 438, 97); + return jjStartNfaWithStates_1(8, 438, 94); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(8, 483, 97); + return jjStartNfaWithStates_1(8, 483, 94); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(8, 737, 97); + return jjStartNfaWithStates_1(8, 737, 94); 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: @@ -2718,12 +2722,12 @@ else if ((active11 & 0x200000000L) != 0L) case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(8, 42, 97); + return jjStartNfaWithStates_1(8, 42, 94); 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, 0x81000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(8, 145, 97); + return jjStartNfaWithStates_1(8, 145, 94); break; case 76: case 108: @@ -2739,7 +2743,7 @@ else if ((active11 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(8, 29, 97); + return jjStartNfaWithStates_1(8, 29, 94); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -2751,13 +2755,13 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_1(8, 200, 97); + return jjStartNfaWithStates_1(8, 200, 94); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 284, 97); + return jjStartNfaWithStates_1(8, 284, 94); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(8, 415, 97); + return jjStartNfaWithStates_1(8, 415, 94); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 439, 97); + return jjStartNfaWithStates_1(8, 439, 94); 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: @@ -2765,7 +2769,7 @@ else if ((active6 & 0x80000000000000L) != 0L) case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 113, 97); + return jjStartNfaWithStates_1(8, 113, 94); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; @@ -2783,18 +2787,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(8, 146, 97); + return jjStartNfaWithStates_1(8, 146, 94); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_1(8, 264, 97); + return jjStartNfaWithStates_1(8, 264, 94); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_1(8, 523, 97); + return jjStartNfaWithStates_1(8, 523, 94); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_1(8, 577, 97); + return jjStartNfaWithStates_1(8, 577, 94); return jjMoveStringLiteralDfa9_1(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -2802,24 +2806,24 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 118, 97); + return jjStartNfaWithStates_1(8, 118, 94); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_1(8, 263, 97); + return jjStartNfaWithStates_1(8, 263, 94); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 496, 97); + return jjStartNfaWithStates_1(8, 496, 94); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 500, 97); + return jjStartNfaWithStates_1(8, 500, 94); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 504, 97); + return jjStartNfaWithStates_1(8, 504, 94); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(8, 559, 97); + return jjStartNfaWithStates_1(8, 559, 94); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(8, 601, 97); + return jjStartNfaWithStates_1(8, 601, 94); 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: @@ -2830,29 +2834,29 @@ else if ((active9 & 0x2000000L) != 0L) case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(8, 226, 97); + return jjStartNfaWithStates_1(8, 226, 94); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(8, 460, 97); + return jjStartNfaWithStates_1(8, 460, 94); return jjMoveStringLiteralDfa9_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 248, 97); + return jjStartNfaWithStates_1(8, 248, 94); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_1(8, 266, 97); + return jjStartNfaWithStates_1(8, 266, 94); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(8, 461, 97); + return jjStartNfaWithStates_1(8, 461, 94); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 625, 97); + return jjStartNfaWithStates_1(8, 625, 94); else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 695, 97); + return jjStartNfaWithStates_1(8, 695, 94); else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 702, 97); + return jjStartNfaWithStates_1(8, 702, 94); else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(8, 724, 97); + return jjStartNfaWithStates_1(8, 724, 94); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -2881,62 +2885,62 @@ private final int jjMoveStringLiteralDfa9_1(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(9, 31, 97); + return jjStartNfaWithStates_1(9, 31, 94); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_1(9, 138, 97); + return jjStartNfaWithStates_1(9, 138, 94); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 631, 97); + return jjStartNfaWithStates_1(9, 631, 94); return jjMoveStringLiteralDfa10_1(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(9, 358, 97); + return jjStartNfaWithStates_1(9, 358, 94); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 369, 97); + return jjStartNfaWithStates_1(9, 369, 94); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(9, 28, 97); + return jjStartNfaWithStates_1(9, 28, 94); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(9, 148, 97); + return jjStartNfaWithStates_1(9, 148, 94); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 155, 97); + return jjStartNfaWithStates_1(9, 155, 94); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(9, 294, 97); + return jjStartNfaWithStates_1(9, 294, 94); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(9, 295, 97); + return jjStartNfaWithStates_1(9, 295, 94); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 305, 97); + return jjStartNfaWithStates_1(9, 305, 94); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(9, 465, 97); + return jjStartNfaWithStates_1(9, 465, 94); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(9, 471, 97); + return jjStartNfaWithStates_1(9, 471, 94); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 511, 97); + return jjStartNfaWithStates_1(9, 511, 94); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(9, 558, 97); + return jjStartNfaWithStates_1(9, 558, 94); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(9, 612, 97); + return jjStartNfaWithStates_1(9, 612, 94); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(9, 623, 97); + return jjStartNfaWithStates_1(9, 623, 94); else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(9, 727, 97); + return jjStartNfaWithStates_1(9, 727, 94); else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(9, 729, 97); + return jjStartNfaWithStates_1(9, 729, 94); else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 731, 97); + return jjStartNfaWithStates_1(9, 731, 94); 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) - return jjStartNfaWithStates_1(9, 405, 97); + return jjStartNfaWithStates_1(9, 405, 94); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(9, 548, 97); + return jjStartNfaWithStates_1(9, 548, 94); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(9, 606, 97); + return jjStartNfaWithStates_1(9, 606, 94); else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 700, 97); + return jjStartNfaWithStates_1(9, 700, 94); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -2947,7 +2951,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(9, 162, 97); + return jjStartNfaWithStates_1(9, 162, 94); 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, 0x80010L); case 76: case 108: @@ -2955,7 +2959,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(9, 342, 97); + return jjStartNfaWithStates_1(9, 342, 94); return jjMoveStringLiteralDfa10_1(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -2971,53 +2975,53 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 114, 97); + return jjStartNfaWithStates_1(9, 114, 94); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 603, 97); + return jjStartNfaWithStates_1(9, 603, 94); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(9, 76, 97); + return jjStartNfaWithStates_1(9, 76, 94); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(9, 169, 97); + return jjStartNfaWithStates_1(9, 169, 94); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(9, 298, 97); + return jjStartNfaWithStates_1(9, 298, 94); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 497, 97); + return jjStartNfaWithStates_1(9, 497, 94); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(9, 35, 97); + return jjStartNfaWithStates_1(9, 35, 94); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_1(9, 74, 97); + return jjStartNfaWithStates_1(9, 74, 94); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 445, 97); + return jjStartNfaWithStates_1(9, 445, 94); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_1(9, 458, 97); + return jjStartNfaWithStates_1(9, 458, 94); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_1(9, 648, 97); + return jjStartNfaWithStates_1(9, 648, 94); else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(9, 741, 97); + return jjStartNfaWithStates_1(9, 741, 94); else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(9, 746, 97); + return jjStartNfaWithStates_1(9, 746, 94); 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: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(9, 30, 97); + return jjStartNfaWithStates_1(9, 30, 94); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(9, 173, 97); + return jjStartNfaWithStates_1(9, 173, 94); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(9, 462, 97); + return jjStartNfaWithStates_1(9, 462, 94); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(9, 549, 97); + return jjStartNfaWithStates_1(9, 549, 94); 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: @@ -3028,7 +3032,7 @@ else if ((active8 & 0x2000000000L) != 0L) case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 314, 97); + return jjStartNfaWithStates_1(9, 314, 94); break; case 89: case 121: @@ -3038,13 +3042,13 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(9, 293, 97); + return jjStartNfaWithStates_1(9, 293, 94); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(9, 397, 97); + return jjStartNfaWithStates_1(9, 397, 94); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(9, 550, 97); + return jjStartNfaWithStates_1(9, 550, 94); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(9, 658, 97); + return jjStartNfaWithStates_1(9, 658, 94); 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: @@ -3073,41 +3077,41 @@ private final int jjMoveStringLiteralDfa10_1(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_1(10, 579, 97); + return jjStartNfaWithStates_1(10, 579, 94); return jjMoveStringLiteralDfa11_1(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(10, 225, 97); + return jjStartNfaWithStates_1(10, 225, 94); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(10, 340, 97); + return jjStartNfaWithStates_1(10, 340, 94); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(10, 341, 97); + return jjStartNfaWithStates_1(10, 341, 94); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(10, 667, 97); + return jjStartNfaWithStates_1(10, 667, 94); 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) - return jjStartNfaWithStates_1(10, 40, 97); + return jjStartNfaWithStates_1(10, 40, 94); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(10, 89, 97); + return jjStartNfaWithStates_1(10, 89, 94); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_1(10, 132, 97); + return jjStartNfaWithStates_1(10, 132, 94); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 216, 97); + return jjStartNfaWithStates_1(10, 216, 94); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(10, 270, 97); + return jjStartNfaWithStates_1(10, 270, 94); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 508, 97); + return jjStartNfaWithStates_1(10, 508, 94); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(10, 527, 97); + return jjStartNfaWithStates_1(10, 527, 94); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(10, 620, 97); + return jjStartNfaWithStates_1(10, 620, 94); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 624, 97); + return jjStartNfaWithStates_1(10, 624, 94); else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(10, 735, 97); + return jjStartNfaWithStates_1(10, 735, 94); 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: @@ -3115,14 +3119,14 @@ else if ((active11 & 0x80000000L) != 0L) case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_1(10, 459, 97); + return jjStartNfaWithStates_1(10, 459, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_1(10, 67, 97); + return jjStartNfaWithStates_1(10, 67, 94); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(10, 418, 97); + return jjStartNfaWithStates_1(10, 418, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 73: case 105: @@ -3130,9 +3134,9 @@ else if ((active6 & 0x400000000L) != 0L) case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(10, 95, 97); + return jjStartNfaWithStates_1(10, 95, 94); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(10, 557, 97); + return jjStartNfaWithStates_1(10, 557, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -3140,18 +3144,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(10, 168, 97); + return jjStartNfaWithStates_1(10, 168, 94); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(10, 553, 97); + return jjStartNfaWithStates_1(10, 553, 94); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_1(10, 651, 97); + return jjStartNfaWithStates_1(10, 651, 94); else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 728, 97); + return jjStartNfaWithStates_1(10, 728, 94); 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: @@ -3159,9 +3163,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(10, 604, 97); + return jjStartNfaWithStates_1(10, 604, 94); else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(10, 726, 97); + return jjStartNfaWithStates_1(10, 726, 94); 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: @@ -3169,22 +3173,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(10, 105, 97); + return jjStartNfaWithStates_1(10, 105, 94); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 560, 97); + return jjStartNfaWithStates_1(10, 560, 94); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(10, 597, 97); + return jjStartNfaWithStates_1(10, 597, 94); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(10, 621, 97); + return jjStartNfaWithStates_1(10, 621, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(10, 104, 97); + return jjStartNfaWithStates_1(10, 104, 94); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(10, 171, 97); + return jjStartNfaWithStates_1(10, 171, 94); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(10, 290, 97); + return jjStartNfaWithStates_1(10, 290, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -3194,11 +3198,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 501, 97); + return jjStartNfaWithStates_1(10, 501, 94); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_1(10, 585, 97); + return jjStartNfaWithStates_1(10, 585, 94); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(10, 610, 97); + return jjStartNfaWithStates_1(10, 610, 94); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -3206,7 +3210,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 125, 97); + return jjStartNfaWithStates_1(10, 125, 94); break; case 88: case 120: @@ -3214,11 +3218,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 55, 97); + return jjStartNfaWithStates_1(10, 55, 94); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_1(10, 257, 97); + return jjStartNfaWithStates_1(10, 257, 94); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_1(10, 586, 97); + return jjStartNfaWithStates_1(10, 586, 94); break; default : break; @@ -3241,7 +3245,7 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_1(11, 512, 97); + return jjStartNfaWithStates_1(11, 512, 94); return jjMoveStringLiteralDfa12_1(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -3252,31 +3256,31 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 633, 97); + return jjStartNfaWithStates_1(11, 633, 94); return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 61, 97); + return jjStartNfaWithStates_1(11, 61, 94); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 121, 97); + return jjStartNfaWithStates_1(11, 121, 94); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 124, 97); + return jjStartNfaWithStates_1(11, 124, 94); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(11, 273, 97); + return jjStartNfaWithStates_1(11, 273, 94); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(11, 493, 97); + return jjStartNfaWithStates_1(11, 493, 94); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(11, 525, 97); + return jjStartNfaWithStates_1(11, 525, 94); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(11, 544, 97); + return jjStartNfaWithStates_1(11, 544, 94); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(11, 655, 97); + return jjStartNfaWithStates_1(11, 655, 94); return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -3287,9 +3291,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 123, 97); + return jjStartNfaWithStates_1(11, 123, 94); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 381, 97); + return jjStartNfaWithStates_1(11, 381, 94); break; case 73: case 105: @@ -3297,14 +3301,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(11, 426, 97); + return jjStartNfaWithStates_1(11, 426, 94); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(11, 594, 97); + return jjStartNfaWithStates_1(11, 594, 94); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 502, 97); + return jjStartNfaWithStates_1(11, 502, 94); return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -3312,11 +3316,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(11, 77, 97); + return jjStartNfaWithStates_1(11, 77, 94); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(11, 277, 97); + return jjStartNfaWithStates_1(11, 277, 94); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(11, 546, 97); + return jjStartNfaWithStates_1(11, 546, 94); return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -3327,17 +3331,17 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_1(11, 130, 97); + return jjStartNfaWithStates_1(11, 130, 94); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_1(11, 328, 97); + return jjStartNfaWithStates_1(11, 328, 94); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(11, 529, 97); + return jjStartNfaWithStates_1(11, 529, 94); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_1(11, 580, 97); + return jjStartNfaWithStates_1(11, 580, 94); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(11, 588, 97); + return jjStartNfaWithStates_1(11, 588, 94); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(11, 595, 97); + return jjStartNfaWithStates_1(11, 595, 94); return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); case 83: case 115: @@ -3345,13 +3349,13 @@ else if ((active9 & 0x80000L) != 0L) case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 244, 97); + return jjStartNfaWithStates_1(11, 244, 94); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(11, 338, 97); + return jjStartNfaWithStates_1(11, 338, 94); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_1(11, 582, 97); + return jjStartNfaWithStates_1(11, 582, 94); else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_1(11, 708, 97); + return jjStartNfaWithStates_1(11, 708, 94); return jjMoveStringLiteralDfa12_1(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: @@ -3359,7 +3363,7 @@ else if ((active11 & 0x10L) != 0L) case 89: case 121: if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(11, 723, 97); + return jjStartNfaWithStates_1(11, 723, 94); break; default : break; @@ -3385,7 +3389,7 @@ private final int jjMoveStringLiteralDfa12_1(long old0, long active0, long old1, case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(12, 170, 97); + return jjStartNfaWithStates_1(12, 170, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -3393,26 +3397,26 @@ private final int jjMoveStringLiteralDfa12_1(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(12, 543, 97); + return jjStartNfaWithStates_1(12, 543, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(12, 140, 97); + return jjStartNfaWithStates_1(12, 140, 94); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(12, 634, 97); + return jjStartNfaWithStates_1(12, 634, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(12, 111, 97); + return jjStartNfaWithStates_1(12, 111, 94); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(12, 289, 97); + return jjStartNfaWithStates_1(12, 289, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(12, 591, 97); + return jjStartNfaWithStates_1(12, 591, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -3420,7 +3424,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(12, 668, 97); + return jjStartNfaWithStates_1(12, 668, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -3428,9 +3432,9 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(12, 36, 97); + return jjStartNfaWithStates_1(12, 36, 94); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_1(12, 193, 97); + return jjStartNfaWithStates_1(12, 193, 94); return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: @@ -3438,12 +3442,12 @@ else if ((active3 & 0x2L) != 0L) case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_1(12, 584, 97); + return jjStartNfaWithStates_1(12, 584, 94); 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) - return jjStartNfaWithStates_1(12, 637, 97); + return jjStartNfaWithStates_1(12, 637, 94); return jjMoveStringLiteralDfa13_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -3457,7 +3461,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(12, 596, 97); + return jjStartNfaWithStates_1(12, 596, 94); break; default : break; @@ -3480,11 +3484,11 @@ private final int jjMoveStringLiteralDfa13_1(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 126, 97); + return jjStartNfaWithStates_1(13, 126, 94); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(13, 494, 97); + return jjStartNfaWithStates_1(13, 494, 94); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(13, 656, 97); + return jjStartNfaWithStates_1(13, 656, 94); 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: @@ -3492,38 +3496,38 @@ else if ((active10 & 0x10000L) != 0L) case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(13, 143, 97); + return jjStartNfaWithStates_1(13, 143, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(13, 593, 97); + return jjStartNfaWithStates_1(13, 593, 94); return jjMoveStringLiteralDfa14_1(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(13, 85, 97); + return jjStartNfaWithStates_1(13, 85, 94); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(13, 408, 97); + return jjStartNfaWithStates_1(13, 408, 94); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(13, 409, 97); + return jjStartNfaWithStates_1(13, 409, 94); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(13, 590, 97); + return jjStartNfaWithStates_1(13, 590, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 635, 97); + return jjStartNfaWithStates_1(13, 635, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(13, 292, 97); + return jjStartNfaWithStates_1(13, 292, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(13, 336, 97); + return jjStartNfaWithStates_1(13, 336, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -3537,7 +3541,7 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_1(13, 258, 97); + return jjStartNfaWithStates_1(13, 258, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); case 79: case 111: @@ -3545,7 +3549,7 @@ else if ((active9 & 0x4000L) != 0L) case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 319, 97); + return jjStartNfaWithStates_1(13, 319, 94); break; case 82: case 114: @@ -3553,17 +3557,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 510, 97); + return jjStartNfaWithStates_1(13, 510, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(13, 463, 97); + return jjStartNfaWithStates_1(13, 463, 94); return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 435, 97); + return jjStartNfaWithStates_1(13, 435, 94); break; case 89: case 121: @@ -3595,34 +3599,34 @@ private final int jjMoveStringLiteralDfa14_1(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(14, 425, 97); + return jjStartNfaWithStates_1(14, 425, 94); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 636, 97); + return jjStartNfaWithStates_1(14, 636, 94); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(14, 99, 97); + return jjStartNfaWithStates_1(14, 99, 94); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(14, 102, 97); + return jjStartNfaWithStates_1(14, 102, 94); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_1(14, 329, 97); + return jjStartNfaWithStates_1(14, 329, 94); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 638, 97); + return jjStartNfaWithStates_1(14, 638, 94); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 120, 97); + return jjStartNfaWithStates_1(14, 120, 94); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(14, 492, 97); + return jjStartNfaWithStates_1(14, 492, 94); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(14, 654, 97); + return jjStartNfaWithStates_1(14, 654, 94); return jjMoveStringLiteralDfa15_1(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(14, 480, 97); + return jjStartNfaWithStates_1(14, 480, 94); break; case 73: case 105: @@ -3636,11 +3640,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(14, 41, 97); + return jjStartNfaWithStates_1(14, 41, 94); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_1(14, 327, 97); + return jjStartNfaWithStates_1(14, 327, 94); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(14, 609, 97); + return jjStartNfaWithStates_1(14, 609, 94); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -3648,23 +3652,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(14, 107, 97); + return jjStartNfaWithStates_1(14, 107, 94); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 575, 97); + return jjStartNfaWithStates_1(14, 575, 94); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(14, 592, 97); + return jjStartNfaWithStates_1(14, 592, 94); 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) - return jjStartNfaWithStates_1(14, 73, 97); + return jjStartNfaWithStates_1(14, 73, 94); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(14, 424, 97); + return jjStartNfaWithStates_1(14, 424, 94); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_1(14, 641, 97); + return jjStartNfaWithStates_1(14, 641, 94); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -3672,9 +3676,9 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(14, 614, 97); + return jjStartNfaWithStates_1(14, 614, 94); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_1(14, 650, 97); + return jjStartNfaWithStates_1(14, 650, 94); break; case 89: case 121: @@ -3700,7 +3704,7 @@ private final int jjMoveStringLiteralDfa15_1(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(15, 86, 97); + return jjStartNfaWithStates_1(15, 86, 94); return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -3714,12 +3718,12 @@ private final int jjMoveStringLiteralDfa15_1(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(15, 23, 97); + return jjStartNfaWithStates_1(15, 23, 94); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_1(15, 69, 97); + return jjStartNfaWithStates_1(15, 69, 94); break; case 76: case 108: @@ -3749,9 +3753,9 @@ else if ((active2 & 0x80000000000000L) != 0L) case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(15, 96, 97); + return jjStartNfaWithStates_1(15, 96, 94); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_1(15, 576, 97); + return jjStartNfaWithStates_1(15, 576, 94); 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: @@ -3791,17 +3795,17 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(16, 103, 97); + return jjStartNfaWithStates_1(16, 103, 94); return jjMoveStringLiteralDfa17_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(16, 482, 97); + return jjStartNfaWithStates_1(16, 482, 94); return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(16, 84, 97); + return jjStartNfaWithStates_1(16, 84, 94); break; case 72: case 104: @@ -3824,7 +3828,7 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_1(16, 128, 97); + return jjStartNfaWithStates_1(16, 128, 94); break; case 82: case 114: @@ -3848,12 +3852,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(16, 380, 97); + return jjStartNfaWithStates_1(16, 380, 94); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(16, 574, 97); + return jjStartNfaWithStates_1(16, 574, 94); break; default : break; @@ -3882,17 +3886,17 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_1(17, 71, 97); + return jjStartNfaWithStates_1(17, 71, 94); return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(17, 101, 97); + return jjStartNfaWithStates_1(17, 101, 94); return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(17, 570, 97); + return jjStartNfaWithStates_1(17, 570, 94); break; case 73: case 105: @@ -3939,11 +3943,11 @@ private final int jjMoveStringLiteralDfa18_1(long old0, long active0, long old1, case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(18, 571, 97); + return jjStartNfaWithStates_1(18, 571, 94); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_1(18, 587, 97); + return jjStartNfaWithStates_1(18, 587, 94); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(18, 589, 97); + return jjStartNfaWithStates_1(18, 589, 94); return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -3953,7 +3957,7 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_1(18, 644, 97); + return jjStartNfaWithStates_1(18, 644, 94); return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: @@ -4003,7 +4007,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_1(19, 72, 97); + return jjStartNfaWithStates_1(19, 72, 94); return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); case 67: case 99: @@ -4014,7 +4018,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(19, 337, 97); + return jjStartNfaWithStates_1(19, 337, 94); break; case 78: case 110: @@ -4034,7 +4038,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(19, 479, 97); + return jjStartNfaWithStates_1(19, 479, 94); break; default : break; @@ -4069,19 +4073,19 @@ private final int jjMoveStringLiteralDfa20_1(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(20, 91, 97); + return jjStartNfaWithStates_1(20, 91, 94); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(20, 184, 97); + return jjStartNfaWithStates_1(20, 184, 94); return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_1(20, 70, 97); + return jjStartNfaWithStates_1(20, 70, 94); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(20, 481, 97); + return jjStartNfaWithStates_1(20, 481, 94); return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); case 77: case 109: @@ -4101,7 +4105,7 @@ else if ((active2 & 0x100000000000000L) != 0L) case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(20, 24, 97); + return jjStartNfaWithStates_1(20, 24, 94); break; default : break; @@ -4130,16 +4134,16 @@ private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_1(21, 645, 97); + return jjStartNfaWithStates_1(21, 645, 94); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(21, 141, 97); + return jjStartNfaWithStates_1(21, 141, 94); else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(21, 682, 97); + return jjStartNfaWithStates_1(21, 682, 94); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(21, 683, 97); + return jjStartNfaWithStates_1(21, 683, 94); return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); case 70: case 102: @@ -4192,7 +4196,7 @@ private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(22, 412, 97); + return jjStartNfaWithStates_1(22, 412, 94); return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: @@ -4242,7 +4246,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, case 65: case 97: if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(23, 684, 97); + return jjStartNfaWithStates_1(23, 684, 94); break; case 67: case 99: @@ -4253,7 +4257,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_1(23, 646, 97); + return jjStartNfaWithStates_1(23, 646, 94); break; case 76: case 108: @@ -4270,7 +4274,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(23, 562, 97); + return jjStartNfaWithStates_1(23, 562, 94); return jjMoveStringLiteralDfa24_1(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -4297,7 +4301,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(24, 413, 97); + return jjStartNfaWithStates_1(24, 413, 94); break; case 68: case 100: @@ -4311,7 +4315,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, case 71: case 103: if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(24, 681, 97); + return jjStartNfaWithStates_1(24, 681, 94); break; case 73: case 105: @@ -4358,29 +4362,29 @@ private final int jjMoveStringLiteralDfa25_1(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(25, 564, 97); + return jjStartNfaWithStates_1(25, 564, 94); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(25, 563, 97); + return jjStartNfaWithStates_1(25, 563, 94); else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(25, 725, 97); + return jjStartNfaWithStates_1(25, 725, 94); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(25, 411, 97); + return jjStartNfaWithStates_1(25, 411, 94); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(25, 573, 97); + return jjStartNfaWithStates_1(25, 573, 94); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(25, 410, 97); + return jjStartNfaWithStates_1(25, 410, 94); return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: @@ -4412,12 +4416,12 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(26, 567, 97); + return jjStartNfaWithStates_1(26, 567, 94); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(26, 566, 97); + return jjStartNfaWithStates_1(26, 566, 94); break; case 71: case 103: @@ -4425,7 +4429,7 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(26, 142, 97); + return jjStartNfaWithStates_1(26, 142, 94); break; case 79: case 111: @@ -4479,7 +4483,7 @@ private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(28, 569, 97); + return jjStartNfaWithStates_1(28, 569, 94); break; case 69: case 101: @@ -4537,7 +4541,7 @@ private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old2, case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(30, 122, 97); + return jjStartNfaWithStates_1(30, 122, 94); return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -4558,7 +4562,7 @@ private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_1(31, 129, 97); + return jjStartNfaWithStates_1(31, 129, 94); return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x200000000000L); default : break; @@ -4598,7 +4602,7 @@ private final int jjMoveStringLiteralDfa33_1(long old11, long active11) case 84: case 116: if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(33, 749, 97); + return jjStartNfaWithStates_1(33, 749, 94); break; default : break; @@ -4692,8 +4696,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 828) + kind = 828; } else if (curChar == 34) jjCheckNAddTwoStates(30, 32); @@ -4701,14 +4705,14 @@ else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -4721,28 +4725,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 97: + case 94: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 97: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -4751,8 +4755,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -4775,8 +4779,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -4785,8 +4789,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -4801,14 +4805,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 95: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -4823,8 +4827,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 760) + kind = 760; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -4834,8 +4838,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -4860,8 +4864,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -4885,8 +4889,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -4904,30 +4908,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 763) + kind = 763; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 814) + kind = 814; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 814) + kind = 814; break; case 27: if (curChar == 13) @@ -4954,21 +4958,21 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 34 && kind > 817) - kind = 817; + if (curChar == 34 && kind > 819) + kind = 819; break; case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -4986,8 +4990,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -4997,26 +5001,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 828) + kind = 828; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(44); break; case 45: @@ -5030,8 +5034,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 754) + kind = 754; jjCheckNAdd(48); break; case 49: @@ -5045,22 +5049,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAddStates(35, 37); break; case 54: @@ -5078,8 +5082,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); break; case 58: @@ -5099,12 +5103,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 767) + kind = 767; break; case 67: case 69: @@ -5120,8 +5124,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 762) + kind = 762; break; case 72: if (curChar == 38) @@ -5144,8 +5148,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 825) + kind = 825; break; case 79: if (curChar == 32) @@ -5172,14 +5176,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 812) + kind = 812; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; default : break; @@ -5200,8 +5204,8 @@ else if (curChar == 123) jjAddStates(48, 55); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -5222,32 +5226,32 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 97: + case 94: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 95: + case 97: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -5262,8 +5266,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -5274,25 +5278,25 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 94: + case 95: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 770) + kind = 770; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 771) + kind = 771; } break; case 63: @@ -5343,22 +5347,22 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -5368,15 +5372,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -5401,32 +5405,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 770) + kind = 770; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 771) + kind = 771; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 772) + kind = 772; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 773) + kind = 773; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; break; default : break; } @@ -5446,8 +5450,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5456,8 +5460,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5465,11 +5469,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 97: + case 94: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5477,11 +5481,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 95: + case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5497,8 +5501,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5509,8 +5513,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5545,22 +5549,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -5570,15 +5574,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -5594,8 +5598,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 812) + kind = 812; break; default : break; } @@ -5621,98 +5625,98 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 0: if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; return 16; } - if ((active12 & 0x10L) != 0L) - return 94; - if ((active12 & 0x20000000L) != 0L) - return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 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 & 0xce55ef27efffL) != 0L) { - jjmatchedKind = 821; - return 95; + jjmatchedKind = 823; + return 94; } - if ((active12 & 0x90001000000L) != 0L) + if ((active12 & 0x40L) != 0L) + return 95; + if ((active12 & 0x80000000L) != 0L) + return 63; + if ((active12 & 0x240004000000L) != 0L) return 92; + if ((active12 & 0x100L) != 0L) + return 96; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x4e55ef27efffL) != 0L) - { - jjmatchedKind = 821; - return 97; - } if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x1000200000000L) != 0L) + { + jjmatchedKind = 823; return 97; - if ((active12 & 0x10000200L) != 0L) + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x800000000L) != 0L) + return 94; + if ((active12 & 0x40000800L) != 0L) return 98; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0x1800000L) != 0L) 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 ((active12 & 0x240000000000L) != 0L) + return 90; + 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 & 0xbefd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 1; } - return 97; + return 94; } - 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; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x14102a0110000L) != 0L) + return 94; 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 & 0x1d7fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 2; } - return 97; + return 94; } 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 94; 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 & 0x180100e3c7L) != 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 & 0x7fe7fefe0c38L) != 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 & 0x80180100e3c7L) != 0L) + return 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + 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 & 0x17fe7fefe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 97; + return 94; } - 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 & 0x430022204809L) != 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 & 0x3ce7ddde05b4L) != 0L) + return 94; + 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 & 0x13ce7ddde05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 4; } - return 97; + return 94; } if ((active2 & 0x8000000000000000L) != 0L) return 99; @@ -5722,44 +5726,44 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 5; } - return 97; + return 94; } - 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 & 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 & 0x10000001000a0L) != 0L) + return 94; if ((active2 & 0x8000000000000000L) != 0L) 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) - 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 6; } - return 97; + return 94; } + 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 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; 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 & 0x444020004L) != 0L) - return 97; + return 94; 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 & 0x24229bf80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 7; } - return 97; + return 94; } return -1; case 8: @@ -5767,38 +5771,38 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 8; } - return 97; + return 94; } 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 94; 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 & 0x200081680010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 9; } - return 97; + return 94; } 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 94; 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 & 0x81400000L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 10; } - return 97; + return 94; } return -1; case 11: @@ -5806,42 +5810,42 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 11; } - return 97; + return 94; } 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 94; 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 12; - return 97; + return 94; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 97; + return 94; return -1; 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 13; - return 97; + return 94; } 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 14; - return 97; + return 94; } return -1; case 15: @@ -5849,182 +5853,182 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 15; } - return 97; + return 94; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 97; + return 94; 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 (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 16; } - return 97; + return 94; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 97; + return 94; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 17; - return 97; + return 94; } return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) - return 97; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 18; } - return 97; + return 94; } 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 19; - return 97; + return 94; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 97; + return 94; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 20; - return 97; + return 94; } return -1; case 21: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 21; - return 97; + return 94; } if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 97; + return 94; return -1; case 22: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 22; - return 97; + return 94; } if ((active6 & 0x10000000L) != 0L) - return 97; + return 94; return -1; case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 23; - return 97; + return 94; } return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 24; - return 97; + return 94; } return -1; case 25: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 25; - return 97; + return 94; } if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 97; + return 94; return -1; case 26: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 26; - return 97; + return 94; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 97; + return 94; return -1; case 27: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 27; - return 97; + return 94; } return -1; case 28: if ((active8 & 0x200000000000000L) != 0L) - return 97; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 28; - return 97; + return 94; } return -1; case 29: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 29; - return 97; + return 94; } return -1; case 30: if ((active1 & 0x400000000000000L) != 0L) - return 97; + return 94; if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 30; - return 97; + return 94; } return -1; case 31: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 31; - return 97; + return 94; } if ((active2 & 0x2L) != 0L) - return 97; + return 94; return -1; case 32: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 32; - return 97; + return 94; } return -1; default : @@ -6049,57 +6053,57 @@ private final int jjMoveStringLiteralDfa0_0() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 34: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 36: - return jjStartNfaWithStates_0(0, 801, 97); + return jjStartNfaWithStates_0(0, 803, 94); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 795); case 39: - return jjStartNfaWithStates_0(0, 797, 63); + return jjStartNfaWithStates_0(0, 799, 63); case 40: - return jjStopAtPos(0, 766); + return jjStopAtPos(0, 768); case 41: - return jjStopAtPos(0, 767); + return jjStopAtPos(0, 769); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 790); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 780); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 794; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x240000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 62: - jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 784); case 91: - return jjStartNfaWithStates_0(0, 774, 96); + return jjStartNfaWithStates_0(0, 776, 96); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 777); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 802); case 65: case 97: jjmatchedKind = 3; @@ -6146,7 +6150,7 @@ private final int jjMoveStringLiteralDfa0_0() 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, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -6173,7 +6177,7 @@ private final int jjMoveStringLiteralDfa0_0() 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, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x80000c200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -6184,12 +6188,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, 772, 94); + return jjStartNfaWithStates_0(0, 774, 95); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 801; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 126: return jjStopAtPos(0, 2); default : @@ -6206,43 +6210,43 @@ private final int jjMoveStringLiteralDfa1_0(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x200000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 813; 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, 0x10000000000L); + 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, 0x40000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x40000000L) != 0L) + return jjStopAtPos(1, 798); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(1, 811); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x1000000000L) != 0L) + return jjStopAtPos(1, 804); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) - return jjStopAtPos(1, 785); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); else if ((active12 & 0x80000L) != 0L) return jjStopAtPos(1, 787); + else if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 62: - 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); + if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); + else if ((active12 & 0x1000000L) != 0L) + return jjStopAtPos(1, 792); + else if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); 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, 0x200443c40000L, 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, 0xa00443c40000L, 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); @@ -6263,7 +6267,7 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedPos = 1; } else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(1, 720, 97); + return jjStartNfaWithStates_0(1, 720, 94); return jjMoveStringLiteralDfa2_0(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); case 71: case 103: @@ -6291,7 +6295,7 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(1, 316, 97); + return jjStartNfaWithStates_0(1, 316, 94); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; @@ -6315,7 +6319,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, 0x140a300008200L, 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); @@ -6363,11 +6367,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(1, 51, 97); + return jjStartNfaWithStates_0(1, 51, 94); 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 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; default : break; @@ -6386,13 +6390,13 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x40000000000L) != 0L) + return jjStopAtPos(2, 810); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_0(2, 8, 97); + return jjStartNfaWithStates_0(2, 8, 94); 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, 0x14100c006400L, active12, 0L); case 66: case 98: @@ -6400,7 +6404,7 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(2, 27, 97); + return jjStartNfaWithStates_0(2, 27, 94); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; @@ -6410,9 +6414,9 @@ else if ((active2 & 0x200000L) != 0L) case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_0(2, 9, 97); + return jjStartNfaWithStates_0(2, 9, 94); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(2, 17, 97); + return jjStartNfaWithStates_0(2, 17, 94); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -6424,16 +6428,16 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_0(2, 385, 97); + return jjStartNfaWithStates_0(2, 385, 94); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(2, 406, 97); + return jjStartNfaWithStates_0(2, 406, 94); 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); + return jjStartNfaWithStates_0(2, 20, 94); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_0(2, 388, 97); + return jjStartNfaWithStates_0(2, 388, 94); 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: @@ -6446,9 +6450,9 @@ else if ((active6 & 0x10L) != 0L) case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(2, 37, 97); + return jjStartNfaWithStates_0(2, 37, 94); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(2, 301, 97); + return jjStartNfaWithStates_0(2, 301, 94); 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: @@ -6456,8 +6460,8 @@ else if ((active4 & 0x200000000000L) != 0L) case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 432, 97); - return jjMoveStringLiteralDfa3_0(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_0(2, 432, 94); + return jjMoveStringLiteralDfa3_0(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x800000200800L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6477,12 +6481,12 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedPos = 2; } else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(2, 716, 97); + return jjStartNfaWithStates_0(2, 716, 94); 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, 0xa82000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(2, 616, 97); + return jjStartNfaWithStates_0(2, 616, 94); 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: @@ -6503,9 +6507,9 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 250, 97); + return jjStartNfaWithStates_0(2, 250, 94); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_0(2, 323, 97); + return jjStartNfaWithStates_0(2, 323, 94); return jjMoveStringLiteralDfa3_0(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); case 81: case 113: @@ -6534,18 +6538,18 @@ else if ((active6 & 0x4000000000L) != 0L) case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(2, 46, 97); + return jjStartNfaWithStates_0(2, 46, 94); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 177, 97); + return jjStartNfaWithStates_0(2, 177, 94); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(2, 237, 97); + return jjStartNfaWithStates_0(2, 237, 94); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 370, 97); + return jjStartNfaWithStates_0(2, 370, 94); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -6566,15 +6570,15 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 179, 97); + return jjStartNfaWithStates_0(2, 179, 94); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(2, 364, 97); + return jjStartNfaWithStates_0(2, 364, 94); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000000000L, active12, 0L); case 88: case 120: if ((active5 & 0x400L) != 0L) @@ -6586,14 +6590,14 @@ else if ((active7 & 0x800000000000L) != 0L) case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(2, 18, 97); + return jjStartNfaWithStates_0(2, 18, 94); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 180, 97); + return jjStartNfaWithStates_0(2, 180, 94); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; @@ -6627,7 +6631,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); case 56: if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(3, 686, 97); + return jjStartNfaWithStates_0(3, 686, 94); 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); @@ -6639,14 +6643,14 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, jjmatchedPos = 3; } 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, 0x400041000000L); + return jjStartNfaWithStates_0(3, 285, 94); + 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, 0x1400041000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(3, 47, 97); + return jjStartNfaWithStates_0(3, 47, 94); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(3, 78, 97); + return jjStartNfaWithStates_0(3, 78, 94); return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); case 67: case 99: @@ -6664,7 +6668,7 @@ else if ((active3 & 0x800L) != 0L) case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 249, 97); + return jjStartNfaWithStates_0(3, 249, 94); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -6676,61 +6680,61 @@ else if ((active7 & 0x20L) != 0L) jjmatchedPos = 3; } else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 689, 97); + return jjStartNfaWithStates_0(3, 689, 94); return jjMoveStringLiteralDfa4_0(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 58, 97); + return jjStartNfaWithStates_0(3, 58, 94); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 117, 97); + return jjStartNfaWithStates_0(3, 117, 94); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 187, 97); + return jjStartNfaWithStates_0(3, 187, 94); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(3, 227, 97); + return jjStartNfaWithStates_0(3, 227, 94); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(3, 353, 97); + return jjStartNfaWithStates_0(3, 353, 94); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(3, 367, 97); + return jjStartNfaWithStates_0(3, 367, 94); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(3, 488, 97); + return jjStartNfaWithStates_0(3, 488, 94); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(3, 536, 97); + return jjStartNfaWithStates_0(3, 536, 94); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(3, 539, 97); + return jjStartNfaWithStates_0(3, 539, 94); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(3, 659, 97); + return jjStartNfaWithStates_0(3, 659, 94); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(3, 664, 97); + return jjStartNfaWithStates_0(3, 664, 94); else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(3, 719, 97); + return jjStartNfaWithStates_0(3, 719, 94); 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) - return jjStartNfaWithStates_0(3, 26, 97); + return jjStartNfaWithStates_0(3, 26, 94); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_0(3, 521, 97); + return jjStartNfaWithStates_0(3, 521, 94); break; case 71: case 103: @@ -6738,11 +6742,11 @@ else if ((active8 & 0x200L) != 0L) case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 49, 97); + return jjStartNfaWithStates_0(3, 49, 94); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 185, 97); + return jjStartNfaWithStates_0(3, 185, 94); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(3, 420, 97); + return jjStartNfaWithStates_0(3, 420, 94); else if ((active11 & 0x40L) != 0L) { jjmatchedKind = 710; @@ -6755,16 +6759,16 @@ else if ((active11 & 0x40L) != 0L) case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_0(3, 452, 97); + return jjStartNfaWithStates_0(3, 452, 94); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_0(3, 519, 97); + return jjStartNfaWithStates_0(3, 519, 94); else if ((active10 & 0x8000000000000000L) != 0L) { jjmatchedKind = 703; jjmatchedPos = 3; } else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_0(3, 713, 97); + return jjStartNfaWithStates_0(3, 713, 94); return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); case 76: case 108: @@ -6779,21 +6783,21 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(3, 230, 97); + return jjStartNfaWithStates_0(3, 230, 94); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_0(3, 455, 97); + return jjStartNfaWithStates_0(3, 455, 94); else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(3, 739, 97); + return jjStartNfaWithStates_0(3, 739, 94); 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) - return jjStartNfaWithStates_0(3, 229, 97); + return jjStartNfaWithStates_0(3, 229, 94); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; @@ -6803,39 +6807,39 @@ else if ((active10 & 0x20000L) != 0L) case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(3, 286, 97); + return jjStartNfaWithStates_0(3, 286, 94); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_0(3, 390, 97); + return jjStartNfaWithStates_0(3, 390, 94); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(3, 431, 97); + return jjStartNfaWithStates_0(3, 431, 94); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 626, 97); + return jjStartNfaWithStates_0(3, 626, 94); else if ((active11 & 0x2L) != 0L) { jjmatchedKind = 705; jjmatchedPos = 3; } else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(3, 740, 97); + return jjStartNfaWithStates_0(3, 740, 94); 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); + return jjStartNfaWithStates_0(3, 240, 94); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(3, 279, 97); + return jjStartNfaWithStates_0(3, 279, 94); 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); + return jjStartNfaWithStates_0(3, 181, 94); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(3, 537, 97); + return jjStartNfaWithStates_0(3, 537, 94); 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, 0x800c020400L); case 81: case 113: @@ -6876,33 +6880,35 @@ else if ((active11 & 0x2000L) != 0L) case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(3, 147, 97); + return jjStartNfaWithStates_0(3, 147, 94); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 498, 97); + return jjStartNfaWithStates_0(3, 498, 94); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(3, 531, 97); + return jjStartNfaWithStates_0(3, 531, 94); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 628, 97); + return jjStartNfaWithStates_0(3, 628, 94); 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) - return jjStartNfaWithStates_0(3, 59, 97); + return jjStartNfaWithStates_0(3, 59, 94); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 309, 97); + return jjStartNfaWithStates_0(3, 309, 94); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(3, 365, 97); + return jjStartNfaWithStates_0(3, 365, 94); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_0(3, 386, 97); + return jjStartNfaWithStates_0(3, 386, 94); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(3, 419, 97); + return jjStartNfaWithStates_0(3, 419, 94); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(3, 598, 97); + return jjStartNfaWithStates_0(3, 598, 94); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(3, 751, 94); 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: @@ -6910,19 +6916,19 @@ else if ((active9 & 0x400000L) != 0L) case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 442, 97); + return jjStartNfaWithStates_0(3, 442, 94); 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) - return jjStartNfaWithStates_0(3, 533, 97); + return jjStartNfaWithStates_0(3, 533, 94); else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 701, 97); + return jjStartNfaWithStates_0(3, 701, 94); return jjMoveStringLiteralDfa4_0(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_0(3, 389, 97); + return jjStartNfaWithStates_0(3, 389, 94); return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); default : break; @@ -6942,11 +6948,11 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, { case 50: if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 688, 97); + return jjStartNfaWithStates_0(4, 688, 94); break; case 54: if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(4, 687, 97); + return jjStartNfaWithStates_0(4, 687, 94); 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, 0xd000000L); @@ -6956,68 +6962,68 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(4, 362, 97); + return jjStartNfaWithStates_0(4, 362, 94); 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 jjStartNfaWithStates_0(4, 744, 94); 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) - return jjStartNfaWithStates_0(4, 224, 97); + return jjStartNfaWithStates_0(4, 224, 94); return jjMoveStringLiteralDfa5_0(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(4, 79, 97); + return jjStartNfaWithStates_0(4, 79, 94); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_0(4, 133, 97); + return jjStartNfaWithStates_0(4, 133, 94); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(4, 211, 97); + return jjStartNfaWithStates_0(4, 211, 94); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 255, 97); + return jjStartNfaWithStates_0(4, 255, 94); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(4, 303, 97); + return jjStartNfaWithStates_0(4, 303, 94); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(4, 335, 97); + return jjStartNfaWithStates_0(4, 335, 94); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 372, 97); + return jjStartNfaWithStates_0(4, 372, 94); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_0(4, 451, 97); + return jjStartNfaWithStates_0(4, 451, 94); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(4, 487, 97); + return jjStartNfaWithStates_0(4, 487, 94); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 506, 97); + return jjStartNfaWithStates_0(4, 506, 94); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 541, 97); + return jjStartNfaWithStates_0(4, 541, 94); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(4, 608, 97); + return jjStartNfaWithStates_0(4, 608, 94); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(4, 679, 97); + return jjStartNfaWithStates_0(4, 679, 94); else if ((active10 & 0x4000000000000L) != 0L) { jjmatchedKind = 690; jjmatchedPos = 4; } else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_0(4, 707, 97); + return jjStartNfaWithStates_0(4, 707, 94); else if ((active11 & 0x800L) != 0L) { jjmatchedKind = 715; @@ -7027,21 +7033,21 @@ else if ((active11 & 0x800L) != 0L) case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(4, 164, 97); + return jjStartNfaWithStates_0(4, 164, 94); return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(4, 685, 97); + return jjStartNfaWithStates_0(4, 685, 94); 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) - return jjStartNfaWithStates_0(4, 163, 97); + return jjStartNfaWithStates_0(4, 163, 94); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_0(4, 194, 97); + return jjStartNfaWithStates_0(4, 194, 94); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(4, 212, 97); + return jjStartNfaWithStates_0(4, 212, 94); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -7055,29 +7061,29 @@ 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, 0x1046100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_0(4, 75, 97); + return jjStartNfaWithStates_0(4, 75, 94); return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(4, 81, 97); + return jjStartNfaWithStates_0(4, 81, 94); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(4, 214, 97); + return jjStartNfaWithStates_0(4, 214, 94); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(4, 300, 97); + return jjStartNfaWithStates_0(4, 300, 94); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 311, 97); + return jjStartNfaWithStates_0(4, 311, 94); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(4, 750, 97); + return jjStartNfaWithStates_0(4, 750, 94); 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: @@ -7085,16 +7091,16 @@ else if ((active11 & 0x400000000000L) != 0L) case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_0(4, 10, 97); + return jjStartNfaWithStates_0(4, 10, 94); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_0(4, 65, 97); + return jjStartNfaWithStates_0(4, 65, 94); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(4, 670, 97); + return jjStartNfaWithStates_0(4, 670, 94); 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: @@ -7110,88 +7116,88 @@ else if ((active10 & 0x40000000L) != 0L) case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_0(4, 11, 97); + return jjStartNfaWithStates_0(4, 11, 94); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(4, 15, 97); + return jjStartNfaWithStates_0(4, 15, 94); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_0(4, 196, 97); + return jjStartNfaWithStates_0(4, 196, 94); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(4, 218, 97); + return jjStartNfaWithStates_0(4, 218, 94); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_0(4, 267, 97); + return jjStartNfaWithStates_0(4, 267, 94); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_0(4, 321, 97); + return jjStartNfaWithStates_0(4, 321, 94); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(4, 361, 97); + return jjStartNfaWithStates_0(4, 361, 94); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(4, 400, 97); + return jjStartNfaWithStates_0(4, 400, 94); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 436, 97); + return jjStartNfaWithStates_0(4, 436, 94); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 444, 97); + return jjStartNfaWithStates_0(4, 444, 94); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 669, 97); + return jjStartNfaWithStates_0(4, 669, 94); else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(4, 677, 97); + return jjStartNfaWithStates_0(4, 677, 94); return jjMoveStringLiteralDfa5_0(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 116, 97); + return jjStartNfaWithStates_0(4, 116, 94); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 252, 97); + return jjStartNfaWithStates_0(4, 252, 94); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(4, 355, 97); + return jjStartNfaWithStates_0(4, 355, 94); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(4, 357, 97); + return jjStartNfaWithStates_0(4, 357, 94); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 376, 97); + return jjStartNfaWithStates_0(4, 376, 94); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_0(4, 454, 97); + return jjStartNfaWithStates_0(4, 454, 94); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(4, 532, 97); + return jjStartNfaWithStates_0(4, 532, 94); else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_0(4, 704, 97); + return jjStartNfaWithStates_0(4, 704, 94); else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 718, 97); + return jjStartNfaWithStates_0(4, 718, 94); return jjMoveStringLiteralDfa5_0(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 112, 97); + return jjStartNfaWithStates_0(4, 112, 94); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(4, 217, 97); + return jjStartNfaWithStates_0(4, 217, 94); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(4, 268, 97); + return jjStartNfaWithStates_0(4, 268, 94); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(4, 269, 97); + return jjStartNfaWithStates_0(4, 269, 94); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 315, 97); + return jjStartNfaWithStates_0(4, 315, 94); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(4, 429, 97); + return jjStartNfaWithStates_0(4, 429, 94); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(4, 473, 97); + return jjStartNfaWithStates_0(4, 473, 94); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(4, 486, 97); + return jjStartNfaWithStates_0(4, 486, 94); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(4, 599, 97); + return jjStartNfaWithStates_0(4, 599, 94); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(4, 652, 97); + return jjStartNfaWithStates_0(4, 652, 94); 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: @@ -7202,28 +7208,28 @@ else if ((active10 & 0x1000L) != 0L) case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 14, 97); + return jjStartNfaWithStates_0(4, 14, 94); 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 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 733, 97); + return jjStartNfaWithStates_0(4, 733, 94); 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: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(4, 19, 97); + return jjStartNfaWithStates_0(4, 19, 94); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 188, 97); + return jjStartNfaWithStates_0(4, 188, 94); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_0(4, 198, 97); + return jjStartNfaWithStates_0(4, 198, 94); else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(4, 745, 97); + return jjStartNfaWithStates_0(4, 745, 94); 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: @@ -7265,20 +7271,20 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 447, 97); + return jjStartNfaWithStates_0(5, 447, 94); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(5, 602, 97); + return jjStartNfaWithStates_0(5, 602, 94); 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) - return jjStartNfaWithStates_0(5, 54, 97); + return jjStartNfaWithStates_0(5, 54, 94); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(5, 208, 97); + return jjStartNfaWithStates_0(5, 208, 94); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(5, 339, 97); + return jjStartNfaWithStates_0(5, 339, 94); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(5, 427, 97); + return jjStartNfaWithStates_0(5, 427, 94); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; @@ -7288,62 +7294,62 @@ else if ((active8 & 0x8L) != 0L) case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(5, 38, 97); + return jjStartNfaWithStates_0(5, 38, 94); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 115, 97); + return jjStartNfaWithStates_0(5, 115, 94); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(5, 150, 97); + return jjStartNfaWithStates_0(5, 150, 94); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(5, 160, 97); + return jjStartNfaWithStates_0(5, 160, 94); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(5, 161, 97); + return jjStartNfaWithStates_0(5, 161, 94); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 178, 97); + return jjStartNfaWithStates_0(5, 178, 94); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_0(5, 197, 97); + return jjStartNfaWithStates_0(5, 197, 94); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 254, 97); + return jjStartNfaWithStates_0(5, 254, 94); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(5, 349, 97); + return jjStartNfaWithStates_0(5, 349, 94); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(5, 485, 97); + return jjStartNfaWithStates_0(5, 485, 94); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(5, 535, 97); + return jjStartNfaWithStates_0(5, 535, 94); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(5, 540, 97); + return jjStartNfaWithStates_0(5, 540, 94); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(5, 663, 97); + return jjStartNfaWithStates_0(5, 663, 94); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(5, 671, 97); + return jjStartNfaWithStates_0(5, 671, 94); else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(5, 676, 97); + return jjStartNfaWithStates_0(5, 676, 94); 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) - return jjStartNfaWithStates_0(5, 375, 97); + return jjStartNfaWithStates_0(5, 375, 94); return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 247, 97); + return jjStartNfaWithStates_0(5, 247, 94); 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); + return jjStartNfaWithStates_0(5, 310, 94); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_0(5, 514, 97); + return jjStartNfaWithStates_0(5, 514, 94); 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: @@ -7354,16 +7360,16 @@ else if ((active8 & 0x4L) != 0L) case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(5, 238, 97); + return jjStartNfaWithStates_0(5, 238, 94); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(5, 416, 97); + return jjStartNfaWithStates_0(5, 416, 94); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_0(5, 513, 97); + return jjStartNfaWithStates_0(5, 513, 94); 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) - return jjStartNfaWithStates_0(5, 605, 97); + return jjStartNfaWithStates_0(5, 605, 94); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -7373,16 +7379,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_0(5, 7, 97); + return jjStartNfaWithStates_0(5, 7, 94); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 176, 97); + return jjStartNfaWithStates_0(5, 176, 94); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(5, 232, 97); + return jjStartNfaWithStates_0(5, 232, 94); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -7394,7 +7400,7 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedPos = 5; } else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_0(5, 711, 97); + return jjStartNfaWithStates_0(5, 711, 94); 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: @@ -7402,7 +7408,7 @@ else if ((active11 & 0x80L) != 0L) case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(5, 490, 97); + return jjStartNfaWithStates_0(5, 490, 94); 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: @@ -7415,13 +7421,13 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(5, 213, 97); + return jjStartNfaWithStates_0(5, 213, 94); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(5, 334, 97); + return jjStartNfaWithStates_0(5, 334, 94); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 377, 97); + return jjStartNfaWithStates_0(5, 377, 94); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 505, 97); + return jjStartNfaWithStates_0(5, 505, 94); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; @@ -7431,28 +7437,28 @@ else if ((active8 & 0x4000L) != 0L) case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(5, 16, 97); + return jjStartNfaWithStates_0(5, 16, 94); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_0(5, 195, 97); + return jjStartNfaWithStates_0(5, 195, 94); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(5, 205, 97); + return jjStartNfaWithStates_0(5, 205, 94); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 246, 97); + return jjStartNfaWithStates_0(5, 246, 94); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(5, 352, 97); + return jjStartNfaWithStates_0(5, 352, 94); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 382, 97); + return jjStartNfaWithStates_0(5, 382, 94); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(5, 398, 97); + return jjStartNfaWithStates_0(5, 398, 94); else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 691, 97); + return jjStartNfaWithStates_0(5, 691, 94); 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) - return jjStartNfaWithStates_0(5, 5, 97); + return jjStartNfaWithStates_0(5, 5, 94); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(5, 44, 97); + return jjStartNfaWithStates_0(5, 44, 94); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -7464,27 +7470,29 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(5, 221, 97); + return jjStartNfaWithStates_0(5, 221, 94); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_0(5, 259, 97); + return jjStartNfaWithStates_0(5, 259, 94); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(5, 271, 97); + return jjStartNfaWithStates_0(5, 271, 94); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 379, 97); + return jjStartNfaWithStates_0(5, 379, 94); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_0(5, 384, 97); + return jjStartNfaWithStates_0(5, 384, 94); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(5, 401, 97); + return jjStartNfaWithStates_0(5, 401, 94); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(5, 477, 97); + return jjStartNfaWithStates_0(5, 477, 94); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_0(5, 520, 97); + return jjStartNfaWithStates_0(5, 520, 94); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(5, 611, 97); + return jjStartNfaWithStates_0(5, 611, 94); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(5, 675, 97); + return jjStartNfaWithStates_0(5, 675, 94); else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(5, 678, 97); + return jjStartNfaWithStates_0(5, 678, 94); + else if ((active11 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 752, 94); 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: @@ -7495,9 +7503,9 @@ else if ((active10 & 0x4000000000L) != 0L) case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(5, 282, 97); + return jjStartNfaWithStates_0(5, 282, 94); else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_0(5, 709, 97); + return jjStartNfaWithStates_0(5, 709, 94); return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -7505,13 +7513,13 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(5, 45, 97); + return jjStartNfaWithStates_0(5, 45, 94); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(5, 228, 97); + return jjStartNfaWithStates_0(5, 228, 94); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(5, 350, 97); + return jjStartNfaWithStates_0(5, 350, 94); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(5, 617, 97); + return jjStartNfaWithStates_0(5, 617, 94); 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: @@ -7534,7 +7542,7 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(6, 464, 97); + return jjStartNfaWithStates_0(6, 464, 94); 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); @@ -7552,20 +7560,20 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 378, 97); + return jjStartNfaWithStates_0(6, 378, 94); return jjMoveStringLiteralDfa7_0(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(6, 158, 97); + return jjStartNfaWithStates_0(6, 158, 94); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(6, 165, 97); + return jjStartNfaWithStates_0(6, 165, 94); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 242, 97); + return jjStartNfaWithStates_0(6, 242, 94); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_0(6, 325, 97); + return jjStartNfaWithStates_0(6, 325, 94); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(6, 674, 97); + return jjStartNfaWithStates_0(6, 674, 94); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); case 69: case 101: @@ -7575,41 +7583,41 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 82, 97); + return jjStartNfaWithStates_0(6, 82, 94); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(6, 152, 97); + return jjStartNfaWithStates_0(6, 152, 94); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_0(6, 201, 97); + return jjStartNfaWithStates_0(6, 201, 94); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(6, 204, 97); + return jjStartNfaWithStates_0(6, 204, 94); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_0(6, 261, 97); + return jjStartNfaWithStates_0(6, 261, 94); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(6, 428, 97); + return jjStartNfaWithStates_0(6, 428, 94); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 440, 97); + return jjStartNfaWithStates_0(6, 440, 94); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 470, 97); + return jjStartNfaWithStates_0(6, 470, 94); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(6, 472, 97); + return jjStartNfaWithStates_0(6, 472, 94); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(6, 665, 97); + return jjStartNfaWithStates_0(6, 665, 94); else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(6, 742, 97); + return jjStartNfaWithStates_0(6, 742, 94); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(6, 743, 97); + return jjStartNfaWithStates_0(6, 743, 94); else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(6, 748, 97); + return jjStartNfaWithStates_0(6, 748, 94); 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, 0x45000004L); case 70: case 102: @@ -7622,28 +7630,28 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 63, 97); + return jjStartNfaWithStates_0(6, 63, 94); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 308, 97); + return jjStartNfaWithStates_0(6, 308, 94); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 363, 97); + return jjStartNfaWithStates_0(6, 363, 94); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(6, 417, 97); + return jjStartNfaWithStates_0(6, 417, 94); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(6, 430, 97); + return jjStartNfaWithStates_0(6, 430, 94); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 499, 97); + return jjStartNfaWithStates_0(6, 499, 94); else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 698, 97); + return jjStartNfaWithStates_0(6, 698, 94); else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 736, 97); + return jjStartNfaWithStates_0(6, 736, 94); 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); + return jjStartNfaWithStates_0(6, 50, 94); else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 747, 97); + return jjStartNfaWithStates_0(6, 747, 94); 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: @@ -7651,25 +7659,25 @@ else if ((active11 & 0x80000000000L) != 0L) case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(6, 151, 97); + return jjStartNfaWithStates_0(6, 151, 94); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(6, 234, 97); + return jjStartNfaWithStates_0(6, 234, 94); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 306, 97); + return jjStartNfaWithStates_0(6, 306, 94); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(6, 360, 97); + return jjStartNfaWithStates_0(6, 360, 94); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(6, 414, 97); + return jjStartNfaWithStates_0(6, 414, 94); return jjMoveStringLiteralDfa7_0(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: @@ -7677,28 +7685,28 @@ else if ((active6 & 0x40000000L) != 0L) case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 43, 97); + return jjStartNfaWithStates_0(6, 43, 94); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 48, 97); + return jjStartNfaWithStates_0(6, 48, 94); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(6, 207, 97); + return jjStartNfaWithStates_0(6, 207, 94); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(6, 222, 97); + return jjStartNfaWithStates_0(6, 222, 94); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(6, 223, 97); + return jjStartNfaWithStates_0(6, 223, 94); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(6, 421, 97); + return jjStartNfaWithStates_0(6, 421, 94); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 433, 97); + return jjStartNfaWithStates_0(6, 433, 94); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_0(6, 517, 97); + return jjStartNfaWithStates_0(6, 517, 94); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 672, 97); + return jjStartNfaWithStates_0(6, 672, 94); else if ((active10 & 0x800000000000000L) != 0L) { jjmatchedKind = 699; @@ -7711,63 +7719,63 @@ else if ((active10 & 0x800000000000000L) != 0L) case 80: case 112: if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 693, 97); + return jjStartNfaWithStates_0(6, 693, 94); return jjMoveStringLiteralDfa7_0(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(6, 159, 97); + return jjStartNfaWithStates_0(6, 159, 94); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(6, 275, 97); + return jjStartNfaWithStates_0(6, 275, 94); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(6, 280, 97); + return jjStartNfaWithStates_0(6, 280, 94); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(6, 283, 97); + return jjStartNfaWithStates_0(6, 283, 94); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 320, 97); + return jjStartNfaWithStates_0(6, 320, 94); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 534, 97); + return jjStartNfaWithStates_0(6, 534, 94); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 696, 97); + return jjStartNfaWithStates_0(6, 696, 94); else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_0(6, 714, 97); + return jjStartNfaWithStates_0(6, 714, 94); 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) - return jjStartNfaWithStates_0(6, 326, 97); + return jjStartNfaWithStates_0(6, 326, 94); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(6, 345, 97); + return jjStartNfaWithStates_0(6, 345, 94); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_0(6, 392, 97); + return jjStartNfaWithStates_0(6, 392, 94); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(6, 484, 97); + return jjStartNfaWithStates_0(6, 484, 94); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_0(6, 516, 97); + return jjStartNfaWithStates_0(6, 516, 94); else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 722, 97); + return jjStartNfaWithStates_0(6, 722, 94); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(6, 87, 97); + return jjStartNfaWithStates_0(6, 87, 94); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(6, 109, 97); + return jjStartNfaWithStates_0(6, 109, 94); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -7779,28 +7787,28 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 186, 97); + return jjStartNfaWithStates_0(6, 186, 94); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 210, 97); + return jjStartNfaWithStates_0(6, 210, 94); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(6, 474, 97); + return jjStartNfaWithStates_0(6, 474, 94); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(6, 475, 97); + return jjStartNfaWithStates_0(6, 475, 94); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(6, 551, 97); + return jjStartNfaWithStates_0(6, 551, 94); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 639, 97); + return jjStartNfaWithStates_0(6, 639, 94); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(6, 673, 97); + return jjStartNfaWithStates_0(6, 673, 94); else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 697, 97); + return jjStartNfaWithStates_0(6, 697, 94); else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_0(6, 712, 97); + return jjStartNfaWithStates_0(6, 712, 94); 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, 0x400120a0000L); case 85: case 117: @@ -7814,17 +7822,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 64, 97); + return jjStartNfaWithStates_0(6, 64, 94); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 312, 97); + return jjStartNfaWithStates_0(6, 312, 94); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(6, 404, 97); + return jjStartNfaWithStates_0(6, 404, 94); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 443, 97); + return jjStartNfaWithStates_0(6, 443, 94); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 448, 97); + return jjStartNfaWithStates_0(6, 448, 94); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 662, 97); + return jjStartNfaWithStates_0(6, 662, 94); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -7850,9 +7858,9 @@ private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(7, 552, 97); + return jjStartNfaWithStates_0(7, 552, 94); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(7, 555, 97); + return jjStartNfaWithStates_0(7, 555, 94); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -7867,83 +7875,83 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 57, 97); + return jjStartNfaWithStates_0(7, 57, 94); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(7, 156, 97); + return jjStartNfaWithStates_0(7, 156, 94); else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 738, 97); + return jjStartNfaWithStates_0(7, 738, 94); 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: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_0(7, 6, 97); + return jjStartNfaWithStates_0(7, 6, 94); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(7, 13, 97); + return jjStartNfaWithStates_0(7, 13, 94); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(7, 80, 97); + return jjStartNfaWithStates_0(7, 80, 94); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(7, 108, 97); + return jjStartNfaWithStates_0(7, 108, 94); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_0(7, 135, 97); + return jjStartNfaWithStates_0(7, 135, 94); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 167, 97); + return jjStartNfaWithStates_0(7, 167, 94); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(7, 272, 97); + return jjStartNfaWithStates_0(7, 272, 94); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(7, 299, 97); + return jjStartNfaWithStates_0(7, 299, 94); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(7, 302, 97); + return jjStartNfaWithStates_0(7, 302, 94); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_0(7, 331, 97); + return jjStartNfaWithStates_0(7, 331, 94); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 346, 97); + return jjStartNfaWithStates_0(7, 346, 94); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 374, 97); + return jjStartNfaWithStates_0(7, 374, 94); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 441, 97); + return jjStartNfaWithStates_0(7, 441, 94); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(7, 469, 97); + return jjStartNfaWithStates_0(7, 469, 94); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(7, 524, 97); + return jjStartNfaWithStates_0(7, 524, 94); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(7, 547, 97); + return jjStartNfaWithStates_0(7, 547, 94); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(7, 556, 97); + return jjStartNfaWithStates_0(7, 556, 94); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(7, 660, 97); + return jjStartNfaWithStates_0(7, 660, 94); else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(7, 721, 97); + return jjStartNfaWithStates_0(7, 721, 94); 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) - return jjStartNfaWithStates_0(7, 692, 97); + return jjStartNfaWithStates_0(7, 692, 94); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 189, 97); + return jjStartNfaWithStates_0(7, 189, 94); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 245, 97); + return jjStartNfaWithStates_0(7, 245, 94); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_0(7, 395, 97); + return jjStartNfaWithStates_0(7, 395, 94); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_0(7, 642, 97); + return jjStartNfaWithStates_0(7, 642, 94); 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) - return jjStartNfaWithStates_0(7, 174, 97); + return jjStartNfaWithStates_0(7, 174, 94); 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: @@ -7954,20 +7962,20 @@ else if ((active10 & 0x4L) != 0L) case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(7, 489, 97); + return jjStartNfaWithStates_0(7, 489, 94); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(7, 209, 97); + return jjStartNfaWithStates_0(7, 209, 94); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(7, 278, 97); + return jjStartNfaWithStates_0(7, 278, 94); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 359, 97); + return jjStartNfaWithStates_0(7, 359, 94); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_0(7, 581, 97); + return jjStartNfaWithStates_0(7, 581, 94); else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(7, 734, 97); + return jjStartNfaWithStates_0(7, 734, 94); 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, 0x8000000L); case 77: case 109: @@ -7975,7 +7983,7 @@ else if ((active11 & 0x40000000L) != 0L) case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 231, 97); + return jjStartNfaWithStates_0(7, 231, 94); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; @@ -7988,14 +7996,14 @@ else if ((active6 & 0x4000000000000L) != 0L) case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 694, 97); + return jjStartNfaWithStates_0(7, 694, 94); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(7, 554, 97); + return jjStartNfaWithStates_0(7, 554, 94); else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_0(7, 706, 97); + return jjStartNfaWithStates_0(7, 706, 94); 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: @@ -8005,32 +8013,32 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 154, 97); + return jjStartNfaWithStates_0(7, 154, 94); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(7, 333, 97); + return jjStartNfaWithStates_0(7, 333, 94); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(7, 348, 97); + return jjStartNfaWithStates_0(7, 348, 94); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(7, 403, 97); + return jjStartNfaWithStates_0(7, 403, 94); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 437, 97); + return jjStartNfaWithStates_0(7, 437, 94); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_0(7, 450, 97); + return jjStartNfaWithStates_0(7, 450, 94); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 615, 97); + return jjStartNfaWithStates_0(7, 615, 94); 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) - return jjStartNfaWithStates_0(7, 175, 97); + return jjStartNfaWithStates_0(7, 175, 94); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 354, 97); + return jjStartNfaWithStates_0(7, 354, 94); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(7, 476, 97); + return jjStartNfaWithStates_0(7, 476, 94); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 538, 97); + return jjStartNfaWithStates_0(7, 538, 94); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(7, 661, 97); + return jjStartNfaWithStates_0(7, 661, 94); return jjMoveStringLiteralDfa8_0(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); case 85: case 117: @@ -8041,31 +8049,31 @@ else if ((active10 & 0x200000L) != 0L) case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(7, 172, 97); + return jjStartNfaWithStates_0(7, 172, 94); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(7, 466, 97); + return jjStartNfaWithStates_0(7, 466, 94); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(7, 236, 97); + return jjStartNfaWithStates_0(7, 236, 94); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 253, 97); + return jjStartNfaWithStates_0(7, 253, 94); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(7, 467, 97); + return jjStartNfaWithStates_0(7, 467, 94); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(7, 468, 97); + return jjStartNfaWithStates_0(7, 468, 94); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 503, 97); + return jjStartNfaWithStates_0(7, 503, 94); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_0(7, 518, 97); + return jjStartNfaWithStates_0(7, 518, 94); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 627, 97); + return jjStartNfaWithStates_0(7, 627, 94); else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 730, 97); + return jjStartNfaWithStates_0(7, 730, 94); 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: @@ -8094,23 +8102,23 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_0(8, 578, 97); + return jjStartNfaWithStates_0(8, 578, 94); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(8, 618, 97); + return jjStartNfaWithStates_0(8, 618, 94); 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) - return jjStartNfaWithStates_0(8, 93, 97); + return jjStartNfaWithStates_0(8, 93, 94); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(8, 235, 97); + return jjStartNfaWithStates_0(8, 235, 94); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(8, 666, 97); + return jjStartNfaWithStates_0(8, 666, 94); else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 732, 97); + return jjStartNfaWithStates_0(8, 732, 94); 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: @@ -8120,7 +8128,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_0(8, 192, 97); + return jjStartNfaWithStates_0(8, 192, 94); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -8137,15 +8145,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 371, 97); + return jjStartNfaWithStates_0(8, 371, 94); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 446, 97); + return jjStartNfaWithStates_0(8, 446, 94); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_0(8, 456, 97); + return jjStartNfaWithStates_0(8, 456, 94); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_0(8, 522, 97); + return jjStartNfaWithStates_0(8, 522, 94); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(8, 607, 97); + return jjStartNfaWithStates_0(8, 607, 94); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -8155,31 +8163,31 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_0(8, 137, 97); + return jjStartNfaWithStates_0(8, 137, 94); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 630, 97); + return jjStartNfaWithStates_0(8, 630, 94); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(8, 22, 97); + return jjStartNfaWithStates_0(8, 22, 94); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_0(8, 202, 97); + return jjStartNfaWithStates_0(8, 202, 94); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(8, 219, 97); + return jjStartNfaWithStates_0(8, 219, 94); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_0(8, 262, 97); + return jjStartNfaWithStates_0(8, 262, 94); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 438, 97); + return jjStartNfaWithStates_0(8, 438, 94); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(8, 483, 97); + return jjStartNfaWithStates_0(8, 483, 94); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(8, 737, 97); + return jjStartNfaWithStates_0(8, 737, 94); 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: @@ -8187,12 +8195,12 @@ else if ((active11 & 0x200000000L) != 0L) case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(8, 42, 97); + return jjStartNfaWithStates_0(8, 42, 94); 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, 0x81000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(8, 145, 97); + return jjStartNfaWithStates_0(8, 145, 94); break; case 76: case 108: @@ -8208,7 +8216,7 @@ else if ((active11 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(8, 29, 97); + return jjStartNfaWithStates_0(8, 29, 94); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -8220,13 +8228,13 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_0(8, 200, 97); + return jjStartNfaWithStates_0(8, 200, 94); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 284, 97); + return jjStartNfaWithStates_0(8, 284, 94); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(8, 415, 97); + return jjStartNfaWithStates_0(8, 415, 94); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 439, 97); + return jjStartNfaWithStates_0(8, 439, 94); 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: @@ -8234,7 +8242,7 @@ else if ((active6 & 0x80000000000000L) != 0L) case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 113, 97); + return jjStartNfaWithStates_0(8, 113, 94); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; @@ -8252,18 +8260,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(8, 146, 97); + return jjStartNfaWithStates_0(8, 146, 94); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_0(8, 264, 97); + return jjStartNfaWithStates_0(8, 264, 94); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_0(8, 523, 97); + return jjStartNfaWithStates_0(8, 523, 94); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_0(8, 577, 97); + return jjStartNfaWithStates_0(8, 577, 94); return jjMoveStringLiteralDfa9_0(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -8271,24 +8279,24 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 118, 97); + return jjStartNfaWithStates_0(8, 118, 94); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_0(8, 263, 97); + return jjStartNfaWithStates_0(8, 263, 94); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 496, 97); + return jjStartNfaWithStates_0(8, 496, 94); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 500, 97); + return jjStartNfaWithStates_0(8, 500, 94); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 504, 97); + return jjStartNfaWithStates_0(8, 504, 94); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(8, 559, 97); + return jjStartNfaWithStates_0(8, 559, 94); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(8, 601, 97); + return jjStartNfaWithStates_0(8, 601, 94); 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: @@ -8299,29 +8307,29 @@ else if ((active9 & 0x2000000L) != 0L) case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(8, 226, 97); + return jjStartNfaWithStates_0(8, 226, 94); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(8, 460, 97); + return jjStartNfaWithStates_0(8, 460, 94); return jjMoveStringLiteralDfa9_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 248, 97); + return jjStartNfaWithStates_0(8, 248, 94); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_0(8, 266, 97); + return jjStartNfaWithStates_0(8, 266, 94); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(8, 461, 97); + return jjStartNfaWithStates_0(8, 461, 94); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 625, 97); + return jjStartNfaWithStates_0(8, 625, 94); else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 695, 97); + return jjStartNfaWithStates_0(8, 695, 94); else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 702, 97); + return jjStartNfaWithStates_0(8, 702, 94); else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(8, 724, 97); + return jjStartNfaWithStates_0(8, 724, 94); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -8350,62 +8358,62 @@ private final int jjMoveStringLiteralDfa9_0(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(9, 31, 97); + return jjStartNfaWithStates_0(9, 31, 94); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_0(9, 138, 97); + return jjStartNfaWithStates_0(9, 138, 94); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 631, 97); + return jjStartNfaWithStates_0(9, 631, 94); return jjMoveStringLiteralDfa10_0(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(9, 358, 97); + return jjStartNfaWithStates_0(9, 358, 94); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 369, 97); + return jjStartNfaWithStates_0(9, 369, 94); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(9, 28, 97); + return jjStartNfaWithStates_0(9, 28, 94); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(9, 148, 97); + return jjStartNfaWithStates_0(9, 148, 94); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 155, 97); + return jjStartNfaWithStates_0(9, 155, 94); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(9, 294, 97); + return jjStartNfaWithStates_0(9, 294, 94); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(9, 295, 97); + return jjStartNfaWithStates_0(9, 295, 94); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 305, 97); + return jjStartNfaWithStates_0(9, 305, 94); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(9, 465, 97); + return jjStartNfaWithStates_0(9, 465, 94); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(9, 471, 97); + return jjStartNfaWithStates_0(9, 471, 94); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 511, 97); + return jjStartNfaWithStates_0(9, 511, 94); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(9, 558, 97); + return jjStartNfaWithStates_0(9, 558, 94); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(9, 612, 97); + return jjStartNfaWithStates_0(9, 612, 94); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(9, 623, 97); + return jjStartNfaWithStates_0(9, 623, 94); else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(9, 727, 97); + return jjStartNfaWithStates_0(9, 727, 94); else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(9, 729, 97); + return jjStartNfaWithStates_0(9, 729, 94); else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 731, 97); + return jjStartNfaWithStates_0(9, 731, 94); 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) - return jjStartNfaWithStates_0(9, 405, 97); + return jjStartNfaWithStates_0(9, 405, 94); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(9, 548, 97); + return jjStartNfaWithStates_0(9, 548, 94); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(9, 606, 97); + return jjStartNfaWithStates_0(9, 606, 94); else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 700, 97); + return jjStartNfaWithStates_0(9, 700, 94); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -8416,7 +8424,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(9, 162, 97); + return jjStartNfaWithStates_0(9, 162, 94); 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, 0x80010L); case 76: case 108: @@ -8424,7 +8432,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(9, 342, 97); + return jjStartNfaWithStates_0(9, 342, 94); return jjMoveStringLiteralDfa10_0(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -8440,53 +8448,53 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 114, 97); + return jjStartNfaWithStates_0(9, 114, 94); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 603, 97); + return jjStartNfaWithStates_0(9, 603, 94); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(9, 76, 97); + return jjStartNfaWithStates_0(9, 76, 94); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(9, 169, 97); + return jjStartNfaWithStates_0(9, 169, 94); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(9, 298, 97); + return jjStartNfaWithStates_0(9, 298, 94); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 497, 97); + return jjStartNfaWithStates_0(9, 497, 94); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(9, 35, 97); + return jjStartNfaWithStates_0(9, 35, 94); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_0(9, 74, 97); + return jjStartNfaWithStates_0(9, 74, 94); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 445, 97); + return jjStartNfaWithStates_0(9, 445, 94); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_0(9, 458, 97); + return jjStartNfaWithStates_0(9, 458, 94); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_0(9, 648, 97); + return jjStartNfaWithStates_0(9, 648, 94); else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(9, 741, 97); + return jjStartNfaWithStates_0(9, 741, 94); else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(9, 746, 97); + return jjStartNfaWithStates_0(9, 746, 94); 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: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(9, 30, 97); + return jjStartNfaWithStates_0(9, 30, 94); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(9, 173, 97); + return jjStartNfaWithStates_0(9, 173, 94); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(9, 462, 97); + return jjStartNfaWithStates_0(9, 462, 94); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(9, 549, 97); + return jjStartNfaWithStates_0(9, 549, 94); 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: @@ -8497,7 +8505,7 @@ else if ((active8 & 0x2000000000L) != 0L) case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 314, 97); + return jjStartNfaWithStates_0(9, 314, 94); break; case 89: case 121: @@ -8507,13 +8515,13 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(9, 293, 97); + return jjStartNfaWithStates_0(9, 293, 94); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(9, 397, 97); + return jjStartNfaWithStates_0(9, 397, 94); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(9, 550, 97); + return jjStartNfaWithStates_0(9, 550, 94); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(9, 658, 97); + return jjStartNfaWithStates_0(9, 658, 94); 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: @@ -8542,41 +8550,41 @@ private final int jjMoveStringLiteralDfa10_0(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_0(10, 579, 97); + return jjStartNfaWithStates_0(10, 579, 94); return jjMoveStringLiteralDfa11_0(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(10, 225, 97); + return jjStartNfaWithStates_0(10, 225, 94); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(10, 340, 97); + return jjStartNfaWithStates_0(10, 340, 94); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(10, 341, 97); + return jjStartNfaWithStates_0(10, 341, 94); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(10, 667, 97); + return jjStartNfaWithStates_0(10, 667, 94); 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) - return jjStartNfaWithStates_0(10, 40, 97); + return jjStartNfaWithStates_0(10, 40, 94); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(10, 89, 97); + return jjStartNfaWithStates_0(10, 89, 94); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_0(10, 132, 97); + return jjStartNfaWithStates_0(10, 132, 94); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 216, 97); + return jjStartNfaWithStates_0(10, 216, 94); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(10, 270, 97); + return jjStartNfaWithStates_0(10, 270, 94); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 508, 97); + return jjStartNfaWithStates_0(10, 508, 94); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(10, 527, 97); + return jjStartNfaWithStates_0(10, 527, 94); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(10, 620, 97); + return jjStartNfaWithStates_0(10, 620, 94); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 624, 97); + return jjStartNfaWithStates_0(10, 624, 94); else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(10, 735, 97); + return jjStartNfaWithStates_0(10, 735, 94); 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: @@ -8584,14 +8592,14 @@ else if ((active11 & 0x80000000L) != 0L) case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_0(10, 459, 97); + return jjStartNfaWithStates_0(10, 459, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_0(10, 67, 97); + return jjStartNfaWithStates_0(10, 67, 94); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(10, 418, 97); + return jjStartNfaWithStates_0(10, 418, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 73: case 105: @@ -8599,9 +8607,9 @@ else if ((active6 & 0x400000000L) != 0L) case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(10, 95, 97); + return jjStartNfaWithStates_0(10, 95, 94); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(10, 557, 97); + return jjStartNfaWithStates_0(10, 557, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -8609,18 +8617,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(10, 168, 97); + return jjStartNfaWithStates_0(10, 168, 94); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(10, 553, 97); + return jjStartNfaWithStates_0(10, 553, 94); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_0(10, 651, 97); + return jjStartNfaWithStates_0(10, 651, 94); else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 728, 97); + return jjStartNfaWithStates_0(10, 728, 94); 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: @@ -8628,9 +8636,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(10, 604, 97); + return jjStartNfaWithStates_0(10, 604, 94); else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(10, 726, 97); + return jjStartNfaWithStates_0(10, 726, 94); 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: @@ -8638,22 +8646,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(10, 105, 97); + return jjStartNfaWithStates_0(10, 105, 94); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 560, 97); + return jjStartNfaWithStates_0(10, 560, 94); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(10, 597, 97); + return jjStartNfaWithStates_0(10, 597, 94); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(10, 621, 97); + return jjStartNfaWithStates_0(10, 621, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(10, 104, 97); + return jjStartNfaWithStates_0(10, 104, 94); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(10, 171, 97); + return jjStartNfaWithStates_0(10, 171, 94); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(10, 290, 97); + return jjStartNfaWithStates_0(10, 290, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -8663,11 +8671,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 501, 97); + return jjStartNfaWithStates_0(10, 501, 94); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_0(10, 585, 97); + return jjStartNfaWithStates_0(10, 585, 94); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(10, 610, 97); + return jjStartNfaWithStates_0(10, 610, 94); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -8675,7 +8683,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 125, 97); + return jjStartNfaWithStates_0(10, 125, 94); break; case 88: case 120: @@ -8683,11 +8691,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 55, 97); + return jjStartNfaWithStates_0(10, 55, 94); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_0(10, 257, 97); + return jjStartNfaWithStates_0(10, 257, 94); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_0(10, 586, 97); + return jjStartNfaWithStates_0(10, 586, 94); break; default : break; @@ -8710,7 +8718,7 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_0(11, 512, 97); + return jjStartNfaWithStates_0(11, 512, 94); return jjMoveStringLiteralDfa12_0(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -8721,31 +8729,31 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 633, 97); + return jjStartNfaWithStates_0(11, 633, 94); return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 61, 97); + return jjStartNfaWithStates_0(11, 61, 94); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 121, 97); + return jjStartNfaWithStates_0(11, 121, 94); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 124, 97); + return jjStartNfaWithStates_0(11, 124, 94); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(11, 273, 97); + return jjStartNfaWithStates_0(11, 273, 94); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(11, 493, 97); + return jjStartNfaWithStates_0(11, 493, 94); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(11, 525, 97); + return jjStartNfaWithStates_0(11, 525, 94); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(11, 544, 97); + return jjStartNfaWithStates_0(11, 544, 94); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(11, 655, 97); + return jjStartNfaWithStates_0(11, 655, 94); return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -8756,9 +8764,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 123, 97); + return jjStartNfaWithStates_0(11, 123, 94); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 381, 97); + return jjStartNfaWithStates_0(11, 381, 94); break; case 73: case 105: @@ -8766,14 +8774,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(11, 426, 97); + return jjStartNfaWithStates_0(11, 426, 94); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(11, 594, 97); + return jjStartNfaWithStates_0(11, 594, 94); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 502, 97); + return jjStartNfaWithStates_0(11, 502, 94); return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -8781,11 +8789,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(11, 77, 97); + return jjStartNfaWithStates_0(11, 77, 94); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(11, 277, 97); + return jjStartNfaWithStates_0(11, 277, 94); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(11, 546, 97); + return jjStartNfaWithStates_0(11, 546, 94); return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -8796,17 +8804,17 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_0(11, 130, 97); + return jjStartNfaWithStates_0(11, 130, 94); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_0(11, 328, 97); + return jjStartNfaWithStates_0(11, 328, 94); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(11, 529, 97); + return jjStartNfaWithStates_0(11, 529, 94); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_0(11, 580, 97); + return jjStartNfaWithStates_0(11, 580, 94); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(11, 588, 97); + return jjStartNfaWithStates_0(11, 588, 94); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(11, 595, 97); + return jjStartNfaWithStates_0(11, 595, 94); return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); case 83: case 115: @@ -8814,13 +8822,13 @@ else if ((active9 & 0x80000L) != 0L) case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 244, 97); + return jjStartNfaWithStates_0(11, 244, 94); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(11, 338, 97); + return jjStartNfaWithStates_0(11, 338, 94); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_0(11, 582, 97); + return jjStartNfaWithStates_0(11, 582, 94); else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_0(11, 708, 97); + return jjStartNfaWithStates_0(11, 708, 94); return jjMoveStringLiteralDfa12_0(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: @@ -8828,7 +8836,7 @@ else if ((active11 & 0x10L) != 0L) case 89: case 121: if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(11, 723, 97); + return jjStartNfaWithStates_0(11, 723, 94); break; default : break; @@ -8854,7 +8862,7 @@ private final int jjMoveStringLiteralDfa12_0(long old0, long active0, long old1, case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(12, 170, 97); + return jjStartNfaWithStates_0(12, 170, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -8862,26 +8870,26 @@ private final int jjMoveStringLiteralDfa12_0(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(12, 543, 97); + return jjStartNfaWithStates_0(12, 543, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(12, 140, 97); + return jjStartNfaWithStates_0(12, 140, 94); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(12, 634, 97); + return jjStartNfaWithStates_0(12, 634, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(12, 111, 97); + return jjStartNfaWithStates_0(12, 111, 94); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(12, 289, 97); + return jjStartNfaWithStates_0(12, 289, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(12, 591, 97); + return jjStartNfaWithStates_0(12, 591, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -8889,7 +8897,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(12, 668, 97); + return jjStartNfaWithStates_0(12, 668, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -8897,9 +8905,9 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(12, 36, 97); + return jjStartNfaWithStates_0(12, 36, 94); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_0(12, 193, 97); + return jjStartNfaWithStates_0(12, 193, 94); return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: @@ -8907,12 +8915,12 @@ else if ((active3 & 0x2L) != 0L) case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_0(12, 584, 97); + return jjStartNfaWithStates_0(12, 584, 94); 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) - return jjStartNfaWithStates_0(12, 637, 97); + return jjStartNfaWithStates_0(12, 637, 94); return jjMoveStringLiteralDfa13_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -8926,7 +8934,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(12, 596, 97); + return jjStartNfaWithStates_0(12, 596, 94); break; default : break; @@ -8949,11 +8957,11 @@ private final int jjMoveStringLiteralDfa13_0(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 126, 97); + return jjStartNfaWithStates_0(13, 126, 94); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(13, 494, 97); + return jjStartNfaWithStates_0(13, 494, 94); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(13, 656, 97); + return jjStartNfaWithStates_0(13, 656, 94); 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: @@ -8961,38 +8969,38 @@ else if ((active10 & 0x10000L) != 0L) case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(13, 143, 97); + return jjStartNfaWithStates_0(13, 143, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(13, 593, 97); + return jjStartNfaWithStates_0(13, 593, 94); return jjMoveStringLiteralDfa14_0(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(13, 85, 97); + return jjStartNfaWithStates_0(13, 85, 94); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(13, 408, 97); + return jjStartNfaWithStates_0(13, 408, 94); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(13, 409, 97); + return jjStartNfaWithStates_0(13, 409, 94); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(13, 590, 97); + return jjStartNfaWithStates_0(13, 590, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 635, 97); + return jjStartNfaWithStates_0(13, 635, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(13, 292, 97); + return jjStartNfaWithStates_0(13, 292, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(13, 336, 97); + return jjStartNfaWithStates_0(13, 336, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -9006,7 +9014,7 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_0(13, 258, 97); + return jjStartNfaWithStates_0(13, 258, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); case 79: case 111: @@ -9014,7 +9022,7 @@ else if ((active9 & 0x4000L) != 0L) case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 319, 97); + return jjStartNfaWithStates_0(13, 319, 94); break; case 82: case 114: @@ -9022,17 +9030,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 510, 97); + return jjStartNfaWithStates_0(13, 510, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(13, 463, 97); + return jjStartNfaWithStates_0(13, 463, 94); return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 435, 97); + return jjStartNfaWithStates_0(13, 435, 94); break; case 89: case 121: @@ -9064,34 +9072,34 @@ private final int jjMoveStringLiteralDfa14_0(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(14, 425, 97); + return jjStartNfaWithStates_0(14, 425, 94); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 636, 97); + return jjStartNfaWithStates_0(14, 636, 94); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(14, 99, 97); + return jjStartNfaWithStates_0(14, 99, 94); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(14, 102, 97); + return jjStartNfaWithStates_0(14, 102, 94); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_0(14, 329, 97); + return jjStartNfaWithStates_0(14, 329, 94); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 638, 97); + return jjStartNfaWithStates_0(14, 638, 94); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 120, 97); + return jjStartNfaWithStates_0(14, 120, 94); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(14, 492, 97); + return jjStartNfaWithStates_0(14, 492, 94); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(14, 654, 97); + return jjStartNfaWithStates_0(14, 654, 94); return jjMoveStringLiteralDfa15_0(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(14, 480, 97); + return jjStartNfaWithStates_0(14, 480, 94); break; case 73: case 105: @@ -9105,11 +9113,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(14, 41, 97); + return jjStartNfaWithStates_0(14, 41, 94); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_0(14, 327, 97); + return jjStartNfaWithStates_0(14, 327, 94); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(14, 609, 97); + return jjStartNfaWithStates_0(14, 609, 94); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -9117,23 +9125,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(14, 107, 97); + return jjStartNfaWithStates_0(14, 107, 94); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 575, 97); + return jjStartNfaWithStates_0(14, 575, 94); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(14, 592, 97); + return jjStartNfaWithStates_0(14, 592, 94); 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) - return jjStartNfaWithStates_0(14, 73, 97); + return jjStartNfaWithStates_0(14, 73, 94); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(14, 424, 97); + return jjStartNfaWithStates_0(14, 424, 94); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_0(14, 641, 97); + return jjStartNfaWithStates_0(14, 641, 94); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -9141,9 +9149,9 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(14, 614, 97); + return jjStartNfaWithStates_0(14, 614, 94); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_0(14, 650, 97); + return jjStartNfaWithStates_0(14, 650, 94); break; case 89: case 121: @@ -9169,7 +9177,7 @@ private final int jjMoveStringLiteralDfa15_0(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(15, 86, 97); + return jjStartNfaWithStates_0(15, 86, 94); return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -9183,12 +9191,12 @@ private final int jjMoveStringLiteralDfa15_0(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(15, 23, 97); + return jjStartNfaWithStates_0(15, 23, 94); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_0(15, 69, 97); + return jjStartNfaWithStates_0(15, 69, 94); break; case 76: case 108: @@ -9218,9 +9226,9 @@ else if ((active2 & 0x80000000000000L) != 0L) case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(15, 96, 97); + return jjStartNfaWithStates_0(15, 96, 94); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_0(15, 576, 97); + return jjStartNfaWithStates_0(15, 576, 94); 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: @@ -9260,17 +9268,17 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(16, 103, 97); + return jjStartNfaWithStates_0(16, 103, 94); return jjMoveStringLiteralDfa17_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(16, 482, 97); + return jjStartNfaWithStates_0(16, 482, 94); return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(16, 84, 97); + return jjStartNfaWithStates_0(16, 84, 94); break; case 72: case 104: @@ -9293,7 +9301,7 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_0(16, 128, 97); + return jjStartNfaWithStates_0(16, 128, 94); break; case 82: case 114: @@ -9317,12 +9325,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(16, 380, 97); + return jjStartNfaWithStates_0(16, 380, 94); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(16, 574, 97); + return jjStartNfaWithStates_0(16, 574, 94); break; default : break; @@ -9351,17 +9359,17 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_0(17, 71, 97); + return jjStartNfaWithStates_0(17, 71, 94); return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(17, 101, 97); + return jjStartNfaWithStates_0(17, 101, 94); return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(17, 570, 97); + return jjStartNfaWithStates_0(17, 570, 94); break; case 73: case 105: @@ -9408,11 +9416,11 @@ private final int jjMoveStringLiteralDfa18_0(long old0, long active0, long old1, case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(18, 571, 97); + return jjStartNfaWithStates_0(18, 571, 94); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_0(18, 587, 97); + return jjStartNfaWithStates_0(18, 587, 94); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(18, 589, 97); + return jjStartNfaWithStates_0(18, 589, 94); return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -9422,7 +9430,7 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_0(18, 644, 97); + return jjStartNfaWithStates_0(18, 644, 94); return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: @@ -9472,7 +9480,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_0(19, 72, 97); + return jjStartNfaWithStates_0(19, 72, 94); return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); case 67: case 99: @@ -9483,7 +9491,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(19, 337, 97); + return jjStartNfaWithStates_0(19, 337, 94); break; case 78: case 110: @@ -9503,7 +9511,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(19, 479, 97); + return jjStartNfaWithStates_0(19, 479, 94); break; default : break; @@ -9538,19 +9546,19 @@ private final int jjMoveStringLiteralDfa20_0(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(20, 91, 97); + return jjStartNfaWithStates_0(20, 91, 94); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(20, 184, 97); + return jjStartNfaWithStates_0(20, 184, 94); return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_0(20, 70, 97); + return jjStartNfaWithStates_0(20, 70, 94); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(20, 481, 97); + return jjStartNfaWithStates_0(20, 481, 94); return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); case 77: case 109: @@ -9570,7 +9578,7 @@ else if ((active2 & 0x100000000000000L) != 0L) case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(20, 24, 97); + return jjStartNfaWithStates_0(20, 24, 94); break; default : break; @@ -9599,16 +9607,16 @@ private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_0(21, 645, 97); + return jjStartNfaWithStates_0(21, 645, 94); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(21, 141, 97); + return jjStartNfaWithStates_0(21, 141, 94); else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(21, 682, 97); + return jjStartNfaWithStates_0(21, 682, 94); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(21, 683, 97); + return jjStartNfaWithStates_0(21, 683, 94); return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); case 70: case 102: @@ -9661,7 +9669,7 @@ private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(22, 412, 97); + return jjStartNfaWithStates_0(22, 412, 94); return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: @@ -9711,7 +9719,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, case 65: case 97: if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(23, 684, 97); + return jjStartNfaWithStates_0(23, 684, 94); break; case 67: case 99: @@ -9722,7 +9730,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_0(23, 646, 97); + return jjStartNfaWithStates_0(23, 646, 94); break; case 76: case 108: @@ -9739,7 +9747,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(23, 562, 97); + return jjStartNfaWithStates_0(23, 562, 94); return jjMoveStringLiteralDfa24_0(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -9766,7 +9774,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(24, 413, 97); + return jjStartNfaWithStates_0(24, 413, 94); break; case 68: case 100: @@ -9780,7 +9788,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, case 71: case 103: if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(24, 681, 97); + return jjStartNfaWithStates_0(24, 681, 94); break; case 73: case 105: @@ -9827,29 +9835,29 @@ private final int jjMoveStringLiteralDfa25_0(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(25, 564, 97); + return jjStartNfaWithStates_0(25, 564, 94); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(25, 563, 97); + return jjStartNfaWithStates_0(25, 563, 94); else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(25, 725, 97); + return jjStartNfaWithStates_0(25, 725, 94); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(25, 411, 97); + return jjStartNfaWithStates_0(25, 411, 94); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(25, 573, 97); + return jjStartNfaWithStates_0(25, 573, 94); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(25, 410, 97); + return jjStartNfaWithStates_0(25, 410, 94); return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: @@ -9881,12 +9889,12 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(26, 567, 97); + return jjStartNfaWithStates_0(26, 567, 94); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(26, 566, 97); + return jjStartNfaWithStates_0(26, 566, 94); break; case 71: case 103: @@ -9894,7 +9902,7 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(26, 142, 97); + return jjStartNfaWithStates_0(26, 142, 94); break; case 79: case 111: @@ -9948,7 +9956,7 @@ private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(28, 569, 97); + return jjStartNfaWithStates_0(28, 569, 94); break; case 69: case 101: @@ -10006,7 +10014,7 @@ private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old2, case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(30, 122, 97); + return jjStartNfaWithStates_0(30, 122, 94); return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -10027,7 +10035,7 @@ private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_0(31, 129, 97); + return jjStartNfaWithStates_0(31, 129, 94); return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x200000000000L); default : break; @@ -10067,7 +10075,7 @@ private final int jjMoveStringLiteralDfa33_0(long old11, long active11) case 84: case 116: if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(33, 749, 97); + return jjStartNfaWithStates_0(33, 749, 94); break; default : break; @@ -10104,21 +10112,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 828) + kind = 828; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -10131,28 +10139,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 97: + case 94: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 97: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -10161,8 +10169,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -10184,8 +10192,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -10194,8 +10202,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -10210,14 +10218,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 95: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -10232,8 +10240,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 760) + kind = 760; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -10243,8 +10251,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -10269,8 +10277,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -10294,8 +10302,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -10313,30 +10321,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 763) + kind = 763; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 814) + kind = 814; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 814) + kind = 814; break; case 27: if (curChar == 13) @@ -10349,15 +10357,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -10375,8 +10383,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -10386,26 +10394,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 828) + kind = 828; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(44); break; case 45: @@ -10419,8 +10427,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 754) + kind = 754; jjCheckNAdd(48); break; case 49: @@ -10434,22 +10442,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAddStates(35, 37); break; case 54: @@ -10467,8 +10475,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); break; case 58: @@ -10488,12 +10496,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 767) + kind = 767; break; case 67: case 69: @@ -10509,8 +10517,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 762) + kind = 762; break; case 72: if (curChar == 38) @@ -10533,8 +10541,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 825) + kind = 825; break; case 79: if (curChar == 32) @@ -10561,14 +10569,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 812) + kind = 812; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; default : break; @@ -10591,8 +10599,8 @@ else if (curChar == 91) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -10613,32 +10621,32 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 97: + case 94: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 95: + case 97: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -10655,8 +10663,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -10667,25 +10675,25 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 94: + case 95: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 770) + kind = 770; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 771) + kind = 771; } break; case 63: @@ -10736,8 +10744,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 29: @@ -10757,21 +10765,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 93 && kind > 816) - kind = 816; + if (curChar == 93 && kind > 818) + kind = 818; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -10781,15 +10789,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -10814,32 +10822,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 770) + kind = 770; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 771) + kind = 771; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 772) + kind = 772; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 773) + kind = 773; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; break; default : break; } @@ -10859,8 +10867,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10869,8 +10877,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10878,11 +10886,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 97: + case 94: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10890,11 +10898,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 95: + case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10910,8 +10918,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10922,8 +10930,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10958,22 +10966,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -10983,15 +10991,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -11007,8 +11015,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 812) + kind = 812; break; default : break; } @@ -11052,7 +11060,7 @@ private final int jjMoveNfa_6(int startState, int curPos) { case 0: if (curChar == 47) - kind = 814; + kind = 816; break; case 1: if (curChar == 42) @@ -11108,96 +11116,96 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 0: if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; return 16; } - if ((active12 & 0x10L) != 0L) - return 94; - if ((active12 & 0x20000000L) != 0L) - return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 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 & 0xce55ef27efffL) != 0L) { - jjmatchedKind = 821; - return 95; + jjmatchedKind = 823; + return 94; } - if ((active12 & 0x90001000000L) != 0L) + if ((active12 & 0x40L) != 0L) + return 95; + if ((active12 & 0x80000000L) != 0L) + return 63; + if ((active12 & 0x240004000000L) != 0L) return 92; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x4e55ef27efffL) != 0L) - { - jjmatchedKind = 821; - return 96; - } if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x1000200000000L) != 0L) + { + jjmatchedKind = 823; return 96; - if ((active12 & 0x10000200L) != 0L) + } + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x800000000L) != 0L) + return 94; + if ((active12 & 0x40000800L) != 0L) return 97; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0x1800000L) != 0L) 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 ((active12 & 0x240000000000L) != 0L) + return 90; + 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 & 0xbefd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 1; } - return 96; + return 94; } - 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; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x14102a0110000L) != 0L) + return 94; 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 & 0x1d7fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 2; } - return 96; + return 94; } 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 94; 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 & 0x180100e3c7L) != 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 & 0x7fe7fefe0c38L) != 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 & 0x80180100e3c7L) != 0L) + return 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 98; + 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 & 0x17fe7fefe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 96; + return 94; } - 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 & 0x430022204809L) != 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 & 0x3ce7ddde05b4L) != 0L) + return 94; + 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 & 0x13ce7ddde05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 4; } - return 96; + return 94; } if ((active2 & 0x8000000000000000L) != 0L) return 98; @@ -11207,44 +11215,44 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, { if (jjmatchedPos != 5) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 5; } - return 96; + return 94; } - 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 & 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 & 0x10000001000a0L) != 0L) + return 94; if ((active2 & 0x8000000000000000L) != 0L) 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) - 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 6; } - return 96; + return 94; } + 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 94; + if ((active2 & 0x8000000000000000L) != 0L) + return 98; 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 & 0x444020004L) != 0L) - return 96; + return 94; 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 & 0x24229bf80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 7; } - return 96; + return 94; } return -1; case 8: @@ -11252,38 +11260,38 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 8; } - return 96; + return 94; } 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 94; 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 & 0x200081680010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 9; } - return 96; + return 94; } 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 94; 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 & 0x81400000L) != 0L) - return 96; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 10; } - return 96; + return 94; } return -1; case 11: @@ -11291,42 +11299,42 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 11; } - return 96; + return 94; } 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 94; 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 12; - return 96; + return 94; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 96; + return 94; return -1; 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 13; - return 96; + return 94; } 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; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 14; - return 96; + return 94; } return -1; case 15: @@ -11334,182 +11342,182 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 15; } - return 96; + return 94; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 96; + return 94; 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 (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 16; } - return 96; + return 94; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 96; + return 94; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 96; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 17; - return 96; + return 94; } return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) - return 96; + return 94; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 18; } - return 96; + return 94; } 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 19; - return 96; + return 94; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 96; + return 94; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 96; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 20; - return 96; + return 94; } return -1; case 21: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 21; - return 96; + return 94; } if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 96; + return 94; return -1; case 22: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 22; - return 96; + return 94; } if ((active6 & 0x10000000L) != 0L) - return 96; + return 94; return -1; case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 96; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 23; - return 96; + return 94; } return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 96; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 24; - return 96; + return 94; } return -1; case 25: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 25; - return 96; + return 94; } if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 96; + return 94; return -1; case 26: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 26; - return 96; + return 94; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 96; + return 94; return -1; case 27: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 27; - return 96; + return 94; } return -1; case 28: if ((active8 & 0x200000000000000L) != 0L) - return 96; + return 94; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 28; - return 96; + return 94; } return -1; case 29: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 29; - return 96; + return 94; } return -1; case 30: if ((active1 & 0x400000000000000L) != 0L) - return 96; + return 94; if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 30; - return 96; + return 94; } return -1; case 31: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 31; - return 96; + return 94; } if ((active2 & 0x2L) != 0L) - return 96; + return 94; return -1; case 32: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 32; - return 96; + return 94; } return -1; default : @@ -11534,57 +11542,57 @@ private final int jjMoveStringLiteralDfa0_2() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 34: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 36: - return jjStartNfaWithStates_2(0, 801, 96); + return jjStartNfaWithStates_2(0, 803, 94); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 795); case 39: - return jjStartNfaWithStates_2(0, 797, 63); + return jjStartNfaWithStates_2(0, 799, 63); case 40: - return jjStopAtPos(0, 766); + return jjStopAtPos(0, 768); case 41: - return jjStopAtPos(0, 767); + return jjStopAtPos(0, 769); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 790); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 780); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 794; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x240000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 62: - jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 784); case 91: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 777); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 802); case 65: case 97: jjmatchedKind = 3; @@ -11631,7 +11639,7 @@ private final int jjMoveStringLiteralDfa0_2() 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, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -11658,7 +11666,7 @@ private final int jjMoveStringLiteralDfa0_2() 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, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x80000c200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -11669,12 +11677,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, 772, 94); + return jjStartNfaWithStates_2(0, 774, 95); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 801; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 126: return jjStopAtPos(0, 2); default : @@ -11691,43 +11699,43 @@ private final int jjMoveStringLiteralDfa1_2(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x200000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 813; 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, 0x10000000000L); + 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, 0x40000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x40000000L) != 0L) + return jjStopAtPos(1, 798); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(1, 811); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x1000000000L) != 0L) + return jjStopAtPos(1, 804); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) - return jjStopAtPos(1, 785); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); else if ((active12 & 0x80000L) != 0L) return jjStopAtPos(1, 787); + else if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 62: - 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); + if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); + else if ((active12 & 0x1000000L) != 0L) + return jjStopAtPos(1, 792); + else if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); 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, 0x200443c40000L, 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, 0xa00443c40000L, 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); @@ -11748,7 +11756,7 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedPos = 1; } else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(1, 720, 96); + return jjStartNfaWithStates_2(1, 720, 94); return jjMoveStringLiteralDfa2_2(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); case 71: case 103: @@ -11776,7 +11784,7 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(1, 316, 96); + return jjStartNfaWithStates_2(1, 316, 94); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; @@ -11800,7 +11808,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, 0x140a300008200L, 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); @@ -11848,11 +11856,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(1, 51, 96); + return jjStartNfaWithStates_2(1, 51, 94); 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 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; default : break; @@ -11871,13 +11879,13 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x40000000000L) != 0L) + return jjStopAtPos(2, 810); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_2(2, 8, 96); + return jjStartNfaWithStates_2(2, 8, 94); 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, 0x14100c006400L, active12, 0L); case 66: case 98: @@ -11885,7 +11893,7 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(2, 27, 96); + return jjStartNfaWithStates_2(2, 27, 94); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; @@ -11895,9 +11903,9 @@ else if ((active2 & 0x200000L) != 0L) case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_2(2, 9, 96); + return jjStartNfaWithStates_2(2, 9, 94); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(2, 17, 96); + return jjStartNfaWithStates_2(2, 17, 94); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -11909,16 +11917,16 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_2(2, 385, 96); + return jjStartNfaWithStates_2(2, 385, 94); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(2, 406, 96); + return jjStartNfaWithStates_2(2, 406, 94); 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); + return jjStartNfaWithStates_2(2, 20, 94); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_2(2, 388, 96); + return jjStartNfaWithStates_2(2, 388, 94); 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: @@ -11931,9 +11939,9 @@ else if ((active6 & 0x10L) != 0L) case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(2, 37, 96); + return jjStartNfaWithStates_2(2, 37, 94); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(2, 301, 96); + return jjStartNfaWithStates_2(2, 301, 94); 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: @@ -11941,8 +11949,8 @@ else if ((active4 & 0x200000000000L) != 0L) case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 432, 96); - return jjMoveStringLiteralDfa3_2(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_2(2, 432, 94); + return jjMoveStringLiteralDfa3_2(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x800000200800L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11962,12 +11970,12 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedPos = 2; } else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(2, 716, 96); + return jjStartNfaWithStates_2(2, 716, 94); 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, 0xa82000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(2, 616, 96); + return jjStartNfaWithStates_2(2, 616, 94); 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: @@ -11988,9 +11996,9 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 250, 96); + return jjStartNfaWithStates_2(2, 250, 94); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_2(2, 323, 96); + return jjStartNfaWithStates_2(2, 323, 94); return jjMoveStringLiteralDfa3_2(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); case 81: case 113: @@ -12019,18 +12027,18 @@ else if ((active6 & 0x4000000000L) != 0L) case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(2, 46, 96); + return jjStartNfaWithStates_2(2, 46, 94); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 177, 96); + return jjStartNfaWithStates_2(2, 177, 94); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(2, 237, 96); + return jjStartNfaWithStates_2(2, 237, 94); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 370, 96); + return jjStartNfaWithStates_2(2, 370, 94); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -12051,15 +12059,15 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 179, 96); + return jjStartNfaWithStates_2(2, 179, 94); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(2, 364, 96); + return jjStartNfaWithStates_2(2, 364, 94); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000000000L, active12, 0L); case 88: case 120: if ((active5 & 0x400L) != 0L) @@ -12071,14 +12079,14 @@ else if ((active7 & 0x800000000000L) != 0L) case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(2, 18, 96); + return jjStartNfaWithStates_2(2, 18, 94); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 180, 96); + return jjStartNfaWithStates_2(2, 180, 94); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; @@ -12112,7 +12120,7 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); case 56: if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(3, 686, 96); + return jjStartNfaWithStates_2(3, 686, 94); 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); @@ -12124,14 +12132,14 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, jjmatchedPos = 3; } 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, 0x400041000000L); + return jjStartNfaWithStates_2(3, 285, 94); + 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, 0x1400041000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(3, 47, 96); + return jjStartNfaWithStates_2(3, 47, 94); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(3, 78, 96); + return jjStartNfaWithStates_2(3, 78, 94); return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); case 67: case 99: @@ -12149,7 +12157,7 @@ else if ((active3 & 0x800L) != 0L) case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 249, 96); + return jjStartNfaWithStates_2(3, 249, 94); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -12161,61 +12169,61 @@ else if ((active7 & 0x20L) != 0L) jjmatchedPos = 3; } else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 689, 96); + return jjStartNfaWithStates_2(3, 689, 94); return jjMoveStringLiteralDfa4_2(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 58, 96); + return jjStartNfaWithStates_2(3, 58, 94); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 117, 96); + return jjStartNfaWithStates_2(3, 117, 94); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 187, 96); + return jjStartNfaWithStates_2(3, 187, 94); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(3, 227, 96); + return jjStartNfaWithStates_2(3, 227, 94); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(3, 353, 96); + return jjStartNfaWithStates_2(3, 353, 94); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(3, 367, 96); + return jjStartNfaWithStates_2(3, 367, 94); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(3, 488, 96); + return jjStartNfaWithStates_2(3, 488, 94); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(3, 536, 96); + return jjStartNfaWithStates_2(3, 536, 94); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(3, 539, 96); + return jjStartNfaWithStates_2(3, 539, 94); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(3, 659, 96); + return jjStartNfaWithStates_2(3, 659, 94); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(3, 664, 96); + return jjStartNfaWithStates_2(3, 664, 94); else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(3, 719, 96); + return jjStartNfaWithStates_2(3, 719, 94); 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) - return jjStartNfaWithStates_2(3, 26, 96); + return jjStartNfaWithStates_2(3, 26, 94); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_2(3, 521, 96); + return jjStartNfaWithStates_2(3, 521, 94); break; case 71: case 103: @@ -12223,11 +12231,11 @@ else if ((active8 & 0x200L) != 0L) case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 49, 96); + return jjStartNfaWithStates_2(3, 49, 94); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 185, 96); + return jjStartNfaWithStates_2(3, 185, 94); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(3, 420, 96); + return jjStartNfaWithStates_2(3, 420, 94); else if ((active11 & 0x40L) != 0L) { jjmatchedKind = 710; @@ -12240,16 +12248,16 @@ else if ((active11 & 0x40L) != 0L) case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_2(3, 452, 96); + return jjStartNfaWithStates_2(3, 452, 94); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_2(3, 519, 96); + return jjStartNfaWithStates_2(3, 519, 94); else if ((active10 & 0x8000000000000000L) != 0L) { jjmatchedKind = 703; jjmatchedPos = 3; } else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_2(3, 713, 96); + return jjStartNfaWithStates_2(3, 713, 94); return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); case 76: case 108: @@ -12264,21 +12272,21 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(3, 230, 96); + return jjStartNfaWithStates_2(3, 230, 94); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_2(3, 455, 96); + return jjStartNfaWithStates_2(3, 455, 94); else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(3, 739, 96); + return jjStartNfaWithStates_2(3, 739, 94); 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) - return jjStartNfaWithStates_2(3, 229, 96); + return jjStartNfaWithStates_2(3, 229, 94); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; @@ -12288,39 +12296,39 @@ else if ((active10 & 0x20000L) != 0L) case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(3, 286, 96); + return jjStartNfaWithStates_2(3, 286, 94); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_2(3, 390, 96); + return jjStartNfaWithStates_2(3, 390, 94); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(3, 431, 96); + return jjStartNfaWithStates_2(3, 431, 94); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 626, 96); + return jjStartNfaWithStates_2(3, 626, 94); else if ((active11 & 0x2L) != 0L) { jjmatchedKind = 705; jjmatchedPos = 3; } else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(3, 740, 96); + return jjStartNfaWithStates_2(3, 740, 94); 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); + return jjStartNfaWithStates_2(3, 240, 94); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(3, 279, 96); + return jjStartNfaWithStates_2(3, 279, 94); 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); + return jjStartNfaWithStates_2(3, 181, 94); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(3, 537, 96); + return jjStartNfaWithStates_2(3, 537, 94); 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, 0x800c020400L); case 81: case 113: @@ -12361,33 +12369,35 @@ else if ((active11 & 0x2000L) != 0L) case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(3, 147, 96); + return jjStartNfaWithStates_2(3, 147, 94); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 498, 96); + return jjStartNfaWithStates_2(3, 498, 94); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(3, 531, 96); + return jjStartNfaWithStates_2(3, 531, 94); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 628, 96); + return jjStartNfaWithStates_2(3, 628, 94); 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) - return jjStartNfaWithStates_2(3, 59, 96); + return jjStartNfaWithStates_2(3, 59, 94); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 309, 96); + return jjStartNfaWithStates_2(3, 309, 94); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(3, 365, 96); + return jjStartNfaWithStates_2(3, 365, 94); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_2(3, 386, 96); + return jjStartNfaWithStates_2(3, 386, 94); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(3, 419, 96); + return jjStartNfaWithStates_2(3, 419, 94); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(3, 598, 96); + return jjStartNfaWithStates_2(3, 598, 94); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(3, 751, 94); 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: @@ -12395,19 +12405,19 @@ else if ((active9 & 0x400000L) != 0L) case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 442, 96); + return jjStartNfaWithStates_2(3, 442, 94); 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) - return jjStartNfaWithStates_2(3, 533, 96); + return jjStartNfaWithStates_2(3, 533, 94); else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 701, 96); + return jjStartNfaWithStates_2(3, 701, 94); return jjMoveStringLiteralDfa4_2(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_2(3, 389, 96); + return jjStartNfaWithStates_2(3, 389, 94); return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); default : break; @@ -12427,11 +12437,11 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, { case 50: if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 688, 96); + return jjStartNfaWithStates_2(4, 688, 94); break; case 54: if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(4, 687, 96); + return jjStartNfaWithStates_2(4, 687, 94); 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, 0xd000000L); @@ -12441,68 +12451,68 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(4, 362, 96); + return jjStartNfaWithStates_2(4, 362, 94); 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 jjStartNfaWithStates_2(4, 744, 94); 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) - return jjStartNfaWithStates_2(4, 224, 96); + return jjStartNfaWithStates_2(4, 224, 94); return jjMoveStringLiteralDfa5_2(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(4, 79, 96); + return jjStartNfaWithStates_2(4, 79, 94); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_2(4, 133, 96); + return jjStartNfaWithStates_2(4, 133, 94); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(4, 211, 96); + return jjStartNfaWithStates_2(4, 211, 94); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 255, 96); + return jjStartNfaWithStates_2(4, 255, 94); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(4, 303, 96); + return jjStartNfaWithStates_2(4, 303, 94); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(4, 335, 96); + return jjStartNfaWithStates_2(4, 335, 94); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 372, 96); + return jjStartNfaWithStates_2(4, 372, 94); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_2(4, 451, 96); + return jjStartNfaWithStates_2(4, 451, 94); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(4, 487, 96); + return jjStartNfaWithStates_2(4, 487, 94); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 506, 96); + return jjStartNfaWithStates_2(4, 506, 94); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 541, 96); + return jjStartNfaWithStates_2(4, 541, 94); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(4, 608, 96); + return jjStartNfaWithStates_2(4, 608, 94); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(4, 679, 96); + return jjStartNfaWithStates_2(4, 679, 94); else if ((active10 & 0x4000000000000L) != 0L) { jjmatchedKind = 690; jjmatchedPos = 4; } else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_2(4, 707, 96); + return jjStartNfaWithStates_2(4, 707, 94); else if ((active11 & 0x800L) != 0L) { jjmatchedKind = 715; @@ -12512,21 +12522,21 @@ else if ((active11 & 0x800L) != 0L) case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(4, 164, 96); + return jjStartNfaWithStates_2(4, 164, 94); return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(4, 685, 96); + return jjStartNfaWithStates_2(4, 685, 94); 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) - return jjStartNfaWithStates_2(4, 163, 96); + return jjStartNfaWithStates_2(4, 163, 94); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_2(4, 194, 96); + return jjStartNfaWithStates_2(4, 194, 94); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(4, 212, 96); + return jjStartNfaWithStates_2(4, 212, 94); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -12540,29 +12550,29 @@ 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, 0x1046100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_2(4, 75, 96); + return jjStartNfaWithStates_2(4, 75, 94); return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(4, 81, 96); + return jjStartNfaWithStates_2(4, 81, 94); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(4, 214, 96); + return jjStartNfaWithStates_2(4, 214, 94); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(4, 300, 96); + return jjStartNfaWithStates_2(4, 300, 94); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 311, 96); + return jjStartNfaWithStates_2(4, 311, 94); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(4, 750, 96); + return jjStartNfaWithStates_2(4, 750, 94); 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: @@ -12570,16 +12580,16 @@ else if ((active11 & 0x400000000000L) != 0L) case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_2(4, 10, 96); + return jjStartNfaWithStates_2(4, 10, 94); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_2(4, 65, 96); + return jjStartNfaWithStates_2(4, 65, 94); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(4, 670, 96); + return jjStartNfaWithStates_2(4, 670, 94); 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: @@ -12595,88 +12605,88 @@ else if ((active10 & 0x40000000L) != 0L) case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_2(4, 11, 96); + return jjStartNfaWithStates_2(4, 11, 94); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(4, 15, 96); + return jjStartNfaWithStates_2(4, 15, 94); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_2(4, 196, 96); + return jjStartNfaWithStates_2(4, 196, 94); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(4, 218, 96); + return jjStartNfaWithStates_2(4, 218, 94); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_2(4, 267, 96); + return jjStartNfaWithStates_2(4, 267, 94); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_2(4, 321, 96); + return jjStartNfaWithStates_2(4, 321, 94); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(4, 361, 96); + return jjStartNfaWithStates_2(4, 361, 94); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(4, 400, 96); + return jjStartNfaWithStates_2(4, 400, 94); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 436, 96); + return jjStartNfaWithStates_2(4, 436, 94); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 444, 96); + return jjStartNfaWithStates_2(4, 444, 94); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 669, 96); + return jjStartNfaWithStates_2(4, 669, 94); else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(4, 677, 96); + return jjStartNfaWithStates_2(4, 677, 94); return jjMoveStringLiteralDfa5_2(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 116, 96); + return jjStartNfaWithStates_2(4, 116, 94); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 252, 96); + return jjStartNfaWithStates_2(4, 252, 94); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(4, 355, 96); + return jjStartNfaWithStates_2(4, 355, 94); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(4, 357, 96); + return jjStartNfaWithStates_2(4, 357, 94); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 376, 96); + return jjStartNfaWithStates_2(4, 376, 94); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_2(4, 454, 96); + return jjStartNfaWithStates_2(4, 454, 94); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(4, 532, 96); + return jjStartNfaWithStates_2(4, 532, 94); else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_2(4, 704, 96); + return jjStartNfaWithStates_2(4, 704, 94); else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 718, 96); + return jjStartNfaWithStates_2(4, 718, 94); return jjMoveStringLiteralDfa5_2(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 112, 96); + return jjStartNfaWithStates_2(4, 112, 94); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(4, 217, 96); + return jjStartNfaWithStates_2(4, 217, 94); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(4, 268, 96); + return jjStartNfaWithStates_2(4, 268, 94); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(4, 269, 96); + return jjStartNfaWithStates_2(4, 269, 94); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 315, 96); + return jjStartNfaWithStates_2(4, 315, 94); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(4, 429, 96); + return jjStartNfaWithStates_2(4, 429, 94); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(4, 473, 96); + return jjStartNfaWithStates_2(4, 473, 94); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(4, 486, 96); + return jjStartNfaWithStates_2(4, 486, 94); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(4, 599, 96); + return jjStartNfaWithStates_2(4, 599, 94); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(4, 652, 96); + return jjStartNfaWithStates_2(4, 652, 94); 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: @@ -12687,28 +12697,28 @@ else if ((active10 & 0x1000L) != 0L) case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 14, 96); + return jjStartNfaWithStates_2(4, 14, 94); 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 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 733, 96); + return jjStartNfaWithStates_2(4, 733, 94); 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: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(4, 19, 96); + return jjStartNfaWithStates_2(4, 19, 94); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 188, 96); + return jjStartNfaWithStates_2(4, 188, 94); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_2(4, 198, 96); + return jjStartNfaWithStates_2(4, 198, 94); else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(4, 745, 96); + return jjStartNfaWithStates_2(4, 745, 94); 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: @@ -12750,20 +12760,20 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 447, 96); + return jjStartNfaWithStates_2(5, 447, 94); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(5, 602, 96); + return jjStartNfaWithStates_2(5, 602, 94); 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) - return jjStartNfaWithStates_2(5, 54, 96); + return jjStartNfaWithStates_2(5, 54, 94); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(5, 208, 96); + return jjStartNfaWithStates_2(5, 208, 94); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(5, 339, 96); + return jjStartNfaWithStates_2(5, 339, 94); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(5, 427, 96); + return jjStartNfaWithStates_2(5, 427, 94); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; @@ -12773,62 +12783,62 @@ else if ((active8 & 0x8L) != 0L) case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(5, 38, 96); + return jjStartNfaWithStates_2(5, 38, 94); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 115, 96); + return jjStartNfaWithStates_2(5, 115, 94); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(5, 150, 96); + return jjStartNfaWithStates_2(5, 150, 94); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(5, 160, 96); + return jjStartNfaWithStates_2(5, 160, 94); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(5, 161, 96); + return jjStartNfaWithStates_2(5, 161, 94); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 178, 96); + return jjStartNfaWithStates_2(5, 178, 94); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_2(5, 197, 96); + return jjStartNfaWithStates_2(5, 197, 94); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 254, 96); + return jjStartNfaWithStates_2(5, 254, 94); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(5, 349, 96); + return jjStartNfaWithStates_2(5, 349, 94); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(5, 485, 96); + return jjStartNfaWithStates_2(5, 485, 94); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(5, 535, 96); + return jjStartNfaWithStates_2(5, 535, 94); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(5, 540, 96); + return jjStartNfaWithStates_2(5, 540, 94); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(5, 663, 96); + return jjStartNfaWithStates_2(5, 663, 94); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(5, 671, 96); + return jjStartNfaWithStates_2(5, 671, 94); else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(5, 676, 96); + return jjStartNfaWithStates_2(5, 676, 94); 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) - return jjStartNfaWithStates_2(5, 375, 96); + return jjStartNfaWithStates_2(5, 375, 94); return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 247, 96); + return jjStartNfaWithStates_2(5, 247, 94); 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); + return jjStartNfaWithStates_2(5, 310, 94); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_2(5, 514, 96); + return jjStartNfaWithStates_2(5, 514, 94); 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: @@ -12839,16 +12849,16 @@ else if ((active8 & 0x4L) != 0L) case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(5, 238, 96); + return jjStartNfaWithStates_2(5, 238, 94); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(5, 416, 96); + return jjStartNfaWithStates_2(5, 416, 94); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_2(5, 513, 96); + return jjStartNfaWithStates_2(5, 513, 94); 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) - return jjStartNfaWithStates_2(5, 605, 96); + return jjStartNfaWithStates_2(5, 605, 94); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -12858,16 +12868,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_2(5, 7, 96); + return jjStartNfaWithStates_2(5, 7, 94); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 176, 96); + return jjStartNfaWithStates_2(5, 176, 94); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(5, 232, 96); + return jjStartNfaWithStates_2(5, 232, 94); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -12879,7 +12889,7 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedPos = 5; } else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_2(5, 711, 96); + return jjStartNfaWithStates_2(5, 711, 94); 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: @@ -12887,7 +12897,7 @@ else if ((active11 & 0x80L) != 0L) case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(5, 490, 96); + return jjStartNfaWithStates_2(5, 490, 94); 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: @@ -12900,13 +12910,13 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(5, 213, 96); + return jjStartNfaWithStates_2(5, 213, 94); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(5, 334, 96); + return jjStartNfaWithStates_2(5, 334, 94); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 377, 96); + return jjStartNfaWithStates_2(5, 377, 94); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 505, 96); + return jjStartNfaWithStates_2(5, 505, 94); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; @@ -12916,28 +12926,28 @@ else if ((active8 & 0x4000L) != 0L) case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(5, 16, 96); + return jjStartNfaWithStates_2(5, 16, 94); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_2(5, 195, 96); + return jjStartNfaWithStates_2(5, 195, 94); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(5, 205, 96); + return jjStartNfaWithStates_2(5, 205, 94); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 246, 96); + return jjStartNfaWithStates_2(5, 246, 94); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(5, 352, 96); + return jjStartNfaWithStates_2(5, 352, 94); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 382, 96); + return jjStartNfaWithStates_2(5, 382, 94); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(5, 398, 96); + return jjStartNfaWithStates_2(5, 398, 94); else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 691, 96); + return jjStartNfaWithStates_2(5, 691, 94); 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) - return jjStartNfaWithStates_2(5, 5, 96); + return jjStartNfaWithStates_2(5, 5, 94); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(5, 44, 96); + return jjStartNfaWithStates_2(5, 44, 94); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -12949,27 +12959,29 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(5, 221, 96); + return jjStartNfaWithStates_2(5, 221, 94); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_2(5, 259, 96); + return jjStartNfaWithStates_2(5, 259, 94); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(5, 271, 96); + return jjStartNfaWithStates_2(5, 271, 94); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 379, 96); + return jjStartNfaWithStates_2(5, 379, 94); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_2(5, 384, 96); + return jjStartNfaWithStates_2(5, 384, 94); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(5, 401, 96); + return jjStartNfaWithStates_2(5, 401, 94); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(5, 477, 96); + return jjStartNfaWithStates_2(5, 477, 94); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_2(5, 520, 96); + return jjStartNfaWithStates_2(5, 520, 94); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(5, 611, 96); + return jjStartNfaWithStates_2(5, 611, 94); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(5, 675, 96); + return jjStartNfaWithStates_2(5, 675, 94); else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(5, 678, 96); + return jjStartNfaWithStates_2(5, 678, 94); + else if ((active11 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 752, 94); 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: @@ -12980,9 +12992,9 @@ else if ((active10 & 0x4000000000L) != 0L) case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(5, 282, 96); + return jjStartNfaWithStates_2(5, 282, 94); else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_2(5, 709, 96); + return jjStartNfaWithStates_2(5, 709, 94); return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -12990,13 +13002,13 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(5, 45, 96); + return jjStartNfaWithStates_2(5, 45, 94); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(5, 228, 96); + return jjStartNfaWithStates_2(5, 228, 94); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(5, 350, 96); + return jjStartNfaWithStates_2(5, 350, 94); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(5, 617, 96); + return jjStartNfaWithStates_2(5, 617, 94); 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: @@ -13019,7 +13031,7 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(6, 464, 96); + return jjStartNfaWithStates_2(6, 464, 94); 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); @@ -13037,20 +13049,20 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 378, 96); + return jjStartNfaWithStates_2(6, 378, 94); return jjMoveStringLiteralDfa7_2(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(6, 158, 96); + return jjStartNfaWithStates_2(6, 158, 94); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(6, 165, 96); + return jjStartNfaWithStates_2(6, 165, 94); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 242, 96); + return jjStartNfaWithStates_2(6, 242, 94); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_2(6, 325, 96); + return jjStartNfaWithStates_2(6, 325, 94); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(6, 674, 96); + return jjStartNfaWithStates_2(6, 674, 94); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); case 69: case 101: @@ -13060,41 +13072,41 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 82, 96); + return jjStartNfaWithStates_2(6, 82, 94); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(6, 152, 96); + return jjStartNfaWithStates_2(6, 152, 94); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_2(6, 201, 96); + return jjStartNfaWithStates_2(6, 201, 94); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(6, 204, 96); + return jjStartNfaWithStates_2(6, 204, 94); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_2(6, 261, 96); + return jjStartNfaWithStates_2(6, 261, 94); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(6, 428, 96); + return jjStartNfaWithStates_2(6, 428, 94); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 440, 96); + return jjStartNfaWithStates_2(6, 440, 94); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 470, 96); + return jjStartNfaWithStates_2(6, 470, 94); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(6, 472, 96); + return jjStartNfaWithStates_2(6, 472, 94); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(6, 665, 96); + return jjStartNfaWithStates_2(6, 665, 94); else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(6, 742, 96); + return jjStartNfaWithStates_2(6, 742, 94); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(6, 743, 96); + return jjStartNfaWithStates_2(6, 743, 94); else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(6, 748, 96); + return jjStartNfaWithStates_2(6, 748, 94); 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, 0x45000004L); case 70: case 102: @@ -13107,28 +13119,28 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 63, 96); + return jjStartNfaWithStates_2(6, 63, 94); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 308, 96); + return jjStartNfaWithStates_2(6, 308, 94); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 363, 96); + return jjStartNfaWithStates_2(6, 363, 94); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(6, 417, 96); + return jjStartNfaWithStates_2(6, 417, 94); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(6, 430, 96); + return jjStartNfaWithStates_2(6, 430, 94); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 499, 96); + return jjStartNfaWithStates_2(6, 499, 94); else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 698, 96); + return jjStartNfaWithStates_2(6, 698, 94); else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 736, 96); + return jjStartNfaWithStates_2(6, 736, 94); 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); + return jjStartNfaWithStates_2(6, 50, 94); else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 747, 96); + return jjStartNfaWithStates_2(6, 747, 94); 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: @@ -13136,25 +13148,25 @@ else if ((active11 & 0x80000000000L) != 0L) case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(6, 151, 96); + return jjStartNfaWithStates_2(6, 151, 94); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(6, 234, 96); + return jjStartNfaWithStates_2(6, 234, 94); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 306, 96); + return jjStartNfaWithStates_2(6, 306, 94); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(6, 360, 96); + return jjStartNfaWithStates_2(6, 360, 94); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(6, 414, 96); + return jjStartNfaWithStates_2(6, 414, 94); return jjMoveStringLiteralDfa7_2(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: @@ -13162,28 +13174,28 @@ else if ((active6 & 0x40000000L) != 0L) case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 43, 96); + return jjStartNfaWithStates_2(6, 43, 94); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 48, 96); + return jjStartNfaWithStates_2(6, 48, 94); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(6, 207, 96); + return jjStartNfaWithStates_2(6, 207, 94); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(6, 222, 96); + return jjStartNfaWithStates_2(6, 222, 94); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(6, 223, 96); + return jjStartNfaWithStates_2(6, 223, 94); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(6, 421, 96); + return jjStartNfaWithStates_2(6, 421, 94); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 433, 96); + return jjStartNfaWithStates_2(6, 433, 94); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_2(6, 517, 96); + return jjStartNfaWithStates_2(6, 517, 94); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 672, 96); + return jjStartNfaWithStates_2(6, 672, 94); else if ((active10 & 0x800000000000000L) != 0L) { jjmatchedKind = 699; @@ -13196,63 +13208,63 @@ else if ((active10 & 0x800000000000000L) != 0L) case 80: case 112: if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 693, 96); + return jjStartNfaWithStates_2(6, 693, 94); return jjMoveStringLiteralDfa7_2(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(6, 159, 96); + return jjStartNfaWithStates_2(6, 159, 94); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(6, 275, 96); + return jjStartNfaWithStates_2(6, 275, 94); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(6, 280, 96); + return jjStartNfaWithStates_2(6, 280, 94); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(6, 283, 96); + return jjStartNfaWithStates_2(6, 283, 94); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 320, 96); + return jjStartNfaWithStates_2(6, 320, 94); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 534, 96); + return jjStartNfaWithStates_2(6, 534, 94); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 696, 96); + return jjStartNfaWithStates_2(6, 696, 94); else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_2(6, 714, 96); + return jjStartNfaWithStates_2(6, 714, 94); 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) - return jjStartNfaWithStates_2(6, 326, 96); + return jjStartNfaWithStates_2(6, 326, 94); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(6, 345, 96); + return jjStartNfaWithStates_2(6, 345, 94); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_2(6, 392, 96); + return jjStartNfaWithStates_2(6, 392, 94); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(6, 484, 96); + return jjStartNfaWithStates_2(6, 484, 94); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_2(6, 516, 96); + return jjStartNfaWithStates_2(6, 516, 94); else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 722, 96); + return jjStartNfaWithStates_2(6, 722, 94); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(6, 87, 96); + return jjStartNfaWithStates_2(6, 87, 94); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(6, 109, 96); + return jjStartNfaWithStates_2(6, 109, 94); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -13264,28 +13276,28 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 186, 96); + return jjStartNfaWithStates_2(6, 186, 94); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 210, 96); + return jjStartNfaWithStates_2(6, 210, 94); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(6, 474, 96); + return jjStartNfaWithStates_2(6, 474, 94); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(6, 475, 96); + return jjStartNfaWithStates_2(6, 475, 94); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(6, 551, 96); + return jjStartNfaWithStates_2(6, 551, 94); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 639, 96); + return jjStartNfaWithStates_2(6, 639, 94); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(6, 673, 96); + return jjStartNfaWithStates_2(6, 673, 94); else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 697, 96); + return jjStartNfaWithStates_2(6, 697, 94); else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_2(6, 712, 96); + return jjStartNfaWithStates_2(6, 712, 94); 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, 0x400120a0000L); case 85: case 117: @@ -13299,17 +13311,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 64, 96); + return jjStartNfaWithStates_2(6, 64, 94); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 312, 96); + return jjStartNfaWithStates_2(6, 312, 94); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(6, 404, 96); + return jjStartNfaWithStates_2(6, 404, 94); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 443, 96); + return jjStartNfaWithStates_2(6, 443, 94); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 448, 96); + return jjStartNfaWithStates_2(6, 448, 94); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 662, 96); + return jjStartNfaWithStates_2(6, 662, 94); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -13335,9 +13347,9 @@ private final int jjMoveStringLiteralDfa7_2(long old0, long active0, long old1, case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(7, 552, 96); + return jjStartNfaWithStates_2(7, 552, 94); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(7, 555, 96); + return jjStartNfaWithStates_2(7, 555, 94); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -13352,83 +13364,83 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 57, 96); + return jjStartNfaWithStates_2(7, 57, 94); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(7, 156, 96); + return jjStartNfaWithStates_2(7, 156, 94); else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 738, 96); + return jjStartNfaWithStates_2(7, 738, 94); 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: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_2(7, 6, 96); + return jjStartNfaWithStates_2(7, 6, 94); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(7, 13, 96); + return jjStartNfaWithStates_2(7, 13, 94); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(7, 80, 96); + return jjStartNfaWithStates_2(7, 80, 94); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(7, 108, 96); + return jjStartNfaWithStates_2(7, 108, 94); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_2(7, 135, 96); + return jjStartNfaWithStates_2(7, 135, 94); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 167, 96); + return jjStartNfaWithStates_2(7, 167, 94); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(7, 272, 96); + return jjStartNfaWithStates_2(7, 272, 94); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(7, 299, 96); + return jjStartNfaWithStates_2(7, 299, 94); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(7, 302, 96); + return jjStartNfaWithStates_2(7, 302, 94); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_2(7, 331, 96); + return jjStartNfaWithStates_2(7, 331, 94); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 346, 96); + return jjStartNfaWithStates_2(7, 346, 94); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 374, 96); + return jjStartNfaWithStates_2(7, 374, 94); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 441, 96); + return jjStartNfaWithStates_2(7, 441, 94); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(7, 469, 96); + return jjStartNfaWithStates_2(7, 469, 94); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(7, 524, 96); + return jjStartNfaWithStates_2(7, 524, 94); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(7, 547, 96); + return jjStartNfaWithStates_2(7, 547, 94); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(7, 556, 96); + return jjStartNfaWithStates_2(7, 556, 94); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(7, 660, 96); + return jjStartNfaWithStates_2(7, 660, 94); else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(7, 721, 96); + return jjStartNfaWithStates_2(7, 721, 94); 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) - return jjStartNfaWithStates_2(7, 692, 96); + return jjStartNfaWithStates_2(7, 692, 94); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 189, 96); + return jjStartNfaWithStates_2(7, 189, 94); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 245, 96); + return jjStartNfaWithStates_2(7, 245, 94); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_2(7, 395, 96); + return jjStartNfaWithStates_2(7, 395, 94); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_2(7, 642, 96); + return jjStartNfaWithStates_2(7, 642, 94); 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) - return jjStartNfaWithStates_2(7, 174, 96); + return jjStartNfaWithStates_2(7, 174, 94); 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: @@ -13439,20 +13451,20 @@ else if ((active10 & 0x4L) != 0L) case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(7, 489, 96); + return jjStartNfaWithStates_2(7, 489, 94); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(7, 209, 96); + return jjStartNfaWithStates_2(7, 209, 94); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(7, 278, 96); + return jjStartNfaWithStates_2(7, 278, 94); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 359, 96); + return jjStartNfaWithStates_2(7, 359, 94); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_2(7, 581, 96); + return jjStartNfaWithStates_2(7, 581, 94); else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(7, 734, 96); + return jjStartNfaWithStates_2(7, 734, 94); 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, 0x8000000L); case 77: case 109: @@ -13460,7 +13472,7 @@ else if ((active11 & 0x40000000L) != 0L) case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 231, 96); + return jjStartNfaWithStates_2(7, 231, 94); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; @@ -13473,14 +13485,14 @@ else if ((active6 & 0x4000000000000L) != 0L) case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 694, 96); + return jjStartNfaWithStates_2(7, 694, 94); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(7, 554, 96); + return jjStartNfaWithStates_2(7, 554, 94); else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_2(7, 706, 96); + return jjStartNfaWithStates_2(7, 706, 94); 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: @@ -13490,32 +13502,32 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 154, 96); + return jjStartNfaWithStates_2(7, 154, 94); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(7, 333, 96); + return jjStartNfaWithStates_2(7, 333, 94); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(7, 348, 96); + return jjStartNfaWithStates_2(7, 348, 94); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(7, 403, 96); + return jjStartNfaWithStates_2(7, 403, 94); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 437, 96); + return jjStartNfaWithStates_2(7, 437, 94); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_2(7, 450, 96); + return jjStartNfaWithStates_2(7, 450, 94); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 615, 96); + return jjStartNfaWithStates_2(7, 615, 94); 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) - return jjStartNfaWithStates_2(7, 175, 96); + return jjStartNfaWithStates_2(7, 175, 94); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 354, 96); + return jjStartNfaWithStates_2(7, 354, 94); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(7, 476, 96); + return jjStartNfaWithStates_2(7, 476, 94); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 538, 96); + return jjStartNfaWithStates_2(7, 538, 94); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(7, 661, 96); + return jjStartNfaWithStates_2(7, 661, 94); return jjMoveStringLiteralDfa8_2(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); case 85: case 117: @@ -13526,31 +13538,31 @@ else if ((active10 & 0x200000L) != 0L) case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(7, 172, 96); + return jjStartNfaWithStates_2(7, 172, 94); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(7, 466, 96); + return jjStartNfaWithStates_2(7, 466, 94); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(7, 236, 96); + return jjStartNfaWithStates_2(7, 236, 94); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 253, 96); + return jjStartNfaWithStates_2(7, 253, 94); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(7, 467, 96); + return jjStartNfaWithStates_2(7, 467, 94); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(7, 468, 96); + return jjStartNfaWithStates_2(7, 468, 94); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 503, 96); + return jjStartNfaWithStates_2(7, 503, 94); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_2(7, 518, 96); + return jjStartNfaWithStates_2(7, 518, 94); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 627, 96); + return jjStartNfaWithStates_2(7, 627, 94); else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 730, 96); + return jjStartNfaWithStates_2(7, 730, 94); 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: @@ -13579,23 +13591,23 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_2(8, 578, 96); + return jjStartNfaWithStates_2(8, 578, 94); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(8, 618, 96); + return jjStartNfaWithStates_2(8, 618, 94); 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) - return jjStartNfaWithStates_2(8, 93, 96); + return jjStartNfaWithStates_2(8, 93, 94); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(8, 235, 96); + return jjStartNfaWithStates_2(8, 235, 94); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(8, 666, 96); + return jjStartNfaWithStates_2(8, 666, 94); else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 732, 96); + return jjStartNfaWithStates_2(8, 732, 94); 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: @@ -13605,7 +13617,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_2(8, 192, 96); + return jjStartNfaWithStates_2(8, 192, 94); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -13622,15 +13634,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 371, 96); + return jjStartNfaWithStates_2(8, 371, 94); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 446, 96); + return jjStartNfaWithStates_2(8, 446, 94); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_2(8, 456, 96); + return jjStartNfaWithStates_2(8, 456, 94); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_2(8, 522, 96); + return jjStartNfaWithStates_2(8, 522, 94); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(8, 607, 96); + return jjStartNfaWithStates_2(8, 607, 94); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -13640,31 +13652,31 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_2(8, 137, 96); + return jjStartNfaWithStates_2(8, 137, 94); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 630, 96); + return jjStartNfaWithStates_2(8, 630, 94); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(8, 22, 96); + return jjStartNfaWithStates_2(8, 22, 94); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_2(8, 202, 96); + return jjStartNfaWithStates_2(8, 202, 94); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(8, 219, 96); + return jjStartNfaWithStates_2(8, 219, 94); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_2(8, 262, 96); + return jjStartNfaWithStates_2(8, 262, 94); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 438, 96); + return jjStartNfaWithStates_2(8, 438, 94); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(8, 483, 96); + return jjStartNfaWithStates_2(8, 483, 94); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(8, 737, 96); + return jjStartNfaWithStates_2(8, 737, 94); 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: @@ -13672,12 +13684,12 @@ else if ((active11 & 0x200000000L) != 0L) case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(8, 42, 96); + return jjStartNfaWithStates_2(8, 42, 94); 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, 0x81000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(8, 145, 96); + return jjStartNfaWithStates_2(8, 145, 94); break; case 76: case 108: @@ -13693,7 +13705,7 @@ else if ((active11 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(8, 29, 96); + return jjStartNfaWithStates_2(8, 29, 94); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -13705,13 +13717,13 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_2(8, 200, 96); + return jjStartNfaWithStates_2(8, 200, 94); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 284, 96); + return jjStartNfaWithStates_2(8, 284, 94); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(8, 415, 96); + return jjStartNfaWithStates_2(8, 415, 94); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 439, 96); + return jjStartNfaWithStates_2(8, 439, 94); 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: @@ -13719,7 +13731,7 @@ else if ((active6 & 0x80000000000000L) != 0L) case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 113, 96); + return jjStartNfaWithStates_2(8, 113, 94); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; @@ -13737,18 +13749,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(8, 146, 96); + return jjStartNfaWithStates_2(8, 146, 94); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_2(8, 264, 96); + return jjStartNfaWithStates_2(8, 264, 94); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_2(8, 523, 96); + return jjStartNfaWithStates_2(8, 523, 94); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_2(8, 577, 96); + return jjStartNfaWithStates_2(8, 577, 94); return jjMoveStringLiteralDfa9_2(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -13756,24 +13768,24 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 118, 96); + return jjStartNfaWithStates_2(8, 118, 94); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_2(8, 263, 96); + return jjStartNfaWithStates_2(8, 263, 94); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 496, 96); + return jjStartNfaWithStates_2(8, 496, 94); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 500, 96); + return jjStartNfaWithStates_2(8, 500, 94); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 504, 96); + return jjStartNfaWithStates_2(8, 504, 94); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(8, 559, 96); + return jjStartNfaWithStates_2(8, 559, 94); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(8, 601, 96); + return jjStartNfaWithStates_2(8, 601, 94); 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: @@ -13784,29 +13796,29 @@ else if ((active9 & 0x2000000L) != 0L) case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(8, 226, 96); + return jjStartNfaWithStates_2(8, 226, 94); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(8, 460, 96); + return jjStartNfaWithStates_2(8, 460, 94); return jjMoveStringLiteralDfa9_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 248, 96); + return jjStartNfaWithStates_2(8, 248, 94); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_2(8, 266, 96); + return jjStartNfaWithStates_2(8, 266, 94); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(8, 461, 96); + return jjStartNfaWithStates_2(8, 461, 94); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 625, 96); + return jjStartNfaWithStates_2(8, 625, 94); else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 695, 96); + return jjStartNfaWithStates_2(8, 695, 94); else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 702, 96); + return jjStartNfaWithStates_2(8, 702, 94); else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(8, 724, 96); + return jjStartNfaWithStates_2(8, 724, 94); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -13835,62 +13847,62 @@ private final int jjMoveStringLiteralDfa9_2(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(9, 31, 96); + return jjStartNfaWithStates_2(9, 31, 94); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_2(9, 138, 96); + return jjStartNfaWithStates_2(9, 138, 94); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 631, 96); + return jjStartNfaWithStates_2(9, 631, 94); return jjMoveStringLiteralDfa10_2(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(9, 358, 96); + return jjStartNfaWithStates_2(9, 358, 94); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 369, 96); + return jjStartNfaWithStates_2(9, 369, 94); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(9, 28, 96); + return jjStartNfaWithStates_2(9, 28, 94); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(9, 148, 96); + return jjStartNfaWithStates_2(9, 148, 94); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 155, 96); + return jjStartNfaWithStates_2(9, 155, 94); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(9, 294, 96); + return jjStartNfaWithStates_2(9, 294, 94); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(9, 295, 96); + return jjStartNfaWithStates_2(9, 295, 94); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 305, 96); + return jjStartNfaWithStates_2(9, 305, 94); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(9, 465, 96); + return jjStartNfaWithStates_2(9, 465, 94); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(9, 471, 96); + return jjStartNfaWithStates_2(9, 471, 94); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 511, 96); + return jjStartNfaWithStates_2(9, 511, 94); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(9, 558, 96); + return jjStartNfaWithStates_2(9, 558, 94); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(9, 612, 96); + return jjStartNfaWithStates_2(9, 612, 94); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(9, 623, 96); + return jjStartNfaWithStates_2(9, 623, 94); else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(9, 727, 96); + return jjStartNfaWithStates_2(9, 727, 94); else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(9, 729, 96); + return jjStartNfaWithStates_2(9, 729, 94); else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 731, 96); + return jjStartNfaWithStates_2(9, 731, 94); 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) - return jjStartNfaWithStates_2(9, 405, 96); + return jjStartNfaWithStates_2(9, 405, 94); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(9, 548, 96); + return jjStartNfaWithStates_2(9, 548, 94); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(9, 606, 96); + return jjStartNfaWithStates_2(9, 606, 94); else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 700, 96); + return jjStartNfaWithStates_2(9, 700, 94); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -13901,7 +13913,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(9, 162, 96); + return jjStartNfaWithStates_2(9, 162, 94); 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, 0x80010L); case 76: case 108: @@ -13909,7 +13921,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(9, 342, 96); + return jjStartNfaWithStates_2(9, 342, 94); return jjMoveStringLiteralDfa10_2(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -13925,53 +13937,53 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 114, 96); + return jjStartNfaWithStates_2(9, 114, 94); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 603, 96); + return jjStartNfaWithStates_2(9, 603, 94); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(9, 76, 96); + return jjStartNfaWithStates_2(9, 76, 94); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(9, 169, 96); + return jjStartNfaWithStates_2(9, 169, 94); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(9, 298, 96); + return jjStartNfaWithStates_2(9, 298, 94); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 497, 96); + return jjStartNfaWithStates_2(9, 497, 94); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(9, 35, 96); + return jjStartNfaWithStates_2(9, 35, 94); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_2(9, 74, 96); + return jjStartNfaWithStates_2(9, 74, 94); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 445, 96); + return jjStartNfaWithStates_2(9, 445, 94); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_2(9, 458, 96); + return jjStartNfaWithStates_2(9, 458, 94); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_2(9, 648, 96); + return jjStartNfaWithStates_2(9, 648, 94); else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(9, 741, 96); + return jjStartNfaWithStates_2(9, 741, 94); else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(9, 746, 96); + return jjStartNfaWithStates_2(9, 746, 94); 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: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(9, 30, 96); + return jjStartNfaWithStates_2(9, 30, 94); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(9, 173, 96); + return jjStartNfaWithStates_2(9, 173, 94); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(9, 462, 96); + return jjStartNfaWithStates_2(9, 462, 94); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(9, 549, 96); + return jjStartNfaWithStates_2(9, 549, 94); 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: @@ -13982,7 +13994,7 @@ else if ((active8 & 0x2000000000L) != 0L) case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 314, 96); + return jjStartNfaWithStates_2(9, 314, 94); break; case 89: case 121: @@ -13992,13 +14004,13 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(9, 293, 96); + return jjStartNfaWithStates_2(9, 293, 94); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(9, 397, 96); + return jjStartNfaWithStates_2(9, 397, 94); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(9, 550, 96); + return jjStartNfaWithStates_2(9, 550, 94); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(9, 658, 96); + return jjStartNfaWithStates_2(9, 658, 94); 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: @@ -14027,41 +14039,41 @@ private final int jjMoveStringLiteralDfa10_2(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_2(10, 579, 96); + return jjStartNfaWithStates_2(10, 579, 94); return jjMoveStringLiteralDfa11_2(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(10, 225, 96); + return jjStartNfaWithStates_2(10, 225, 94); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(10, 340, 96); + return jjStartNfaWithStates_2(10, 340, 94); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(10, 341, 96); + return jjStartNfaWithStates_2(10, 341, 94); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(10, 667, 96); + return jjStartNfaWithStates_2(10, 667, 94); 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) - return jjStartNfaWithStates_2(10, 40, 96); + return jjStartNfaWithStates_2(10, 40, 94); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(10, 89, 96); + return jjStartNfaWithStates_2(10, 89, 94); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_2(10, 132, 96); + return jjStartNfaWithStates_2(10, 132, 94); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 216, 96); + return jjStartNfaWithStates_2(10, 216, 94); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(10, 270, 96); + return jjStartNfaWithStates_2(10, 270, 94); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 508, 96); + return jjStartNfaWithStates_2(10, 508, 94); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(10, 527, 96); + return jjStartNfaWithStates_2(10, 527, 94); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(10, 620, 96); + return jjStartNfaWithStates_2(10, 620, 94); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 624, 96); + return jjStartNfaWithStates_2(10, 624, 94); else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(10, 735, 96); + return jjStartNfaWithStates_2(10, 735, 94); 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: @@ -14069,14 +14081,14 @@ else if ((active11 & 0x80000000L) != 0L) case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_2(10, 459, 96); + return jjStartNfaWithStates_2(10, 459, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_2(10, 67, 96); + return jjStartNfaWithStates_2(10, 67, 94); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(10, 418, 96); + return jjStartNfaWithStates_2(10, 418, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 73: case 105: @@ -14084,9 +14096,9 @@ else if ((active6 & 0x400000000L) != 0L) case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(10, 95, 96); + return jjStartNfaWithStates_2(10, 95, 94); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(10, 557, 96); + return jjStartNfaWithStates_2(10, 557, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -14094,18 +14106,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(10, 168, 96); + return jjStartNfaWithStates_2(10, 168, 94); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(10, 553, 96); + return jjStartNfaWithStates_2(10, 553, 94); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_2(10, 651, 96); + return jjStartNfaWithStates_2(10, 651, 94); else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 728, 96); + return jjStartNfaWithStates_2(10, 728, 94); 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: @@ -14113,9 +14125,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(10, 604, 96); + return jjStartNfaWithStates_2(10, 604, 94); else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(10, 726, 96); + return jjStartNfaWithStates_2(10, 726, 94); 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: @@ -14123,22 +14135,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(10, 105, 96); + return jjStartNfaWithStates_2(10, 105, 94); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 560, 96); + return jjStartNfaWithStates_2(10, 560, 94); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(10, 597, 96); + return jjStartNfaWithStates_2(10, 597, 94); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(10, 621, 96); + return jjStartNfaWithStates_2(10, 621, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(10, 104, 96); + return jjStartNfaWithStates_2(10, 104, 94); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(10, 171, 96); + return jjStartNfaWithStates_2(10, 171, 94); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(10, 290, 96); + return jjStartNfaWithStates_2(10, 290, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -14148,11 +14160,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 501, 96); + return jjStartNfaWithStates_2(10, 501, 94); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_2(10, 585, 96); + return jjStartNfaWithStates_2(10, 585, 94); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(10, 610, 96); + return jjStartNfaWithStates_2(10, 610, 94); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -14160,7 +14172,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 125, 96); + return jjStartNfaWithStates_2(10, 125, 94); break; case 88: case 120: @@ -14168,11 +14180,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 55, 96); + return jjStartNfaWithStates_2(10, 55, 94); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_2(10, 257, 96); + return jjStartNfaWithStates_2(10, 257, 94); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_2(10, 586, 96); + return jjStartNfaWithStates_2(10, 586, 94); break; default : break; @@ -14195,7 +14207,7 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_2(11, 512, 96); + return jjStartNfaWithStates_2(11, 512, 94); return jjMoveStringLiteralDfa12_2(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -14206,31 +14218,31 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 633, 96); + return jjStartNfaWithStates_2(11, 633, 94); return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 61, 96); + return jjStartNfaWithStates_2(11, 61, 94); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 121, 96); + return jjStartNfaWithStates_2(11, 121, 94); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 124, 96); + return jjStartNfaWithStates_2(11, 124, 94); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(11, 273, 96); + return jjStartNfaWithStates_2(11, 273, 94); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(11, 493, 96); + return jjStartNfaWithStates_2(11, 493, 94); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(11, 525, 96); + return jjStartNfaWithStates_2(11, 525, 94); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(11, 544, 96); + return jjStartNfaWithStates_2(11, 544, 94); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(11, 655, 96); + return jjStartNfaWithStates_2(11, 655, 94); return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -14241,9 +14253,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 123, 96); + return jjStartNfaWithStates_2(11, 123, 94); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 381, 96); + return jjStartNfaWithStates_2(11, 381, 94); break; case 73: case 105: @@ -14251,14 +14263,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(11, 426, 96); + return jjStartNfaWithStates_2(11, 426, 94); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(11, 594, 96); + return jjStartNfaWithStates_2(11, 594, 94); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 502, 96); + return jjStartNfaWithStates_2(11, 502, 94); return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -14266,11 +14278,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(11, 77, 96); + return jjStartNfaWithStates_2(11, 77, 94); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(11, 277, 96); + return jjStartNfaWithStates_2(11, 277, 94); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(11, 546, 96); + return jjStartNfaWithStates_2(11, 546, 94); return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -14281,17 +14293,17 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_2(11, 130, 96); + return jjStartNfaWithStates_2(11, 130, 94); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_2(11, 328, 96); + return jjStartNfaWithStates_2(11, 328, 94); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(11, 529, 96); + return jjStartNfaWithStates_2(11, 529, 94); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_2(11, 580, 96); + return jjStartNfaWithStates_2(11, 580, 94); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(11, 588, 96); + return jjStartNfaWithStates_2(11, 588, 94); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(11, 595, 96); + return jjStartNfaWithStates_2(11, 595, 94); return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); case 83: case 115: @@ -14299,13 +14311,13 @@ else if ((active9 & 0x80000L) != 0L) case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 244, 96); + return jjStartNfaWithStates_2(11, 244, 94); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(11, 338, 96); + return jjStartNfaWithStates_2(11, 338, 94); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_2(11, 582, 96); + return jjStartNfaWithStates_2(11, 582, 94); else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_2(11, 708, 96); + return jjStartNfaWithStates_2(11, 708, 94); return jjMoveStringLiteralDfa12_2(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: @@ -14313,7 +14325,7 @@ else if ((active11 & 0x10L) != 0L) case 89: case 121: if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(11, 723, 96); + return jjStartNfaWithStates_2(11, 723, 94); break; default : break; @@ -14339,7 +14351,7 @@ private final int jjMoveStringLiteralDfa12_2(long old0, long active0, long old1, case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(12, 170, 96); + return jjStartNfaWithStates_2(12, 170, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -14347,26 +14359,26 @@ private final int jjMoveStringLiteralDfa12_2(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(12, 543, 96); + return jjStartNfaWithStates_2(12, 543, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(12, 140, 96); + return jjStartNfaWithStates_2(12, 140, 94); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(12, 634, 96); + return jjStartNfaWithStates_2(12, 634, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(12, 111, 96); + return jjStartNfaWithStates_2(12, 111, 94); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(12, 289, 96); + return jjStartNfaWithStates_2(12, 289, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(12, 591, 96); + return jjStartNfaWithStates_2(12, 591, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -14374,7 +14386,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(12, 668, 96); + return jjStartNfaWithStates_2(12, 668, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -14382,9 +14394,9 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(12, 36, 96); + return jjStartNfaWithStates_2(12, 36, 94); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_2(12, 193, 96); + return jjStartNfaWithStates_2(12, 193, 94); return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: @@ -14392,12 +14404,12 @@ else if ((active3 & 0x2L) != 0L) case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_2(12, 584, 96); + return jjStartNfaWithStates_2(12, 584, 94); 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) - return jjStartNfaWithStates_2(12, 637, 96); + return jjStartNfaWithStates_2(12, 637, 94); return jjMoveStringLiteralDfa13_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -14411,7 +14423,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(12, 596, 96); + return jjStartNfaWithStates_2(12, 596, 94); break; default : break; @@ -14434,11 +14446,11 @@ private final int jjMoveStringLiteralDfa13_2(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 126, 96); + return jjStartNfaWithStates_2(13, 126, 94); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(13, 494, 96); + return jjStartNfaWithStates_2(13, 494, 94); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(13, 656, 96); + return jjStartNfaWithStates_2(13, 656, 94); 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: @@ -14446,38 +14458,38 @@ else if ((active10 & 0x10000L) != 0L) case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(13, 143, 96); + return jjStartNfaWithStates_2(13, 143, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(13, 593, 96); + return jjStartNfaWithStates_2(13, 593, 94); return jjMoveStringLiteralDfa14_2(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(13, 85, 96); + return jjStartNfaWithStates_2(13, 85, 94); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(13, 408, 96); + return jjStartNfaWithStates_2(13, 408, 94); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(13, 409, 96); + return jjStartNfaWithStates_2(13, 409, 94); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(13, 590, 96); + return jjStartNfaWithStates_2(13, 590, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 635, 96); + return jjStartNfaWithStates_2(13, 635, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(13, 292, 96); + return jjStartNfaWithStates_2(13, 292, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(13, 336, 96); + return jjStartNfaWithStates_2(13, 336, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -14491,7 +14503,7 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_2(13, 258, 96); + return jjStartNfaWithStates_2(13, 258, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); case 79: case 111: @@ -14499,7 +14511,7 @@ else if ((active9 & 0x4000L) != 0L) case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 319, 96); + return jjStartNfaWithStates_2(13, 319, 94); break; case 82: case 114: @@ -14507,17 +14519,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 510, 96); + return jjStartNfaWithStates_2(13, 510, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(13, 463, 96); + return jjStartNfaWithStates_2(13, 463, 94); return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 435, 96); + return jjStartNfaWithStates_2(13, 435, 94); break; case 89: case 121: @@ -14549,34 +14561,34 @@ private final int jjMoveStringLiteralDfa14_2(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(14, 425, 96); + return jjStartNfaWithStates_2(14, 425, 94); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 636, 96); + return jjStartNfaWithStates_2(14, 636, 94); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(14, 99, 96); + return jjStartNfaWithStates_2(14, 99, 94); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(14, 102, 96); + return jjStartNfaWithStates_2(14, 102, 94); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_2(14, 329, 96); + return jjStartNfaWithStates_2(14, 329, 94); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 638, 96); + return jjStartNfaWithStates_2(14, 638, 94); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 120, 96); + return jjStartNfaWithStates_2(14, 120, 94); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(14, 492, 96); + return jjStartNfaWithStates_2(14, 492, 94); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(14, 654, 96); + return jjStartNfaWithStates_2(14, 654, 94); return jjMoveStringLiteralDfa15_2(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(14, 480, 96); + return jjStartNfaWithStates_2(14, 480, 94); break; case 73: case 105: @@ -14590,11 +14602,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(14, 41, 96); + return jjStartNfaWithStates_2(14, 41, 94); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_2(14, 327, 96); + return jjStartNfaWithStates_2(14, 327, 94); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(14, 609, 96); + return jjStartNfaWithStates_2(14, 609, 94); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -14602,23 +14614,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(14, 107, 96); + return jjStartNfaWithStates_2(14, 107, 94); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 575, 96); + return jjStartNfaWithStates_2(14, 575, 94); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(14, 592, 96); + return jjStartNfaWithStates_2(14, 592, 94); 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) - return jjStartNfaWithStates_2(14, 73, 96); + return jjStartNfaWithStates_2(14, 73, 94); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(14, 424, 96); + return jjStartNfaWithStates_2(14, 424, 94); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_2(14, 641, 96); + return jjStartNfaWithStates_2(14, 641, 94); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -14626,9 +14638,9 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(14, 614, 96); + return jjStartNfaWithStates_2(14, 614, 94); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_2(14, 650, 96); + return jjStartNfaWithStates_2(14, 650, 94); break; case 89: case 121: @@ -14654,7 +14666,7 @@ private final int jjMoveStringLiteralDfa15_2(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(15, 86, 96); + return jjStartNfaWithStates_2(15, 86, 94); return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -14668,12 +14680,12 @@ private final int jjMoveStringLiteralDfa15_2(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(15, 23, 96); + return jjStartNfaWithStates_2(15, 23, 94); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_2(15, 69, 96); + return jjStartNfaWithStates_2(15, 69, 94); break; case 76: case 108: @@ -14703,9 +14715,9 @@ else if ((active2 & 0x80000000000000L) != 0L) case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(15, 96, 96); + return jjStartNfaWithStates_2(15, 96, 94); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_2(15, 576, 96); + return jjStartNfaWithStates_2(15, 576, 94); 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: @@ -14745,17 +14757,17 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(16, 103, 96); + return jjStartNfaWithStates_2(16, 103, 94); return jjMoveStringLiteralDfa17_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(16, 482, 96); + return jjStartNfaWithStates_2(16, 482, 94); return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(16, 84, 96); + return jjStartNfaWithStates_2(16, 84, 94); break; case 72: case 104: @@ -14778,7 +14790,7 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_2(16, 128, 96); + return jjStartNfaWithStates_2(16, 128, 94); break; case 82: case 114: @@ -14802,12 +14814,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(16, 380, 96); + return jjStartNfaWithStates_2(16, 380, 94); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(16, 574, 96); + return jjStartNfaWithStates_2(16, 574, 94); break; default : break; @@ -14836,17 +14848,17 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_2(17, 71, 96); + return jjStartNfaWithStates_2(17, 71, 94); return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(17, 101, 96); + return jjStartNfaWithStates_2(17, 101, 94); return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(17, 570, 96); + return jjStartNfaWithStates_2(17, 570, 94); break; case 73: case 105: @@ -14893,11 +14905,11 @@ private final int jjMoveStringLiteralDfa18_2(long old0, long active0, long old1, case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(18, 571, 96); + return jjStartNfaWithStates_2(18, 571, 94); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_2(18, 587, 96); + return jjStartNfaWithStates_2(18, 587, 94); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(18, 589, 96); + return jjStartNfaWithStates_2(18, 589, 94); return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -14907,7 +14919,7 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_2(18, 644, 96); + return jjStartNfaWithStates_2(18, 644, 94); return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: @@ -14957,7 +14969,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_2(19, 72, 96); + return jjStartNfaWithStates_2(19, 72, 94); return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); case 67: case 99: @@ -14968,7 +14980,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(19, 337, 96); + return jjStartNfaWithStates_2(19, 337, 94); break; case 78: case 110: @@ -14988,7 +15000,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(19, 479, 96); + return jjStartNfaWithStates_2(19, 479, 94); break; default : break; @@ -15023,19 +15035,19 @@ private final int jjMoveStringLiteralDfa20_2(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(20, 91, 96); + return jjStartNfaWithStates_2(20, 91, 94); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(20, 184, 96); + return jjStartNfaWithStates_2(20, 184, 94); return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_2(20, 70, 96); + return jjStartNfaWithStates_2(20, 70, 94); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(20, 481, 96); + return jjStartNfaWithStates_2(20, 481, 94); return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); case 77: case 109: @@ -15055,7 +15067,7 @@ else if ((active2 & 0x100000000000000L) != 0L) case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(20, 24, 96); + return jjStartNfaWithStates_2(20, 24, 94); break; default : break; @@ -15084,16 +15096,16 @@ private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_2(21, 645, 96); + return jjStartNfaWithStates_2(21, 645, 94); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(21, 141, 96); + return jjStartNfaWithStates_2(21, 141, 94); else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(21, 682, 96); + return jjStartNfaWithStates_2(21, 682, 94); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(21, 683, 96); + return jjStartNfaWithStates_2(21, 683, 94); return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); case 70: case 102: @@ -15146,7 +15158,7 @@ private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(22, 412, 96); + return jjStartNfaWithStates_2(22, 412, 94); return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: @@ -15196,7 +15208,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, case 65: case 97: if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(23, 684, 96); + return jjStartNfaWithStates_2(23, 684, 94); break; case 67: case 99: @@ -15207,7 +15219,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_2(23, 646, 96); + return jjStartNfaWithStates_2(23, 646, 94); break; case 76: case 108: @@ -15224,7 +15236,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(23, 562, 96); + return jjStartNfaWithStates_2(23, 562, 94); return jjMoveStringLiteralDfa24_2(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -15251,7 +15263,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(24, 413, 96); + return jjStartNfaWithStates_2(24, 413, 94); break; case 68: case 100: @@ -15265,7 +15277,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, case 71: case 103: if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(24, 681, 96); + return jjStartNfaWithStates_2(24, 681, 94); break; case 73: case 105: @@ -15312,29 +15324,29 @@ private final int jjMoveStringLiteralDfa25_2(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(25, 564, 96); + return jjStartNfaWithStates_2(25, 564, 94); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(25, 563, 96); + return jjStartNfaWithStates_2(25, 563, 94); else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(25, 725, 96); + return jjStartNfaWithStates_2(25, 725, 94); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(25, 411, 96); + return jjStartNfaWithStates_2(25, 411, 94); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(25, 573, 96); + return jjStartNfaWithStates_2(25, 573, 94); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(25, 410, 96); + return jjStartNfaWithStates_2(25, 410, 94); return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: @@ -15366,12 +15378,12 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(26, 567, 96); + return jjStartNfaWithStates_2(26, 567, 94); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(26, 566, 96); + return jjStartNfaWithStates_2(26, 566, 94); break; case 71: case 103: @@ -15379,7 +15391,7 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(26, 142, 96); + return jjStartNfaWithStates_2(26, 142, 94); break; case 79: case 111: @@ -15433,7 +15445,7 @@ private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(28, 569, 96); + return jjStartNfaWithStates_2(28, 569, 94); break; case 69: case 101: @@ -15491,7 +15503,7 @@ private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old2, case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(30, 122, 96); + return jjStartNfaWithStates_2(30, 122, 94); return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -15512,7 +15524,7 @@ private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_2(31, 129, 96); + return jjStartNfaWithStates_2(31, 129, 94); return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x200000000000L); default : break; @@ -15552,7 +15564,7 @@ private final int jjMoveStringLiteralDfa33_2(long old11, long active11) case 84: case 116: if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(33, 749, 96); + return jjStartNfaWithStates_2(33, 749, 94); break; default : break; @@ -15589,21 +15601,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 828) + kind = 828; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -15616,28 +15628,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 96: + case 94: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 96: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -15646,8 +15658,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -15664,8 +15676,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) @@ -15674,8 +15686,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -15690,14 +15702,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 95: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -15712,8 +15724,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 758) - kind = 758; + if (kind > 760) + kind = 760; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -15723,8 +15735,8 @@ else if (curChar == 39) case 97: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -15749,8 +15761,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -15774,8 +15786,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -15793,30 +15805,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 761) - kind = 761; + if (curChar == 39 && kind > 763) + kind = 763; break; case 23: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 814) + kind = 814; break; case 26: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 814) + kind = 814; break; case 27: if (curChar == 13) @@ -15833,15 +15845,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -15859,8 +15871,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -15870,26 +15882,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 828) + kind = 828; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(44); break; case 45: @@ -15903,8 +15915,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 754) + kind = 754; jjCheckNAdd(48); break; case 49: @@ -15918,22 +15930,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAddStates(35, 37); break; case 54: @@ -15951,8 +15963,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(57); break; case 58: @@ -15972,12 +15984,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 64: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 767) + kind = 767; break; case 67: case 69: @@ -15993,8 +16005,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 760) - kind = 760; + if (curChar == 39 && kind > 762) + kind = 762; break; case 72: if (curChar == 38) @@ -16017,8 +16029,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 825) + kind = 825; break; case 79: if (curChar == 32) @@ -16045,14 +16057,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 812) + kind = 812; break; case 93: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(25, 27); break; default : break; @@ -16075,8 +16087,8 @@ else if (curChar == 96) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -16097,32 +16109,32 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 96: + case 94: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 95: + case 96: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -16133,8 +16145,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; @@ -16145,25 +16157,25 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } break; - case 94: + case 95: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 770) + kind = 770; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 771) + kind = 771; } break; case 63: @@ -16214,8 +16226,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 29: @@ -16235,21 +16247,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 96 && kind > 818) - kind = 818; + if (curChar == 96 && kind > 820) + kind = 820; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -16259,15 +16271,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -16292,32 +16304,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 770) + kind = 770; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 771) + kind = 771; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 772) + kind = 772; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 773) + kind = 773; break; case 91: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; break; default : break; } @@ -16337,8 +16349,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16347,8 +16359,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16356,11 +16368,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 96: + case 94: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16368,11 +16380,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 95: + case 96: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16383,8 +16395,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16395,8 +16407,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16431,8 +16443,8 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(25, 27); break; case 30: @@ -16442,15 +16454,15 @@ else if ((0x1000000010L & l) != 0L) case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(35); break; case 36: @@ -16460,15 +16472,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -16484,8 +16496,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 812) + kind = 812; break; default : break; } @@ -16509,137 +16521,137 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, switch (pos) { case 0: + if ((active12 & 0x40000800L) != 0L) + return 76; + if ((active12 & 0x80000000L) != 0L) + return 58; + if ((active12 & 0x40L) != 0L) + return 77; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; return 1; } - 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 & 0x4e57ff27efffL) != 0L) - { - jjmatchedKind = 821; - return 77; - } - if ((active12 & 0x20000000L) != 0L) - return 58; - if ((active12 & 0x10L) != 0L) - return 78; - if ((active12 & 0x90001000000L) != 0L) - return 74; if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; 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 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 77; - if ((active12 & 0x600000L) != 0L) + if ((active12 & 0x240004000000L) != 0L) + return 74; + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x800000000L) != 0L) + return 78; + if ((active12 & 0x1800000L) != 0L) return 11; - if ((active12 & 0x40000000L) != 0L) + if ((active12 & 0x100000000L) != 0L) return 79; + 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 & 0x1ce57ff27efffL) != 0L) + { + jjmatchedKind = 823; + return 78; + } 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 & 0xbefd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 1; } - return 77; + return 78; } - if ((active12 & 0x90000000000L) != 0L) + if ((active12 & 0x240000000000L) != 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; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x14102a0110000L) != 0L) + return 78; 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 & 0x1d7fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 2; } - return 77; + 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 77; + return 78; 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 & 0x180100e3c7L) != 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 & 0x7fe7fefe0c38L) != 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 & 0x80180100e3c7L) != 0L) + 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 & 0x17fe7fefe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 3; } - return 77; + return 78; } 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 & 0x3ce7ddde05b4L) != 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 & 0x13ce7ddde05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 4; } - return 77; + return 78; } 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 & 0x430022204809L) != 0L) - return 77; + return 78; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 5; } - return 77; + return 78; } 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; + 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 & 0x10000001000a0L) != 0L) + return 78; return -1; 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) - 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 6; } - return 77; + return 78; } + 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 78; return -1; 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 & 0x444020004L) != 0L) - return 77; + return 78; 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 & 0x24229bf80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 7; } - return 77; + return 78; } return -1; case 8: @@ -16647,38 +16659,38 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, { if (jjmatchedPos != 8) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 8; } - return 77; + 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) - return 77; + 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 & 0x200081680010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 9; } - return 77; + 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 & 0x4200a800000L) != 0L) - return 77; + return 78; 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 & 0x81400000L) != 0L) - return 77; + 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 10; } - return 77; + return 78; } return -1; case 11: @@ -16686,42 +16698,42 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, { if (jjmatchedPos != 11) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 11; } - return 77; + 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 77; + 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 12; - return 77; + return 78; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 77; + return 78; return -1; 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; + return 78; 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 13; - return 77; + return 78; } 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; + 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 14; - return 77; + return 78; } return -1; case 15: @@ -16729,182 +16741,182 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, { if (jjmatchedPos != 15) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 15; } - return 77; + return 78; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 77; + 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 (jjmatchedPos != 16) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 16; } - return 77; + return 78; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 77; + return 78; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 77; + 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 = 821; + jjmatchedKind = 823; jjmatchedPos = 17; - return 77; + return 78; } return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) - return 77; + 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 (jjmatchedPos != 18) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 18; } - return 77; + return 78; } 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 19; - return 77; + return 78; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 77; + return 78; return -1; case 20: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 20; - return 77; + return 78; } if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 77; + return 78; return -1; case 21: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 21; - return 77; + return 78; } if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 77; + 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) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 22; - return 77; + return 78; } if ((active6 & 0x10000000L) != 0L) - return 77; + return 78; return -1; case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 77; + return 78; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 23; - return 77; + return 78; } 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 & 0x200000200000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 24; - return 77; + return 78; } + if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) + return 78; return -1; case 25: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 25; - return 77; + return 78; } if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 77; + return 78; return -1; case 26: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 26; - return 77; + return 78; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 77; + return 78; return -1; case 27: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 27; - return 77; + return 78; } return -1; case 28: if ((active8 & 0x200000000000000L) != 0L) - return 77; + return 78; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 28; - return 77; + return 78; } return -1; case 29: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 29; - return 77; + return 78; } return -1; case 30: if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 30; - return 77; + return 78; } if ((active1 & 0x400000000000000L) != 0L) - return 77; + return 78; return -1; case 31: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 31; - return 77; + return 78; } if ((active2 & 0x2L) != 0L) - return 77; + return 78; return -1; case 32: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 821; + jjmatchedKind = 823; jjmatchedPos = 32; - return 77; + return 78; } return -1; default : @@ -16928,57 +16940,57 @@ private final int jjMoveStringLiteralDfa0_3() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 34: - return jjStartNfaWithStates_3(0, 798, 79); + return jjStartNfaWithStates_3(0, 800, 79); case 36: - return jjStartNfaWithStates_3(0, 801, 77); + return jjStartNfaWithStates_3(0, 803, 78); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 795); case 39: - return jjStartNfaWithStates_3(0, 797, 58); + return jjStartNfaWithStates_3(0, 799, 58); case 40: - return jjStopAtPos(0, 766); + return jjStopAtPos(0, 768); case 41: - return jjStopAtPos(0, 767); + return jjStopAtPos(0, 769); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 790); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 780); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 794; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x240000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 62: - jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 784); case 91: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 777); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 802); case 65: case 97: jjmatchedKind = 3; @@ -17025,7 +17037,7 @@ private final int jjMoveStringLiteralDfa0_3() 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, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -17052,7 +17064,7 @@ private final int jjMoveStringLiteralDfa0_3() 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, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x80000c200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -17063,12 +17075,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, 772, 78); + return jjStartNfaWithStates_3(0, 774, 77); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 801; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); default : return jjMoveNfa_3(0, 0); } @@ -17083,43 +17095,43 @@ private final int jjMoveStringLiteralDfa1_3(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x200000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 813; 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, 0x10000000000L); + 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, 0x40000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x40000000L) != 0L) + return jjStopAtPos(1, 798); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(1, 811); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x1000000000L) != 0L) + return jjStopAtPos(1, 804); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) - return jjStopAtPos(1, 785); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); else if ((active12 & 0x80000L) != 0L) return jjStopAtPos(1, 787); + else if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 62: - 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); + if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); + else if ((active12 & 0x1000000L) != 0L) + return jjStopAtPos(1, 792); + else if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); 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, 0x200443c40000L, 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, 0xa00443c40000L, 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); @@ -17140,7 +17152,7 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedPos = 1; } else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(1, 720, 77); + return jjStartNfaWithStates_3(1, 720, 78); return jjMoveStringLiteralDfa2_3(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); case 71: case 103: @@ -17168,7 +17180,7 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(1, 316, 77); + return jjStartNfaWithStates_3(1, 316, 78); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; @@ -17192,7 +17204,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, 0x140a300008200L, 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); @@ -17240,11 +17252,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(1, 51, 77); + return jjStartNfaWithStates_3(1, 51, 78); 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 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; default : break; @@ -17263,13 +17275,13 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x40000000000L) != 0L) + return jjStopAtPos(2, 810); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_3(2, 8, 77); + return jjStartNfaWithStates_3(2, 8, 78); 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, 0x14100c006400L, active12, 0L); case 66: case 98: @@ -17277,7 +17289,7 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(2, 27, 77); + return jjStartNfaWithStates_3(2, 27, 78); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; @@ -17287,9 +17299,9 @@ else if ((active2 & 0x200000L) != 0L) case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_3(2, 9, 77); + return jjStartNfaWithStates_3(2, 9, 78); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(2, 17, 77); + return jjStartNfaWithStates_3(2, 17, 78); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -17301,16 +17313,16 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_3(2, 385, 77); + return jjStartNfaWithStates_3(2, 385, 78); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(2, 406, 77); + return jjStartNfaWithStates_3(2, 406, 78); 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); + return jjStartNfaWithStates_3(2, 20, 78); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_3(2, 388, 77); + return jjStartNfaWithStates_3(2, 388, 78); 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: @@ -17323,9 +17335,9 @@ else if ((active6 & 0x10L) != 0L) case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(2, 37, 77); + return jjStartNfaWithStates_3(2, 37, 78); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(2, 301, 77); + return jjStartNfaWithStates_3(2, 301, 78); 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: @@ -17333,8 +17345,8 @@ else if ((active4 & 0x200000000000L) != 0L) case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 432, 77); - return jjMoveStringLiteralDfa3_3(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_3(2, 432, 78); + return jjMoveStringLiteralDfa3_3(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x800000200800L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17354,12 +17366,12 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedPos = 2; } else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(2, 716, 77); + return jjStartNfaWithStates_3(2, 716, 78); 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, 0xa82000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(2, 616, 77); + return jjStartNfaWithStates_3(2, 616, 78); 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: @@ -17380,9 +17392,9 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 250, 77); + return jjStartNfaWithStates_3(2, 250, 78); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_3(2, 323, 77); + return jjStartNfaWithStates_3(2, 323, 78); return jjMoveStringLiteralDfa3_3(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); case 81: case 113: @@ -17411,18 +17423,18 @@ else if ((active6 & 0x4000000000L) != 0L) case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(2, 46, 77); + return jjStartNfaWithStates_3(2, 46, 78); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 177, 77); + return jjStartNfaWithStates_3(2, 177, 78); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(2, 237, 77); + return jjStartNfaWithStates_3(2, 237, 78); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 370, 77); + return jjStartNfaWithStates_3(2, 370, 78); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -17443,15 +17455,15 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 179, 77); + return jjStartNfaWithStates_3(2, 179, 78); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(2, 364, 77); + return jjStartNfaWithStates_3(2, 364, 78); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000000000L, active12, 0L); case 88: case 120: if ((active5 & 0x400L) != 0L) @@ -17463,14 +17475,14 @@ else if ((active7 & 0x800000000000L) != 0L) case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(2, 18, 77); + return jjStartNfaWithStates_3(2, 18, 78); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 180, 77); + return jjStartNfaWithStates_3(2, 180, 78); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; @@ -17504,7 +17516,7 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); case 56: if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(3, 686, 77); + return jjStartNfaWithStates_3(3, 686, 78); 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); @@ -17516,14 +17528,14 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, jjmatchedPos = 3; } 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, 0x400041000000L); + return jjStartNfaWithStates_3(3, 285, 78); + 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, 0x1400041000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 47, 77); + return jjStartNfaWithStates_3(3, 47, 78); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(3, 78, 77); + return jjStartNfaWithStates_3(3, 78, 78); return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); case 67: case 99: @@ -17541,7 +17553,7 @@ else if ((active3 & 0x800L) != 0L) case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 249, 77); + return jjStartNfaWithStates_3(3, 249, 78); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -17553,61 +17565,61 @@ else if ((active7 & 0x20L) != 0L) jjmatchedPos = 3; } else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 689, 77); + return jjStartNfaWithStates_3(3, 689, 78); return jjMoveStringLiteralDfa4_3(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 58, 77); + return jjStartNfaWithStates_3(3, 58, 78); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 117, 77); + return jjStartNfaWithStates_3(3, 117, 78); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 187, 77); + return jjStartNfaWithStates_3(3, 187, 78); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 227, 77); + return jjStartNfaWithStates_3(3, 227, 78); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(3, 353, 77); + return jjStartNfaWithStates_3(3, 353, 78); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 367, 77); + return jjStartNfaWithStates_3(3, 367, 78); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(3, 488, 77); + return jjStartNfaWithStates_3(3, 488, 78); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(3, 536, 77); + return jjStartNfaWithStates_3(3, 536, 78); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(3, 539, 77); + return jjStartNfaWithStates_3(3, 539, 78); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 659, 77); + return jjStartNfaWithStates_3(3, 659, 78); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(3, 664, 77); + return jjStartNfaWithStates_3(3, 664, 78); else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(3, 719, 77); + return jjStartNfaWithStates_3(3, 719, 78); 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) - return jjStartNfaWithStates_3(3, 26, 77); + return jjStartNfaWithStates_3(3, 26, 78); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_3(3, 521, 77); + return jjStartNfaWithStates_3(3, 521, 78); break; case 71: case 103: @@ -17615,11 +17627,11 @@ else if ((active8 & 0x200L) != 0L) case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 49, 77); + return jjStartNfaWithStates_3(3, 49, 78); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 185, 77); + return jjStartNfaWithStates_3(3, 185, 78); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(3, 420, 77); + return jjStartNfaWithStates_3(3, 420, 78); else if ((active11 & 0x40L) != 0L) { jjmatchedKind = 710; @@ -17632,16 +17644,16 @@ else if ((active11 & 0x40L) != 0L) case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_3(3, 452, 77); + return jjStartNfaWithStates_3(3, 452, 78); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 519, 77); + return jjStartNfaWithStates_3(3, 519, 78); else if ((active10 & 0x8000000000000000L) != 0L) { jjmatchedKind = 703; jjmatchedPos = 3; } else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_3(3, 713, 77); + return jjStartNfaWithStates_3(3, 713, 78); return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); case 76: case 108: @@ -17656,21 +17668,21 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(3, 230, 77); + return jjStartNfaWithStates_3(3, 230, 78); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 455, 77); + return jjStartNfaWithStates_3(3, 455, 78); else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 739, 77); + return jjStartNfaWithStates_3(3, 739, 78); 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) - return jjStartNfaWithStates_3(3, 229, 77); + return jjStartNfaWithStates_3(3, 229, 78); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; @@ -17680,39 +17692,39 @@ else if ((active10 & 0x20000L) != 0L) case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(3, 286, 77); + return jjStartNfaWithStates_3(3, 286, 78); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_3(3, 390, 77); + return jjStartNfaWithStates_3(3, 390, 78); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 431, 77); + return jjStartNfaWithStates_3(3, 431, 78); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 626, 77); + return jjStartNfaWithStates_3(3, 626, 78); else if ((active11 & 0x2L) != 0L) { jjmatchedKind = 705; jjmatchedPos = 3; } else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(3, 740, 77); + return jjStartNfaWithStates_3(3, 740, 78); 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); + return jjStartNfaWithStates_3(3, 240, 78); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(3, 279, 77); + return jjStartNfaWithStates_3(3, 279, 78); 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); + return jjStartNfaWithStates_3(3, 181, 78); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(3, 537, 77); + return jjStartNfaWithStates_3(3, 537, 78); 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, 0x800c020400L); case 81: case 113: @@ -17753,33 +17765,35 @@ else if ((active11 & 0x2000L) != 0L) case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 147, 77); + return jjStartNfaWithStates_3(3, 147, 78); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 498, 77); + return jjStartNfaWithStates_3(3, 498, 78); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 531, 77); + return jjStartNfaWithStates_3(3, 531, 78); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 628, 77); + return jjStartNfaWithStates_3(3, 628, 78); 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) - return jjStartNfaWithStates_3(3, 59, 77); + return jjStartNfaWithStates_3(3, 59, 78); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 309, 77); + return jjStartNfaWithStates_3(3, 309, 78); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(3, 365, 77); + return jjStartNfaWithStates_3(3, 365, 78); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_3(3, 386, 77); + return jjStartNfaWithStates_3(3, 386, 78); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 419, 77); + return jjStartNfaWithStates_3(3, 419, 78); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(3, 598, 77); + return jjStartNfaWithStates_3(3, 598, 78); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(3, 751, 78); 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: @@ -17787,19 +17801,19 @@ else if ((active9 & 0x400000L) != 0L) case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 442, 77); + return jjStartNfaWithStates_3(3, 442, 78); 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) - return jjStartNfaWithStates_3(3, 533, 77); + return jjStartNfaWithStates_3(3, 533, 78); else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 701, 77); + return jjStartNfaWithStates_3(3, 701, 78); return jjMoveStringLiteralDfa4_3(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_3(3, 389, 77); + return jjStartNfaWithStates_3(3, 389, 78); return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); default : break; @@ -17819,11 +17833,11 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, { case 50: if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 688, 77); + return jjStartNfaWithStates_3(4, 688, 78); break; case 54: if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(4, 687, 77); + return jjStartNfaWithStates_3(4, 687, 78); 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, 0xd000000L); @@ -17833,68 +17847,68 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(4, 362, 77); + return jjStartNfaWithStates_3(4, 362, 78); 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 jjStartNfaWithStates_3(4, 744, 78); 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) - return jjStartNfaWithStates_3(4, 224, 77); + return jjStartNfaWithStates_3(4, 224, 78); return jjMoveStringLiteralDfa5_3(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 79, 77); + return jjStartNfaWithStates_3(4, 79, 78); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_3(4, 133, 77); + return jjStartNfaWithStates_3(4, 133, 78); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(4, 211, 77); + return jjStartNfaWithStates_3(4, 211, 78); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 255, 77); + return jjStartNfaWithStates_3(4, 255, 78); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(4, 303, 77); + return jjStartNfaWithStates_3(4, 303, 78); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 335, 77); + return jjStartNfaWithStates_3(4, 335, 78); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 372, 77); + return jjStartNfaWithStates_3(4, 372, 78); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_3(4, 451, 77); + return jjStartNfaWithStates_3(4, 451, 78); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(4, 487, 77); + return jjStartNfaWithStates_3(4, 487, 78); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 506, 77); + return jjStartNfaWithStates_3(4, 506, 78); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 541, 77); + return jjStartNfaWithStates_3(4, 541, 78); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(4, 608, 77); + return jjStartNfaWithStates_3(4, 608, 78); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(4, 679, 77); + return jjStartNfaWithStates_3(4, 679, 78); else if ((active10 & 0x4000000000000L) != 0L) { jjmatchedKind = 690; jjmatchedPos = 4; } else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_3(4, 707, 77); + return jjStartNfaWithStates_3(4, 707, 78); else if ((active11 & 0x800L) != 0L) { jjmatchedKind = 715; @@ -17904,21 +17918,21 @@ else if ((active11 & 0x800L) != 0L) case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(4, 164, 77); + return jjStartNfaWithStates_3(4, 164, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(4, 685, 77); + return jjStartNfaWithStates_3(4, 685, 78); 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) - return jjStartNfaWithStates_3(4, 163, 77); + return jjStartNfaWithStates_3(4, 163, 78); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_3(4, 194, 77); + return jjStartNfaWithStates_3(4, 194, 78); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 212, 77); + return jjStartNfaWithStates_3(4, 212, 78); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -17932,29 +17946,29 @@ 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, 0x1046100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 75, 77); + return jjStartNfaWithStates_3(4, 75, 78); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(4, 81, 77); + return jjStartNfaWithStates_3(4, 81, 78); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(4, 214, 77); + return jjStartNfaWithStates_3(4, 214, 78); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(4, 300, 77); + return jjStartNfaWithStates_3(4, 300, 78); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 311, 77); + return jjStartNfaWithStates_3(4, 311, 78); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(4, 750, 77); + return jjStartNfaWithStates_3(4, 750, 78); 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: @@ -17962,16 +17976,16 @@ else if ((active11 & 0x400000000000L) != 0L) case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_3(4, 10, 77); + return jjStartNfaWithStates_3(4, 10, 78); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_3(4, 65, 77); + return jjStartNfaWithStates_3(4, 65, 78); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(4, 670, 77); + return jjStartNfaWithStates_3(4, 670, 78); 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: @@ -17987,88 +18001,88 @@ else if ((active10 & 0x40000000L) != 0L) case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 11, 77); + return jjStartNfaWithStates_3(4, 11, 78); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 15, 77); + return jjStartNfaWithStates_3(4, 15, 78); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_3(4, 196, 77); + return jjStartNfaWithStates_3(4, 196, 78); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(4, 218, 77); + return jjStartNfaWithStates_3(4, 218, 78); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 267, 77); + return jjStartNfaWithStates_3(4, 267, 78); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_3(4, 321, 77); + return jjStartNfaWithStates_3(4, 321, 78); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 361, 77); + return jjStartNfaWithStates_3(4, 361, 78); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(4, 400, 77); + return jjStartNfaWithStates_3(4, 400, 78); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 436, 77); + return jjStartNfaWithStates_3(4, 436, 78); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 444, 77); + return jjStartNfaWithStates_3(4, 444, 78); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 669, 77); + return jjStartNfaWithStates_3(4, 669, 78); else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(4, 677, 77); + return jjStartNfaWithStates_3(4, 677, 78); return jjMoveStringLiteralDfa5_3(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 116, 77); + return jjStartNfaWithStates_3(4, 116, 78); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 252, 77); + return jjStartNfaWithStates_3(4, 252, 78); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(4, 355, 77); + return jjStartNfaWithStates_3(4, 355, 78); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(4, 357, 77); + return jjStartNfaWithStates_3(4, 357, 78); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 376, 77); + return jjStartNfaWithStates_3(4, 376, 78); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_3(4, 454, 77); + return jjStartNfaWithStates_3(4, 454, 78); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 532, 77); + return jjStartNfaWithStates_3(4, 532, 78); else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_3(4, 704, 77); + return jjStartNfaWithStates_3(4, 704, 78); else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(4, 718, 77); + return jjStartNfaWithStates_3(4, 718, 78); return jjMoveStringLiteralDfa5_3(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 112, 77); + return jjStartNfaWithStates_3(4, 112, 78); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(4, 217, 77); + return jjStartNfaWithStates_3(4, 217, 78); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(4, 268, 77); + return jjStartNfaWithStates_3(4, 268, 78); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(4, 269, 77); + return jjStartNfaWithStates_3(4, 269, 78); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 315, 77); + return jjStartNfaWithStates_3(4, 315, 78); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(4, 429, 77); + return jjStartNfaWithStates_3(4, 429, 78); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(4, 473, 77); + return jjStartNfaWithStates_3(4, 473, 78); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(4, 486, 77); + return jjStartNfaWithStates_3(4, 486, 78); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(4, 599, 77); + return jjStartNfaWithStates_3(4, 599, 78); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(4, 652, 77); + return jjStartNfaWithStates_3(4, 652, 78); 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: @@ -18079,28 +18093,28 @@ else if ((active10 & 0x1000L) != 0L) case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(4, 14, 77); + return jjStartNfaWithStates_3(4, 14, 78); 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 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 733, 77); + return jjStartNfaWithStates_3(4, 733, 78); 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: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(4, 19, 77); + return jjStartNfaWithStates_3(4, 19, 78); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 188, 77); + return jjStartNfaWithStates_3(4, 188, 78); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_3(4, 198, 77); + return jjStartNfaWithStates_3(4, 198, 78); else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 745, 77); + return jjStartNfaWithStates_3(4, 745, 78); 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: @@ -18142,20 +18156,20 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 447, 77); + return jjStartNfaWithStates_3(5, 447, 78); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(5, 602, 77); + return jjStartNfaWithStates_3(5, 602, 78); 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) - return jjStartNfaWithStates_3(5, 54, 77); + return jjStartNfaWithStates_3(5, 54, 78); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 208, 77); + return jjStartNfaWithStates_3(5, 208, 78); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(5, 339, 77); + return jjStartNfaWithStates_3(5, 339, 78); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(5, 427, 77); + return jjStartNfaWithStates_3(5, 427, 78); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; @@ -18165,62 +18179,62 @@ else if ((active8 & 0x8L) != 0L) case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(5, 38, 77); + return jjStartNfaWithStates_3(5, 38, 78); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 115, 77); + return jjStartNfaWithStates_3(5, 115, 78); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(5, 150, 77); + return jjStartNfaWithStates_3(5, 150, 78); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 160, 77); + return jjStartNfaWithStates_3(5, 160, 78); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(5, 161, 77); + return jjStartNfaWithStates_3(5, 161, 78); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 178, 77); + return jjStartNfaWithStates_3(5, 178, 78); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 197, 77); + return jjStartNfaWithStates_3(5, 197, 78); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 254, 77); + return jjStartNfaWithStates_3(5, 254, 78); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 349, 77); + return jjStartNfaWithStates_3(5, 349, 78); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(5, 485, 77); + return jjStartNfaWithStates_3(5, 485, 78); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 535, 77); + return jjStartNfaWithStates_3(5, 535, 78); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(5, 540, 77); + return jjStartNfaWithStates_3(5, 540, 78); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 663, 77); + return jjStartNfaWithStates_3(5, 663, 78); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(5, 671, 77); + return jjStartNfaWithStates_3(5, 671, 78); else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(5, 676, 77); + return jjStartNfaWithStates_3(5, 676, 78); 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) - return jjStartNfaWithStates_3(5, 375, 77); + return jjStartNfaWithStates_3(5, 375, 78); return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 247, 77); + return jjStartNfaWithStates_3(5, 247, 78); 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); + return jjStartNfaWithStates_3(5, 310, 78); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_3(5, 514, 77); + return jjStartNfaWithStates_3(5, 514, 78); 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: @@ -18231,16 +18245,16 @@ else if ((active8 & 0x4L) != 0L) case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(5, 238, 77); + return jjStartNfaWithStates_3(5, 238, 78); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 416, 77); + return jjStartNfaWithStates_3(5, 416, 78); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_3(5, 513, 77); + return jjStartNfaWithStates_3(5, 513, 78); 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) - return jjStartNfaWithStates_3(5, 605, 77); + return jjStartNfaWithStates_3(5, 605, 78); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -18250,16 +18264,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_3(5, 7, 77); + return jjStartNfaWithStates_3(5, 7, 78); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 176, 77); + return jjStartNfaWithStates_3(5, 176, 78); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(5, 232, 77); + return jjStartNfaWithStates_3(5, 232, 78); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -18271,7 +18285,7 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedPos = 5; } else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_3(5, 711, 77); + return jjStartNfaWithStates_3(5, 711, 78); 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: @@ -18279,7 +18293,7 @@ else if ((active11 & 0x80L) != 0L) case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(5, 490, 77); + return jjStartNfaWithStates_3(5, 490, 78); 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: @@ -18292,13 +18306,13 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(5, 213, 77); + return jjStartNfaWithStates_3(5, 213, 78); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(5, 334, 77); + return jjStartNfaWithStates_3(5, 334, 78); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 377, 77); + return jjStartNfaWithStates_3(5, 377, 78); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 505, 77); + return jjStartNfaWithStates_3(5, 505, 78); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; @@ -18308,28 +18322,28 @@ else if ((active8 & 0x4000L) != 0L) case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 16, 77); + return jjStartNfaWithStates_3(5, 16, 78); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_3(5, 195, 77); + return jjStartNfaWithStates_3(5, 195, 78); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(5, 205, 77); + return jjStartNfaWithStates_3(5, 205, 78); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 246, 77); + return jjStartNfaWithStates_3(5, 246, 78); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(5, 352, 77); + return jjStartNfaWithStates_3(5, 352, 78); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 382, 77); + return jjStartNfaWithStates_3(5, 382, 78); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(5, 398, 77); + return jjStartNfaWithStates_3(5, 398, 78); else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 691, 77); + return jjStartNfaWithStates_3(5, 691, 78); 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) - return jjStartNfaWithStates_3(5, 5, 77); + return jjStartNfaWithStates_3(5, 5, 78); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(5, 44, 77); + return jjStartNfaWithStates_3(5, 44, 78); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -18341,27 +18355,29 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 221, 77); + return jjStartNfaWithStates_3(5, 221, 78); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_3(5, 259, 77); + return jjStartNfaWithStates_3(5, 259, 78); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(5, 271, 77); + return jjStartNfaWithStates_3(5, 271, 78); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 379, 77); + return jjStartNfaWithStates_3(5, 379, 78); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_3(5, 384, 77); + return jjStartNfaWithStates_3(5, 384, 78); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(5, 401, 77); + return jjStartNfaWithStates_3(5, 401, 78); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 477, 77); + return jjStartNfaWithStates_3(5, 477, 78); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_3(5, 520, 77); + return jjStartNfaWithStates_3(5, 520, 78); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(5, 611, 77); + return jjStartNfaWithStates_3(5, 611, 78); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(5, 675, 77); + return jjStartNfaWithStates_3(5, 675, 78); else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(5, 678, 77); + return jjStartNfaWithStates_3(5, 678, 78); + else if ((active11 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 752, 78); 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: @@ -18372,9 +18388,9 @@ else if ((active10 & 0x4000000000L) != 0L) case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(5, 282, 77); + return jjStartNfaWithStates_3(5, 282, 78); else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 709, 77); + return jjStartNfaWithStates_3(5, 709, 78); return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -18382,13 +18398,13 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(5, 45, 77); + return jjStartNfaWithStates_3(5, 45, 78); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(5, 228, 77); + return jjStartNfaWithStates_3(5, 228, 78); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(5, 350, 77); + return jjStartNfaWithStates_3(5, 350, 78); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(5, 617, 77); + return jjStartNfaWithStates_3(5, 617, 78); 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: @@ -18411,7 +18427,7 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(6, 464, 77); + return jjStartNfaWithStates_3(6, 464, 78); 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); @@ -18429,20 +18445,20 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 378, 77); + return jjStartNfaWithStates_3(6, 378, 78); return jjMoveStringLiteralDfa7_3(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 158, 77); + return jjStartNfaWithStates_3(6, 158, 78); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 165, 77); + return jjStartNfaWithStates_3(6, 165, 78); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 242, 77); + return jjStartNfaWithStates_3(6, 242, 78); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 325, 77); + return jjStartNfaWithStates_3(6, 325, 78); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(6, 674, 77); + return jjStartNfaWithStates_3(6, 674, 78); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); case 69: case 101: @@ -18452,41 +18468,41 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 82, 77); + return jjStartNfaWithStates_3(6, 82, 78); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 152, 77); + return jjStartNfaWithStates_3(6, 152, 78); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_3(6, 201, 77); + return jjStartNfaWithStates_3(6, 201, 78); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(6, 204, 77); + return jjStartNfaWithStates_3(6, 204, 78); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 261, 77); + return jjStartNfaWithStates_3(6, 261, 78); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 428, 77); + return jjStartNfaWithStates_3(6, 428, 78); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 440, 77); + return jjStartNfaWithStates_3(6, 440, 78); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 470, 77); + return jjStartNfaWithStates_3(6, 470, 78); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 472, 77); + return jjStartNfaWithStates_3(6, 472, 78); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 665, 77); + return jjStartNfaWithStates_3(6, 665, 78); else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(6, 742, 77); + return jjStartNfaWithStates_3(6, 742, 78); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 743, 77); + return jjStartNfaWithStates_3(6, 743, 78); else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 748, 77); + return jjStartNfaWithStates_3(6, 748, 78); 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, 0x45000004L); case 70: case 102: @@ -18499,28 +18515,28 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 63, 77); + return jjStartNfaWithStates_3(6, 63, 78); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 308, 77); + return jjStartNfaWithStates_3(6, 308, 78); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 363, 77); + return jjStartNfaWithStates_3(6, 363, 78); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(6, 417, 77); + return jjStartNfaWithStates_3(6, 417, 78); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(6, 430, 77); + return jjStartNfaWithStates_3(6, 430, 78); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 499, 77); + return jjStartNfaWithStates_3(6, 499, 78); else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 698, 77); + return jjStartNfaWithStates_3(6, 698, 78); else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 736, 77); + return jjStartNfaWithStates_3(6, 736, 78); 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); + return jjStartNfaWithStates_3(6, 50, 78); else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 747, 77); + return jjStartNfaWithStates_3(6, 747, 78); 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: @@ -18528,25 +18544,25 @@ else if ((active11 & 0x80000000000L) != 0L) case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(6, 151, 77); + return jjStartNfaWithStates_3(6, 151, 78); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(6, 234, 77); + return jjStartNfaWithStates_3(6, 234, 78); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 306, 77); + return jjStartNfaWithStates_3(6, 306, 78); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(6, 360, 77); + return jjStartNfaWithStates_3(6, 360, 78); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 414, 77); + return jjStartNfaWithStates_3(6, 414, 78); return jjMoveStringLiteralDfa7_3(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: @@ -18554,28 +18570,28 @@ else if ((active6 & 0x40000000L) != 0L) case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 43, 77); + return jjStartNfaWithStates_3(6, 43, 78); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 48, 77); + return jjStartNfaWithStates_3(6, 48, 78); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(6, 207, 77); + return jjStartNfaWithStates_3(6, 207, 78); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 222, 77); + return jjStartNfaWithStates_3(6, 222, 78); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(6, 223, 77); + return jjStartNfaWithStates_3(6, 223, 78); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 421, 77); + return jjStartNfaWithStates_3(6, 421, 78); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 433, 77); + return jjStartNfaWithStates_3(6, 433, 78); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_3(6, 517, 77); + return jjStartNfaWithStates_3(6, 517, 78); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 672, 77); + return jjStartNfaWithStates_3(6, 672, 78); else if ((active10 & 0x800000000000000L) != 0L) { jjmatchedKind = 699; @@ -18588,63 +18604,63 @@ else if ((active10 & 0x800000000000000L) != 0L) case 80: case 112: if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 693, 77); + return jjStartNfaWithStates_3(6, 693, 78); return jjMoveStringLiteralDfa7_3(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(6, 159, 77); + return jjStartNfaWithStates_3(6, 159, 78); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(6, 275, 77); + return jjStartNfaWithStates_3(6, 275, 78); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 280, 77); + return jjStartNfaWithStates_3(6, 280, 78); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 283, 77); + return jjStartNfaWithStates_3(6, 283, 78); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 320, 77); + return jjStartNfaWithStates_3(6, 320, 78); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 534, 77); + return jjStartNfaWithStates_3(6, 534, 78); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 696, 77); + return jjStartNfaWithStates_3(6, 696, 78); else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_3(6, 714, 77); + return jjStartNfaWithStates_3(6, 714, 78); 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) - return jjStartNfaWithStates_3(6, 326, 77); + return jjStartNfaWithStates_3(6, 326, 78); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 345, 77); + return jjStartNfaWithStates_3(6, 345, 78); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_3(6, 392, 77); + return jjStartNfaWithStates_3(6, 392, 78); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(6, 484, 77); + return jjStartNfaWithStates_3(6, 484, 78); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_3(6, 516, 77); + return jjStartNfaWithStates_3(6, 516, 78); else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 722, 77); + return jjStartNfaWithStates_3(6, 722, 78); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(6, 87, 77); + return jjStartNfaWithStates_3(6, 87, 78); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(6, 109, 77); + return jjStartNfaWithStates_3(6, 109, 78); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -18656,28 +18672,28 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 186, 77); + return jjStartNfaWithStates_3(6, 186, 78); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 210, 77); + return jjStartNfaWithStates_3(6, 210, 78); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(6, 474, 77); + return jjStartNfaWithStates_3(6, 474, 78); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 475, 77); + return jjStartNfaWithStates_3(6, 475, 78); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 551, 77); + return jjStartNfaWithStates_3(6, 551, 78); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 639, 77); + return jjStartNfaWithStates_3(6, 639, 78); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(6, 673, 77); + return jjStartNfaWithStates_3(6, 673, 78); else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 697, 77); + return jjStartNfaWithStates_3(6, 697, 78); else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_3(6, 712, 77); + return jjStartNfaWithStates_3(6, 712, 78); 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, 0x400120a0000L); case 85: case 117: @@ -18691,17 +18707,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 64, 77); + return jjStartNfaWithStates_3(6, 64, 78); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 312, 77); + return jjStartNfaWithStates_3(6, 312, 78); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(6, 404, 77); + return jjStartNfaWithStates_3(6, 404, 78); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 443, 77); + return jjStartNfaWithStates_3(6, 443, 78); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 448, 77); + return jjStartNfaWithStates_3(6, 448, 78); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 662, 77); + return jjStartNfaWithStates_3(6, 662, 78); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -18727,9 +18743,9 @@ private final int jjMoveStringLiteralDfa7_3(long old0, long active0, long old1, case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(7, 552, 77); + return jjStartNfaWithStates_3(7, 552, 78); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(7, 555, 77); + return jjStartNfaWithStates_3(7, 555, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -18744,83 +18760,83 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 57, 77); + return jjStartNfaWithStates_3(7, 57, 78); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 156, 77); + return jjStartNfaWithStates_3(7, 156, 78); else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 738, 77); + return jjStartNfaWithStates_3(7, 738, 78); 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: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_3(7, 6, 77); + return jjStartNfaWithStates_3(7, 6, 78); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(7, 13, 77); + return jjStartNfaWithStates_3(7, 13, 78); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(7, 80, 77); + return jjStartNfaWithStates_3(7, 80, 78); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 108, 77); + return jjStartNfaWithStates_3(7, 108, 78); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_3(7, 135, 77); + return jjStartNfaWithStates_3(7, 135, 78); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 167, 77); + return jjStartNfaWithStates_3(7, 167, 78); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(7, 272, 77); + return jjStartNfaWithStates_3(7, 272, 78); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(7, 299, 77); + return jjStartNfaWithStates_3(7, 299, 78); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(7, 302, 77); + return jjStartNfaWithStates_3(7, 302, 78); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 331, 77); + return jjStartNfaWithStates_3(7, 331, 78); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 346, 77); + return jjStartNfaWithStates_3(7, 346, 78); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 374, 77); + return jjStartNfaWithStates_3(7, 374, 78); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 441, 77); + return jjStartNfaWithStates_3(7, 441, 78); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(7, 469, 77); + return jjStartNfaWithStates_3(7, 469, 78); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(7, 524, 77); + return jjStartNfaWithStates_3(7, 524, 78); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(7, 547, 77); + return jjStartNfaWithStates_3(7, 547, 78); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 556, 77); + return jjStartNfaWithStates_3(7, 556, 78); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(7, 660, 77); + return jjStartNfaWithStates_3(7, 660, 78); else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 721, 77); + return jjStartNfaWithStates_3(7, 721, 78); 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) - return jjStartNfaWithStates_3(7, 692, 77); + return jjStartNfaWithStates_3(7, 692, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 189, 77); + return jjStartNfaWithStates_3(7, 189, 78); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 245, 77); + return jjStartNfaWithStates_3(7, 245, 78); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 395, 77); + return jjStartNfaWithStates_3(7, 395, 78); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 642, 77); + return jjStartNfaWithStates_3(7, 642, 78); 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) - return jjStartNfaWithStates_3(7, 174, 77); + return jjStartNfaWithStates_3(7, 174, 78); 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: @@ -18831,20 +18847,20 @@ else if ((active10 & 0x4L) != 0L) case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(7, 489, 77); + return jjStartNfaWithStates_3(7, 489, 78); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 209, 77); + return jjStartNfaWithStates_3(7, 209, 78); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(7, 278, 77); + return jjStartNfaWithStates_3(7, 278, 78); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 359, 77); + return jjStartNfaWithStates_3(7, 359, 78); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_3(7, 581, 77); + return jjStartNfaWithStates_3(7, 581, 78); else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(7, 734, 77); + return jjStartNfaWithStates_3(7, 734, 78); 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, 0x8000000L); case 77: case 109: @@ -18852,7 +18868,7 @@ else if ((active11 & 0x40000000L) != 0L) case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 231, 77); + return jjStartNfaWithStates_3(7, 231, 78); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; @@ -18865,14 +18881,14 @@ else if ((active6 & 0x4000000000000L) != 0L) case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 694, 77); + return jjStartNfaWithStates_3(7, 694, 78); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(7, 554, 77); + return jjStartNfaWithStates_3(7, 554, 78); else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 706, 77); + return jjStartNfaWithStates_3(7, 706, 78); 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: @@ -18882,32 +18898,32 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 154, 77); + return jjStartNfaWithStates_3(7, 154, 78); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(7, 333, 77); + return jjStartNfaWithStates_3(7, 333, 78); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 348, 77); + return jjStartNfaWithStates_3(7, 348, 78); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(7, 403, 77); + return jjStartNfaWithStates_3(7, 403, 78); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 437, 77); + return jjStartNfaWithStates_3(7, 437, 78); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 450, 77); + return jjStartNfaWithStates_3(7, 450, 78); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 615, 77); + return jjStartNfaWithStates_3(7, 615, 78); 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) - return jjStartNfaWithStates_3(7, 175, 77); + return jjStartNfaWithStates_3(7, 175, 78); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 354, 77); + return jjStartNfaWithStates_3(7, 354, 78); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 476, 77); + return jjStartNfaWithStates_3(7, 476, 78); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 538, 77); + return jjStartNfaWithStates_3(7, 538, 78); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(7, 661, 77); + return jjStartNfaWithStates_3(7, 661, 78); return jjMoveStringLiteralDfa8_3(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); case 85: case 117: @@ -18918,31 +18934,31 @@ else if ((active10 & 0x200000L) != 0L) case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 172, 77); + return jjStartNfaWithStates_3(7, 172, 78); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(7, 466, 77); + return jjStartNfaWithStates_3(7, 466, 78); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 236, 77); + return jjStartNfaWithStates_3(7, 236, 78); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 253, 77); + return jjStartNfaWithStates_3(7, 253, 78); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(7, 467, 77); + return jjStartNfaWithStates_3(7, 467, 78); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(7, 468, 77); + return jjStartNfaWithStates_3(7, 468, 78); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 503, 77); + return jjStartNfaWithStates_3(7, 503, 78); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_3(7, 518, 77); + return jjStartNfaWithStates_3(7, 518, 78); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 627, 77); + return jjStartNfaWithStates_3(7, 627, 78); else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 730, 77); + return jjStartNfaWithStates_3(7, 730, 78); 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: @@ -18971,23 +18987,23 @@ private final int jjMoveStringLiteralDfa8_3(long old0, long active0, long old1, case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_3(8, 578, 77); + return jjStartNfaWithStates_3(8, 578, 78); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(8, 618, 77); + return jjStartNfaWithStates_3(8, 618, 78); 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) - return jjStartNfaWithStates_3(8, 93, 77); + return jjStartNfaWithStates_3(8, 93, 78); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(8, 235, 77); + return jjStartNfaWithStates_3(8, 235, 78); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(8, 666, 77); + return jjStartNfaWithStates_3(8, 666, 78); else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(8, 732, 77); + return jjStartNfaWithStates_3(8, 732, 78); 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: @@ -18997,7 +19013,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_3(8, 192, 77); + return jjStartNfaWithStates_3(8, 192, 78); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -19014,15 +19030,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 371, 77); + return jjStartNfaWithStates_3(8, 371, 78); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 446, 77); + return jjStartNfaWithStates_3(8, 446, 78); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 456, 77); + return jjStartNfaWithStates_3(8, 456, 78); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 522, 77); + return jjStartNfaWithStates_3(8, 522, 78); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(8, 607, 77); + return jjStartNfaWithStates_3(8, 607, 78); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -19032,31 +19048,31 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_3(8, 137, 77); + return jjStartNfaWithStates_3(8, 137, 78); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 630, 77); + return jjStartNfaWithStates_3(8, 630, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(8, 22, 77); + return jjStartNfaWithStates_3(8, 22, 78); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 202, 77); + return jjStartNfaWithStates_3(8, 202, 78); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(8, 219, 77); + return jjStartNfaWithStates_3(8, 219, 78); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_3(8, 262, 77); + return jjStartNfaWithStates_3(8, 262, 78); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 438, 77); + return jjStartNfaWithStates_3(8, 438, 78); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(8, 483, 77); + return jjStartNfaWithStates_3(8, 483, 78); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(8, 737, 77); + return jjStartNfaWithStates_3(8, 737, 78); 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: @@ -19064,12 +19080,12 @@ else if ((active11 & 0x200000000L) != 0L) case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(8, 42, 77); + return jjStartNfaWithStates_3(8, 42, 78); 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, 0x81000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(8, 145, 77); + return jjStartNfaWithStates_3(8, 145, 78); break; case 76: case 108: @@ -19085,7 +19101,7 @@ else if ((active11 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(8, 29, 77); + return jjStartNfaWithStates_3(8, 29, 78); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -19097,13 +19113,13 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 200, 77); + return jjStartNfaWithStates_3(8, 200, 78); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(8, 284, 77); + return jjStartNfaWithStates_3(8, 284, 78); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(8, 415, 77); + return jjStartNfaWithStates_3(8, 415, 78); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 439, 77); + return jjStartNfaWithStates_3(8, 439, 78); 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: @@ -19111,7 +19127,7 @@ else if ((active6 & 0x80000000000000L) != 0L) case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 113, 77); + return jjStartNfaWithStates_3(8, 113, 78); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; @@ -19129,18 +19145,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(8, 146, 77); + return jjStartNfaWithStates_3(8, 146, 78); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_3(8, 264, 77); + return jjStartNfaWithStates_3(8, 264, 78); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_3(8, 523, 77); + return jjStartNfaWithStates_3(8, 523, 78); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_3(8, 577, 77); + return jjStartNfaWithStates_3(8, 577, 78); return jjMoveStringLiteralDfa9_3(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -19148,24 +19164,24 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 118, 77); + return jjStartNfaWithStates_3(8, 118, 78); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_3(8, 263, 77); + return jjStartNfaWithStates_3(8, 263, 78); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 496, 77); + return jjStartNfaWithStates_3(8, 496, 78); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 500, 77); + return jjStartNfaWithStates_3(8, 500, 78); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 504, 77); + return jjStartNfaWithStates_3(8, 504, 78); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(8, 559, 77); + return jjStartNfaWithStates_3(8, 559, 78); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(8, 601, 77); + return jjStartNfaWithStates_3(8, 601, 78); 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: @@ -19176,29 +19192,29 @@ else if ((active9 & 0x2000000L) != 0L) case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(8, 226, 77); + return jjStartNfaWithStates_3(8, 226, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(8, 460, 77); + return jjStartNfaWithStates_3(8, 460, 78); return jjMoveStringLiteralDfa9_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 248, 77); + return jjStartNfaWithStates_3(8, 248, 78); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_3(8, 266, 77); + return jjStartNfaWithStates_3(8, 266, 78); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(8, 461, 77); + return jjStartNfaWithStates_3(8, 461, 78); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 625, 77); + return jjStartNfaWithStates_3(8, 625, 78); else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 695, 77); + return jjStartNfaWithStates_3(8, 695, 78); else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 702, 77); + return jjStartNfaWithStates_3(8, 702, 78); else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(8, 724, 77); + return jjStartNfaWithStates_3(8, 724, 78); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -19227,62 +19243,62 @@ private final int jjMoveStringLiteralDfa9_3(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(9, 31, 77); + return jjStartNfaWithStates_3(9, 31, 78); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 138, 77); + return jjStartNfaWithStates_3(9, 138, 78); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 631, 77); + return jjStartNfaWithStates_3(9, 631, 78); return jjMoveStringLiteralDfa10_3(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 358, 77); + return jjStartNfaWithStates_3(9, 358, 78); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 369, 77); + return jjStartNfaWithStates_3(9, 369, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(9, 28, 77); + return jjStartNfaWithStates_3(9, 28, 78); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(9, 148, 77); + return jjStartNfaWithStates_3(9, 148, 78); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 155, 77); + return jjStartNfaWithStates_3(9, 155, 78); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 294, 77); + return jjStartNfaWithStates_3(9, 294, 78); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(9, 295, 77); + return jjStartNfaWithStates_3(9, 295, 78); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 305, 77); + return jjStartNfaWithStates_3(9, 305, 78); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(9, 465, 77); + return jjStartNfaWithStates_3(9, 465, 78); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(9, 471, 77); + return jjStartNfaWithStates_3(9, 471, 78); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 511, 77); + return jjStartNfaWithStates_3(9, 511, 78); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(9, 558, 77); + return jjStartNfaWithStates_3(9, 558, 78); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 612, 77); + return jjStartNfaWithStates_3(9, 612, 78); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(9, 623, 77); + return jjStartNfaWithStates_3(9, 623, 78); else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(9, 727, 77); + return jjStartNfaWithStates_3(9, 727, 78); else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(9, 729, 77); + return jjStartNfaWithStates_3(9, 729, 78); else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 731, 77); + return jjStartNfaWithStates_3(9, 731, 78); 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) - return jjStartNfaWithStates_3(9, 405, 77); + return jjStartNfaWithStates_3(9, 405, 78); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 548, 77); + return jjStartNfaWithStates_3(9, 548, 78); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(9, 606, 77); + return jjStartNfaWithStates_3(9, 606, 78); else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 700, 77); + return jjStartNfaWithStates_3(9, 700, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -19293,7 +19309,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(9, 162, 77); + return jjStartNfaWithStates_3(9, 162, 78); 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, 0x80010L); case 76: case 108: @@ -19301,7 +19317,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(9, 342, 77); + return jjStartNfaWithStates_3(9, 342, 78); return jjMoveStringLiteralDfa10_3(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -19317,53 +19333,53 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 114, 77); + return jjStartNfaWithStates_3(9, 114, 78); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 603, 77); + return jjStartNfaWithStates_3(9, 603, 78); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(9, 76, 77); + return jjStartNfaWithStates_3(9, 76, 78); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(9, 169, 77); + return jjStartNfaWithStates_3(9, 169, 78); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(9, 298, 77); + return jjStartNfaWithStates_3(9, 298, 78); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 497, 77); + return jjStartNfaWithStates_3(9, 497, 78); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(9, 35, 77); + return jjStartNfaWithStates_3(9, 35, 78); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 74, 77); + return jjStartNfaWithStates_3(9, 74, 78); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 445, 77); + return jjStartNfaWithStates_3(9, 445, 78); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 458, 77); + return jjStartNfaWithStates_3(9, 458, 78); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_3(9, 648, 77); + return jjStartNfaWithStates_3(9, 648, 78); else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 741, 77); + return jjStartNfaWithStates_3(9, 741, 78); else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(9, 746, 77); + return jjStartNfaWithStates_3(9, 746, 78); 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: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(9, 30, 77); + return jjStartNfaWithStates_3(9, 30, 78); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(9, 173, 77); + return jjStartNfaWithStates_3(9, 173, 78); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(9, 462, 77); + return jjStartNfaWithStates_3(9, 462, 78); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 549, 77); + return jjStartNfaWithStates_3(9, 549, 78); 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: @@ -19374,7 +19390,7 @@ else if ((active8 & 0x2000000000L) != 0L) case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 314, 77); + return jjStartNfaWithStates_3(9, 314, 78); break; case 89: case 121: @@ -19384,13 +19400,13 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 293, 77); + return jjStartNfaWithStates_3(9, 293, 78); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(9, 397, 77); + return jjStartNfaWithStates_3(9, 397, 78); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(9, 550, 77); + return jjStartNfaWithStates_3(9, 550, 78); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(9, 658, 77); + return jjStartNfaWithStates_3(9, 658, 78); 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: @@ -19419,41 +19435,41 @@ private final int jjMoveStringLiteralDfa10_3(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_3(10, 579, 77); + return jjStartNfaWithStates_3(10, 579, 78); return jjMoveStringLiteralDfa11_3(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(10, 225, 77); + return jjStartNfaWithStates_3(10, 225, 78); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(10, 340, 77); + return jjStartNfaWithStates_3(10, 340, 78); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(10, 341, 77); + return jjStartNfaWithStates_3(10, 341, 78); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(10, 667, 77); + return jjStartNfaWithStates_3(10, 667, 78); 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) - return jjStartNfaWithStates_3(10, 40, 77); + return jjStartNfaWithStates_3(10, 40, 78); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(10, 89, 77); + return jjStartNfaWithStates_3(10, 89, 78); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_3(10, 132, 77); + return jjStartNfaWithStates_3(10, 132, 78); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 216, 77); + return jjStartNfaWithStates_3(10, 216, 78); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(10, 270, 77); + return jjStartNfaWithStates_3(10, 270, 78); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 508, 77); + return jjStartNfaWithStates_3(10, 508, 78); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(10, 527, 77); + return jjStartNfaWithStates_3(10, 527, 78); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(10, 620, 77); + return jjStartNfaWithStates_3(10, 620, 78); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 624, 77); + return jjStartNfaWithStates_3(10, 624, 78); else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(10, 735, 77); + return jjStartNfaWithStates_3(10, 735, 78); 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: @@ -19461,14 +19477,14 @@ else if ((active11 & 0x80000000L) != 0L) case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_3(10, 459, 77); + return jjStartNfaWithStates_3(10, 459, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_3(10, 67, 77); + return jjStartNfaWithStates_3(10, 67, 78); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 418, 77); + return jjStartNfaWithStates_3(10, 418, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 73: case 105: @@ -19476,9 +19492,9 @@ else if ((active6 & 0x400000000L) != 0L) case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(10, 95, 77); + return jjStartNfaWithStates_3(10, 95, 78); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(10, 557, 77); + return jjStartNfaWithStates_3(10, 557, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -19486,18 +19502,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(10, 168, 77); + return jjStartNfaWithStates_3(10, 168, 78); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(10, 553, 77); + return jjStartNfaWithStates_3(10, 553, 78); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_3(10, 651, 77); + return jjStartNfaWithStates_3(10, 651, 78); else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 728, 77); + return jjStartNfaWithStates_3(10, 728, 78); 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: @@ -19505,9 +19521,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(10, 604, 77); + return jjStartNfaWithStates_3(10, 604, 78); else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(10, 726, 77); + return jjStartNfaWithStates_3(10, 726, 78); 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: @@ -19515,22 +19531,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(10, 105, 77); + return jjStartNfaWithStates_3(10, 105, 78); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 560, 77); + return jjStartNfaWithStates_3(10, 560, 78); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(10, 597, 77); + return jjStartNfaWithStates_3(10, 597, 78); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(10, 621, 77); + return jjStartNfaWithStates_3(10, 621, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(10, 104, 77); + return jjStartNfaWithStates_3(10, 104, 78); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(10, 171, 77); + return jjStartNfaWithStates_3(10, 171, 78); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 290, 77); + return jjStartNfaWithStates_3(10, 290, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -19540,11 +19556,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 501, 77); + return jjStartNfaWithStates_3(10, 501, 78); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_3(10, 585, 77); + return jjStartNfaWithStates_3(10, 585, 78); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(10, 610, 77); + return jjStartNfaWithStates_3(10, 610, 78); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -19552,7 +19568,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 125, 77); + return jjStartNfaWithStates_3(10, 125, 78); break; case 88: case 120: @@ -19560,11 +19576,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 55, 77); + return jjStartNfaWithStates_3(10, 55, 78); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_3(10, 257, 77); + return jjStartNfaWithStates_3(10, 257, 78); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_3(10, 586, 77); + return jjStartNfaWithStates_3(10, 586, 78); break; default : break; @@ -19587,7 +19603,7 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_3(11, 512, 77); + return jjStartNfaWithStates_3(11, 512, 78); return jjMoveStringLiteralDfa12_3(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -19598,31 +19614,31 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 633, 77); + return jjStartNfaWithStates_3(11, 633, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 61, 77); + return jjStartNfaWithStates_3(11, 61, 78); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 121, 77); + return jjStartNfaWithStates_3(11, 121, 78); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 124, 77); + return jjStartNfaWithStates_3(11, 124, 78); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(11, 273, 77); + return jjStartNfaWithStates_3(11, 273, 78); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(11, 493, 77); + return jjStartNfaWithStates_3(11, 493, 78); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(11, 525, 77); + return jjStartNfaWithStates_3(11, 525, 78); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(11, 544, 77); + return jjStartNfaWithStates_3(11, 544, 78); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(11, 655, 77); + return jjStartNfaWithStates_3(11, 655, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -19633,9 +19649,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 123, 77); + return jjStartNfaWithStates_3(11, 123, 78); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 381, 77); + return jjStartNfaWithStates_3(11, 381, 78); break; case 73: case 105: @@ -19643,14 +19659,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(11, 426, 77); + return jjStartNfaWithStates_3(11, 426, 78); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(11, 594, 77); + return jjStartNfaWithStates_3(11, 594, 78); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 502, 77); + return jjStartNfaWithStates_3(11, 502, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -19658,11 +19674,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(11, 77, 77); + return jjStartNfaWithStates_3(11, 77, 78); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(11, 277, 77); + return jjStartNfaWithStates_3(11, 277, 78); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(11, 546, 77); + return jjStartNfaWithStates_3(11, 546, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -19673,17 +19689,17 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_3(11, 130, 77); + return jjStartNfaWithStates_3(11, 130, 78); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_3(11, 328, 77); + return jjStartNfaWithStates_3(11, 328, 78); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(11, 529, 77); + return jjStartNfaWithStates_3(11, 529, 78); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_3(11, 580, 77); + return jjStartNfaWithStates_3(11, 580, 78); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(11, 588, 77); + return jjStartNfaWithStates_3(11, 588, 78); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(11, 595, 77); + return jjStartNfaWithStates_3(11, 595, 78); return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); case 83: case 115: @@ -19691,13 +19707,13 @@ else if ((active9 & 0x80000L) != 0L) case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 244, 77); + return jjStartNfaWithStates_3(11, 244, 78); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(11, 338, 77); + return jjStartNfaWithStates_3(11, 338, 78); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_3(11, 582, 77); + return jjStartNfaWithStates_3(11, 582, 78); else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_3(11, 708, 77); + return jjStartNfaWithStates_3(11, 708, 78); return jjMoveStringLiteralDfa12_3(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: @@ -19705,7 +19721,7 @@ else if ((active11 & 0x10L) != 0L) case 89: case 121: if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(11, 723, 77); + return jjStartNfaWithStates_3(11, 723, 78); break; default : break; @@ -19731,7 +19747,7 @@ private final int jjMoveStringLiteralDfa12_3(long old0, long active0, long old1, case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(12, 170, 77); + return jjStartNfaWithStates_3(12, 170, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -19739,26 +19755,26 @@ private final int jjMoveStringLiteralDfa12_3(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(12, 543, 77); + return jjStartNfaWithStates_3(12, 543, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(12, 140, 77); + return jjStartNfaWithStates_3(12, 140, 78); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 634, 77); + return jjStartNfaWithStates_3(12, 634, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(12, 111, 77); + return jjStartNfaWithStates_3(12, 111, 78); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(12, 289, 77); + return jjStartNfaWithStates_3(12, 289, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(12, 591, 77); + return jjStartNfaWithStates_3(12, 591, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -19766,7 +19782,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(12, 668, 77); + return jjStartNfaWithStates_3(12, 668, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -19774,9 +19790,9 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(12, 36, 77); + return jjStartNfaWithStates_3(12, 36, 78); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_3(12, 193, 77); + return jjStartNfaWithStates_3(12, 193, 78); return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: @@ -19784,12 +19800,12 @@ else if ((active3 & 0x2L) != 0L) case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_3(12, 584, 77); + return jjStartNfaWithStates_3(12, 584, 78); 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) - return jjStartNfaWithStates_3(12, 637, 77); + return jjStartNfaWithStates_3(12, 637, 78); return jjMoveStringLiteralDfa13_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -19803,7 +19819,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(12, 596, 77); + return jjStartNfaWithStates_3(12, 596, 78); break; default : break; @@ -19826,11 +19842,11 @@ private final int jjMoveStringLiteralDfa13_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 126, 77); + return jjStartNfaWithStates_3(13, 126, 78); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(13, 494, 77); + return jjStartNfaWithStates_3(13, 494, 78); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(13, 656, 77); + return jjStartNfaWithStates_3(13, 656, 78); 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: @@ -19838,38 +19854,38 @@ else if ((active10 & 0x10000L) != 0L) case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(13, 143, 77); + return jjStartNfaWithStates_3(13, 143, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(13, 593, 77); + return jjStartNfaWithStates_3(13, 593, 78); return jjMoveStringLiteralDfa14_3(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(13, 85, 77); + return jjStartNfaWithStates_3(13, 85, 78); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(13, 408, 77); + return jjStartNfaWithStates_3(13, 408, 78); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(13, 409, 77); + return jjStartNfaWithStates_3(13, 409, 78); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(13, 590, 77); + return jjStartNfaWithStates_3(13, 590, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 635, 77); + return jjStartNfaWithStates_3(13, 635, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(13, 292, 77); + return jjStartNfaWithStates_3(13, 292, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(13, 336, 77); + return jjStartNfaWithStates_3(13, 336, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -19883,7 +19899,7 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_3(13, 258, 77); + return jjStartNfaWithStates_3(13, 258, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); case 79: case 111: @@ -19891,7 +19907,7 @@ else if ((active9 & 0x4000L) != 0L) case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 319, 77); + return jjStartNfaWithStates_3(13, 319, 78); break; case 82: case 114: @@ -19899,17 +19915,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 510, 77); + return jjStartNfaWithStates_3(13, 510, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(13, 463, 77); + return jjStartNfaWithStates_3(13, 463, 78); return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 435, 77); + return jjStartNfaWithStates_3(13, 435, 78); break; case 89: case 121: @@ -19941,34 +19957,34 @@ private final int jjMoveStringLiteralDfa14_3(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(14, 425, 77); + return jjStartNfaWithStates_3(14, 425, 78); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 636, 77); + return jjStartNfaWithStates_3(14, 636, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(14, 99, 77); + return jjStartNfaWithStates_3(14, 99, 78); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(14, 102, 77); + return jjStartNfaWithStates_3(14, 102, 78); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_3(14, 329, 77); + return jjStartNfaWithStates_3(14, 329, 78); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 638, 77); + return jjStartNfaWithStates_3(14, 638, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 120, 77); + return jjStartNfaWithStates_3(14, 120, 78); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(14, 492, 77); + return jjStartNfaWithStates_3(14, 492, 78); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(14, 654, 77); + return jjStartNfaWithStates_3(14, 654, 78); return jjMoveStringLiteralDfa15_3(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(14, 480, 77); + return jjStartNfaWithStates_3(14, 480, 78); break; case 73: case 105: @@ -19982,11 +19998,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(14, 41, 77); + return jjStartNfaWithStates_3(14, 41, 78); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_3(14, 327, 77); + return jjStartNfaWithStates_3(14, 327, 78); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(14, 609, 77); + return jjStartNfaWithStates_3(14, 609, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -19994,23 +20010,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(14, 107, 77); + return jjStartNfaWithStates_3(14, 107, 78); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 575, 77); + return jjStartNfaWithStates_3(14, 575, 78); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(14, 592, 77); + return jjStartNfaWithStates_3(14, 592, 78); 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) - return jjStartNfaWithStates_3(14, 73, 77); + return jjStartNfaWithStates_3(14, 73, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(14, 424, 77); + return jjStartNfaWithStates_3(14, 424, 78); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_3(14, 641, 77); + return jjStartNfaWithStates_3(14, 641, 78); return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -20018,9 +20034,9 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(14, 614, 77); + return jjStartNfaWithStates_3(14, 614, 78); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_3(14, 650, 77); + return jjStartNfaWithStates_3(14, 650, 78); break; case 89: case 121: @@ -20046,7 +20062,7 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(15, 86, 77); + return jjStartNfaWithStates_3(15, 86, 78); return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -20060,12 +20076,12 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(15, 23, 77); + return jjStartNfaWithStates_3(15, 23, 78); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_3(15, 69, 77); + return jjStartNfaWithStates_3(15, 69, 78); break; case 76: case 108: @@ -20095,9 +20111,9 @@ else if ((active2 & 0x80000000000000L) != 0L) case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(15, 96, 77); + return jjStartNfaWithStates_3(15, 96, 78); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_3(15, 576, 77); + return jjStartNfaWithStates_3(15, 576, 78); 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: @@ -20137,17 +20153,17 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(16, 103, 77); + return jjStartNfaWithStates_3(16, 103, 78); return jjMoveStringLiteralDfa17_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(16, 482, 77); + return jjStartNfaWithStates_3(16, 482, 78); return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(16, 84, 77); + return jjStartNfaWithStates_3(16, 84, 78); break; case 72: case 104: @@ -20170,7 +20186,7 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_3(16, 128, 77); + return jjStartNfaWithStates_3(16, 128, 78); break; case 82: case 114: @@ -20194,12 +20210,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 380, 77); + return jjStartNfaWithStates_3(16, 380, 78); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 574, 77); + return jjStartNfaWithStates_3(16, 574, 78); break; default : break; @@ -20228,17 +20244,17 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_3(17, 71, 77); + return jjStartNfaWithStates_3(17, 71, 78); return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(17, 101, 77); + return jjStartNfaWithStates_3(17, 101, 78); return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(17, 570, 77); + return jjStartNfaWithStates_3(17, 570, 78); break; case 73: case 105: @@ -20285,11 +20301,11 @@ private final int jjMoveStringLiteralDfa18_3(long old0, long active0, long old1, case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(18, 571, 77); + return jjStartNfaWithStates_3(18, 571, 78); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_3(18, 587, 77); + return jjStartNfaWithStates_3(18, 587, 78); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(18, 589, 77); + return jjStartNfaWithStates_3(18, 589, 78); return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -20299,7 +20315,7 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_3(18, 644, 77); + return jjStartNfaWithStates_3(18, 644, 78); return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: @@ -20349,7 +20365,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_3(19, 72, 77); + return jjStartNfaWithStates_3(19, 72, 78); return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); case 67: case 99: @@ -20360,7 +20376,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(19, 337, 77); + return jjStartNfaWithStates_3(19, 337, 78); break; case 78: case 110: @@ -20380,7 +20396,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(19, 479, 77); + return jjStartNfaWithStates_3(19, 479, 78); break; default : break; @@ -20415,19 +20431,19 @@ private final int jjMoveStringLiteralDfa20_3(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(20, 91, 77); + return jjStartNfaWithStates_3(20, 91, 78); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(20, 184, 77); + return jjStartNfaWithStates_3(20, 184, 78); return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_3(20, 70, 77); + return jjStartNfaWithStates_3(20, 70, 78); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(20, 481, 77); + return jjStartNfaWithStates_3(20, 481, 78); return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); case 77: case 109: @@ -20447,7 +20463,7 @@ else if ((active2 & 0x100000000000000L) != 0L) case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(20, 24, 77); + return jjStartNfaWithStates_3(20, 24, 78); break; default : break; @@ -20476,16 +20492,16 @@ private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_3(21, 645, 77); + return jjStartNfaWithStates_3(21, 645, 78); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(21, 141, 77); + return jjStartNfaWithStates_3(21, 141, 78); else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(21, 682, 77); + return jjStartNfaWithStates_3(21, 682, 78); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(21, 683, 77); + return jjStartNfaWithStates_3(21, 683, 78); return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); case 70: case 102: @@ -20538,7 +20554,7 @@ private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(22, 412, 77); + return jjStartNfaWithStates_3(22, 412, 78); return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: @@ -20588,7 +20604,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, case 65: case 97: if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(23, 684, 77); + return jjStartNfaWithStates_3(23, 684, 78); break; case 67: case 99: @@ -20599,7 +20615,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_3(23, 646, 77); + return jjStartNfaWithStates_3(23, 646, 78); break; case 76: case 108: @@ -20616,7 +20632,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(23, 562, 77); + return jjStartNfaWithStates_3(23, 562, 78); return jjMoveStringLiteralDfa24_3(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -20643,7 +20659,7 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(24, 413, 77); + return jjStartNfaWithStates_3(24, 413, 78); break; case 68: case 100: @@ -20657,7 +20673,7 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, case 71: case 103: if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(24, 681, 77); + return jjStartNfaWithStates_3(24, 681, 78); break; case 73: case 105: @@ -20704,29 +20720,29 @@ private final int jjMoveStringLiteralDfa25_3(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 564, 77); + return jjStartNfaWithStates_3(25, 564, 78); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 563, 77); + return jjStartNfaWithStates_3(25, 563, 78); else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(25, 725, 77); + return jjStartNfaWithStates_3(25, 725, 78); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(25, 411, 77); + return jjStartNfaWithStates_3(25, 411, 78); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 573, 77); + return jjStartNfaWithStates_3(25, 573, 78); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(25, 410, 77); + return jjStartNfaWithStates_3(25, 410, 78); return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: @@ -20758,12 +20774,12 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(26, 567, 77); + return jjStartNfaWithStates_3(26, 567, 78); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(26, 566, 77); + return jjStartNfaWithStates_3(26, 566, 78); break; case 71: case 103: @@ -20771,7 +20787,7 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(26, 142, 77); + return jjStartNfaWithStates_3(26, 142, 78); break; case 79: case 111: @@ -20825,7 +20841,7 @@ private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(28, 569, 77); + return jjStartNfaWithStates_3(28, 569, 78); break; case 69: case 101: @@ -20883,7 +20899,7 @@ private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old2, case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(30, 122, 77); + return jjStartNfaWithStates_3(30, 122, 78); return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -20904,7 +20920,7 @@ private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_3(31, 129, 77); + return jjStartNfaWithStates_3(31, 129, 78); return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x200000000000L); default : break; @@ -20944,7 +20960,7 @@ private final int jjMoveStringLiteralDfa33_3(long old11, long active11) case 84: case 116: if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(33, 749, 77); + return jjStartNfaWithStates_3(33, 749, 78); break; default : break; @@ -20975,8 +20991,8 @@ private final int jjMoveNfa_3(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 763) - kind = 763; + if (kind > 765) + kind = 765; } break; case 58: @@ -20984,33 +21000,47 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 764) - kind = 764; + if (kind > 766) + kind = 766; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; break; + case 1: + if ((0x7ff601000000000L & l) != 0L) + jjCheckNAddTwoStates(25, 26); + else if (curChar == 39) + jjCheckNAddStates(16, 18); + if ((0x3ff001000000000L & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x3ff001000000000L & l) != 0L) + { + if (kind > 823) + kind = 823; + jjCheckNAdd(23); + } + if (curChar == 36) + jjCheckNAdd(27); + break; case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) jjCheckNAddTwoStates(51, 41); break; - case 1: + case 78: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); - else if (curChar == 39) - jjCheckNAddStates(16, 18); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (curChar == 36) @@ -21025,14 +21055,14 @@ else if (curChar == 38) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (curChar == 36) jjCheckNAdd(27); break; - case 78: + case 77: if (curChar == 32) jjCheckNAddTwoStates(68, 69); if (curChar == 32) @@ -21042,20 +21072,6 @@ else if (curChar == 38) if (curChar == 32) jjCheckNAddTwoStates(61, 62); break; - case 77: - if ((0x7ff601000000000L & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x3ff001000000000L & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x3ff001000000000L & l) != 0L) - { - if (kind > 821) - kind = 821; - jjCheckNAdd(23); - } - if (curChar == 36) - jjCheckNAdd(27); - break; case 80: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -21065,8 +21081,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -21083,8 +21099,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 828) + kind = 828; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -21092,14 +21108,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -21116,8 +21132,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 6: if (curChar == 34) @@ -21131,30 +21147,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 763) - kind = 763; + if (curChar == 34 && kind > 765) + kind = 765; break; case 11: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 814) + kind = 814; break; case 14: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 814) + kind = 814; break; case 15: if (curChar == 13) @@ -21171,15 +21187,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -21197,8 +21213,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -21208,8 +21224,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAdd(29); break; case 32: @@ -21229,25 +21245,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 825) + kind = 825; break; case 37: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 828) + kind = 828; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(39); break; case 40: @@ -21261,8 +21277,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 754) + kind = 754; jjCheckNAdd(43); break; case 44: @@ -21276,22 +21292,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAddStates(93, 95); break; case 49: @@ -21309,8 +21325,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 53: @@ -21325,12 +21341,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 764) - kind = 764; + if (curChar == 39 && kind > 766) + kind = 766; break; case 59: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 767) + kind = 767; break; case 61: if (curChar == 32) @@ -21357,14 +21373,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 812) + kind = 812; break; case 75: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; default : break; @@ -21399,8 +21415,20 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; + jjCheckNAdd(23); + } + break; + case 78: + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddTwoStates(25, 26); + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x7fffffe87fffffeL & l) != 0L) + { + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; @@ -21411,37 +21439,25 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } break; - case 78: + case 77: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 770) + kind = 770; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; - } - break; - case 77: - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x7fffffe87fffffeL & l) != 0L) - { - if (kind > 821) - kind = 821; - jjCheckNAdd(23); + if (kind > 771) + kind = 771; } break; case 80: @@ -21458,8 +21474,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -21482,8 +21498,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(71, 73); break; case 17: @@ -21502,21 +21518,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 819) - kind = 819; + if (curChar == 96 && kind > 821) + kind = 821; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -21526,15 +21542,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -21564,32 +21580,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 770) + kind = 770; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 771) + kind = 771; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 772) + kind = 772; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 773) + kind = 773; break; case 73: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; break; default : break; } @@ -21621,8 +21637,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21630,11 +21646,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 31: + case 78: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21642,11 +21658,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 77: + case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21662,8 +21678,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21676,8 +21692,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(71, 73); break; case 18: @@ -21688,15 +21704,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 821) - kind = 821; + if (kind > 823) + kind = 823; jjCheckNAdd(23); break; case 24: @@ -21706,15 +21722,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -21727,8 +21743,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 812) + kind = 812; break; default : break; } @@ -21772,7 +21788,7 @@ private final int jjMoveNfa_5(int startState, int curPos) { case 0: if (curChar == 47) - kind = 813; + kind = 815; break; case 1: if (curChar == 42) @@ -21828,162 +21844,162 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 0: if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; return 31; } - if ((active12 & 0x10000200L) != 0L) + if ((active12 & 0x40000800L) != 0L) return 76; - if ((active11 & 0x1000L) != 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 & 0x1ce57ff27efffL) != 0L) { - jjmatchedKind = 820; - return 1; + jjmatchedKind = 822; + return 77; } - if ((active12 & 0x20000000L) != 0L) + if ((active12 & 0x80000000L) != 0L) return 58; - if ((active12 & 0x10L) != 0L) - return 77; - if ((active12 & 0x90001000000L) != 0L) + if ((active12 & 0x40L) != 0L) + return 78; + if ((active12 & 0x240004000000L) != 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 & 0x4e57ff27efffL) != 0L) + if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 820; - return 78; + jjmatchedKind = 822; + return 1; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x200000000L) != 0L) - return 78; - if ((active12 & 0x600000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a800d80000L) != 0L || (active12 & 0x800000000L) != 0L) + return 77; + if ((active12 & 0x1800000L) != 0L) return 11; - if ((active12 & 0x40000000L) != 0L) + if ((active12 & 0x100000000L) != 0L) return 79; return -1; case 1: - if ((active12 & 0x90000000000L) != 0L) + if ((active12 & 0x240000000000L) != 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 ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x14102a0110000L) != 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 & 0xbefd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 1; } - return 78; + 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 & 0x1d7fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 2; } - return 78; + 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) - return 78; + 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 & 0x7fe7fefe0c38L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 3; } - return 78; + return 80; } - 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 & 0x17fe7fefe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 3; } - return 80; + return 77; } - 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 & 0x180100e3c7L) != 0L) - return 78; + 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 & 0x80180100e3c7L) != 0L) + return 77; return -1; case 4: - if ((active2 & 0x8000000000000000L) != 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 & 0x13ce7ddde05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 4; } - return 80; + return 77; } - 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 & 0x430022204809L) != 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 & 0x3ce7ddde05b4L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 4; } - return 78; + 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 & 0x430022204809L) != 0L) + return 77; return -1; case 5: if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 5; } 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 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 & 0x10000001000a0L) != 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 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 5; } - return 78; + 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 & 0x2426dffa0014L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 6; } - return 78; + return 80; } - 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 = 820; + jjmatchedKind = 822; jjmatchedPos = 6; } - return 80; + return 77; } 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 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 & 0x24229bf80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 7; } - return 78; + return 77; } 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 & 0x444020004L) != 0L) - return 78; + return 77; if ((active2 & 0x8000000000000000L) != 0L) return 80; return -1; @@ -21992,38 +22008,38 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, { if (jjmatchedPos != 8) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 8; } - return 78; + 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 78; + 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 & 0x4200a800000L) != 0L) - return 78; + 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 & 0x200081680010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 9; } - return 78; + 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 & 0x81400000L) != 0L) - return 78; + 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 (jjmatchedPos != 10) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 10; } - return 78; + return 77; } return -1; case 11: @@ -22031,42 +22047,42 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, { if (jjmatchedPos != 11) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 11; } - return 78; + 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 78; + 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) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 12; - return 78; + return 77; } if ((active0 & 0x1000000000L) != 0L || (active1 & 0x800000000000L) != 0L || (active2 & 0x40000001000L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x200000000L) != 0L || (active8 & 0x80000000L) != 0L || (active9 & 0x2400000000108100L) != 0L || (active10 & 0x10000000L) != 0L) - return 78; + 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 & 0x200000200000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 13; - return 78; + 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 78; + 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 78; + 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) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 14; - return 78; + return 77; } return -1; case 15: @@ -22074,182 +22090,182 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, { if (jjmatchedPos != 15) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 15; } - return 78; + return 77; } if ((active0 & 0x800000L) != 0L || (active1 & 0x10c400020L) != 0L || (active2 & 0x180000000000000L) != 0L || (active8 & 0x1e000000000000L) != 0L || (active9 & 0x1L) != 0L) - return 78; + 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 (jjmatchedPos != 16) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 16; } - return 78; + return 77; } if ((active1 & 0x8000100000L) != 0L || (active2 & 0x1L) != 0L || (active5 & 0x1000000000000000L) != 0L || (active7 & 0x400000000L) != 0L || (active8 & 0x70e0000000000000L) != 0L) - return 78; + return 77; return -1; case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 78; + 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 = 820; + jjmatchedKind = 822; jjmatchedPos = 17; - return 78; + return 77; } 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 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 18; } - return 78; + return 77; } + if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) + 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 & 0x200000200000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 19; - return 78; + return 77; } if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 78; + return 77; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 78; + return 77; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 20; - return 78; + 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) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 21; - return 78; + return 77; } if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 78; + 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) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 22; - return 78; + return 77; } if ((active6 & 0x10000000L) != 0L) - return 78; + return 77; return -1; 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) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 23; - return 78; + return 77; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 78; return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) - return 78; + return 77; if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 24; - return 78; + return 77; } return -1; case 25: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 25; - return 78; + return 77; } if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 78; + return 77; return -1; case 26: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 26; - return 78; + return 77; } if ((active2 & 0x4000L) != 0L || (active8 & 0xc0000000000000L) != 0L) - return 78; + return 77; return -1; case 27: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 27; - return 78; + return 77; } return -1; case 28: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 28; - return 78; + return 77; } if ((active8 & 0x200000000000000L) != 0L) - return 78; + return 77; return -1; case 29: if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 29; - return 78; + return 77; } return -1; case 30: if ((active1 & 0x400000000000000L) != 0L) - return 78; + return 77; if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 30; - return 78; + return 77; } return -1; case 31: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 31; - return 78; + return 77; } if ((active2 & 0x2L) != 0L) - return 78; + return 77; return -1; case 32: if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 820; + jjmatchedKind = 822; jjmatchedPos = 32; - return 78; + return 77; } return -1; default : @@ -22273,57 +22289,57 @@ private final int jjMoveStringLiteralDfa0_4() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 34: - return jjStartNfaWithStates_4(0, 798, 79); + return jjStartNfaWithStates_4(0, 800, 79); case 36: - return jjStartNfaWithStates_4(0, 801, 78); + return jjStartNfaWithStates_4(0, 803, 77); case 37: - return jjStopAtPos(0, 793); + return jjStopAtPos(0, 795); case 39: - return jjStartNfaWithStates_4(0, 797, 58); + return jjStartNfaWithStates_4(0, 799, 58); case 40: - return jjStopAtPos(0, 766); + return jjStopAtPos(0, 768); case 41: - return jjStopAtPos(0, 767); + return jjStopAtPos(0, 769); case 42: - jjmatchedKind = 791; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); + jjmatchedKind = 793; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000000L); case 43: - return jjStopAtPos(0, 788); + return jjStopAtPos(0, 790); case 44: - return jjStopAtPos(0, 778); + return jjStopAtPos(0, 780); case 45: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); case 46: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L); case 47: - jjmatchedKind = 792; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); + jjmatchedKind = 794; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x240000000000L); case 58: - jjmatchedKind = 783; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000000L); case 59: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 60: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140000L); case 61: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000L); case 62: - jjmatchedKind = 780; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 63: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 784); case 91: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 93: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 777); case 94: - return jjStopAtPos(0, 800); + return jjStopAtPos(0, 802); case 65: case 97: jjmatchedKind = 3; @@ -22370,7 +22386,7 @@ private final int jjMoveStringLiteralDfa0_4() 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, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -22397,7 +22413,7 @@ private final int jjMoveStringLiteralDfa0_4() 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, 0xc200fffL, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x80000c200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -22408,12 +22424,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, 772, 77); + return jjStartNfaWithStates_4(0, 774, 78); case 124: - jjmatchedKind = 799; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 801; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 125: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); default : return jjMoveNfa_4(0, 0); } @@ -22428,43 +22444,43 @@ private final int jjMoveStringLiteralDfa1_4(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x80000000000L) != 0L) + if ((active12 & 0x200000000000L) != 0L) { - jjmatchedKind = 811; + jjmatchedKind = 813; 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, 0x10000000000L); + 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, 0x40000000000L); case 46: - if ((active12 & 0x10000000L) != 0L) - return jjStopAtPos(1, 796); + if ((active12 & 0x40000000L) != 0L) + return jjStopAtPos(1, 798); break; case 47: - if ((active12 & 0x20000000000L) != 0L) - return jjStopAtPos(1, 809); + if ((active12 & 0x80000000000L) != 0L) + return jjStopAtPos(1, 811); break; case 58: - if ((active12 & 0x400000000L) != 0L) - return jjStopAtPos(1, 802); + if ((active12 & 0x1000000000L) != 0L) + return jjStopAtPos(1, 804); break; case 61: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x20000L) != 0L) - return jjStopAtPos(1, 785); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); else if ((active12 & 0x80000L) != 0L) return jjStopAtPos(1, 787); + else if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 62: - 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); + if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); + else if ((active12 & 0x1000000L) != 0L) + return jjStopAtPos(1, 792); + else if ((active12 & 0x20000000L) != 0L) + return jjStopAtPos(1, 797); 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, 0x200443c40000L, 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, 0xa00443c40000L, 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); @@ -22485,7 +22501,7 @@ else if ((active12 & 0x8000000L) != 0L) jjmatchedPos = 1; } else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(1, 720, 78); + return jjStartNfaWithStates_4(1, 720, 77); return jjMoveStringLiteralDfa2_4(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); case 71: case 103: @@ -22513,7 +22529,7 @@ else if ((active11 & 0x10000L) != 0L) jjmatchedPos = 1; } else if ((active4 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(1, 316, 78); + return jjStartNfaWithStates_4(1, 316, 77); else if ((active6 & 0x8L) != 0L) { jjmatchedKind = 387; @@ -22537,7 +22553,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, 0x140a300008200L, 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); @@ -22585,11 +22601,11 @@ else if ((active4 & 0x2000000L) != 0L) case 89: case 121: if ((active0 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(1, 51, 78); + return jjStartNfaWithStates_4(1, 51, 77); 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 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; default : break; @@ -22608,13 +22624,13 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x10000000000L) != 0L) - return jjStopAtPos(2, 808); + if ((active12 & 0x40000000000L) != 0L) + return jjStopAtPos(2, 810); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_4(2, 8, 78); + return jjStartNfaWithStates_4(2, 8, 77); 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, 0x14100c006400L, active12, 0L); case 66: case 98: @@ -22622,7 +22638,7 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(2, 27, 78); + return jjStartNfaWithStates_4(2, 27, 77); else if ((active2 & 0x200000L) != 0L) { jjmatchedKind = 149; @@ -22632,9 +22648,9 @@ else if ((active2 & 0x200000L) != 0L) case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_4(2, 9, 78); + return jjStartNfaWithStates_4(2, 9, 77); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(2, 17, 78); + return jjStartNfaWithStates_4(2, 17, 77); else if ((active2 & 0x4000000000000000L) != 0L) { jjmatchedKind = 190; @@ -22646,16 +22662,16 @@ else if ((active5 & 0x8000000L) != 0L) jjmatchedPos = 2; } else if ((active6 & 0x2L) != 0L) - return jjStartNfaWithStates_4(2, 385, 78); + return jjStartNfaWithStates_4(2, 385, 77); else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(2, 406, 78); + return jjStartNfaWithStates_4(2, 406, 77); 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); + return jjStartNfaWithStates_4(2, 20, 77); else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_4(2, 388, 78); + return jjStartNfaWithStates_4(2, 388, 77); 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: @@ -22668,9 +22684,9 @@ else if ((active6 & 0x10L) != 0L) case 71: case 103: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(2, 37, 78); + return jjStartNfaWithStates_4(2, 37, 77); else if ((active4 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(2, 301, 78); + return jjStartNfaWithStates_4(2, 301, 77); 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: @@ -22678,8 +22694,8 @@ else if ((active4 & 0x200000000000L) != 0L) case 73: case 105: if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 432, 78); - return jjMoveStringLiteralDfa3_4(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x200800L, active12, 0L); + return jjStartNfaWithStates_4(2, 432, 77); + return jjMoveStringLiteralDfa3_4(active0, 0xc000000000000000L, active1, 0L, active2, 0L, active3, 0x8000001000002000L, active4, 0x40000600L, active5, 0x10000000000000L, active6, 0x3800000000000004L, active7, 0x8000000000L, active8, 0x2000000L, active9, 0L, active10, 0x22000c007e000L, active11, 0x800000200800L, active12, 0L); case 74: case 106: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22699,12 +22715,12 @@ else if ((active8 & 0x200000000L) != 0L) jjmatchedPos = 2; } else if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(2, 716, 78); + return jjStartNfaWithStates_4(2, 716, 77); 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, 0xa82000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(2, 616, 78); + return jjStartNfaWithStates_4(2, 616, 77); 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: @@ -22725,9 +22741,9 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedPos = 2; } else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 250, 78); + return jjStartNfaWithStates_4(2, 250, 77); else if ((active5 & 0x8L) != 0L) - return jjStartNfaWithStates_4(2, 323, 78); + return jjStartNfaWithStates_4(2, 323, 77); return jjMoveStringLiteralDfa3_4(active0, 0x80000L, active1, 0L, active2, 0x1000000800000000L, active3, 0x8000L, active4, 0x200cL, active5, 0L, active6, 0L, active7, 0x1800000L, active8, 0x800L, active9, 0L, active10, 0x2201000002L, active11, 0L, active12, 0L); case 81: case 113: @@ -22756,18 +22772,18 @@ else if ((active6 & 0x4000000000L) != 0L) case 84: case 116: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(2, 46, 78); + return jjStartNfaWithStates_4(2, 46, 77); else if ((active2 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 177, 78); + return jjStartNfaWithStates_4(2, 177, 77); else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(2, 237, 78); + return jjStartNfaWithStates_4(2, 237, 77); else if ((active4 & 0x40000L) != 0L) { jjmatchedKind = 274; jjmatchedPos = 2; } else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 370, 78); + return jjStartNfaWithStates_4(2, 370, 77); else if ((active6 & 0x8000L) != 0L) { jjmatchedKind = 399; @@ -22788,15 +22804,15 @@ else if ((active8 & 0x40000L) != 0L) case 87: case 119: if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 179, 78); + return jjStartNfaWithStates_4(2, 179, 77); else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(2, 364, 78); + return jjStartNfaWithStates_4(2, 364, 77); else if ((active7 & 0x800000000000L) != 0L) { jjmatchedKind = 495; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x10000000000000L, active7, 0x7000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000000000L, active12, 0L); case 88: case 120: if ((active5 & 0x400L) != 0L) @@ -22808,14 +22824,14 @@ else if ((active7 & 0x800000000000L) != 0L) case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(2, 18, 78); + return jjStartNfaWithStates_4(2, 18, 77); else if ((active2 & 0x10000L) != 0L) { jjmatchedKind = 144; jjmatchedPos = 2; } else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 180, 78); + return jjStartNfaWithStates_4(2, 180, 77); else if ((active4 & 0x20000000000L) != 0L) { jjmatchedKind = 297; @@ -22849,7 +22865,7 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000000000000L, active11, 0L); case 56: if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(3, 686, 78); + return jjStartNfaWithStates_4(3, 686, 77); 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); @@ -22861,14 +22877,14 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, jjmatchedPos = 3; } 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, 0x400041000000L); + return jjStartNfaWithStates_4(3, 285, 77); + 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, 0x1400041000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(3, 47, 78); + return jjStartNfaWithStates_4(3, 47, 77); else if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(3, 78, 78); + return jjStartNfaWithStates_4(3, 78, 77); return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x4000000000000L, active3, 0x400000000000L, active4, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000800000L, active11, 0L); case 67: case 99: @@ -22886,7 +22902,7 @@ else if ((active3 & 0x800L) != 0L) case 68: case 100: if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 249, 78); + return jjStartNfaWithStates_4(3, 249, 77); else if ((active4 & 0x8000000000000L) != 0L) { jjmatchedKind = 307; @@ -22898,61 +22914,61 @@ else if ((active7 & 0x20L) != 0L) jjmatchedPos = 3; } else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 689, 78); + return jjStartNfaWithStates_4(3, 689, 77); return jjMoveStringLiteralDfa4_4(active0, 0x80000000000000L, active1, 0x1c0000000L, active2, 0L, active3, 0x1000000000L, active4, 0x10000004000000L, active5, 0x40000000L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0x20018000000L, active10, 0L, active11, 0x20L); case 69: case 101: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 58, 78); + return jjStartNfaWithStates_4(3, 58, 77); else if ((active1 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 117, 78); + return jjStartNfaWithStates_4(3, 117, 77); else if ((active2 & 0x100L) != 0L) { jjmatchedKind = 136; jjmatchedPos = 3; } else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 187, 78); + return jjStartNfaWithStates_4(3, 187, 77); else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(3, 227, 78); + return jjStartNfaWithStates_4(3, 227, 77); else if ((active4 & 0x200000000000000L) != 0L) { jjmatchedKind = 313; jjmatchedPos = 3; } else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(3, 353, 78); + return jjStartNfaWithStates_4(3, 353, 77); else if ((active5 & 0x1000000000L) != 0L) { jjmatchedKind = 356; jjmatchedPos = 3; } else if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(3, 367, 78); + return jjStartNfaWithStates_4(3, 367, 77); else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(3, 488, 78); + return jjStartNfaWithStates_4(3, 488, 77); else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(3, 536, 78); + return jjStartNfaWithStates_4(3, 536, 77); else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(3, 539, 78); + return jjStartNfaWithStates_4(3, 539, 77); else if ((active9 & 0x20000000000000L) != 0L) { jjmatchedKind = 629; jjmatchedPos = 3; } else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(3, 659, 78); + return jjStartNfaWithStates_4(3, 659, 77); else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(3, 664, 78); + return jjStartNfaWithStates_4(3, 664, 77); else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(3, 719, 78); + return jjStartNfaWithStates_4(3, 719, 77); 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) - return jjStartNfaWithStates_4(3, 26, 78); + return jjStartNfaWithStates_4(3, 26, 77); else if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_4(3, 521, 78); + return jjStartNfaWithStates_4(3, 521, 77); break; case 71: case 103: @@ -22960,11 +22976,11 @@ else if ((active8 & 0x200L) != 0L) case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 49, 78); + return jjStartNfaWithStates_4(3, 49, 77); else if ((active2 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 185, 78); + return jjStartNfaWithStates_4(3, 185, 77); else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(3, 420, 78); + return jjStartNfaWithStates_4(3, 420, 77); else if ((active11 & 0x40L) != 0L) { jjmatchedKind = 710; @@ -22977,16 +22993,16 @@ else if ((active11 & 0x40L) != 0L) case 75: case 107: if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_4(3, 452, 78); + return jjStartNfaWithStates_4(3, 452, 77); else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_4(3, 519, 78); + return jjStartNfaWithStates_4(3, 519, 77); else if ((active10 & 0x8000000000000000L) != 0L) { jjmatchedKind = 703; jjmatchedPos = 3; } else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_4(3, 713, 78); + return jjStartNfaWithStates_4(3, 713, 77); return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40001L); case 76: case 108: @@ -23001,21 +23017,21 @@ else if ((active0 & 0x4000000000000000L) != 0L) jjmatchedPos = 3; } else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(3, 230, 78); + return jjStartNfaWithStates_4(3, 230, 77); else if ((active5 & 0x20000000000000L) != 0L) { jjmatchedKind = 373; jjmatchedPos = 3; } else if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_4(3, 455, 78); + return jjStartNfaWithStates_4(3, 455, 77); else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(3, 739, 78); + return jjStartNfaWithStates_4(3, 739, 77); 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) - return jjStartNfaWithStates_4(3, 229, 78); + return jjStartNfaWithStates_4(3, 229, 77); else if ((active10 & 0x20000L) != 0L) { jjmatchedKind = 657; @@ -23025,39 +23041,39 @@ else if ((active10 & 0x20000L) != 0L) case 78: case 110: if ((active4 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(3, 286, 78); + return jjStartNfaWithStates_4(3, 286, 77); else if ((active4 & 0x80000000L) != 0L) { jjmatchedKind = 287; jjmatchedPos = 3; } else if ((active6 & 0x40L) != 0L) - return jjStartNfaWithStates_4(3, 390, 78); + return jjStartNfaWithStates_4(3, 390, 77); else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(3, 431, 78); + return jjStartNfaWithStates_4(3, 431, 77); else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 626, 78); + return jjStartNfaWithStates_4(3, 626, 77); else if ((active11 & 0x2L) != 0L) { jjmatchedKind = 705; jjmatchedPos = 3; } else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(3, 740, 78); + return jjStartNfaWithStates_4(3, 740, 77); 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); + return jjStartNfaWithStates_4(3, 240, 77); else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(3, 279, 78); + return jjStartNfaWithStates_4(3, 279, 77); 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); + return jjStartNfaWithStates_4(3, 181, 77); else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(3, 537, 78); + return jjStartNfaWithStates_4(3, 537, 77); 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, 0x800c020400L); case 81: case 113: @@ -23098,33 +23114,35 @@ else if ((active11 & 0x2000L) != 0L) case 83: case 115: if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(3, 147, 78); + return jjStartNfaWithStates_4(3, 147, 77); else if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 498, 78); + return jjStartNfaWithStates_4(3, 498, 77); else if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(3, 531, 78); + return jjStartNfaWithStates_4(3, 531, 77); else if ((active9 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 628, 78); + return jjStartNfaWithStates_4(3, 628, 77); 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) - return jjStartNfaWithStates_4(3, 59, 78); + return jjStartNfaWithStates_4(3, 59, 77); else if ((active4 & 0x1000000000000L) != 0L) { jjmatchedKind = 304; jjmatchedPos = 3; } else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 309, 78); + return jjStartNfaWithStates_4(3, 309, 77); else if ((active5 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(3, 365, 78); + return jjStartNfaWithStates_4(3, 365, 77); else if ((active6 & 0x4L) != 0L) - return jjStartNfaWithStates_4(3, 386, 78); + return jjStartNfaWithStates_4(3, 386, 77); else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(3, 419, 78); + return jjStartNfaWithStates_4(3, 419, 77); else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(3, 598, 78); + return jjStartNfaWithStates_4(3, 598, 77); + else if ((active11 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(3, 751, 77); 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: @@ -23132,19 +23150,19 @@ else if ((active9 & 0x400000L) != 0L) case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 442, 78); + return jjStartNfaWithStates_4(3, 442, 77); 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) - return jjStartNfaWithStates_4(3, 533, 78); + return jjStartNfaWithStates_4(3, 533, 77); else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 701, 78); + return jjStartNfaWithStates_4(3, 701, 77); return jjMoveStringLiteralDfa4_4(active0, 0x80000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_4(3, 389, 78); + return jjStartNfaWithStates_4(3, 389, 77); return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x400000000000000L, active11, 0L); default : break; @@ -23164,11 +23182,11 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, { case 50: if ((active10 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 688, 78); + return jjStartNfaWithStates_4(4, 688, 77); break; case 54: if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(4, 687, 78); + return jjStartNfaWithStates_4(4, 687, 77); 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, 0xd000000L); @@ -23178,68 +23196,68 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, case 66: case 98: if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(4, 362, 78); + return jjStartNfaWithStates_4(4, 362, 77); 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 jjStartNfaWithStates_4(4, 744, 77); 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) - return jjStartNfaWithStates_4(4, 224, 78); + return jjStartNfaWithStates_4(4, 224, 77); return jjMoveStringLiteralDfa5_4(active0, 0x4000000000000L, active1, 0L, active2, 0x2000000000400000L, active3, 0L, active4, 0x3L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0x400000L, active11, 0L); case 69: case 101: if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(4, 79, 78); + return jjStartNfaWithStates_4(4, 79, 77); else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_4(4, 133, 78); + return jjStartNfaWithStates_4(4, 133, 77); else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(4, 211, 78); + return jjStartNfaWithStates_4(4, 211, 77); else if ((active3 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 255, 78); + return jjStartNfaWithStates_4(4, 255, 77); else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(4, 303, 78); + return jjStartNfaWithStates_4(4, 303, 77); else if ((active5 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(4, 335, 78); + return jjStartNfaWithStates_4(4, 335, 77); else if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 372, 78); + return jjStartNfaWithStates_4(4, 372, 77); else if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_4(4, 451, 78); + return jjStartNfaWithStates_4(4, 451, 77); else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(4, 487, 78); + return jjStartNfaWithStates_4(4, 487, 77); else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 506, 78); + return jjStartNfaWithStates_4(4, 506, 77); else if ((active7 & 0x2000000000000000L) != 0L) { jjmatchedKind = 509; jjmatchedPos = 4; } else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 541, 78); + return jjStartNfaWithStates_4(4, 541, 77); else if ((active9 & 0x1000000L) != 0L) { jjmatchedKind = 600; jjmatchedPos = 4; } else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(4, 608, 78); + return jjStartNfaWithStates_4(4, 608, 77); else if ((active9 & 0x400000000000L) != 0L) { jjmatchedKind = 622; jjmatchedPos = 4; } else if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(4, 679, 78); + return jjStartNfaWithStates_4(4, 679, 77); else if ((active10 & 0x4000000000000L) != 0L) { jjmatchedKind = 690; jjmatchedPos = 4; } else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_4(4, 707, 78); + return jjStartNfaWithStates_4(4, 707, 77); else if ((active11 & 0x800L) != 0L) { jjmatchedKind = 715; @@ -23249,21 +23267,21 @@ else if ((active11 & 0x800L) != 0L) case 70: case 102: if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(4, 164, 78); + return jjStartNfaWithStates_4(4, 164, 77); return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x60000L, active3, 0x1L, active4, 0L, active5, 0x10000000L, active6, 0L, active7, 0L, active8, 0x800000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(4, 685, 78); + return jjStartNfaWithStates_4(4, 685, 77); 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) - return jjStartNfaWithStates_4(4, 163, 78); + return jjStartNfaWithStates_4(4, 163, 77); else if ((active3 & 0x4L) != 0L) - return jjStartNfaWithStates_4(4, 194, 78); + return jjStartNfaWithStates_4(4, 194, 77); else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(4, 212, 78); + return jjStartNfaWithStates_4(4, 212, 77); else if ((active5 & 0x10L) != 0L) { jjmatchedKind = 324; @@ -23277,29 +23295,29 @@ 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, 0x1046100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_4(4, 75, 78); + return jjStartNfaWithStates_4(4, 75, 77); return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(4, 81, 78); + return jjStartNfaWithStates_4(4, 81, 77); else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(4, 214, 78); + return jjStartNfaWithStates_4(4, 214, 77); else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(4, 300, 78); + return jjStartNfaWithStates_4(4, 300, 77); else if ((active4 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 311, 78); + return jjStartNfaWithStates_4(4, 311, 77); else if ((active4 & 0x2000000000000000L) != 0L) { jjmatchedKind = 317; jjmatchedPos = 4; } else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(4, 750, 78); + return jjStartNfaWithStates_4(4, 750, 77); 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: @@ -23307,16 +23325,16 @@ else if ((active11 & 0x400000000000L) != 0L) case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_4(4, 10, 78); + return jjStartNfaWithStates_4(4, 10, 77); else if ((active0 & 0x8000000000L) != 0L) { jjmatchedKind = 39; jjmatchedPos = 4; } else if ((active1 & 0x2L) != 0L) - return jjStartNfaWithStates_4(4, 65, 78); + return jjStartNfaWithStates_4(4, 65, 77); else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(4, 670, 78); + return jjStartNfaWithStates_4(4, 670, 77); 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: @@ -23332,88 +23350,88 @@ else if ((active10 & 0x40000000L) != 0L) case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_4(4, 11, 78); + return jjStartNfaWithStates_4(4, 11, 77); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(4, 15, 78); + return jjStartNfaWithStates_4(4, 15, 77); else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_4(4, 196, 78); + return jjStartNfaWithStates_4(4, 196, 77); else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(4, 218, 78); + return jjStartNfaWithStates_4(4, 218, 77); else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_4(4, 267, 78); + return jjStartNfaWithStates_4(4, 267, 77); else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_4(4, 321, 78); + return jjStartNfaWithStates_4(4, 321, 77); else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(4, 361, 78); + return jjStartNfaWithStates_4(4, 361, 77); else if ((active6 & 0x400L) != 0L) { jjmatchedKind = 394; jjmatchedPos = 4; } else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(4, 400, 78); + return jjStartNfaWithStates_4(4, 400, 77); else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 436, 78); + return jjStartNfaWithStates_4(4, 436, 77); else if ((active6 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 444, 78); + return jjStartNfaWithStates_4(4, 444, 77); else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 669, 78); + return jjStartNfaWithStates_4(4, 669, 77); else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(4, 677, 78); + return jjStartNfaWithStates_4(4, 677, 77); return jjMoveStringLiteralDfa5_4(active0, 0x204020000000L, active1, 0x6000000000000L, active2, 0x78018000000L, active3, 0x40000c0080020000L, active4, 0x4000000708008L, active5, 0x1400010000000000L, active6, 0x204800L, active7, 0x80001fd0000d00L, active8, 0x840L, active9, 0x20L, active10, 0x4000000000L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 116, 78); + return jjStartNfaWithStates_4(4, 116, 77); else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 252, 78); + return jjStartNfaWithStates_4(4, 252, 77); else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(4, 355, 78); + return jjStartNfaWithStates_4(4, 355, 77); else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(4, 357, 78); + return jjStartNfaWithStates_4(4, 357, 77); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 376, 78); + return jjStartNfaWithStates_4(4, 376, 77); else if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_4(4, 454, 78); + return jjStartNfaWithStates_4(4, 454, 77); else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(4, 532, 78); + return jjStartNfaWithStates_4(4, 532, 77); else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_4(4, 704, 78); + return jjStartNfaWithStates_4(4, 704, 77); else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(4, 718, 78); + return jjStartNfaWithStates_4(4, 718, 77); return jjMoveStringLiteralDfa5_4(active0, 0x10000000L, active1, 0x3000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f08000000000040L, active10, 0x40000800000ff8L, active11, 0L); case 84: case 116: if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 112, 78); + return jjStartNfaWithStates_4(4, 112, 77); else if ((active3 & 0x800000L) != 0L) { jjmatchedKind = 215; jjmatchedPos = 4; } else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(4, 217, 78); + return jjStartNfaWithStates_4(4, 217, 77); else if ((active3 & 0x2000000000000L) != 0L) { jjmatchedKind = 241; jjmatchedPos = 4; } else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(4, 268, 78); + return jjStartNfaWithStates_4(4, 268, 77); else if ((active4 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(4, 269, 78); + return jjStartNfaWithStates_4(4, 269, 77); else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 315, 78); + return jjStartNfaWithStates_4(4, 315, 77); else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(4, 429, 78); + return jjStartNfaWithStates_4(4, 429, 77); else if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(4, 473, 78); + return jjStartNfaWithStates_4(4, 473, 77); else if ((active7 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(4, 486, 78); + return jjStartNfaWithStates_4(4, 486, 77); else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(4, 599, 78); + return jjStartNfaWithStates_4(4, 599, 77); else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(4, 652, 78); + return jjStartNfaWithStates_4(4, 652, 77); 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: @@ -23424,28 +23442,28 @@ else if ((active10 & 0x1000L) != 0L) case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(4, 14, 78); + return jjStartNfaWithStates_4(4, 14, 77); 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 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 733, 78); + return jjStartNfaWithStates_4(4, 733, 77); 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: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(4, 19, 78); + return jjStartNfaWithStates_4(4, 19, 77); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 188, 78); + return jjStartNfaWithStates_4(4, 188, 77); else if ((active3 & 0x40L) != 0L) - return jjStartNfaWithStates_4(4, 198, 78); + return jjStartNfaWithStates_4(4, 198, 77); else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(4, 745, 78); + return jjStartNfaWithStates_4(4, 745, 77); 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: @@ -23487,20 +23505,20 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, jjmatchedPos = 5; } else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 447, 78); + return jjStartNfaWithStates_4(5, 447, 77); else if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(5, 602, 78); + return jjStartNfaWithStates_4(5, 602, 77); 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) - return jjStartNfaWithStates_4(5, 54, 78); + return jjStartNfaWithStates_4(5, 54, 77); else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(5, 208, 78); + return jjStartNfaWithStates_4(5, 208, 77); else if ((active5 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(5, 339, 78); + return jjStartNfaWithStates_4(5, 339, 77); else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(5, 427, 78); + return jjStartNfaWithStates_4(5, 427, 77); else if ((active8 & 0x8L) != 0L) { jjmatchedKind = 515; @@ -23510,62 +23528,62 @@ else if ((active8 & 0x8L) != 0L) case 69: case 101: if ((active0 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(5, 38, 78); + return jjStartNfaWithStates_4(5, 38, 77); else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 115, 78); + return jjStartNfaWithStates_4(5, 115, 77); else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(5, 150, 78); + return jjStartNfaWithStates_4(5, 150, 77); else if ((active2 & 0x20000000L) != 0L) { jjmatchedKind = 157; jjmatchedPos = 5; } else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(5, 160, 78); + return jjStartNfaWithStates_4(5, 160, 77); else if ((active2 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(5, 161, 78); + return jjStartNfaWithStates_4(5, 161, 77); else if ((active2 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 178, 78); + return jjStartNfaWithStates_4(5, 178, 77); else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_4(5, 197, 78); + return jjStartNfaWithStates_4(5, 197, 77); else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 254, 78); + return jjStartNfaWithStates_4(5, 254, 77); else if ((active5 & 0x1000000L) != 0L) { jjmatchedKind = 344; jjmatchedPos = 5; } else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(5, 349, 78); + return jjStartNfaWithStates_4(5, 349, 77); else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(5, 485, 78); + return jjStartNfaWithStates_4(5, 485, 77); else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(5, 535, 78); + return jjStartNfaWithStates_4(5, 535, 77); else if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(5, 540, 78); + return jjStartNfaWithStates_4(5, 540, 77); else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(5, 663, 78); + return jjStartNfaWithStates_4(5, 663, 77); else if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(5, 671, 78); + return jjStartNfaWithStates_4(5, 671, 77); else if ((active10 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(5, 676, 78); + return jjStartNfaWithStates_4(5, 676, 77); 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) - return jjStartNfaWithStates_4(5, 375, 78); + return jjStartNfaWithStates_4(5, 375, 77); return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1L, active8, 0x1c0000000L, active9, 0L, active10, 0x180L, active11, 0L); case 71: case 103: if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 247, 78); + return jjStartNfaWithStates_4(5, 247, 77); 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); + return jjStartNfaWithStates_4(5, 310, 77); else if ((active8 & 0x4L) != 0L) - return jjStartNfaWithStates_4(5, 514, 78); + return jjStartNfaWithStates_4(5, 514, 77); 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: @@ -23576,16 +23594,16 @@ else if ((active8 & 0x4L) != 0L) case 76: case 108: if ((active3 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(5, 238, 78); + return jjStartNfaWithStates_4(5, 238, 77); else if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(5, 416, 78); + return jjStartNfaWithStates_4(5, 416, 77); else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_4(5, 513, 78); + return jjStartNfaWithStates_4(5, 513, 77); 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) - return jjStartNfaWithStates_4(5, 605, 78); + return jjStartNfaWithStates_4(5, 605, 77); else if ((active9 & 0x80000000000L) != 0L) { jjmatchedKind = 619; @@ -23595,16 +23613,16 @@ else if ((active9 & 0x80000000000L) != 0L) case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_4(5, 7, 78); + return jjStartNfaWithStates_4(5, 7, 77); else if ((active1 & 0x1000000L) != 0L) { jjmatchedKind = 88; jjmatchedPos = 5; } else if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 176, 78); + return jjStartNfaWithStates_4(5, 176, 77); else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(5, 232, 78); + return jjStartNfaWithStates_4(5, 232, 77); else if ((active6 & 0x80L) != 0L) { jjmatchedKind = 391; @@ -23616,7 +23634,7 @@ else if ((active7 & 0x40000000L) != 0L) jjmatchedPos = 5; } else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_4(5, 711, 78); + return jjStartNfaWithStates_4(5, 711, 77); 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: @@ -23624,7 +23642,7 @@ else if ((active11 & 0x80L) != 0L) case 80: case 112: if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(5, 490, 78); + return jjStartNfaWithStates_4(5, 490, 77); 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: @@ -23637,13 +23655,13 @@ else if ((active11 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(5, 213, 78); + return jjStartNfaWithStates_4(5, 213, 77); else if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(5, 334, 78); + return jjStartNfaWithStates_4(5, 334, 77); else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 377, 78); + return jjStartNfaWithStates_4(5, 377, 77); else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 505, 78); + return jjStartNfaWithStates_4(5, 505, 77); else if ((active8 & 0x4000L) != 0L) { jjmatchedKind = 526; @@ -23653,28 +23671,28 @@ else if ((active8 & 0x4000L) != 0L) case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(5, 16, 78); + return jjStartNfaWithStates_4(5, 16, 77); else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_4(5, 195, 78); + return jjStartNfaWithStates_4(5, 195, 77); else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(5, 205, 78); + return jjStartNfaWithStates_4(5, 205, 77); else if ((active3 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 246, 78); + return jjStartNfaWithStates_4(5, 246, 77); else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(5, 352, 78); + return jjStartNfaWithStates_4(5, 352, 77); else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 382, 78); + return jjStartNfaWithStates_4(5, 382, 77); else if ((active6 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(5, 398, 78); + return jjStartNfaWithStates_4(5, 398, 77); else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 691, 78); + return jjStartNfaWithStates_4(5, 691, 77); 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) - return jjStartNfaWithStates_4(5, 5, 78); + return jjStartNfaWithStates_4(5, 5, 77); else if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(5, 44, 78); + return jjStartNfaWithStates_4(5, 44, 77); else if ((active1 & 0x10000000L) != 0L) { jjmatchedKind = 92; @@ -23686,27 +23704,29 @@ else if ((active3 & 0x80L) != 0L) jjmatchedPos = 5; } else if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(5, 221, 78); + return jjStartNfaWithStates_4(5, 221, 77); else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_4(5, 259, 78); + return jjStartNfaWithStates_4(5, 259, 77); else if ((active4 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(5, 271, 78); + return jjStartNfaWithStates_4(5, 271, 77); else if ((active5 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 379, 78); + return jjStartNfaWithStates_4(5, 379, 77); else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_4(5, 384, 78); + return jjStartNfaWithStates_4(5, 384, 77); else if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(5, 401, 78); + return jjStartNfaWithStates_4(5, 401, 77); else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(5, 477, 78); + return jjStartNfaWithStates_4(5, 477, 77); else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_4(5, 520, 78); + return jjStartNfaWithStates_4(5, 520, 77); else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(5, 611, 78); + return jjStartNfaWithStates_4(5, 611, 77); else if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(5, 675, 78); + return jjStartNfaWithStates_4(5, 675, 77); else if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(5, 678, 78); + return jjStartNfaWithStates_4(5, 678, 77); + else if ((active11 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 752, 77); 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: @@ -23717,9 +23737,9 @@ else if ((active10 & 0x4000000000L) != 0L) case 87: case 119: if ((active4 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(5, 282, 78); + return jjStartNfaWithStates_4(5, 282, 77); else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_4(5, 709, 78); + return jjStartNfaWithStates_4(5, 709, 77); return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0x8000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000L, active11, 0L); case 88: case 120: @@ -23727,13 +23747,13 @@ else if ((active11 & 0x20L) != 0L) case 89: case 121: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(5, 45, 78); + return jjStartNfaWithStates_4(5, 45, 77); else if ((active3 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(5, 228, 78); + return jjStartNfaWithStates_4(5, 228, 77); else if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(5, 350, 78); + return jjStartNfaWithStates_4(5, 350, 77); else if ((active9 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(5, 617, 78); + return jjStartNfaWithStates_4(5, 617, 77); 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: @@ -23756,7 +23776,7 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, { case 50: if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(6, 464, 78); + return jjStartNfaWithStates_4(6, 464, 77); 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); @@ -23774,20 +23794,20 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, jjmatchedPos = 6; } else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 378, 78); + return jjStartNfaWithStates_4(6, 378, 77); return jjMoveStringLiteralDfa7_4(active0, 0x800000L, active1, 0x10000L, active2, 0x180c00000100000L, active3, 0x110000000000000L, active4, 0x4000010000L, active5, 0x4000000080L, active6, 0L, active7, 0x4000020010000000L, active8, 0x200000001000L, active9, 0L, active10, 0x78L, active11, 0L); case 68: case 100: if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(6, 158, 78); + return jjStartNfaWithStates_4(6, 158, 77); else if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(6, 165, 78); + return jjStartNfaWithStates_4(6, 165, 77); else if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 242, 78); + return jjStartNfaWithStates_4(6, 242, 77); else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_4(6, 325, 78); + return jjStartNfaWithStates_4(6, 325, 77); else if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(6, 674, 78); + return jjStartNfaWithStates_4(6, 674, 77); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0L, active8, 0L, active9, 0x8000000000L, active10, 0x4000000004000000L, active11, 0L); case 69: case 101: @@ -23797,41 +23817,41 @@ else if ((active10 & 0x400000000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 82, 78); + return jjStartNfaWithStates_4(6, 82, 77); else if ((active2 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(6, 152, 78); + return jjStartNfaWithStates_4(6, 152, 77); else if ((active3 & 0x200L) != 0L) - return jjStartNfaWithStates_4(6, 201, 78); + return jjStartNfaWithStates_4(6, 201, 77); else if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(6, 204, 78); + return jjStartNfaWithStates_4(6, 204, 77); else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_4(6, 261, 78); + return jjStartNfaWithStates_4(6, 261, 77); else if ((active5 & 0x1000L) != 0L) { jjmatchedKind = 332; jjmatchedPos = 6; } else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(6, 428, 78); + return jjStartNfaWithStates_4(6, 428, 77); else if ((active6 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 440, 78); + return jjStartNfaWithStates_4(6, 440, 77); else if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(6, 470, 78); + return jjStartNfaWithStates_4(6, 470, 77); else if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(6, 472, 78); + return jjStartNfaWithStates_4(6, 472, 77); else if ((active7 & 0x80000000000L) != 0L) { jjmatchedKind = 491; jjmatchedPos = 6; } else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(6, 665, 78); + return jjStartNfaWithStates_4(6, 665, 77); else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(6, 742, 78); + return jjStartNfaWithStates_4(6, 742, 77); else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(6, 743, 78); + return jjStartNfaWithStates_4(6, 743, 77); else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(6, 748, 78); + return jjStartNfaWithStates_4(6, 748, 77); 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, 0x45000004L); case 70: case 102: @@ -23844,28 +23864,28 @@ else if ((active11 & 0x100000000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 63, 78); + return jjStartNfaWithStates_4(6, 63, 77); else if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 308, 78); + return jjStartNfaWithStates_4(6, 308, 77); else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 363, 78); + return jjStartNfaWithStates_4(6, 363, 77); else if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(6, 417, 78); + return jjStartNfaWithStates_4(6, 417, 77); else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(6, 430, 78); + return jjStartNfaWithStates_4(6, 430, 77); else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 499, 78); + return jjStartNfaWithStates_4(6, 499, 77); else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 698, 78); + return jjStartNfaWithStates_4(6, 698, 77); else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 736, 78); + return jjStartNfaWithStates_4(6, 736, 77); 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); + return jjStartNfaWithStates_4(6, 50, 77); else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 747, 78); + return jjStartNfaWithStates_4(6, 747, 77); 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: @@ -23873,25 +23893,25 @@ else if ((active11 & 0x80000000000L) != 0L) case 76: case 108: if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(6, 151, 78); + return jjStartNfaWithStates_4(6, 151, 77); else if ((active3 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(6, 234, 78); + return jjStartNfaWithStates_4(6, 234, 77); else if ((active4 & 0x200L) != 0L) { jjmatchedKind = 265; jjmatchedPos = 6; } else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 306, 78); + return jjStartNfaWithStates_4(6, 306, 77); else if ((active5 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(6, 360, 78); + return jjStartNfaWithStates_4(6, 360, 77); else if ((active6 & 0x1000L) != 0L) { jjmatchedKind = 396; jjmatchedPos = 6; } else if ((active6 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(6, 414, 78); + return jjStartNfaWithStates_4(6, 414, 77); return jjMoveStringLiteralDfa7_4(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400L, active5, 0x2048000000000000L, active6, 0x2000L, active7, 0x20000L, active8, 0L, active9, 0x4L, active10, 0L, active11, 0L); case 77: case 109: @@ -23899,28 +23919,28 @@ else if ((active6 & 0x40000000L) != 0L) case 78: case 110: if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 43, 78); + return jjStartNfaWithStates_4(6, 43, 77); else if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 48, 78); + return jjStartNfaWithStates_4(6, 48, 77); else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(6, 207, 78); + return jjStartNfaWithStates_4(6, 207, 77); else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(6, 222, 78); + return jjStartNfaWithStates_4(6, 222, 77); else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(6, 223, 78); + return jjStartNfaWithStates_4(6, 223, 77); else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(6, 421, 78); + return jjStartNfaWithStates_4(6, 421, 77); else if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 433, 78); + return jjStartNfaWithStates_4(6, 433, 77); else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_4(6, 517, 78); + return jjStartNfaWithStates_4(6, 517, 77); else if ((active8 & 0x10000L) != 0L) { jjmatchedKind = 528; jjmatchedPos = 6; } else if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 672, 78); + return jjStartNfaWithStates_4(6, 672, 77); else if ((active10 & 0x800000000000000L) != 0L) { jjmatchedKind = 699; @@ -23933,63 +23953,63 @@ else if ((active10 & 0x800000000000000L) != 0L) case 80: case 112: if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 693, 78); + return jjStartNfaWithStates_4(6, 693, 77); return jjMoveStringLiteralDfa7_4(active0, 0x20000000000L, active1, 0x2800000000000L, active2, 0x30000000000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(6, 159, 78); + return jjStartNfaWithStates_4(6, 159, 77); else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(6, 275, 78); + return jjStartNfaWithStates_4(6, 275, 77); else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(6, 280, 78); + return jjStartNfaWithStates_4(6, 280, 77); else if ((active4 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(6, 283, 78); + return jjStartNfaWithStates_4(6, 283, 77); else if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 320, 78); + return jjStartNfaWithStates_4(6, 320, 77); else if ((active7 & 0x2L) != 0L) { jjmatchedKind = 449; jjmatchedPos = 6; } else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(6, 534, 78); + return jjStartNfaWithStates_4(6, 534, 77); else if ((active10 & 0x2000L) != 0L) { jjmatchedKind = 653; jjmatchedPos = 6; } else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 696, 78); + return jjStartNfaWithStates_4(6, 696, 77); else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_4(6, 714, 78); + return jjStartNfaWithStates_4(6, 714, 77); 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) - return jjStartNfaWithStates_4(6, 326, 78); + return jjStartNfaWithStates_4(6, 326, 77); else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(6, 345, 78); + return jjStartNfaWithStates_4(6, 345, 77); else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_4(6, 392, 78); + return jjStartNfaWithStates_4(6, 392, 77); else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(6, 484, 78); + return jjStartNfaWithStates_4(6, 484, 77); else if ((active8 & 0x10L) != 0L) - return jjStartNfaWithStates_4(6, 516, 78); + return jjStartNfaWithStates_4(6, 516, 77); else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 722, 78); + return jjStartNfaWithStates_4(6, 722, 77); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x4000000000000L, active2, 0x80000000080L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x200000000L, active10, 0x200000L, active11, 0x200000L); case 84: case 116: if ((active1 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(6, 87, 78); + return jjStartNfaWithStates_4(6, 87, 77); else if ((active1 & 0x200000000L) != 0L) { jjmatchedKind = 97; jjmatchedPos = 6; } else if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(6, 109, 78); + return jjStartNfaWithStates_4(6, 109, 77); else if ((active1 & 0x80000000000000L) != 0L) { jjmatchedKind = 119; @@ -24001,28 +24021,28 @@ else if ((active2 & 0x2000000L) != 0L) jjmatchedPos = 6; } else if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 186, 78); + return jjStartNfaWithStates_4(6, 186, 77); else if ((active3 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 210, 78); + return jjStartNfaWithStates_4(6, 210, 77); else if ((active6 & 0x8000000000L) != 0L) { jjmatchedKind = 423; jjmatchedPos = 6; } else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(6, 474, 78); + return jjStartNfaWithStates_4(6, 474, 77); else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(6, 475, 78); + return jjStartNfaWithStates_4(6, 475, 77); else if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(6, 551, 78); + return jjStartNfaWithStates_4(6, 551, 77); else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 639, 78); + return jjStartNfaWithStates_4(6, 639, 77); else if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(6, 673, 78); + return jjStartNfaWithStates_4(6, 673, 77); else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 697, 78); + return jjStartNfaWithStates_4(6, 697, 77); else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_4(6, 712, 78); + return jjStartNfaWithStates_4(6, 712, 77); 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, 0x400120a0000L); case 85: case 117: @@ -24036,17 +24056,17 @@ else if ((active11 & 0x100L) != 0L) case 89: case 121: if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 64, 78); + return jjStartNfaWithStates_4(6, 64, 77); else if ((active4 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 312, 78); + return jjStartNfaWithStates_4(6, 312, 77); else if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(6, 404, 78); + return jjStartNfaWithStates_4(6, 404, 77); else if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 443, 78); + return jjStartNfaWithStates_4(6, 443, 77); else if ((active7 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 448, 78); + return jjStartNfaWithStates_4(6, 448, 77); else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(6, 662, 78); + return jjStartNfaWithStates_4(6, 662, 77); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; @@ -24072,9 +24092,9 @@ private final int jjMoveStringLiteralDfa7_4(long old0, long active0, long old1, case 66: case 98: if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(7, 552, 78); + return jjStartNfaWithStates_4(7, 552, 77); else if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(7, 555, 78); + return jjStartNfaWithStates_4(7, 555, 77); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0x2000000800000L, active8, 0x400000000000L, active9, 0x100000L, active10, 0L, active11, 0L); case 67: case 99: @@ -24089,83 +24109,83 @@ else if ((active8 & 0x40000000L) != 0L) case 68: case 100: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 57, 78); + return jjStartNfaWithStates_4(7, 57, 77); else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(7, 156, 78); + return jjStartNfaWithStates_4(7, 156, 77); else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 738, 78); + return jjStartNfaWithStates_4(7, 738, 77); 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: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_4(7, 6, 78); + return jjStartNfaWithStates_4(7, 6, 77); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(7, 13, 78); + return jjStartNfaWithStates_4(7, 13, 77); else if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(7, 80, 78); + return jjStartNfaWithStates_4(7, 80, 77); else if ((active1 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(7, 108, 78); + return jjStartNfaWithStates_4(7, 108, 77); else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_4(7, 135, 78); + return jjStartNfaWithStates_4(7, 135, 77); else if ((active2 & 0x800L) != 0L) { jjmatchedKind = 139; jjmatchedPos = 7; } else if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 167, 78); + return jjStartNfaWithStates_4(7, 167, 77); else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(7, 272, 78); + return jjStartNfaWithStates_4(7, 272, 77); else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(7, 299, 78); + return jjStartNfaWithStates_4(7, 299, 77); else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(7, 302, 78); + return jjStartNfaWithStates_4(7, 302, 77); else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_4(7, 331, 78); + return jjStartNfaWithStates_4(7, 331, 77); else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 346, 78); + return jjStartNfaWithStates_4(7, 346, 77); else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 374, 78); + return jjStartNfaWithStates_4(7, 374, 77); else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 441, 78); + return jjStartNfaWithStates_4(7, 441, 77); else if ((active7 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(7, 469, 78); + return jjStartNfaWithStates_4(7, 469, 77); else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(7, 524, 78); + return jjStartNfaWithStates_4(7, 524, 77); else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(7, 547, 78); + return jjStartNfaWithStates_4(7, 547, 77); else if ((active8 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(7, 556, 78); + return jjStartNfaWithStates_4(7, 556, 77); else if ((active9 & 0x80L) != 0L) { jjmatchedKind = 583; jjmatchedPos = 7; } else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(7, 660, 78); + return jjStartNfaWithStates_4(7, 660, 77); else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(7, 721, 78); + return jjStartNfaWithStates_4(7, 721, 77); 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) - return jjStartNfaWithStates_4(7, 692, 78); + return jjStartNfaWithStates_4(7, 692, 77); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0x40000000000000L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 189, 78); + return jjStartNfaWithStates_4(7, 189, 77); else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 245, 78); + return jjStartNfaWithStates_4(7, 245, 77); else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_4(7, 395, 78); + return jjStartNfaWithStates_4(7, 395, 77); else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_4(7, 642, 78); + return jjStartNfaWithStates_4(7, 642, 77); 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) - return jjStartNfaWithStates_4(7, 174, 78); + return jjStartNfaWithStates_4(7, 174, 77); 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: @@ -24176,20 +24196,20 @@ else if ((active10 & 0x4L) != 0L) case 75: case 107: if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(7, 489, 78); + return jjStartNfaWithStates_4(7, 489, 77); break; case 76: case 108: if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(7, 209, 78); + return jjStartNfaWithStates_4(7, 209, 77); else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(7, 278, 78); + return jjStartNfaWithStates_4(7, 278, 77); else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 359, 78); + return jjStartNfaWithStates_4(7, 359, 77); else if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_4(7, 581, 78); + return jjStartNfaWithStates_4(7, 581, 77); else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(7, 734, 78); + return jjStartNfaWithStates_4(7, 734, 77); 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, 0x8000000L); case 77: case 109: @@ -24197,7 +24217,7 @@ else if ((active11 & 0x40000000L) != 0L) case 78: case 110: if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 231, 78); + return jjStartNfaWithStates_4(7, 231, 77); else if ((active6 & 0x4000000000000L) != 0L) { jjmatchedKind = 434; @@ -24210,14 +24230,14 @@ else if ((active6 & 0x4000000000000L) != 0L) case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 694, 78); + return jjStartNfaWithStates_4(7, 694, 77); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0x8000000L, active10, 0L, active11, 0L); case 82: case 114: if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(7, 554, 78); + return jjStartNfaWithStates_4(7, 554, 77); else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_4(7, 706, 78); + return jjStartNfaWithStates_4(7, 706, 77); 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: @@ -24227,32 +24247,32 @@ else if ((active11 & 0x4L) != 0L) jjmatchedPos = 7; } else if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 154, 78); + return jjStartNfaWithStates_4(7, 154, 77); else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(7, 333, 78); + return jjStartNfaWithStates_4(7, 333, 77); else if ((active5 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(7, 348, 78); + return jjStartNfaWithStates_4(7, 348, 77); else if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(7, 403, 78); + return jjStartNfaWithStates_4(7, 403, 77); else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 437, 78); + return jjStartNfaWithStates_4(7, 437, 77); else if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_4(7, 450, 78); + return jjStartNfaWithStates_4(7, 450, 77); else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 615, 78); + return jjStartNfaWithStates_4(7, 615, 77); 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) - return jjStartNfaWithStates_4(7, 175, 78); + return jjStartNfaWithStates_4(7, 175, 77); else if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 354, 78); + return jjStartNfaWithStates_4(7, 354, 77); else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(7, 476, 78); + return jjStartNfaWithStates_4(7, 476, 77); else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 538, 78); + return jjStartNfaWithStates_4(7, 538, 77); else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(7, 661, 78); + return jjStartNfaWithStates_4(7, 661, 77); return jjMoveStringLiteralDfa8_4(active0, 0xc00000000L, active1, 0L, active2, 0xb0000000000L, active3, 0x2L, active4, 0x4003L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0x100000000000L, active10, 0x18000e78L, active11, 0x100000L); case 85: case 117: @@ -24263,31 +24283,31 @@ else if ((active10 & 0x200000L) != 0L) case 87: case 119: if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(7, 172, 78); + return jjStartNfaWithStates_4(7, 172, 77); break; case 88: case 120: if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(7, 466, 78); + return jjStartNfaWithStates_4(7, 466, 77); break; case 89: case 121: if ((active3 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(7, 236, 78); + return jjStartNfaWithStates_4(7, 236, 77); else if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 253, 78); + return jjStartNfaWithStates_4(7, 253, 77); else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(7, 467, 78); + return jjStartNfaWithStates_4(7, 467, 77); else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(7, 468, 78); + return jjStartNfaWithStates_4(7, 468, 77); else if ((active7 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 503, 78); + return jjStartNfaWithStates_4(7, 503, 77); else if ((active8 & 0x40L) != 0L) - return jjStartNfaWithStates_4(7, 518, 78); + return jjStartNfaWithStates_4(7, 518, 77); else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 627, 78); + return jjStartNfaWithStates_4(7, 627, 77); else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 730, 78); + return jjStartNfaWithStates_4(7, 730, 77); 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: @@ -24316,23 +24336,23 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, case 66: case 98: if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_4(8, 578, 78); + return jjStartNfaWithStates_4(8, 578, 77); break; case 67: case 99: if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(8, 618, 78); + return jjStartNfaWithStates_4(8, 618, 77); 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) - return jjStartNfaWithStates_4(8, 93, 78); + return jjStartNfaWithStates_4(8, 93, 77); else if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(8, 235, 78); + return jjStartNfaWithStates_4(8, 235, 77); else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(8, 666, 78); + return jjStartNfaWithStates_4(8, 666, 77); else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(8, 732, 78); + return jjStartNfaWithStates_4(8, 732, 77); 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: @@ -24342,7 +24362,7 @@ else if ((active11 & 0x10000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_4(8, 192, 78); + return jjStartNfaWithStates_4(8, 192, 77); else if ((active4 & 0x1L) != 0L) { jjmatchedKind = 256; @@ -24359,15 +24379,15 @@ else if ((active5 & 0x1000000000000L) != 0L) jjmatchedPos = 8; } else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 371, 78); + return jjStartNfaWithStates_4(8, 371, 77); else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 446, 78); + return jjStartNfaWithStates_4(8, 446, 77); else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_4(8, 456, 78); + return jjStartNfaWithStates_4(8, 456, 77); else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_4(8, 522, 78); + return jjStartNfaWithStates_4(8, 522, 77); else if ((active9 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(8, 607, 78); + return jjStartNfaWithStates_4(8, 607, 77); else if ((active10 & 0x200L) != 0L) { jjmatchedKind = 649; @@ -24377,31 +24397,31 @@ else if ((active10 & 0x200L) != 0L) case 70: case 102: if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_4(8, 137, 78); + return jjStartNfaWithStates_4(8, 137, 77); else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 630, 78); + return jjStartNfaWithStates_4(8, 630, 77); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(8, 22, 78); + return jjStartNfaWithStates_4(8, 22, 77); else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_4(8, 202, 78); + return jjStartNfaWithStates_4(8, 202, 77); else if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(8, 219, 78); + return jjStartNfaWithStates_4(8, 219, 77); else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_4(8, 262, 78); + return jjStartNfaWithStates_4(8, 262, 77); else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 438, 78); + return jjStartNfaWithStates_4(8, 438, 77); else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(8, 483, 78); + return jjStartNfaWithStates_4(8, 483, 77); else if ((active9 & 0x2000000000L) != 0L) { jjmatchedKind = 613; jjmatchedPos = 8; } else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(8, 737, 78); + return jjStartNfaWithStates_4(8, 737, 77); 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: @@ -24409,12 +24429,12 @@ else if ((active11 & 0x200000000L) != 0L) case 73: case 105: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(8, 42, 78); + return jjStartNfaWithStates_4(8, 42, 77); 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, 0x81000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(8, 145, 78); + return jjStartNfaWithStates_4(8, 145, 77); break; case 76: case 108: @@ -24430,7 +24450,7 @@ else if ((active11 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(8, 29, 78); + return jjStartNfaWithStates_4(8, 29, 77); else if ((active1 & 0x80000L) != 0L) { jjmatchedKind = 83; @@ -24442,13 +24462,13 @@ else if ((active1 & 0x40000000L) != 0L) jjmatchedPos = 8; } else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_4(8, 200, 78); + return jjStartNfaWithStates_4(8, 200, 77); else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(8, 284, 78); + return jjStartNfaWithStates_4(8, 284, 77); else if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(8, 415, 78); + return jjStartNfaWithStates_4(8, 415, 77); else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 439, 78); + return jjStartNfaWithStates_4(8, 439, 77); 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: @@ -24456,7 +24476,7 @@ else if ((active6 & 0x80000000000000L) != 0L) case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 113, 78); + return jjStartNfaWithStates_4(8, 113, 77); else if ((active9 & 0x100000000000000L) != 0L) { jjmatchedKind = 632; @@ -24474,18 +24494,18 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedPos = 8; } else if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(8, 146, 78); + return jjStartNfaWithStates_4(8, 146, 77); else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_4(8, 264, 78); + return jjStartNfaWithStates_4(8, 264, 77); else if ((active6 & 0x800000L) != 0L) { jjmatchedKind = 407; jjmatchedPos = 8; } else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_4(8, 523, 78); + return jjStartNfaWithStates_4(8, 523, 77); else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_4(8, 577, 78); + return jjStartNfaWithStates_4(8, 577, 77); return jjMoveStringLiteralDfa9_4(active0, 0x20000000000L, active1, 0x30000000000007e0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x4003f000000L, active7, 0L, active8, 0x3ffe004000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 83: case 115: @@ -24493,24 +24513,24 @@ else if ((active9 & 0x2L) != 0L) case 84: case 116: if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 118, 78); + return jjStartNfaWithStates_4(8, 118, 77); else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_4(8, 263, 78); + return jjStartNfaWithStates_4(8, 263, 77); else if ((active4 & 0x100000L) != 0L) { jjmatchedKind = 276; jjmatchedPos = 8; } else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 496, 78); + return jjStartNfaWithStates_4(8, 496, 77); else if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 500, 78); + return jjStartNfaWithStates_4(8, 500, 77); else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 504, 78); + return jjStartNfaWithStates_4(8, 504, 77); else if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(8, 559, 78); + return jjStartNfaWithStates_4(8, 559, 77); else if ((active9 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(8, 601, 78); + return jjStartNfaWithStates_4(8, 601, 77); 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: @@ -24521,29 +24541,29 @@ else if ((active9 & 0x2000000L) != 0L) case 87: case 119: if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(8, 226, 78); + return jjStartNfaWithStates_4(8, 226, 77); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0L); case 88: case 120: if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(8, 460, 78); + return jjStartNfaWithStates_4(8, 460, 77); return jjMoveStringLiteralDfa9_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 248, 78); + return jjStartNfaWithStates_4(8, 248, 77); else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_4(8, 266, 78); + return jjStartNfaWithStates_4(8, 266, 77); else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(8, 461, 78); + return jjStartNfaWithStates_4(8, 461, 77); else if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 625, 78); + return jjStartNfaWithStates_4(8, 625, 77); else if ((active10 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 695, 78); + return jjStartNfaWithStates_4(8, 695, 77); else if ((active10 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 702, 78); + return jjStartNfaWithStates_4(8, 702, 77); else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(8, 724, 78); + return jjStartNfaWithStates_4(8, 724, 77); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000L, active10, 0L, active11, 0L); default : break; @@ -24572,62 +24592,62 @@ private final int jjMoveStringLiteralDfa9_4(long old0, long active0, long old1, case 67: case 99: if ((active0 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(9, 31, 78); + return jjStartNfaWithStates_4(9, 31, 77); else if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_4(9, 138, 78); + return jjStartNfaWithStates_4(9, 138, 77); else if ((active9 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 631, 78); + return jjStartNfaWithStates_4(9, 631, 77); return jjMoveStringLiteralDfa10_4(active0, 0x800000L, active1, 0x4000000000000000L, active2, 0x80000000000L, active3, 0x10000000000000L, active4, 0x1800000000L, active5, 0x20000L, active6, 0L, active7, 0x400080000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 68: case 100: if ((active5 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(9, 358, 78); + return jjStartNfaWithStates_4(9, 358, 77); else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 369, 78); + return jjStartNfaWithStates_4(9, 369, 77); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x800000000000L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(9, 28, 78); + return jjStartNfaWithStates_4(9, 28, 77); else if ((active2 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(9, 148, 78); + return jjStartNfaWithStates_4(9, 148, 77); else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(9, 155, 78); + return jjStartNfaWithStates_4(9, 155, 77); else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(9, 294, 78); + return jjStartNfaWithStates_4(9, 294, 77); else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(9, 295, 78); + return jjStartNfaWithStates_4(9, 295, 77); else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 305, 78); + return jjStartNfaWithStates_4(9, 305, 77); else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(9, 465, 78); + return jjStartNfaWithStates_4(9, 465, 77); else if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(9, 471, 78); + return jjStartNfaWithStates_4(9, 471, 77); else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 511, 78); + return jjStartNfaWithStates_4(9, 511, 77); else if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(9, 558, 78); + return jjStartNfaWithStates_4(9, 558, 77); else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(9, 612, 78); + return jjStartNfaWithStates_4(9, 612, 77); else if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(9, 623, 78); + return jjStartNfaWithStates_4(9, 623, 77); else if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(9, 727, 78); + return jjStartNfaWithStates_4(9, 727, 77); else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(9, 729, 78); + return jjStartNfaWithStates_4(9, 729, 77); else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(9, 731, 78); + return jjStartNfaWithStates_4(9, 731, 77); 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) - return jjStartNfaWithStates_4(9, 405, 78); + return jjStartNfaWithStates_4(9, 405, 77); else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(9, 548, 78); + return jjStartNfaWithStates_4(9, 548, 77); else if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(9, 606, 78); + return jjStartNfaWithStates_4(9, 606, 77); else if ((active10 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 700, 78); + return jjStartNfaWithStates_4(9, 700, 77); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0x400000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: @@ -24638,7 +24658,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 75: case 107: if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(9, 162, 78); + return jjStartNfaWithStates_4(9, 162, 77); 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, 0x80010L); case 76: case 108: @@ -24646,7 +24666,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 77: case 109: if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(9, 342, 78); + return jjStartNfaWithStates_4(9, 342, 77); return jjMoveStringLiteralDfa10_4(active0, 0x10000000000L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x4000100010000000L, active10, 0L, active11, 0L); case 78: case 110: @@ -24662,53 +24682,53 @@ else if ((active10 & 0x1000000000000000L) != 0L) case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 114, 78); + return jjStartNfaWithStates_4(9, 114, 77); else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(9, 603, 78); + return jjStartNfaWithStates_4(9, 603, 77); break; case 82: case 114: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(9, 76, 78); + return jjStartNfaWithStates_4(9, 76, 77); else if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(9, 169, 78); + return jjStartNfaWithStates_4(9, 169, 77); else if ((active4 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(9, 298, 78); + return jjStartNfaWithStates_4(9, 298, 77); else if ((active7 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 497, 78); + return jjStartNfaWithStates_4(9, 497, 77); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000L, active7, 0x8000L, active8, 0L, active9, 0x800L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(9, 35, 78); + return jjStartNfaWithStates_4(9, 35, 77); else if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_4(9, 74, 78); + return jjStartNfaWithStates_4(9, 74, 77); else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 445, 78); + return jjStartNfaWithStates_4(9, 445, 77); else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_4(9, 458, 78); + return jjStartNfaWithStates_4(9, 458, 77); else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_4(9, 648, 78); + return jjStartNfaWithStates_4(9, 648, 77); else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(9, 741, 78); + return jjStartNfaWithStates_4(9, 741, 77); else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(9, 746, 78); + return jjStartNfaWithStates_4(9, 746, 77); 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: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(9, 30, 78); + return jjStartNfaWithStates_4(9, 30, 77); else if ((active1 & 0x1000000000L) != 0L) { jjmatchedKind = 100; jjmatchedPos = 9; } else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(9, 173, 78); + return jjStartNfaWithStates_4(9, 173, 77); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(9, 462, 78); + return jjStartNfaWithStates_4(9, 462, 77); else if ((active8 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(9, 549, 78); + return jjStartNfaWithStates_4(9, 549, 77); 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: @@ -24719,7 +24739,7 @@ else if ((active8 & 0x2000000000L) != 0L) case 88: case 120: if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 314, 78); + return jjStartNfaWithStates_4(9, 314, 77); break; case 89: case 121: @@ -24729,13 +24749,13 @@ else if ((active8 & 0x2000000000L) != 0L) jjmatchedPos = 9; } else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(9, 293, 78); + return jjStartNfaWithStates_4(9, 293, 77); else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(9, 397, 78); + return jjStartNfaWithStates_4(9, 397, 77); else if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(9, 550, 78); + return jjStartNfaWithStates_4(9, 550, 77); else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(9, 658, 78); + return jjStartNfaWithStates_4(9, 658, 77); 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: @@ -24764,41 +24784,41 @@ private final int jjMoveStringLiteralDfa10_4(long old0, long active0, long old1, case 67: case 99: if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_4(10, 579, 78); + return jjStartNfaWithStates_4(10, 579, 77); return jjMoveStringLiteralDfa11_4(active0, 0x1000000L, active1, 0x100000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200008000L, active8, 0L, active9, 0x22000L, active10, 0x2L, active11, 0L); case 68: case 100: if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(10, 225, 78); + return jjStartNfaWithStates_4(10, 225, 77); else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(10, 340, 78); + return jjStartNfaWithStates_4(10, 340, 77); else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(10, 341, 78); + return jjStartNfaWithStates_4(10, 341, 77); else if ((active10 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(10, 667, 78); + return jjStartNfaWithStates_4(10, 667, 77); 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) - return jjStartNfaWithStates_4(10, 40, 78); + return jjStartNfaWithStates_4(10, 40, 77); else if ((active1 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(10, 89, 78); + return jjStartNfaWithStates_4(10, 89, 77); else if ((active2 & 0x10L) != 0L) - return jjStartNfaWithStates_4(10, 132, 78); + return jjStartNfaWithStates_4(10, 132, 77); else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 216, 78); + return jjStartNfaWithStates_4(10, 216, 77); else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(10, 270, 78); + return jjStartNfaWithStates_4(10, 270, 77); else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 508, 78); + return jjStartNfaWithStates_4(10, 508, 77); else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(10, 527, 78); + return jjStartNfaWithStates_4(10, 527, 77); else if ((active9 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(10, 620, 78); + return jjStartNfaWithStates_4(10, 620, 77); else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 624, 78); + return jjStartNfaWithStates_4(10, 624, 77); else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(10, 735, 78); + return jjStartNfaWithStates_4(10, 735, 77); 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,14 +24826,14 @@ else if ((active11 & 0x80000000L) != 0L) case 71: case 103: if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_4(10, 459, 78); + return jjStartNfaWithStates_4(10, 459, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x8L) != 0L) - return jjStartNfaWithStates_4(10, 67, 78); + return jjStartNfaWithStates_4(10, 67, 77); else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(10, 418, 78); + return jjStartNfaWithStates_4(10, 418, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x4000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0L, active10, 0x10000L, active11, 0x200000L); case 73: case 105: @@ -24821,9 +24841,9 @@ else if ((active6 & 0x400000000L) != 0L) case 76: case 108: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(10, 95, 78); + return jjStartNfaWithStates_4(10, 95, 77); else if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(10, 557, 78); + return jjStartNfaWithStates_4(10, 557, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x1000000000000020L, active2, 0L, active3, 0L, active4, 0x20000L, active5, 0L, active6, 0L, active7, 0x4000000000000000L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -24831,18 +24851,18 @@ else if ((active8 & 0x200000000000L) != 0L) case 78: case 110: if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(10, 168, 78); + return jjStartNfaWithStates_4(10, 168, 77); else if ((active8 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(10, 553, 78); + return jjStartNfaWithStates_4(10, 553, 77); else if ((active10 & 0x8L) != 0L) { jjmatchedKind = 643; jjmatchedPos = 10; } else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_4(10, 651, 78); + return jjStartNfaWithStates_4(10, 651, 77); else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 728, 78); + return jjStartNfaWithStates_4(10, 728, 77); 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: @@ -24850,9 +24870,9 @@ else if ((active11 & 0x1000000L) != 0L) case 80: case 112: if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(10, 604, 78); + return jjStartNfaWithStates_4(10, 604, 77); else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(10, 726, 78); + return jjStartNfaWithStates_4(10, 726, 77); 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: @@ -24860,22 +24880,22 @@ else if ((active11 & 0x400000L) != 0L) case 82: case 114: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(10, 105, 78); + return jjStartNfaWithStates_4(10, 105, 77); else if ((active8 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 560, 78); + return jjStartNfaWithStates_4(10, 560, 77); else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(10, 597, 78); + return jjStartNfaWithStates_4(10, 597, 77); else if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(10, 621, 78); + return jjStartNfaWithStates_4(10, 621, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x4200000001L, active10, 0x400L, active11, 0L); case 83: case 115: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(10, 104, 78); + return jjStartNfaWithStates_4(10, 104, 77); else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(10, 171, 78); + return jjStartNfaWithStates_4(10, 171, 77); else if ((active4 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(10, 290, 78); + return jjStartNfaWithStates_4(10, 290, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x4003c0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -24885,11 +24905,11 @@ else if ((active4 & 0x400000000L) != 0L) jjmatchedPos = 10; } else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 501, 78); + return jjStartNfaWithStates_4(10, 501, 77); else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_4(10, 585, 78); + return jjStartNfaWithStates_4(10, 585, 77); else if ((active9 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(10, 610, 78); + return jjStartNfaWithStates_4(10, 610, 77); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0xb00000000000000L, active2, 0x40000000000L, active3, 0L, active4, 0x8000001000000004L, active5, 0x2000000000020000L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x1000000000000000L, active10, 0x4000L, active11, 0L); case 85: case 117: @@ -24897,7 +24917,7 @@ else if ((active9 & 0x400000000L) != 0L) case 87: case 119: if ((active1 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 125, 78); + return jjStartNfaWithStates_4(10, 125, 77); break; case 88: case 120: @@ -24905,11 +24925,11 @@ else if ((active9 & 0x400000000L) != 0L) case 89: case 121: if ((active0 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 55, 78); + return jjStartNfaWithStates_4(10, 55, 77); else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_4(10, 257, 78); + return jjStartNfaWithStates_4(10, 257, 77); else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_4(10, 586, 78); + return jjStartNfaWithStates_4(10, 586, 77); break; default : break; @@ -24932,7 +24952,7 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, case 65: case 97: if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_4(11, 512, 78); + return jjStartNfaWithStates_4(11, 512, 77); return jjMoveStringLiteralDfa12_4(active0, 0x1000000L, active1, 0x500000000300000L, active2, 0L, active3, 0L, active4, 0x8000001000000000L, active5, 0L, active6, 0x2000000L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x10004000L, active11, 0L); case 66: case 98: @@ -24943,31 +24963,31 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, case 68: case 100: if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 633, 78); + return jjStartNfaWithStates_4(11, 633, 77); return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 61, 78); + return jjStartNfaWithStates_4(11, 61, 77); else if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 121, 78); + return jjStartNfaWithStates_4(11, 121, 77); else if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 124, 78); + return jjStartNfaWithStates_4(11, 124, 77); else if ((active1 & 0x8000000000000000L) != 0L) { jjmatchedKind = 127; jjmatchedPos = 11; } else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(11, 273, 78); + return jjStartNfaWithStates_4(11, 273, 77); else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(11, 493, 78); + return jjStartNfaWithStates_4(11, 493, 77); else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(11, 525, 78); + return jjStartNfaWithStates_4(11, 525, 77); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(11, 544, 78); + return jjStartNfaWithStates_4(11, 544, 77); else if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(11, 655, 78); + return jjStartNfaWithStates_4(11, 655, 77); return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x40000000000001e0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x20000L, active6, 0L, active7, 0x400000008000L, active8, 0L, active9, 0x4000000000L, active10, 0x10400L, active11, 0L); case 70: case 102: @@ -24978,9 +24998,9 @@ else if ((active10 & 0x8000L) != 0L) case 72: case 104: if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 123, 78); + return jjStartNfaWithStates_4(11, 123, 77); else if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 381, 78); + return jjStartNfaWithStates_4(11, 381, 77); break; case 73: case 105: @@ -24988,14 +25008,14 @@ else if ((active5 & 0x2000000000000000L) != 0L) case 75: case 107: if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(11, 426, 78); + return jjStartNfaWithStates_4(11, 426, 77); else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(11, 594, 78); + return jjStartNfaWithStates_4(11, 594, 77); break; case 76: case 108: if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 502, 78); + return jjStartNfaWithStates_4(11, 502, 77); return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: @@ -25003,11 +25023,11 @@ else if ((active9 & 0x40000L) != 0L) case 78: case 110: if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(11, 77, 78); + return jjStartNfaWithStates_4(11, 77, 77); else if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(11, 277, 78); + return jjStartNfaWithStates_4(11, 277, 77); else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(11, 546, 78); + return jjStartNfaWithStates_4(11, 546, 77); return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x804800000000L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x100000000L, active8, 0L, active9, 0x4000000000000001L, active10, 0L, active11, 0L); case 79: case 111: @@ -25018,17 +25038,17 @@ else if ((active8 & 0x400000000L) != 0L) case 82: case 114: if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_4(11, 130, 78); + return jjStartNfaWithStates_4(11, 130, 77); else if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_4(11, 328, 78); + return jjStartNfaWithStates_4(11, 328, 77); else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(11, 529, 78); + return jjStartNfaWithStates_4(11, 529, 77); else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_4(11, 580, 78); + return jjStartNfaWithStates_4(11, 580, 77); else if ((active9 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(11, 588, 78); + return jjStartNfaWithStates_4(11, 588, 77); else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(11, 595, 78); + return jjStartNfaWithStates_4(11, 595, 77); return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0x1000000000112000L, active10, 0L, active11, 0x200000L); case 83: case 115: @@ -25036,13 +25056,13 @@ else if ((active9 & 0x80000L) != 0L) case 84: case 116: if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 244, 78); + return jjStartNfaWithStates_4(11, 244, 77); else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(11, 338, 78); + return jjStartNfaWithStates_4(11, 338, 77); else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_4(11, 582, 78); + return jjStartNfaWithStates_4(11, 582, 77); else if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_4(11, 708, 78); + return jjStartNfaWithStates_4(11, 708, 77); return jjMoveStringLiteralDfa12_4(active0, 0x20000800000L, active1, 0x200L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 85: case 117: @@ -25050,7 +25070,7 @@ else if ((active11 & 0x10L) != 0L) case 89: case 121: if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(11, 723, 78); + return jjStartNfaWithStates_4(11, 723, 77); break; default : break; @@ -25076,7 +25096,7 @@ private final int jjMoveStringLiteralDfa12_4(long old0, long active0, long old1, case 67: case 99: if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(12, 170, 78); + return jjStartNfaWithStates_4(12, 170, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x8000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); case 68: case 100: @@ -25084,26 +25104,26 @@ private final int jjMoveStringLiteralDfa12_4(long old0, long active0, long old1, case 69: case 101: if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(12, 543, 78); + return jjStartNfaWithStates_4(12, 543, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0x6000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000038000000L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(12, 140, 78); + return jjStartNfaWithStates_4(12, 140, 77); else if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(12, 634, 78); + return jjStartNfaWithStates_4(12, 634, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(12, 111, 78); + return jjStartNfaWithStates_4(12, 111, 77); else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(12, 289, 78); + return jjStartNfaWithStates_4(12, 289, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x4000000100000000L, active8, 0L, active9, 0x4200000000L, active10, 0x400L, active11, 0L); case 72: case 104: if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(12, 591, 78); + return jjStartNfaWithStates_4(12, 591, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x400000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: @@ -25111,7 +25131,7 @@ else if ((active4 & 0x200000000L) != 0L) case 76: case 108: if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(12, 668, 78); + return jjStartNfaWithStates_4(12, 668, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x4000L, active11, 0L); case 77: case 109: @@ -25119,9 +25139,9 @@ else if ((active4 & 0x200000000L) != 0L) case 78: case 110: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(12, 36, 78); + return jjStartNfaWithStates_4(12, 36, 77); else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_4(12, 193, 78); + return jjStartNfaWithStates_4(12, 193, 77); return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x20L, active2, 0x8000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000L, active10, 0L, active11, 0L); case 79: case 111: @@ -25129,12 +25149,12 @@ else if ((active3 & 0x2L) != 0L) case 80: case 112: if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_4(12, 584, 78); + return jjStartNfaWithStates_4(12, 584, 77); 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) - return jjStartNfaWithStates_4(12, 637, 78); + return jjStartNfaWithStates_4(12, 637, 77); return jjMoveStringLiteralDfa13_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -25148,7 +25168,7 @@ else if ((active3 & 0x2L) != 0L) case 89: case 121: if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(12, 596, 78); + return jjStartNfaWithStates_4(12, 596, 77); break; default : break; @@ -25171,11 +25191,11 @@ private final int jjMoveStringLiteralDfa13_4(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 126, 78); + return jjStartNfaWithStates_4(13, 126, 77); else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(13, 494, 78); + return jjStartNfaWithStates_4(13, 494, 77); else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(13, 656, 78); + return jjStartNfaWithStates_4(13, 656, 77); 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: @@ -25183,38 +25203,38 @@ else if ((active10 & 0x10000L) != 0L) case 67: case 99: if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(13, 143, 78); + return jjStartNfaWithStates_4(13, 143, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x200L, active2, 0L, active4, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20L, active11, 0L); case 68: case 100: if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(13, 593, 78); + return jjStartNfaWithStates_4(13, 593, 77); return jjMoveStringLiteralDfa14_4(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(13, 85, 78); + return jjStartNfaWithStates_4(13, 85, 77); else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(13, 408, 78); + return jjStartNfaWithStates_4(13, 408, 77); else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(13, 409, 78); + return jjStartNfaWithStates_4(13, 409, 77); else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(13, 590, 78); + return jjStartNfaWithStates_4(13, 590, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x400000L, active2, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000010000L, active10, 0x400L, active11, 0L); case 70: case 102: if ((active9 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 635, 78); + return jjStartNfaWithStates_4(13, 635, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0x2L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(13, 292, 78); + return jjStartNfaWithStates_4(13, 292, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x20L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active5 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(13, 336, 78); + return jjStartNfaWithStates_4(13, 336, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x8000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0x1L, active10, 0L, active11, 0L); case 73: case 105: @@ -25228,7 +25248,7 @@ else if ((active9 & 0x4000L) != 0L) case 78: case 110: if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_4(13, 258, 78); + return jjStartNfaWithStates_4(13, 258, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x10000000000L, active7, 0L, active8, 0x4000000000000000L, active9, 0x1000000000000000L, active10, 0x2L, active11, 0x200000L); case 79: case 111: @@ -25236,7 +25256,7 @@ else if ((active9 & 0x4000L) != 0L) case 80: case 112: if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 319, 78); + return jjStartNfaWithStates_4(13, 319, 77); break; case 82: case 114: @@ -25244,17 +25264,17 @@ else if ((active9 & 0x4000L) != 0L) case 83: case 115: if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 510, 78); + return jjStartNfaWithStates_4(13, 510, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x20000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 84: case 116: if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(13, 463, 78); + return jjStartNfaWithStates_4(13, 463, 77); return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x82000000000L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x700000000L, active8, 0L, active9, 0x4000000000000000L, active10, 0x1e0000000000L, active11, 0L); case 88: case 120: if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 435, 78); + return jjStartNfaWithStates_4(13, 435, 77); break; case 89: case 121: @@ -25286,34 +25306,34 @@ private final int jjMoveStringLiteralDfa14_4(long old0, long active0, long old1, case 67: case 99: if ((active6 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(14, 425, 78); + return jjStartNfaWithStates_4(14, 425, 77); else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 636, 78); + return jjStartNfaWithStates_4(14, 636, 77); return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); case 69: case 101: if ((active1 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(14, 99, 78); + return jjStartNfaWithStates_4(14, 99, 77); else if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(14, 102, 78); + return jjStartNfaWithStates_4(14, 102, 77); else if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_4(14, 329, 78); + return jjStartNfaWithStates_4(14, 329, 77); else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 638, 78); + return jjStartNfaWithStates_4(14, 638, 77); return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x8100000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x2800L, active10, 0L, active11, 0L); case 71: case 103: if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 120, 78); + return jjStartNfaWithStates_4(14, 120, 77); else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(14, 492, 78); + return jjStartNfaWithStates_4(14, 492, 77); else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(14, 654, 78); + return jjStartNfaWithStates_4(14, 654, 77); return jjMoveStringLiteralDfa15_4(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(14, 480, 78); + return jjStartNfaWithStates_4(14, 480, 77); break; case 73: case 105: @@ -25327,11 +25347,11 @@ else if ((active10 & 0x4000L) != 0L) case 78: case 110: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(14, 41, 78); + return jjStartNfaWithStates_4(14, 41, 77); else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_4(14, 327, 78); + return jjStartNfaWithStates_4(14, 327, 77); else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(14, 609, 78); + return jjStartNfaWithStates_4(14, 609, 77); return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: @@ -25339,23 +25359,23 @@ else if ((active9 & 0x200000000L) != 0L) case 82: case 114: if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(14, 107, 78); + return jjStartNfaWithStates_4(14, 107, 77); else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 575, 78); + return jjStartNfaWithStates_4(14, 575, 77); else if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(14, 592, 78); + return jjStartNfaWithStates_4(14, 592, 77); 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) - return jjStartNfaWithStates_4(14, 73, 78); + return jjStartNfaWithStates_4(14, 73, 77); return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(14, 424, 78); + return jjStartNfaWithStates_4(14, 424, 77); else if ((active10 & 0x2L) != 0L) - return jjStartNfaWithStates_4(14, 641, 78); + return jjStartNfaWithStates_4(14, 641, 77); return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x400000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: @@ -25363,9 +25383,9 @@ else if ((active10 & 0x2L) != 0L) case 88: case 120: if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(14, 614, 78); + return jjStartNfaWithStates_4(14, 614, 77); else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_4(14, 650, 78); + return jjStartNfaWithStates_4(14, 650, 77); break; case 89: case 121: @@ -25391,7 +25411,7 @@ private final int jjMoveStringLiteralDfa15_4(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(15, 86, 78); + return jjStartNfaWithStates_4(15, 86, 77); return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0xc0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0x3000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: @@ -25405,12 +25425,12 @@ private final int jjMoveStringLiteralDfa15_4(long old0, long active0, long old1, case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(15, 23, 78); + return jjStartNfaWithStates_4(15, 23, 77); break; case 72: case 104: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_4(15, 69, 78); + return jjStartNfaWithStates_4(15, 69, 77); break; case 76: case 108: @@ -25440,9 +25460,9 @@ else if ((active2 & 0x80000000000000L) != 0L) case 82: case 114: if ((active1 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(15, 96, 78); + return jjStartNfaWithStates_4(15, 96, 77); else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_4(15, 576, 78); + return jjStartNfaWithStates_4(15, 576, 77); 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: @@ -25482,17 +25502,17 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(16, 103, 78); + return jjStartNfaWithStates_4(16, 103, 77); return jjMoveStringLiteralDfa17_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000L); case 69: case 101: if ((active7 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(16, 482, 78); + return jjStartNfaWithStates_4(16, 482, 77); return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0x1e0000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(16, 84, 78); + return jjStartNfaWithStates_4(16, 84, 77); break; case 72: case 104: @@ -25515,7 +25535,7 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, case 80: case 112: if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_4(16, 128, 78); + return jjStartNfaWithStates_4(16, 128, 77); break; case 82: case 114: @@ -25539,12 +25559,12 @@ else if ((active8 & 0x1000000000000000L) != 0L) case 88: case 120: if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(16, 380, 78); + return jjStartNfaWithStates_4(16, 380, 77); break; case 89: case 121: if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(16, 574, 78); + return jjStartNfaWithStates_4(16, 574, 77); break; default : break; @@ -25573,17 +25593,17 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_4(17, 71, 78); + return jjStartNfaWithStates_4(17, 71, 77); return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 71: case 103: if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(17, 101, 78); + return jjStartNfaWithStates_4(17, 101, 77); return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x20000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(17, 570, 78); + return jjStartNfaWithStates_4(17, 570, 77); break; case 73: case 105: @@ -25630,11 +25650,11 @@ private final int jjMoveStringLiteralDfa18_4(long old0, long active0, long old1, case 68: case 100: if ((active8 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(18, 571, 78); + return jjStartNfaWithStates_4(18, 571, 77); else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_4(18, 587, 78); + return jjStartNfaWithStates_4(18, 587, 77); else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(18, 589, 78); + return jjStartNfaWithStates_4(18, 589, 77); return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); case 69: case 101: @@ -25644,7 +25664,7 @@ else if ((active9 & 0x2000L) != 0L) jjmatchedPos = 18; } else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_4(18, 644, 78); + return jjStartNfaWithStates_4(18, 644, 77); return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: @@ -25694,7 +25714,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, case 65: case 97: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_4(19, 72, 78); + return jjStartNfaWithStates_4(19, 72, 77); return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0xa0000000000L, active11, 0L); case 67: case 99: @@ -25705,7 +25725,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, case 72: case 104: if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(19, 337, 78); + return jjStartNfaWithStates_4(19, 337, 77); break; case 78: case 110: @@ -25725,7 +25745,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, case 89: case 121: if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(19, 479, 78); + return jjStartNfaWithStates_4(19, 479, 77); break; default : break; @@ -25760,19 +25780,19 @@ private final int jjMoveStringLiteralDfa20_4(long old0, long active0, long old1, case 69: case 101: if ((active1 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(20, 91, 78); + return jjStartNfaWithStates_4(20, 91, 77); else if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(20, 184, 78); + return jjStartNfaWithStates_4(20, 184, 77); return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x20L, active11, 0L); case 71: case 103: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_4(20, 70, 78); + return jjStartNfaWithStates_4(20, 70, 77); break; case 72: case 104: if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(20, 481, 78); + return jjStartNfaWithStates_4(20, 481, 77); return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active10, 0x100000000000L, active11, 0L); case 77: case 109: @@ -25792,7 +25812,7 @@ else if ((active2 & 0x100000000000000L) != 0L) case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(20, 24, 78); + return jjStartNfaWithStates_4(20, 24, 77); break; default : break; @@ -25821,16 +25841,16 @@ private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, case 68: case 100: if ((active10 & 0x20L) != 0L) - return jjStartNfaWithStates_4(21, 645, 78); + return jjStartNfaWithStates_4(21, 645, 77); break; case 69: case 101: if ((active2 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(21, 141, 78); + return jjStartNfaWithStates_4(21, 141, 77); else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(21, 682, 78); + return jjStartNfaWithStates_4(21, 682, 77); else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(21, 683, 78); + return jjStartNfaWithStates_4(21, 683, 77); return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x100000000000L, active11, 0L); case 70: case 102: @@ -25883,7 +25903,7 @@ private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, case 69: case 101: if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(22, 412, 78); + return jjStartNfaWithStates_4(22, 412, 77); return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x20000000L, active8, 0x80000000000000L, active10, 0L, active11, 0L); case 73: case 105: @@ -25933,7 +25953,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, case 65: case 97: if ((active10 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(23, 684, 78); + return jjStartNfaWithStates_4(23, 684, 77); break; case 67: case 99: @@ -25944,7 +25964,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, case 75: case 107: if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_4(23, 646, 78); + return jjStartNfaWithStates_4(23, 646, 77); break; case 76: case 108: @@ -25961,7 +25981,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(23, 562, 78); + return jjStartNfaWithStates_4(23, 562, 77); return jjMoveStringLiteralDfa24_4(active1, 0x400000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: @@ -25988,7 +26008,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, case 65: case 97: if ((active6 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(24, 413, 78); + return jjStartNfaWithStates_4(24, 413, 77); break; case 68: case 100: @@ -26002,7 +26022,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, case 71: case 103: if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(24, 681, 78); + return jjStartNfaWithStates_4(24, 681, 77); break; case 73: case 105: @@ -26049,29 +26069,29 @@ private final int jjMoveStringLiteralDfa25_4(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(25, 564, 78); + return jjStartNfaWithStates_4(25, 564, 77); break; case 69: case 101: if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(25, 563, 78); + return jjStartNfaWithStates_4(25, 563, 77); else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(25, 725, 78); + return jjStartNfaWithStates_4(25, 725, 77); break; case 71: case 103: if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(25, 411, 78); + return jjStartNfaWithStates_4(25, 411, 77); break; case 72: case 104: if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(25, 573, 78); + return jjStartNfaWithStates_4(25, 573, 77); break; case 78: case 110: if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(25, 410, 78); + return jjStartNfaWithStates_4(25, 410, 77); return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000000L, active11, 0L); case 79: case 111: @@ -26103,12 +26123,12 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(26, 567, 78); + return jjStartNfaWithStates_4(26, 567, 77); break; case 69: case 101: if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(26, 566, 78); + return jjStartNfaWithStates_4(26, 566, 77); break; case 71: case 103: @@ -26116,7 +26136,7 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, case 78: case 110: if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(26, 142, 78); + return jjStartNfaWithStates_4(26, 142, 77); break; case 79: case 111: @@ -26170,7 +26190,7 @@ private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old2, case 68: case 100: if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(28, 569, 78); + return jjStartNfaWithStates_4(28, 569, 77); break; case 69: case 101: @@ -26228,7 +26248,7 @@ private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old2, case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(30, 122, 78); + return jjStartNfaWithStates_4(30, 122, 77); return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0x2L, active11, 0L); default : break; @@ -26249,7 +26269,7 @@ private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old2, case 69: case 101: if ((active2 & 0x2L) != 0L) - return jjStartNfaWithStates_4(31, 129, 78); + return jjStartNfaWithStates_4(31, 129, 77); return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x200000000000L); default : break; @@ -26289,7 +26309,7 @@ private final int jjMoveStringLiteralDfa33_4(long old11, long active11) case 84: case 116: if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(33, 749, 78); + return jjStartNfaWithStates_4(33, 749, 77); break; default : break; @@ -26320,8 +26340,8 @@ private final int jjMoveNfa_4(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 763) - kind = 763; + if (kind > 765) + kind = 765; } break; case 58: @@ -26329,8 +26349,8 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 764) - kind = 764; + if (kind > 766) + kind = 766; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; @@ -26342,8 +26362,8 @@ else if (curChar == 39) jjCheckNAddStates(16, 18); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26354,20 +26374,30 @@ else if (curChar == 39) case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) jjCheckNAddTwoStates(51, 41); break; case 78: + if (curChar == 32) + jjCheckNAddTwoStates(68, 69); + if (curChar == 32) + jjCheckNAddTwoStates(65, 66); + if (curChar == 32) + jjCheckNAddTwoStates(63, 64); + if (curChar == 32) + jjCheckNAddTwoStates(61, 62); + break; + case 77: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26375,16 +26405,6 @@ else if (curChar == 39) if (curChar == 36) jjCheckNAdd(27); break; - case 77: - if (curChar == 32) - jjCheckNAddTwoStates(68, 69); - if (curChar == 32) - jjCheckNAddTwoStates(65, 66); - if (curChar == 32) - jjCheckNAddTwoStates(63, 64); - if (curChar == 32) - jjCheckNAddTwoStates(61, 62); - break; case 31: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -26392,8 +26412,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26404,8 +26424,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -26416,8 +26436,8 @@ else if (curChar == 42) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (curChar == 36) @@ -26434,8 +26454,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 826) - kind = 826; + if (kind > 828) + kind = 828; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -26443,14 +26463,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } break; @@ -26467,8 +26487,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 6: if (curChar == 34) @@ -26482,30 +26502,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 763) - kind = 763; + if (curChar == 34 && kind > 765) + kind = 765; break; case 11: if (curChar != 45) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 812) - kind = 812; + if ((0x2400L & l) != 0L && kind > 814) + kind = 814; break; case 14: - if (curChar == 10 && kind > 812) - kind = 812; + if (curChar == 10 && kind > 814) + kind = 814; break; case 15: if (curChar == 13) @@ -26522,15 +26542,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 23: if ((0x3ff201000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 24: @@ -26548,8 +26568,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -26559,8 +26579,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjCheckNAdd(29); break; case 32: @@ -26580,25 +26600,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 823) - kind = 823; + if (curChar == 34 && kind > 825) + kind = 825; break; case 37: - if (curChar == 7 && kind > 826) - kind = 826; + if (curChar == 7 && kind > 828) + kind = 828; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(39); break; case 40: @@ -26612,8 +26632,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 752) - kind = 752; + if (kind > 754) + kind = 754; jjCheckNAdd(43); break; case 44: @@ -26627,22 +26647,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAddStates(93, 95); break; case 49: @@ -26660,8 +26680,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 753) - kind = 753; + if (kind > 755) + kind = 755; jjCheckNAdd(52); break; case 53: @@ -26676,12 +26696,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 764) - kind = 764; + if (curChar == 39 && kind > 766) + kind = 766; break; case 59: - if (curChar == 39 && kind > 765) - kind = 765; + if (curChar == 39 && kind > 767) + kind = 767; break; case 61: if (curChar == 32) @@ -26708,14 +26728,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 810) - kind = 810; + if ((0xffff7fffffffffffL & l) != 0L && kind > 812) + kind = 812; break; case 75: if (curChar != 47) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjCheckNAddStates(71, 73); break; default : break; @@ -26750,37 +26770,37 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } break; case 78: - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x7fffffe87fffffeL & l) != 0L) - { - if (kind > 820) - kind = 820; - jjCheckNAdd(23); - } - break; - case 77: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 768) - kind = 768; + if (kind > 770) + kind = 770; } if ((0x10000000100000L & l) != 0L) { - if (kind > 769) - kind = 769; + if (kind > 771) + kind = 771; + } + break; + case 77: + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddTwoStates(25, 26); + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x7fffffe87fffffeL & l) != 0L) + { + if (kind > 822) + kind = 822; + jjCheckNAdd(23); } break; case 31: @@ -26790,8 +26810,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } break; @@ -26800,8 +26820,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } break; @@ -26814,8 +26834,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -26838,8 +26858,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(71, 73); break; case 17: @@ -26858,21 +26878,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 819) - kind = 819; + if (curChar == 96 && kind > 821) + kind = 821; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 24: @@ -26886,15 +26906,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -26924,32 +26944,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 768) - kind = 768; + if ((0x1000000010L & l) != 0L && kind > 770) + kind = 770; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 769) - kind = 769; + if ((0x10000000100000L & l) != 0L && kind > 771) + kind = 771; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 770) - kind = 770; + if ((0x8000000080000L & l) != 0L && kind > 772) + kind = 772; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 771) - kind = 771; + if ((0x400000004000L & l) != 0L && kind > 773) + kind = 773; break; case 73: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; break; default : break; } @@ -26981,8 +27001,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26990,11 +27010,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 78: + case 77: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27005,8 +27025,8 @@ else if ((0x100000001000000L & l) != 0L) case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27017,8 +27037,8 @@ else if ((0x100000001000000L & l) != 0L) case 80: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27027,8 +27047,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27041,8 +27061,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 812) - kind = 812; + if (kind > 814) + kind = 814; jjAddStates(71, 73); break; case 18: @@ -27053,15 +27073,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(23); break; case 24: @@ -27075,15 +27095,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 822) - kind = 822; + if (kind > 824) + kind = 824; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -27096,8 +27116,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) - kind = 810; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 812) + kind = 812; break; default : break; } @@ -27214,13 +27234,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, 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, "\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, }; public static final String[] lexStateNames = { "DEFAULT", "DQID", @@ -27263,32 +27283,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, -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, -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, 0xfbe3ffffffffffffL, - 0x4ff0307ffffffffL, + 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xef8fffffffffffffL, + 0x13fc0c1fffffffffL, }; static final long[] jjtoSkip = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x70f800000000L, + 0x1c3e000000000L, }; static final long[] jjtoSpecial = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x600000000000L, + 0x1800000000000L, }; static final long[] jjtoMore = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x8c0000000000L, + 0x2300000000000L, }; protected SimpleCharStream input_stream; private final int[] jjrounds = new int[94]; @@ -27435,18 +27455,18 @@ public Token getNextToken() jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_5(); - if (jjmatchedPos == 0 && jjmatchedKind > 815) + if (jjmatchedPos == 0 && jjmatchedKind > 817) { - jjmatchedKind = 815; + jjmatchedKind = 817; } break; case 6: jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_6(); - if (jjmatchedPos == 0 && jjmatchedKind > 815) + if (jjmatchedPos == 0 && jjmatchedKind > 817) { - jjmatchedKind = 815; + jjmatchedKind = 817; } break; } @@ -27522,13 +27542,13 @@ void SkipLexicalActions(Token matchedToken) { switch(jjmatchedKind) { - case 813 : + case 815 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); popState(); break; - case 814 : + case 816 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); @@ -27543,14 +27563,14 @@ void MoreLexicalActions() jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch(jjmatchedKind) { - case 810 : + case 812 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; pushState(); break; - case 811 : + case 813 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); @@ -27631,7 +27651,7 @@ void TokenLexicalActions(Token matchedToken) image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 820 : + case 822 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/util/IgniteResource.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/util/IgniteResource.java index df74d56a91638..0b3f59b52e4bd 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/util/IgniteResource.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/util/IgniteResource.java @@ -35,6 +35,10 @@ public interface IgniteResource { @Resources.BaseMessage("Cannot update field \"{0}\". You cannot update key, key fields or val field in case the val is a complex type.") Resources.ExInst cannotUpdateField(String field); + /** */ + @Resources.BaseMessage("Cannot access technical column \"{0}\".") + Resources.ExInst cannotAccessTechnicalColumn(String field); + /** */ @Resources.BaseMessage("Illegal aggregate function. {0} is unsupported at the moment.") Resources.ExInst unsupportedAggregationFunction(String a0); @@ -84,4 +88,24 @@ public interface IgniteResource { /** */ @Resources.BaseMessage("Operator ''CAST'' supports only the parameters: value and target type.") Resources.ExInst invalidCastParameters(); + + /** */ + @Resources.BaseMessage("SELECT FOR UPDATE is not yet supported.") + Resources.ExInst selectForUpdateNotSupported(); + + /** */ + @Resources.BaseMessage("WAIT value must be a positive integer, but was: {0}") + Resources.ExInst illegalWaitTimeout(String value); + + /** */ + @Resources.BaseMessage("SELECT FOR UPDATE requires an active PESSIMISTIC transaction") + Resources.ExInst selectForUpdateRequiresPessimisticTx(); + + /** */ + @Resources.BaseMessage("SELECT FOR UPDATE is not supported for multi-table (JOIN) queries") + Resources.ExInst selectForUpdateJoinNotSupported(); + + /** */ + @Resources.BaseMessage("SELECT FOR UPDATE: could not acquire lock (row version changed concurrently)") + Resources.ExInst selectForUpdateLockFailed(); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/PersonTransactionalQueryIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/PersonTransactionalQueryIntegrationTest.java new file mode 100644 index 0000000000000..4a8db5207abb4 --- /dev/null +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/PersonTransactionalQueryIntegrationTest.java @@ -0,0 +1,351 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.integration; + +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; +import org.apache.ignite.cache.query.SqlFieldsQuery; +import org.apache.ignite.calcite.CalciteQueryEngineConfiguration; +import org.apache.ignite.configuration.IgniteConfiguration; +import org.apache.ignite.configuration.SqlConfiguration; +import org.apache.ignite.configuration.TransactionConfiguration; +import org.apache.ignite.internal.IgniteEx; +import org.apache.ignite.internal.IgniteInternalFuture; +import org.apache.ignite.internal.processors.query.IgniteSQLException; +import org.apache.ignite.testframework.GridTestUtils; +import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; +import org.apache.ignite.transactions.Transaction; +import org.junit.Test; + +import static org.apache.ignite.transactions.TransactionConcurrency.OPTIMISTIC; +import static org.apache.ignite.transactions.TransactionConcurrency.PESSIMISTIC; +import static org.apache.ignite.transactions.TransactionIsolation.READ_COMMITTED; + +/** Tests queries over transactional Person table. */ +public class PersonTransactionalQueryIntegrationTest extends GridCommonAbstractTest { + /** */ + private IgniteEx node; + + /** {@inheritDoc} */ + @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { + return super.getConfiguration(igniteInstanceName) + .setSqlConfiguration(new SqlConfiguration().setQueryEnginesConfiguration( + new CalciteQueryEngineConfiguration().setDefault(true))) + .setTransactionConfiguration(new TransactionConfiguration().setTxAwareQueriesEnabled(true)); + } + + /** {@inheritDoc} */ + @Override protected void beforeTest() throws Exception { + node = startGrids(3); + + awaitPartitionMapExchange(); + } + + /** {@inheritDoc} */ + @Override protected void afterTest() throws Exception { + stopAllGrids(); + + super.afterTest(); + } + + /** */ + @Test + public void testSelectByPrimaryKey() { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + createAndPopulatePersonTable(); + + assertRows("SELECT * FROM Person WHERE id = 2", + row(2, "Bob", 22)); + + tx.commit(); + } + } + + /** */ + @Test + public void testSelectBySecondaryIndexRange() { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + createAndPopulatePersonTable(); + + assertRows("SELECT * FROM Person WHERE age < 30", + row(1, "Alice", 21), + row(2, "Bob", 22), + row(3, "Ann", 23), + row(4, "Carl", 24), + row(5, "Alex", 25), + row(6, "Diana", 26), + row(7, "Person7", 27), + row(8, "Person8", 28), + row(9, "Person9", 29)); + + tx.commit(); + } + } + + /** */ + @Test + public void testSelectByPrimaryKeyRange() { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + createAndPopulatePersonTable(); + + assertRows("SELECT * FROM Person WHERE id < 10", + row(1, "Alice", 21), + row(2, "Bob", 22), + row(3, "Ann", 23), + row(4, "Carl", 24), + row(5, "Alex", 25), + row(6, "Diana", 26), + row(7, "Person7", 27), + row(8, "Person8", 28), + row(9, "Person9", 29)); + + tx.commit(); + } + } + + /** */ + @Test + public void testSelectByNameLike() { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + createAndPopulatePersonTable(); + + assertRows("SELECT * FROM Person WHERE name LIKE 'A%'", + row(1, "Alice", 21), + row(3, "Ann", 23), + row(5, "Alex", 25)); + + tx.commit(); + } + } + + // ==================== SELECT FOR UPDATE tests ==================== + + /** Basic SELECT FOR UPDATE returns the correct rows and commits successfully. */ + @Test + public void testSelectForUpdateByPrimaryKey() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + assertRows("SELECT * FROM Person WHERE id = 2 FOR UPDATE", + row(2, "Bob", 22)); + + tx.commit(); + } + } + + /** SELECT FOR UPDATE with no matching rows returns an empty result set. */ + @Test + public void testSelectForUpdateNoRows() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + List> rows = sql("SELECT * FROM Person WHERE id = 9999 FOR UPDATE"); + + assertEquals(0, rows.size()); + + tx.commit(); + } + } + + /** SELECT FOR UPDATE NOWAIT succeeds when there is no contention. */ + @Test + public void testSelectForUpdateNowaitNoContention() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + assertRows("SELECT * FROM Person WHERE id = 1 FOR UPDATE NOWAIT", + row(1, "Alice", 21)); + + tx.commit(); + } + } + + /** SELECT FOR UPDATE WAIT n succeeds when there is no contention. */ + @Test + public void testSelectForUpdateWaitNoContention() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + assertRows("SELECT * FROM Person WHERE id = 3 FOR UPDATE WAIT 5", + row(3, "Ann", 23)); + + tx.commit(); + } + } + + /** SELECT FOR UPDATE within the same transaction allows repeated locks on the same key. */ + @Test + public void testSelectForUpdateRepeatedInSameTx() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + assertRows("SELECT * FROM Person WHERE id = 2 FOR UPDATE", + row(2, "Bob", 22)); + + // Second FOR UPDATE on the same key in the same transaction should succeed. + assertRows("SELECT * FROM Person WHERE id = 2 FOR UPDATE", + row(2, "Bob", 22)); + + tx.commit(); + } + } + + /** SELECT FOR UPDATE outside a transaction throws an appropriate error. */ + @Test + public void testSelectForUpdateOutsideTransaction() { + createAndPopulatePersonTable(); + + GridTestUtils.assertThrowsAnyCause(log, () -> { + sql("SELECT * FROM Person WHERE id = 1 FOR UPDATE"); + return null; + }, IgniteSQLException.class, "PESSIMISTIC"); + } + + /** SELECT FOR UPDATE inside an OPTIMISTIC transaction throws an appropriate error. */ + @Test + public void testSelectForUpdateInOptimisticTransaction() { + createAndPopulatePersonTable(); + + try (Transaction tx = node.transactions().txStart(OPTIMISTIC, READ_COMMITTED)) { + GridTestUtils.assertThrowsAnyCause(log, () -> { + sql("SELECT * FROM Person WHERE id = 1 FOR UPDATE"); + return null; + }, IgniteSQLException.class, "PESSIMISTIC"); + + tx.rollback(); + } + } + + /** SELECT FOR UPDATE with a JOIN throws an appropriate error. */ + @Test + public void testSelectForUpdateJoinRejected() { + createAndPopulatePersonTable(); + sql("CREATE TABLE Dept (id INT PRIMARY KEY, name VARCHAR) WITH atomicity=TRANSACTIONAL"); + sql("INSERT INTO Dept(id, name) VALUES (1, 'Engineering')"); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + GridTestUtils.assertThrowsAnyCause(log, () -> { + sql("SELECT p.id FROM Person p JOIN Dept d ON p.id = d.id FOR UPDATE"); + return null; + }, IgniteSQLException.class, "JOIN"); + + tx.rollback(); + } + } + + /** + * SELECT FOR UPDATE acquires a pessimistic lock: a second transaction trying to update the + * same row with NOWAIT immediately fails. + */ + @Test + public void testSelectForUpdateBlocksOtherTransaction() throws Exception { + createAndPopulatePersonTable(); + + CountDownLatch tx1Locked = new CountDownLatch(1); + CountDownLatch tx1Done = new CountDownLatch(1); + + // Transaction 1: acquire lock on row id=5 and hold it. + IgniteInternalFuture tx1 = GridTestUtils.runAsync(() -> { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + sql("SELECT * FROM Person WHERE id = 5 FOR UPDATE"); + + tx1Locked.countDown(); // Signal that lock is held. + + tx1Done.await(10, TimeUnit.SECONDS); // Wait for tx2 to finish. + + tx.commit(); + } + }); + + // Wait until tx1 holds the lock. + assertTrue("tx1 did not acquire lock in time", tx1Locked.await(10, TimeUnit.SECONDS)); + + // Transaction 2: try to lock the same row with NOWAIT – must fail. + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + GridTestUtils.assertThrowsAnyCause(log, () -> { + sql("SELECT * FROM Person WHERE id = 5 FOR UPDATE NOWAIT"); + return null; + }, IgniteSQLException.class, "could not acquire lock"); + + tx.rollback(); + } + finally { + tx1Done.countDown(); + } + + tx1.get(10_000); + } + + // ==================== Helpers ==================== + + /** */ + private void createAndPopulatePersonTable() { + sql("CREATE TABLE IF NOT EXISTS Person (id INT PRIMARY KEY, name VARCHAR, age INT) WITH atomicity=TRANSACTIONAL"); + sql("CREATE INDEX IF NOT EXISTS age_idx ON Person(age)"); + + for (int i = 1; i <= 30; i++) + sql("INSERT INTO Person(id, name, age) VALUES (?, ?, ?)", i, personName(i), 20 + i); + } + + /** */ + private void assertRows(String sql, List... expRows) { + List> rows = sql(sql); + + assertEquals(expRows.length, rows.size()); + assertEquals(new HashSet<>(Arrays.asList(expRows)), new HashSet<>(rows)); + } + + /** */ + private List row(Object... vals) { + return Arrays.asList(vals); + } + + /** */ + private List> sql(String sql, Object... args) { + return node.context().query().querySqlFields(new SqlFieldsQuery(sql).setSchema("PUBLIC").setArgs(args), true).getAll(); + } + + /** */ + private String personName(int id) { + switch (id) { + case 1: + return "Alice"; + + case 2: + return "Bob"; + + case 3: + return "Ann"; + + case 4: + return "Carl"; + + case 5: + return "Alex"; + + case 6: + return "Diana"; + + default: + return "Person" + id; + } + } +} diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/SelectForUpdateIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/SelectForUpdateIntegrationTest.java new file mode 100644 index 0000000000000..6c70fe34fed9a --- /dev/null +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/SelectForUpdateIntegrationTest.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.integration; + +import org.apache.ignite.cache.query.SqlFieldsQuery; +import org.apache.ignite.calcite.CalciteQueryEngineConfiguration; +import org.apache.ignite.configuration.IgniteConfiguration; +import org.apache.ignite.configuration.SqlConfiguration; +import org.apache.ignite.internal.IgniteEx; +import org.apache.ignite.internal.processors.query.IgniteSQLException; +import org.apache.ignite.testframework.GridTestUtils; +import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; +import org.junit.Test; + +/** + * Integration tests for {@code SELECT ... FOR UPDATE} syntax. + */ +public class SelectForUpdateIntegrationTest extends GridCommonAbstractTest { + /** */ + private IgniteEx node; + + /** {@inheritDoc} */ + @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { + return super.getConfiguration(igniteInstanceName) + .setSqlConfiguration(new SqlConfiguration() + .setQueryEnginesConfiguration(new CalciteQueryEngineConfiguration().setDefault(true))); + } + + /** {@inheritDoc} */ + @Override protected void beforeTest() throws Exception { + node = startGrid(0); + + sql("CREATE TABLE Person (id INT PRIMARY KEY, name VARCHAR, age INT)"); + sql("INSERT INTO Person VALUES (1, 'Alice', 30), (2, 'Bob', 25)"); + } + + /** {@inheritDoc} */ + @Override protected void afterTest() throws Exception { + stopAllGrids(); + + super.afterTest(); + } + + /** Basic FOR UPDATE without options produces "not yet supported". */ + @Test + public void forUpdateNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person FOR UPDATE"); + } + + /** FOR UPDATE with OF column produces "not yet supported". */ + @Test + public void forUpdateOfColumnNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person FOR UPDATE OF id"); + } + + /** FOR UPDATE WAIT n produces "not yet supported". */ + @Test + public void forUpdateWaitNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person FOR UPDATE WAIT 5"); + } + + /** FOR UPDATE NOWAIT produces "not yet supported". */ + @Test + public void forUpdateNowaitNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person FOR UPDATE NOWAIT"); + } + + /** FOR UPDATE with WHERE clause produces "not yet supported". */ + @Test + public void forUpdateWithWhereNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person WHERE age > 20 FOR UPDATE"); + } + + /** FOR UPDATE with OF and WAIT produces "not yet supported". */ + @Test + public void forUpdateOfAndWaitNotYetSupported() { + assertForUpdateNotSupported("SELECT id FROM Person FOR UPDATE OF name WAIT 3"); + } + + /** Asserts that the given query fails with the "not yet supported" message. */ + private void assertForUpdateNotSupported(String qry) { + GridTestUtils.assertThrowsAnyCause(log, () -> sql(qry), IgniteSQLException.class, + "SELECT FOR UPDATE is not yet supported"); + } + + /** */ + private java.util.List> sql(String sql, Object... args) { + return node.context().query().querySqlFields( + new SqlFieldsQuery(sql).setSchema("PUBLIC").setArgs(args), true).getAll(); + } +} diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TechnicalColumnsScanTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TechnicalColumnsScanTest.java new file mode 100644 index 0000000000000..101fb07d568fa --- /dev/null +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TechnicalColumnsScanTest.java @@ -0,0 +1,498 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.integration; + +import java.io.StringReader; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.UUID; +import java.util.concurrent.Callable; +import javax.cache.CacheException; +import org.apache.calcite.schema.SchemaPlus; +import org.apache.calcite.sql.SqlNode; +import org.apache.calcite.util.ImmutableBitSet; +import org.apache.ignite.IgniteCheckedException; +import org.apache.ignite.cache.CacheEntry; +import org.apache.ignite.cache.query.SqlFieldsQuery; +import org.apache.ignite.calcite.CalciteQueryEngineConfiguration; +import org.apache.ignite.configuration.IgniteConfiguration; +import org.apache.ignite.configuration.SqlConfiguration; +import org.apache.ignite.configuration.TransactionConfiguration; +import org.apache.ignite.internal.IgniteEx; +import org.apache.ignite.internal.IgniteInternalFuture; +import org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion; +import org.apache.ignite.internal.processors.cache.CacheEntryImplEx; +import org.apache.ignite.internal.processors.cache.IgniteCacheProxy; +import org.apache.ignite.internal.processors.cache.version.GridCacheVersion; +import org.apache.ignite.internal.processors.query.IgniteSQLException; +import org.apache.ignite.internal.processors.query.QueryUtils; +import org.apache.ignite.internal.processors.query.calcite.CalciteQueryProcessor; +import org.apache.ignite.internal.processors.query.calcite.exec.ArrayRowHandler; +import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext; +import org.apache.ignite.internal.processors.query.calcite.exec.tracker.NoOpIoTracker; +import org.apache.ignite.internal.processors.query.calcite.exec.tracker.NoOpMemoryTracker; +import org.apache.ignite.internal.processors.query.calcite.metadata.ColocationGroup; +import org.apache.ignite.internal.processors.query.calcite.metadata.FragmentDescription; +import org.apache.ignite.internal.processors.query.calcite.metadata.FragmentMapping; +import org.apache.ignite.internal.processors.query.calcite.prepare.BaseQueryContext; +import org.apache.ignite.internal.processors.query.calcite.prepare.MappingQueryContext; +import org.apache.ignite.internal.processors.query.calcite.prepare.MultiStepQueryPlan; +import org.apache.ignite.internal.processors.query.calcite.prepare.PlanningContext; +import org.apache.ignite.internal.processors.query.calcite.prepare.QueryPlan; +import org.apache.ignite.internal.processors.query.calcite.schema.ColumnDescriptor; +import org.apache.ignite.internal.processors.query.calcite.schema.IgniteCacheTable; +import org.apache.ignite.internal.processors.query.calcite.schema.IgniteIndex; +import org.apache.ignite.internal.processors.query.calcite.util.Commons; +import org.apache.ignite.internal.transactions.IgniteTxTimeoutCheckedException; +import org.apache.ignite.testframework.GridTestUtils; +import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; +import org.apache.ignite.transactions.Transaction; +import org.junit.Test; + +import static org.apache.ignite.transactions.TransactionConcurrency.PESSIMISTIC; +import static org.apache.ignite.transactions.TransactionIsolation.READ_COMMITTED; + +/** Tests technical columns returned by direct table and index scans. */ +public class TechnicalColumnsScanTest extends GridCommonAbstractTest { + /** */ + private IgniteEx node; + + /** {@inheritDoc} */ + @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { + return super.getConfiguration(igniteInstanceName) + .setSqlConfiguration(new SqlConfiguration().setQueryEnginesConfiguration( + new CalciteQueryEngineConfiguration().setDefault(true))) + .setTransactionConfiguration(new TransactionConfiguration().setTxAwareQueriesEnabled(true)); + } + + /** {@inheritDoc} */ + @Override protected void beforeTest() throws Exception { + node = startGrid(0); + + awaitPartitionMapExchange(); + } + + /** {@inheritDoc} */ + @Override protected void afterTest() throws Exception { + stopAllGrids(); + + super.afterTest(); + } + + /** */ + @Test + public void testTableScanReturnsTechnicalColumns() throws Exception { + createAndPopulatePersonTable(); + + IgniteCacheTable tbl = personTable(); + ScanContext scanCtx = scanContext(tbl); + + assertTechnicalColumns(tbl.scan(scanCtx.ectx, scanCtx.grp, requiredColumns(tbl)), tbl); + } + + /** */ + @Test + @SuppressWarnings("unchecked") + public void testScannedTechnicalColumnsCanLockTxEntries() throws Exception { + createAndPopulatePersonTable(); + + IgniteCacheTable tbl = personTable(); + ScanContext scanCtx = scanContext(tbl); + List rows = materialize(tbl.scan(scanCtx.ectx, scanCtx.grp, lockRequiredColumns(tbl))); + List> entries = new ArrayList<>(); + Integer expSrc = tbl.descriptor().cacheInfo().cacheId(); + + assertEquals(30, rows.size()); + + for (Object[] row : rows) { + assertEquals(4, row.length); + assertTrue("Unexpected _VER value [val=" + row[2] + ", cls=" + + (row[2] == null ? null : row[2].getClass()) + ']', row[2] instanceof GridCacheVersion); + assertEquals(expSrc, row[3]); + + entries.add(new CacheEntryImplEx<>(row[0], row[1], (GridCacheVersion)row[2])); + } + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + assertTrue(node.cache(tbl.descriptor().cacheInfo().name()).unwrap(IgniteCacheProxy.class) + .internalProxy().lockTxEntries(entries, 5_000)); + + checkInaccessInOtherTx(); + + sql("UPDATE Person SET age = 42 WHERE id = 2"); + + tx.commit(); + } + + List> rowsAfterUpdate = sql("SELECT id, name, age FROM Person WHERE id = 2"); + + assertEquals(1, rowsAfterUpdate.size()); + assertEquals(personName(2), rowsAfterUpdate.get(0).get(1)); + assertEquals(42, rowsAfterUpdate.get(0).get(2)); + } + + /** + * Checks that another transaction cannot access the cache. + * + * @throws IgniteCheckedException If failed. + */ + private void checkInaccessInOtherTx() throws IgniteCheckedException { + IgniteInternalFuture accessFut = GridTestUtils.runAsync(new Callable() { + @Override public Void call() { + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED, 500, 1)) { + sql("UPDATE Person SET name = 'Charley' WHERE id = 2"); + + tx.commit(); + } + + return null; + } + }); + + GridTestUtils.assertThrowsWithCause(new Callable() { + @Override public Object call() throws Exception { + return accessFut.get(10_000); + } + }, IgniteTxTimeoutCheckedException.class); + } + + /** */ + @Test + public void testIndexScanReturnsTechnicalColumns() throws Exception { + createAndPopulatePersonTable(); + + IgniteCacheTable tbl = personTable(); + IgniteIndex idx = tbl.getIndex("AGE_IDX"); + + assertNotNull(idx); + + ScanContext scanCtx = scanContext(tbl); + + assertTechnicalColumns(idx.scan(scanCtx.ectx, scanCtx.grp, null, requiredColumns(tbl)), tbl); + } + + /** + * Verifies that internal Ignite code can plan a query referencing technical columns (_ver, _src) + * by setting {@code allowTechnicalColumns(true)} on the planning context, even though the same + * queries are rejected during regular user-facing SQL validation. + */ + @Test + public void testInternalQueryPlanningAllowsTechnicalColumns() throws Exception { + createAndPopulatePersonTable(); + + CalciteQueryProcessor qryProc = Commons.lookupComponent(node.context(), CalciteQueryProcessor.class); + SchemaPlus schema = qryProc.schemaHolder().schema(QueryUtils.DFLT_SCHEMA); + + BaseQueryContext qctx = BaseQueryContext.builder() + .logger(log) + .defaultSchema(schema) + .build(); + + String sql = "SELECT id, _ver, _src FROM Person"; + + PlanningContext pctx = PlanningContext.builder() + .parentContext(qctx) + .query(sql) + .allowTechnicalColumns(true) + .build(); + + SqlNode sqlNode = pctx.planner().parse(new StringReader(sql)); + + QueryPlan plan = qryProc.prepareService().prepareSingle(sqlNode, pctx); + + assertTrue("Expected MultiStepQueryPlan, got: " + plan.getClass(), plan instanceof MultiStepQueryPlan); + + List fieldNames = ((MultiStepQueryPlan)plan).fieldsMetadata().rowType().getFieldNames(); + + assertTrue("Plan must expose ID column", fieldNames.stream().anyMatch("ID"::equalsIgnoreCase)); + assertTrue("Plan must expose _VER column", + fieldNames.stream().anyMatch(QueryUtils.VER_FIELD_NAME::equalsIgnoreCase)); + assertTrue("Plan must expose _SRC column", + fieldNames.stream().anyMatch(QueryUtils.SRC_FIELD_NAME::equalsIgnoreCase)); + } + + /** */ + @Test + public void testCannotCreateTableWithTechnicalColumnNames() { + assertTechnicalColumnCreateForbidden("CREATE TABLE PersonVer (id INT PRIMARY KEY, _ver INT)", + QueryUtils.VER_FIELD_NAME); + assertTechnicalColumnCreateForbidden("CREATE TABLE PersonSrc (id INT PRIMARY KEY, _src INT)", + QueryUtils.SRC_FIELD_NAME); + } + + /** */ + @Test + public void testCannotAddTechnicalColumnNames() throws Exception { + createAndPopulatePersonTable(); + + assertTechnicalColumnAddForbidden("ALTER TABLE Person ADD COLUMN _ver INT", + QueryUtils.VER_FIELD_NAME); + assertTechnicalColumnAddForbidden("ALTER TABLE Person ADD COLUMN _src INT", + QueryUtils.SRC_FIELD_NAME); + } + + /** */ + @Test + public void testTechnicalColumnsAreHiddenFromSql() throws Exception { + createAndPopulatePersonTable(); + + List> rows = sql("SELECT * FROM Person"); + + assertEquals(30, rows.size()); + assertEquals(3, rows.get(0).size()); + + assertTechnicalColumnAccessForbidden("SELECT _ver FROM Person"); + assertTechnicalColumnAccessForbidden("SELECT _src FROM Person"); + assertTechnicalColumnAccessForbidden("SELECT p._ver FROM Person p"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person WHERE _src IS NOT NULL"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person ORDER BY _ver"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person ORDER BY _ver DESC"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person ORDER BY _src NULLS FIRST"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person GROUP BY _ver"); + assertTechnicalColumnAccessForbidden("SELECT p1.id FROM Person p1 JOIN Person p2 ON p1._ver = p2._ver"); + assertTechnicalColumnAccessForbidden("SELECT CASE WHEN _ver IS NOT NULL THEN 1 ELSE 0 END FROM Person"); + assertTechnicalColumnAccessForbidden("SELECT CAST(_ver AS VARCHAR) FROM Person"); + assertTechnicalColumnAccessForbidden("SELECT id FROM Person WHERE (SELECT _ver FROM Person WHERE id = 1) IS NOT NULL"); + + // MERGE: technical columns must not be exposed in all clause positions. + assertTechnicalColumnAccessForbidden( + "MERGE INTO Person " + + "USING (SELECT id, _ver FROM Person) AS src ON (Person.id = src.id) " + + "WHEN NOT MATCHED THEN INSERT (id, name, age) VALUES (src.id, 'x', 1)"); + + assertTechnicalColumnAccessForbidden( + "MERGE INTO Person " + + "USING (SELECT 100 AS id) AS src ON (Person._ver IS NOT NULL AND Person.id = src.id) " + + "WHEN NOT MATCHED THEN INSERT (id, name, age) VALUES (src.id, 'x', 1)"); + + assertTechnicalColumnAccessForbidden( + "MERGE INTO Person " + + "USING (SELECT 1 AS id) AS src ON (Person.id = src.id) " + + "WHEN MATCHED THEN UPDATE SET name = CAST(Person._ver AS VARCHAR)"); + } + + /** */ + private void assertTechnicalColumnCreateForbidden(String qry, String colName) { + String expMsg = "Name '" + colName + "' is reserved and cannot be used as a field name"; + + try { + sql(qry); + + fail("Exception is expected"); + } + catch (CacheException e) { + assertTrue("Expected reserved field name exception was not found: " + e, + hasCauseOrSuppressed(e, IgniteCheckedException.class, expMsg)); + } + } + + /** */ + private boolean hasCauseOrSuppressed(Throwable t, Class cls, String msg) { + if (t == null) + return false; + + if (cls.isAssignableFrom(t.getClass()) && t.getMessage() != null && t.getMessage().contains(msg)) + return true; + + if (hasCauseOrSuppressed(t.getCause(), cls, msg)) + return true; + + for (Throwable suppressed : t.getSuppressed()) { + if (hasCauseOrSuppressed(suppressed, cls, msg)) + return true; + } + + return false; + } + + /** */ + private void assertTechnicalColumnAddForbidden(String qry, String colName) { + GridTestUtils.assertThrowsAnyCause(log, () -> sql(qry), IgniteSQLException.class, + "Column already exists: " + colName); + } + + /** */ + private void assertTechnicalColumnAccessForbidden(String qry) { + GridTestUtils.assertThrowsAnyCause(log, () -> sql(qry), IgniteSQLException.class, "Cannot access technical column"); + } + + /** */ + private void createAndPopulatePersonTable() throws Exception { + sql("CREATE TABLE Person (id INT PRIMARY KEY, name VARCHAR, age INT) WITH atomicity=TRANSACTIONAL"); + sql("CREATE INDEX age_idx ON Person(age)"); + + try (Transaction tx = node.transactions().txStart(PESSIMISTIC, READ_COMMITTED)) { + for (int i = 1; i <= 30; i++) + sql("INSERT INTO Person(id, name, age) VALUES (?, ?, ?)", i, personName(i), 20 + i); + + tx.commit(); + } + + awaitPartitionMapExchange(); + } + + /** */ + private void assertTechnicalColumns(Iterable rowsIterable, IgniteCacheTable tbl) throws Exception { + List rows = materialize(rowsIterable); + Set ids = new HashSet<>(); + Integer expSrc = tbl.descriptor().cacheInfo().cacheId(); + + assertEquals(30, rows.size()); + + for (Object[] row : rows) { + assertEquals(3, row.length); + assertTrue(row[0] instanceof Integer); + assertTrue("Unexpected _VER value [val=" + row[1] + ", cls=" + + (row[1] == null ? null : row[1].getClass()) + ']', row[1] instanceof GridCacheVersion); + assertEquals(expSrc, row[2]); + + ids.add((Integer)row[0]); + } + + for (int i = 1; i <= 30; i++) + assertTrue("Missing id: " + i, ids.contains(i)); + } + + /** */ + private List materialize(Iterable rowsIterable) throws Exception { + List rows = new ArrayList<>(); + + try { + for (Object[] row : rowsIterable) + rows.add(row); + } + finally { + if (rowsIterable instanceof AutoCloseable) + ((AutoCloseable)rowsIterable).close(); + } + + return rows; + } + + /** */ + private ImmutableBitSet requiredColumns(IgniteCacheTable tbl) { + return ImmutableBitSet.of( + columnIndex(tbl, "ID"), + columnIndex(tbl, QueryUtils.VER_FIELD_NAME), + columnIndex(tbl, QueryUtils.SRC_FIELD_NAME) + ); + } + + /** */ + private ImmutableBitSet lockRequiredColumns(IgniteCacheTable tbl) { + return ImmutableBitSet.of( + columnIndex(tbl, QueryUtils.KEY_FIELD_NAME), + columnIndex(tbl, QueryUtils.VAL_FIELD_NAME), + columnIndex(tbl, QueryUtils.VER_FIELD_NAME), + columnIndex(tbl, QueryUtils.SRC_FIELD_NAME) + ); + } + + /** */ + private int columnIndex(IgniteCacheTable tbl, String name) { + ColumnDescriptor desc = tbl.descriptor().columnDescriptor(name); + + assertNotNull(name, desc); + + return desc.fieldIndex(); + } + + /** */ + private ScanContext scanContext(IgniteCacheTable tbl) { + UUID nodeId = node.localNode().id(); + AffinityTopologyVersion topVer = node.context().cache().context().exchange().readyAffinityVersion(); + BaseQueryContext qctx = BaseQueryContext.builder().logger(log).build(); + + ExecutionContext ectx = new ExecutionContext<>( + qctx, + null, + null, + UUID.randomUUID(), + nodeId, + nodeId, + topVer, + new FragmentDescription(0, FragmentMapping.create(nodeId), null, Collections.emptyMap()), + ArrayRowHandler.INSTANCE, + NoOpMemoryTracker.INSTANCE, + NoOpIoTracker.INSTANCE, + 0, + Collections.emptyMap(), + null + ); + + ColocationGroup grp = tbl.colocationGroup(new MappingQueryContext(qctx, nodeId, topVer, null)).finalizeMapping(); + + return new ScanContext(ectx, grp); + } + + /** */ + private IgniteCacheTable personTable() { + CalciteQueryProcessor qryProc = Commons.lookupComponent(node.context(), CalciteQueryProcessor.class); + + return (IgniteCacheTable)qryProc.schemaHolder().schema(QueryUtils.DFLT_SCHEMA).getTable("PERSON"); + } + + /** */ + private List> sql(String sql, Object... args) { + return node.context().query().querySqlFields(new SqlFieldsQuery(sql).setSchema("PUBLIC").setArgs(args), true).getAll(); + } + + /** */ + private String personName(int id) { + switch (id) { + case 1: + return "Alice"; + + case 2: + return "Bob"; + + case 3: + return "Ann"; + + case 4: + return "Carl"; + + case 5: + return "Alex"; + + case 6: + return "Diana"; + + default: + return "Person" + id; + } + } + + /** */ + private static class ScanContext { + /** */ + private final ExecutionContext ectx; + + /** */ + private final ColocationGroup grp; + + /** */ + private ScanContext(ExecutionContext ectx, ColocationGroup grp) { + this.ectx = ectx; + this.grp = grp; + } + } +} diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlSelectForUpdateParserTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlSelectForUpdateParserTest.java new file mode 100644 index 0000000000000..f9edfd33a4299 --- /dev/null +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlSelectForUpdateParserTest.java @@ -0,0 +1,191 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.sql; + +import org.apache.calcite.sql.SqlIdentifier; +import org.apache.calcite.sql.SqlNode; +import org.apache.calcite.sql.SqlNodeList; +import org.apache.calcite.sql.SqlSelect; +import org.apache.calcite.sql.parser.SqlParseException; +import org.apache.calcite.sql.parser.SqlParser; +import org.apache.ignite.internal.processors.query.calcite.sql.generated.IgniteSqlParserImpl; +import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; +import org.junit.Test; + +import static org.hamcrest.CoreMatchers.instanceOf; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.CoreMatchers.nullValue; +import static org.junit.Assert.assertThat; + +/** Tests for parsing {@code SELECT ... FOR UPDATE} syntax. */ +public class SqlSelectForUpdateParserTest extends GridCommonAbstractTest { + /** Regular SELECT is returned as-is (no wrapping). */ + @Test + public void regularSelectIsNotWrapped() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person"); + + assertThat(node, instanceOf(SqlSelect.class)); + } + + /** Minimal FOR UPDATE with no options. */ + @Test + public void forUpdateNoOptions() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person FOR UPDATE"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.query(), instanceOf(SqlSelect.class)); + assertThat(forUpdate.ofList(), nullValue()); + assertThat(forUpdate.waitSeconds(), nullValue()); + } + + /** FOR UPDATE with a single OF column (unqualified). */ + @Test + public void forUpdateOfSingleColumn() throws SqlParseException { + SqlNode node = parse("SELECT id, name FROM Person FOR UPDATE OF name"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.ofList().size(), is(1)); + assertThat(((SqlIdentifier)forUpdate.ofList().get(0)).getSimple(), is("NAME")); + assertThat(forUpdate.waitSeconds(), nullValue()); + } + + /** FOR UPDATE with a qualified OF column (table.column). */ + @Test + public void forUpdateOfQualifiedColumn() throws SqlParseException { + SqlNode node = parse("SELECT p.id FROM Person p FOR UPDATE OF p.id"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + SqlIdentifier col = (SqlIdentifier)forUpdate.ofList().get(0); + + assertThat(col.names.get(0), is("P")); + assertThat(col.names.get(1), is("ID")); + } + + /** FOR UPDATE with multiple OF columns from different tables. */ + @Test + public void forUpdateOfMultipleColumns() throws SqlParseException { + SqlNode node = parse( + "SELECT p.id, o.total FROM Person p JOIN Orders o ON p.id = o.pid " + + "FOR UPDATE OF p.id, o.total"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.ofList().size(), is(2)); + } + + /** FOR UPDATE WAIT n stores the timeout in seconds. */ + @Test + public void forUpdateWait() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person FOR UPDATE WAIT 10"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.waitSeconds(), is(10L)); + } + + /** FOR UPDATE NOWAIT stores waitSeconds = 0. */ + @Test + public void forUpdateNowait() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person FOR UPDATE NOWAIT"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.waitSeconds(), is(0L)); + } + + /** FOR UPDATE with both OF and WAIT. */ + @Test + public void forUpdateOfAndWait() throws SqlParseException { + SqlNode node = parse("SELECT id, name FROM Person FOR UPDATE OF name WAIT 5"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + IgniteSqlSelectForUpdate forUpdate = (IgniteSqlSelectForUpdate)node; + + assertThat(forUpdate.ofList().size(), is(1)); + assertThat(forUpdate.waitSeconds(), is(5L)); + } + + /** FOR UPDATE with WAIT 0 (equivalent to NOWAIT). */ + @Test + public void forUpdateWaitZero() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person FOR UPDATE WAIT 0"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + + assertThat(((IgniteSqlSelectForUpdate)node).waitSeconds(), is(0L)); + } + + /** FOR UPDATE on a query with ORDER BY and LIMIT. */ + @Test + public void forUpdateWithOrderByAndLimit() throws SqlParseException { + SqlNode node = parse("SELECT name FROM Person ORDER BY id LIMIT 10 FOR UPDATE"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + } + + /** Regular WITH query is returned as-is (no FOR UPDATE wrapping). */ + @Test + public void withQueryIsNotWrapped() throws SqlParseException { + SqlNode node = parse("WITH cte AS (SELECT id FROM Person) SELECT id FROM cte"); + + assertThat(node, instanceOf(SqlNode.class)); + // Must NOT be wrapped in IgniteSqlSelectForUpdate + assertThat(node instanceof IgniteSqlSelectForUpdate, is(false)); + } + + /** WITH query followed by FOR UPDATE is wrapped. */ + @Test + public void withQueryForUpdate() throws SqlParseException { + SqlNode node = parse("WITH cte AS (SELECT id FROM Person) SELECT id FROM cte FOR UPDATE"); + + assertThat(node, instanceOf(IgniteSqlSelectForUpdate.class)); + } + + // ------------------------------------------------------------------ helpers + + /** + * Parses a single SQL statement via {@code parseStmtList()}, which goes through + * {@code SqlStmt()} and therefore through our {@code statementParserMethods}, + * including {@code SqlSelectForUpdate()}. + */ + private static SqlNode parse(String sql) throws SqlParseException { + SqlNodeList stmts = SqlParser.create(sql, + SqlParser.config().withParserFactory(IgniteSqlParserImpl.FACTORY)) + .parseStmtList(); + + assertEquals(1, stmts.size()); + + return stmts.get(0); + } +} diff --git a/modules/calcite/src/test/java/org/apache/ignite/testsuites/IgniteCalciteTestSuite.java b/modules/calcite/src/test/java/org/apache/ignite/testsuites/IgniteCalciteTestSuite.java index a6f7c2982e64e..f9747dd075021 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/testsuites/IgniteCalciteTestSuite.java +++ b/modules/calcite/src/test/java/org/apache/ignite/testsuites/IgniteCalciteTestSuite.java @@ -22,6 +22,7 @@ import org.apache.ignite.internal.processors.query.calcite.message.CalciteCommunicationMessageSerializationTest; import org.apache.ignite.internal.processors.query.calcite.sql.SqlCustomParserTest; import org.apache.ignite.internal.processors.query.calcite.sql.SqlReservedWordsTest; +import org.apache.ignite.internal.processors.query.calcite.sql.SqlSelectForUpdateParserTest; import org.apache.ignite.internal.processors.tx.SqlTransactionsIsolationTest; import org.apache.ignite.internal.processors.tx.SqlTransactionsSavepointTest; import org.apache.ignite.internal.processors.tx.SqlTransactionsUnsupportedModesTest; @@ -37,6 +38,7 @@ SqlCustomParserTest.class, SqlReservedWordsTest.class, + SqlSelectForUpdateParserTest.class, LogicalRelImplementorTest.class, CalciteCommunicationMessageSerializationTest.class, diff --git a/modules/calcite/src/test/java/org/apache/ignite/testsuites/IntegrationTestSuite.java b/modules/calcite/src/test/java/org/apache/ignite/testsuites/IntegrationTestSuite.java index f4e123c6a7c40..b6d67227c6051 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/testsuites/IntegrationTestSuite.java +++ b/modules/calcite/src/test/java/org/apache/ignite/testsuites/IntegrationTestSuite.java @@ -68,6 +68,7 @@ import org.apache.ignite.internal.processors.query.calcite.integration.RunningQueriesIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.ScalarInIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.SelectByKeyFieldTest; +import org.apache.ignite.internal.processors.query.calcite.integration.SelectForUpdateIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.ServerStatisticsIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.SetOpIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.SortAggregateIntegrationTest; @@ -78,6 +79,7 @@ import org.apache.ignite.internal.processors.query.calcite.integration.SystemViewsIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.TableDdlIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.TableDmlIntegrationTest; +import org.apache.ignite.internal.processors.query.calcite.integration.TechnicalColumnsScanTest; import org.apache.ignite.internal.processors.query.calcite.integration.TimeoutIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.UnnestIntegrationTest; import org.apache.ignite.internal.processors.query.calcite.integration.UnstableTopologyIntegrationTest; @@ -183,6 +185,8 @@ CacheWithInterceptorIntegrationTest.class, TxThreadLockingTest.class, SelectByKeyFieldTest.class, + SelectForUpdateIntegrationTest.class, + TechnicalColumnsScanTest.class, }) public class IntegrationTestSuite { } diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryTypeDescriptorImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryTypeDescriptorImpl.java index 7b917e69a4d30..b752dea5bcc52 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryTypeDescriptorImpl.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryTypeDescriptorImpl.java @@ -411,7 +411,9 @@ else if (F.isEmpty(keyFieldAlias()) || !usedProps.contains(keyFieldAlias())) * @return {@code True} if exists. */ public boolean hasField(String field) { - return props.containsKey(field) || QueryUtils.VAL_FIELD_NAME.equalsIgnoreCase(field); + return props.containsKey(field) + || QueryUtils.VAL_FIELD_NAME.equalsIgnoreCase(field) + || QueryUtils.isTechnicalFieldNameIgnoreCase(field); } /** diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryUtils.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryUtils.java index 332a7d1ab2780..6ee712e806a6b 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryUtils.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/QueryUtils.java @@ -111,6 +111,12 @@ public class QueryUtils { /** Field name for value. */ public static final String VAL_FIELD_NAME = CommonUtils.VAL_FIELD_NAME; + /** Field name for row version. */ + public static final String VER_FIELD_NAME = "_VER"; + + /** Field name for row source. */ + public static final String SRC_FIELD_NAME = "_SRC"; + /** Well-known template name for PARTITIONED cache. */ public static final String TEMPLATE_PARTITIONED = "PARTITIONED"; @@ -1514,6 +1520,22 @@ public static SchemaOperationException validateDropColumn(GridQueryTypeDescripto return null; } + /** */ + public static boolean isReservedFieldName(String fieldName) { + return KEY_FIELD_NAME.equalsIgnoreCase(fieldName) || VAL_FIELD_NAME.equalsIgnoreCase(fieldName) || + isTechnicalFieldNameIgnoreCase(fieldName); + } + + /** */ + public static boolean isTechnicalFieldName(String fieldName) { + return VER_FIELD_NAME.equals(fieldName) || SRC_FIELD_NAME.equals(fieldName); + } + + /** */ + public static boolean isTechnicalFieldNameIgnoreCase(String fieldName) { + return VER_FIELD_NAME.equalsIgnoreCase(fieldName) || SRC_FIELD_NAME.equalsIgnoreCase(fieldName); + } + /** * Returns true if the exception is triggered by query cancel. * diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/management/SchemaManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/management/SchemaManager.java index 750ff09dee523..09039ae51add4 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/management/SchemaManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/management/SchemaManager.java @@ -86,6 +86,7 @@ import static org.apache.ignite.internal.processors.metric.impl.MetricUtils.metricName; import static org.apache.ignite.internal.processors.query.QueryUtils.KEY_FIELD_NAME; import static org.apache.ignite.internal.processors.query.QueryUtils.VAL_FIELD_NAME; +import static org.apache.ignite.internal.processors.query.QueryUtils.isReservedFieldName; import static org.apache.ignite.internal.processors.query.QueryUtils.matches; /** @@ -411,7 +412,7 @@ private static void validateTypeDescriptor(GridQueryTypeDescriptor type) throws String ptrn = "Name ''{0}'' is reserved and cannot be used as a field name [type=" + type.name() + "]"; for (String name : names) { - if (name.equalsIgnoreCase(KEY_FIELD_NAME) || name.equalsIgnoreCase(VAL_FIELD_NAME)) + if (isReservedFieldName(name)) throw new IgniteCheckedException(MessageFormat.format(ptrn, name)); } }