From 004c3743448d55150e800610e80961bc3cc43fd1 Mon Sep 17 00:00:00 2001 From: mweisgut Date: Sat, 15 Jan 2022 03:46:20 +0100 Subject: [PATCH 1/5] Fix parser failure --- src/parser/bison_parser.cpp | 2061 ++++++------ src/parser/bison_parser.h | 389 +-- src/parser/bison_parser.y | 4 +- src/parser/flex_lexer.cpp | 5855 ++++++++++++++++++--------------- src/parser/flex_lexer.h | 165 +- src/parser/flex_lexer.l | 4 +- test/queries/queries-good.sql | 2 + 7 files changed, 4607 insertions(+), 3873 deletions(-) diff --git a/src/parser/bison_parser.cpp b/src/parser/bison_parser.cpp index f060e9d8..afe15540 100644 --- a/src/parser/bison_parser.cpp +++ b/src/parser/bison_parser.cpp @@ -64,20 +64,20 @@ #define YYPULL 1 /* Substitute the type names. */ -#define YYSTYPE HSQL_STYPE -#define YYLTYPE HSQL_LTYPE +#define YYSTYPE HSQL_STYPE +#define YYLTYPE HSQL_LTYPE /* Substitute the variable and function names. */ -#define yyparse hsql_parse -#define yylex hsql_lex -#define yyerror hsql_error -#define yydebug hsql_debug -#define yynerrs hsql_nerrs +#define yyparse hsql_parse +#define yylex hsql_lex +#define yyerror hsql_error +#define yydebug hsql_debug +#define yynerrs hsql_nerrs /* First part of user prologue. */ #line 2 "bison_parser.y" -// clang-format on -/** + // clang-format on + /** * bison_parser.y * defines bison_parser.h * outputs bison_parser.c @@ -85,7 +85,7 @@ * Grammar File Spec: http://dinosaur.compilertools.net/bison/bison_6.html * */ -/********************************* + /********************************* ** Section 1: C Declarations *********************************/ @@ -95,14 +95,14 @@ #include #include -using namespace hsql; + using namespace hsql; -int yyerror(YYLTYPE* llocp, SQLParserResult* result, yyscan_t scanner, const char* msg) { - result->setIsValid(false); - result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column); - return 0; -} -// clang-format off + int yyerror(YYLTYPE * llocp, SQLParserResult * result, yyscan_t scanner, const char* msg) { + result->setIsValid(false); + result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column); + return 0; + } + // clang-format off #line 108 "bison_parser.cpp" @@ -161,278 +161,277 @@ enum yysymbol_kind_t YYSYMBOL_PREPARE = 26, /* PREPARE */ YYSYMBOL_PRIMARY = 27, /* PRIMARY */ YYSYMBOL_SCHEMAS = 28, /* SCHEMAS */ - YYSYMBOL_CHARACTER = 29, /* CHARACTER */ - YYSYMBOL_VARYING = 30, /* VARYING */ - YYSYMBOL_REAL = 31, /* REAL */ - YYSYMBOL_DECIMAL = 32, /* DECIMAL */ - YYSYMBOL_SMALLINT = 33, /* SMALLINT */ - YYSYMBOL_SPATIAL = 34, /* SPATIAL */ - YYSYMBOL_VARCHAR = 35, /* VARCHAR */ - YYSYMBOL_VIRTUAL = 36, /* VIRTUAL */ - YYSYMBOL_DESCRIBE = 37, /* DESCRIBE */ - YYSYMBOL_BEFORE = 38, /* BEFORE */ - YYSYMBOL_COLUMN = 39, /* COLUMN */ - YYSYMBOL_CREATE = 40, /* CREATE */ - YYSYMBOL_DELETE = 41, /* DELETE */ - YYSYMBOL_DIRECT = 42, /* DIRECT */ - YYSYMBOL_DOUBLE = 43, /* DOUBLE */ - YYSYMBOL_ESCAPE = 44, /* ESCAPE */ - YYSYMBOL_EXCEPT = 45, /* EXCEPT */ - YYSYMBOL_EXISTS = 46, /* EXISTS */ - YYSYMBOL_EXTRACT = 47, /* EXTRACT */ - YYSYMBOL_CAST = 48, /* CAST */ - YYSYMBOL_FORMAT = 49, /* FORMAT */ - YYSYMBOL_GLOBAL = 50, /* GLOBAL */ - YYSYMBOL_HAVING = 51, /* HAVING */ - YYSYMBOL_IMPORT = 52, /* IMPORT */ - YYSYMBOL_INSERT = 53, /* INSERT */ - YYSYMBOL_ISNULL = 54, /* ISNULL */ - YYSYMBOL_OFFSET = 55, /* OFFSET */ - YYSYMBOL_RENAME = 56, /* RENAME */ - YYSYMBOL_SCHEMA = 57, /* SCHEMA */ - YYSYMBOL_SELECT = 58, /* SELECT */ - YYSYMBOL_SORTED = 59, /* SORTED */ - YYSYMBOL_TABLES = 60, /* TABLES */ - YYSYMBOL_UNIQUE = 61, /* UNIQUE */ - YYSYMBOL_UNLOAD = 62, /* UNLOAD */ - YYSYMBOL_UPDATE = 63, /* UPDATE */ - YYSYMBOL_VALUES = 64, /* VALUES */ - YYSYMBOL_AFTER = 65, /* AFTER */ - YYSYMBOL_ALTER = 66, /* ALTER */ - YYSYMBOL_CROSS = 67, /* CROSS */ - YYSYMBOL_DELTA = 68, /* DELTA */ - YYSYMBOL_FLOAT = 69, /* FLOAT */ - YYSYMBOL_GROUP = 70, /* GROUP */ - YYSYMBOL_INDEX = 71, /* INDEX */ - YYSYMBOL_INNER = 72, /* INNER */ - YYSYMBOL_LIMIT = 73, /* LIMIT */ - YYSYMBOL_LOCAL = 74, /* LOCAL */ - YYSYMBOL_MERGE = 75, /* MERGE */ - YYSYMBOL_MINUS = 76, /* MINUS */ - YYSYMBOL_ORDER = 77, /* ORDER */ - YYSYMBOL_OUTER = 78, /* OUTER */ - YYSYMBOL_RIGHT = 79, /* RIGHT */ - YYSYMBOL_TABLE = 80, /* TABLE */ - YYSYMBOL_UNION = 81, /* UNION */ - YYSYMBOL_USING = 82, /* USING */ - YYSYMBOL_WHERE = 83, /* WHERE */ - YYSYMBOL_CALL = 84, /* CALL */ - YYSYMBOL_CASE = 85, /* CASE */ - YYSYMBOL_CHAR = 86, /* CHAR */ - YYSYMBOL_COPY = 87, /* COPY */ - YYSYMBOL_DATE = 88, /* DATE */ - YYSYMBOL_DATETIME = 89, /* DATETIME */ - YYSYMBOL_DESC = 90, /* DESC */ - YYSYMBOL_DROP = 91, /* DROP */ - YYSYMBOL_ELSE = 92, /* ELSE */ - YYSYMBOL_FILE = 93, /* FILE */ - YYSYMBOL_FROM = 94, /* FROM */ - YYSYMBOL_FULL = 95, /* FULL */ - YYSYMBOL_HASH = 96, /* HASH */ - YYSYMBOL_HINT = 97, /* HINT */ - YYSYMBOL_INTO = 98, /* INTO */ - YYSYMBOL_JOIN = 99, /* JOIN */ - YYSYMBOL_LEFT = 100, /* LEFT */ - YYSYMBOL_LIKE = 101, /* LIKE */ - YYSYMBOL_LOAD = 102, /* LOAD */ - YYSYMBOL_LONG = 103, /* LONG */ - YYSYMBOL_NULL = 104, /* NULL */ - YYSYMBOL_PLAN = 105, /* PLAN */ - YYSYMBOL_SHOW = 106, /* SHOW */ - YYSYMBOL_TEXT = 107, /* TEXT */ - YYSYMBOL_THEN = 108, /* THEN */ - YYSYMBOL_TIME = 109, /* TIME */ - YYSYMBOL_VIEW = 110, /* VIEW */ - YYSYMBOL_WHEN = 111, /* WHEN */ - YYSYMBOL_WITH = 112, /* WITH */ - YYSYMBOL_ADD = 113, /* ADD */ - YYSYMBOL_ALL = 114, /* ALL */ - YYSYMBOL_AND = 115, /* AND */ - YYSYMBOL_ASC = 116, /* ASC */ - YYSYMBOL_END = 117, /* END */ - YYSYMBOL_FOR = 118, /* FOR */ - YYSYMBOL_INT = 119, /* INT */ - YYSYMBOL_KEY = 120, /* KEY */ - YYSYMBOL_NOT = 121, /* NOT */ - YYSYMBOL_OFF = 122, /* OFF */ - YYSYMBOL_SET = 123, /* SET */ - YYSYMBOL_TOP = 124, /* TOP */ - YYSYMBOL_AS = 125, /* AS */ - YYSYMBOL_BY = 126, /* BY */ - YYSYMBOL_IF = 127, /* IF */ - YYSYMBOL_IN = 128, /* IN */ - YYSYMBOL_IS = 129, /* IS */ - YYSYMBOL_OF = 130, /* OF */ - YYSYMBOL_ON = 131, /* ON */ - YYSYMBOL_OR = 132, /* OR */ - YYSYMBOL_TO = 133, /* TO */ - YYSYMBOL_ARRAY = 134, /* ARRAY */ - YYSYMBOL_CONCAT = 135, /* CONCAT */ - YYSYMBOL_ILIKE = 136, /* ILIKE */ - YYSYMBOL_SECOND = 137, /* SECOND */ - YYSYMBOL_MINUTE = 138, /* MINUTE */ - YYSYMBOL_HOUR = 139, /* HOUR */ - YYSYMBOL_DAY = 140, /* DAY */ - YYSYMBOL_MONTH = 141, /* MONTH */ - YYSYMBOL_YEAR = 142, /* YEAR */ - YYSYMBOL_SECONDS = 143, /* SECONDS */ - YYSYMBOL_MINUTES = 144, /* MINUTES */ - YYSYMBOL_HOURS = 145, /* HOURS */ - YYSYMBOL_DAYS = 146, /* DAYS */ - YYSYMBOL_MONTHS = 147, /* MONTHS */ - YYSYMBOL_YEARS = 148, /* YEARS */ - YYSYMBOL_INTERVAL = 149, /* INTERVAL */ - YYSYMBOL_TRUE = 150, /* TRUE */ - YYSYMBOL_FALSE = 151, /* FALSE */ - YYSYMBOL_TRANSACTION = 152, /* TRANSACTION */ - YYSYMBOL_BEGIN = 153, /* BEGIN */ - YYSYMBOL_COMMIT = 154, /* COMMIT */ - YYSYMBOL_ROLLBACK = 155, /* ROLLBACK */ - YYSYMBOL_156_ = 156, /* '=' */ - YYSYMBOL_EQUALS = 157, /* EQUALS */ - YYSYMBOL_NOTEQUALS = 158, /* NOTEQUALS */ - YYSYMBOL_159_ = 159, /* '<' */ - YYSYMBOL_160_ = 160, /* '>' */ - YYSYMBOL_LESS = 161, /* LESS */ - YYSYMBOL_GREATER = 162, /* GREATER */ - YYSYMBOL_LESSEQ = 163, /* LESSEQ */ - YYSYMBOL_GREATEREQ = 164, /* GREATEREQ */ - YYSYMBOL_NOTNULL = 165, /* NOTNULL */ - YYSYMBOL_166_ = 166, /* '+' */ - YYSYMBOL_167_ = 167, /* '-' */ - YYSYMBOL_168_ = 168, /* '*' */ - YYSYMBOL_169_ = 169, /* '/' */ - YYSYMBOL_170_ = 170, /* '%' */ - YYSYMBOL_171_ = 171, /* '^' */ - YYSYMBOL_UMINUS = 172, /* UMINUS */ - YYSYMBOL_173_ = 173, /* '[' */ - YYSYMBOL_174_ = 174, /* ']' */ - YYSYMBOL_175_ = 175, /* '(' */ - YYSYMBOL_176_ = 176, /* ')' */ - YYSYMBOL_177_ = 177, /* '.' */ - YYSYMBOL_178_ = 178, /* ';' */ - YYSYMBOL_179_ = 179, /* ',' */ - YYSYMBOL_180_ = 180, /* '?' */ - YYSYMBOL_YYACCEPT = 181, /* $accept */ - YYSYMBOL_input = 182, /* input */ - YYSYMBOL_statement_list = 183, /* statement_list */ - YYSYMBOL_statement = 184, /* statement */ - YYSYMBOL_preparable_statement = 185, /* preparable_statement */ - YYSYMBOL_opt_hints = 186, /* opt_hints */ - YYSYMBOL_hint_list = 187, /* hint_list */ - YYSYMBOL_hint = 188, /* hint */ - YYSYMBOL_transaction_statement = 189, /* transaction_statement */ - YYSYMBOL_opt_transaction_keyword = 190, /* opt_transaction_keyword */ - YYSYMBOL_prepare_statement = 191, /* prepare_statement */ - YYSYMBOL_prepare_target_query = 192, /* prepare_target_query */ - YYSYMBOL_execute_statement = 193, /* execute_statement */ - YYSYMBOL_import_statement = 194, /* import_statement */ - YYSYMBOL_file_type = 195, /* file_type */ - YYSYMBOL_file_path = 196, /* file_path */ - YYSYMBOL_opt_file_type = 197, /* opt_file_type */ - YYSYMBOL_export_statement = 198, /* export_statement */ - YYSYMBOL_show_statement = 199, /* show_statement */ - YYSYMBOL_create_statement = 200, /* create_statement */ - YYSYMBOL_opt_not_exists = 201, /* opt_not_exists */ - YYSYMBOL_table_elem_commalist = 202, /* table_elem_commalist */ - YYSYMBOL_table_elem = 203, /* table_elem */ - YYSYMBOL_column_def = 204, /* column_def */ - YYSYMBOL_column_type = 205, /* column_type */ - YYSYMBOL_opt_time_precision = 206, /* opt_time_precision */ - YYSYMBOL_opt_decimal_specification = 207, /* opt_decimal_specification */ - YYSYMBOL_opt_column_constraints = 208, /* opt_column_constraints */ - YYSYMBOL_column_constraint_list = 209, /* column_constraint_list */ - YYSYMBOL_column_constraint = 210, /* column_constraint */ - YYSYMBOL_table_constraint = 211, /* table_constraint */ - YYSYMBOL_drop_statement = 212, /* drop_statement */ - YYSYMBOL_opt_exists = 213, /* opt_exists */ - YYSYMBOL_alter_statement = 214, /* alter_statement */ - YYSYMBOL_alter_action = 215, /* alter_action */ - YYSYMBOL_drop_action = 216, /* drop_action */ - YYSYMBOL_delete_statement = 217, /* delete_statement */ - YYSYMBOL_truncate_statement = 218, /* truncate_statement */ - YYSYMBOL_insert_statement = 219, /* insert_statement */ - YYSYMBOL_opt_column_list = 220, /* opt_column_list */ - YYSYMBOL_update_statement = 221, /* update_statement */ - YYSYMBOL_update_clause_commalist = 222, /* update_clause_commalist */ - YYSYMBOL_update_clause = 223, /* update_clause */ - YYSYMBOL_select_statement = 224, /* select_statement */ - YYSYMBOL_select_within_set_operation = 225, /* select_within_set_operation */ - YYSYMBOL_select_within_set_operation_no_parentheses = 226, /* select_within_set_operation_no_parentheses */ - YYSYMBOL_select_with_paren = 227, /* select_with_paren */ - YYSYMBOL_select_no_paren = 228, /* select_no_paren */ - YYSYMBOL_set_operator = 229, /* set_operator */ - YYSYMBOL_set_type = 230, /* set_type */ - YYSYMBOL_opt_all = 231, /* opt_all */ - YYSYMBOL_select_clause = 232, /* select_clause */ - YYSYMBOL_opt_distinct = 233, /* opt_distinct */ - YYSYMBOL_select_list = 234, /* select_list */ - YYSYMBOL_opt_from_clause = 235, /* opt_from_clause */ - YYSYMBOL_from_clause = 236, /* from_clause */ - YYSYMBOL_opt_where = 237, /* opt_where */ - YYSYMBOL_opt_group = 238, /* opt_group */ - YYSYMBOL_opt_having = 239, /* opt_having */ - YYSYMBOL_opt_order = 240, /* opt_order */ - YYSYMBOL_order_list = 241, /* order_list */ - YYSYMBOL_order_desc = 242, /* order_desc */ - YYSYMBOL_opt_order_type = 243, /* opt_order_type */ - YYSYMBOL_opt_top = 244, /* opt_top */ - YYSYMBOL_opt_limit = 245, /* opt_limit */ - YYSYMBOL_expr_list = 246, /* expr_list */ - YYSYMBOL_opt_literal_list = 247, /* opt_literal_list */ - YYSYMBOL_literal_list = 248, /* literal_list */ - YYSYMBOL_expr_alias = 249, /* expr_alias */ - YYSYMBOL_expr = 250, /* expr */ - YYSYMBOL_operand = 251, /* operand */ - YYSYMBOL_scalar_expr = 252, /* scalar_expr */ - YYSYMBOL_unary_expr = 253, /* unary_expr */ - YYSYMBOL_binary_expr = 254, /* binary_expr */ - YYSYMBOL_logic_expr = 255, /* logic_expr */ - YYSYMBOL_in_expr = 256, /* in_expr */ - YYSYMBOL_case_expr = 257, /* case_expr */ - YYSYMBOL_case_list = 258, /* case_list */ - YYSYMBOL_exists_expr = 259, /* exists_expr */ - YYSYMBOL_comp_expr = 260, /* comp_expr */ - YYSYMBOL_function_expr = 261, /* function_expr */ - YYSYMBOL_extract_expr = 262, /* extract_expr */ - YYSYMBOL_cast_expr = 263, /* cast_expr */ - YYSYMBOL_datetime_field = 264, /* datetime_field */ - YYSYMBOL_datetime_field_plural = 265, /* datetime_field_plural */ - YYSYMBOL_duration_field = 266, /* duration_field */ - YYSYMBOL_array_expr = 267, /* array_expr */ - YYSYMBOL_array_index = 268, /* array_index */ - YYSYMBOL_between_expr = 269, /* between_expr */ - YYSYMBOL_column_name = 270, /* column_name */ - YYSYMBOL_literal = 271, /* literal */ - YYSYMBOL_string_literal = 272, /* string_literal */ - YYSYMBOL_bool_literal = 273, /* bool_literal */ - YYSYMBOL_num_literal = 274, /* num_literal */ - YYSYMBOL_int_literal = 275, /* int_literal */ - YYSYMBOL_null_literal = 276, /* null_literal */ - YYSYMBOL_date_literal = 277, /* date_literal */ - YYSYMBOL_interval_literal = 278, /* interval_literal */ - YYSYMBOL_param_expr = 279, /* param_expr */ - YYSYMBOL_table_ref = 280, /* table_ref */ - YYSYMBOL_table_ref_atomic = 281, /* table_ref_atomic */ - YYSYMBOL_nonjoin_table_ref_atomic = 282, /* nonjoin_table_ref_atomic */ - YYSYMBOL_table_ref_commalist = 283, /* table_ref_commalist */ - YYSYMBOL_table_ref_name = 284, /* table_ref_name */ - YYSYMBOL_table_ref_name_no_alias = 285, /* table_ref_name_no_alias */ - YYSYMBOL_table_name = 286, /* table_name */ - YYSYMBOL_opt_index_name = 287, /* opt_index_name */ - YYSYMBOL_table_alias = 288, /* table_alias */ - YYSYMBOL_opt_table_alias = 289, /* opt_table_alias */ - YYSYMBOL_alias = 290, /* alias */ - YYSYMBOL_opt_alias = 291, /* opt_alias */ - YYSYMBOL_opt_with_clause = 292, /* opt_with_clause */ - YYSYMBOL_with_clause = 293, /* with_clause */ - YYSYMBOL_with_description_list = 294, /* with_description_list */ - YYSYMBOL_with_description = 295, /* with_description */ - YYSYMBOL_join_clause = 296, /* join_clause */ - YYSYMBOL_opt_join_type = 297, /* opt_join_type */ - YYSYMBOL_join_condition = 298, /* join_condition */ - YYSYMBOL_opt_semicolon = 299, /* opt_semicolon */ - YYSYMBOL_ident_commalist = 300 /* ident_commalist */ + YYSYMBOL_CHARACTER_VARYING = 29, /* CHARACTER_VARYING */ + YYSYMBOL_REAL = 30, /* REAL */ + YYSYMBOL_DECIMAL = 31, /* DECIMAL */ + YYSYMBOL_SMALLINT = 32, /* SMALLINT */ + YYSYMBOL_SPATIAL = 33, /* SPATIAL */ + YYSYMBOL_VARCHAR = 34, /* VARCHAR */ + YYSYMBOL_VIRTUAL = 35, /* VIRTUAL */ + YYSYMBOL_DESCRIBE = 36, /* DESCRIBE */ + YYSYMBOL_BEFORE = 37, /* BEFORE */ + YYSYMBOL_COLUMN = 38, /* COLUMN */ + YYSYMBOL_CREATE = 39, /* CREATE */ + YYSYMBOL_DELETE = 40, /* DELETE */ + YYSYMBOL_DIRECT = 41, /* DIRECT */ + YYSYMBOL_DOUBLE = 42, /* DOUBLE */ + YYSYMBOL_ESCAPE = 43, /* ESCAPE */ + YYSYMBOL_EXCEPT = 44, /* EXCEPT */ + YYSYMBOL_EXISTS = 45, /* EXISTS */ + YYSYMBOL_EXTRACT = 46, /* EXTRACT */ + YYSYMBOL_CAST = 47, /* CAST */ + YYSYMBOL_FORMAT = 48, /* FORMAT */ + YYSYMBOL_GLOBAL = 49, /* GLOBAL */ + YYSYMBOL_HAVING = 50, /* HAVING */ + YYSYMBOL_IMPORT = 51, /* IMPORT */ + YYSYMBOL_INSERT = 52, /* INSERT */ + YYSYMBOL_ISNULL = 53, /* ISNULL */ + YYSYMBOL_OFFSET = 54, /* OFFSET */ + YYSYMBOL_RENAME = 55, /* RENAME */ + YYSYMBOL_SCHEMA = 56, /* SCHEMA */ + YYSYMBOL_SELECT = 57, /* SELECT */ + YYSYMBOL_SORTED = 58, /* SORTED */ + YYSYMBOL_TABLES = 59, /* TABLES */ + YYSYMBOL_UNIQUE = 60, /* UNIQUE */ + YYSYMBOL_UNLOAD = 61, /* UNLOAD */ + YYSYMBOL_UPDATE = 62, /* UPDATE */ + YYSYMBOL_VALUES = 63, /* VALUES */ + YYSYMBOL_AFTER = 64, /* AFTER */ + YYSYMBOL_ALTER = 65, /* ALTER */ + YYSYMBOL_CROSS = 66, /* CROSS */ + YYSYMBOL_DELTA = 67, /* DELTA */ + YYSYMBOL_FLOAT = 68, /* FLOAT */ + YYSYMBOL_GROUP = 69, /* GROUP */ + YYSYMBOL_INDEX = 70, /* INDEX */ + YYSYMBOL_INNER = 71, /* INNER */ + YYSYMBOL_LIMIT = 72, /* LIMIT */ + YYSYMBOL_LOCAL = 73, /* LOCAL */ + YYSYMBOL_MERGE = 74, /* MERGE */ + YYSYMBOL_MINUS = 75, /* MINUS */ + YYSYMBOL_ORDER = 76, /* ORDER */ + YYSYMBOL_OUTER = 77, /* OUTER */ + YYSYMBOL_RIGHT = 78, /* RIGHT */ + YYSYMBOL_TABLE = 79, /* TABLE */ + YYSYMBOL_UNION = 80, /* UNION */ + YYSYMBOL_USING = 81, /* USING */ + YYSYMBOL_WHERE = 82, /* WHERE */ + YYSYMBOL_CALL = 83, /* CALL */ + YYSYMBOL_CASE = 84, /* CASE */ + YYSYMBOL_CHAR = 85, /* CHAR */ + YYSYMBOL_COPY = 86, /* COPY */ + YYSYMBOL_DATE = 87, /* DATE */ + YYSYMBOL_DATETIME = 88, /* DATETIME */ + YYSYMBOL_DESC = 89, /* DESC */ + YYSYMBOL_DROP = 90, /* DROP */ + YYSYMBOL_ELSE = 91, /* ELSE */ + YYSYMBOL_FILE = 92, /* FILE */ + YYSYMBOL_FROM = 93, /* FROM */ + YYSYMBOL_FULL = 94, /* FULL */ + YYSYMBOL_HASH = 95, /* HASH */ + YYSYMBOL_HINT = 96, /* HINT */ + YYSYMBOL_INTO = 97, /* INTO */ + YYSYMBOL_JOIN = 98, /* JOIN */ + YYSYMBOL_LEFT = 99, /* LEFT */ + YYSYMBOL_LIKE = 100, /* LIKE */ + YYSYMBOL_LOAD = 101, /* LOAD */ + YYSYMBOL_LONG = 102, /* LONG */ + YYSYMBOL_NULL = 103, /* NULL */ + YYSYMBOL_PLAN = 104, /* PLAN */ + YYSYMBOL_SHOW = 105, /* SHOW */ + YYSYMBOL_TEXT = 106, /* TEXT */ + YYSYMBOL_THEN = 107, /* THEN */ + YYSYMBOL_TIME = 108, /* TIME */ + YYSYMBOL_VIEW = 109, /* VIEW */ + YYSYMBOL_WHEN = 110, /* WHEN */ + YYSYMBOL_WITH = 111, /* WITH */ + YYSYMBOL_ADD = 112, /* ADD */ + YYSYMBOL_ALL = 113, /* ALL */ + YYSYMBOL_AND = 114, /* AND */ + YYSYMBOL_ASC = 115, /* ASC */ + YYSYMBOL_END = 116, /* END */ + YYSYMBOL_FOR = 117, /* FOR */ + YYSYMBOL_INT = 118, /* INT */ + YYSYMBOL_KEY = 119, /* KEY */ + YYSYMBOL_NOT = 120, /* NOT */ + YYSYMBOL_OFF = 121, /* OFF */ + YYSYMBOL_SET = 122, /* SET */ + YYSYMBOL_TOP = 123, /* TOP */ + YYSYMBOL_AS = 124, /* AS */ + YYSYMBOL_BY = 125, /* BY */ + YYSYMBOL_IF = 126, /* IF */ + YYSYMBOL_IN = 127, /* IN */ + YYSYMBOL_IS = 128, /* IS */ + YYSYMBOL_OF = 129, /* OF */ + YYSYMBOL_ON = 130, /* ON */ + YYSYMBOL_OR = 131, /* OR */ + YYSYMBOL_TO = 132, /* TO */ + YYSYMBOL_ARRAY = 133, /* ARRAY */ + YYSYMBOL_CONCAT = 134, /* CONCAT */ + YYSYMBOL_ILIKE = 135, /* ILIKE */ + YYSYMBOL_SECOND = 136, /* SECOND */ + YYSYMBOL_MINUTE = 137, /* MINUTE */ + YYSYMBOL_HOUR = 138, /* HOUR */ + YYSYMBOL_DAY = 139, /* DAY */ + YYSYMBOL_MONTH = 140, /* MONTH */ + YYSYMBOL_YEAR = 141, /* YEAR */ + YYSYMBOL_SECONDS = 142, /* SECONDS */ + YYSYMBOL_MINUTES = 143, /* MINUTES */ + YYSYMBOL_HOURS = 144, /* HOURS */ + YYSYMBOL_DAYS = 145, /* DAYS */ + YYSYMBOL_MONTHS = 146, /* MONTHS */ + YYSYMBOL_YEARS = 147, /* YEARS */ + YYSYMBOL_INTERVAL = 148, /* INTERVAL */ + YYSYMBOL_TRUE = 149, /* TRUE */ + YYSYMBOL_FALSE = 150, /* FALSE */ + YYSYMBOL_TRANSACTION = 151, /* TRANSACTION */ + YYSYMBOL_BEGIN = 152, /* BEGIN */ + YYSYMBOL_COMMIT = 153, /* COMMIT */ + YYSYMBOL_ROLLBACK = 154, /* ROLLBACK */ + YYSYMBOL_155_ = 155, /* '=' */ + YYSYMBOL_EQUALS = 156, /* EQUALS */ + YYSYMBOL_NOTEQUALS = 157, /* NOTEQUALS */ + YYSYMBOL_158_ = 158, /* '<' */ + YYSYMBOL_159_ = 159, /* '>' */ + YYSYMBOL_LESS = 160, /* LESS */ + YYSYMBOL_GREATER = 161, /* GREATER */ + YYSYMBOL_LESSEQ = 162, /* LESSEQ */ + YYSYMBOL_GREATEREQ = 163, /* GREATEREQ */ + YYSYMBOL_NOTNULL = 164, /* NOTNULL */ + YYSYMBOL_165_ = 165, /* '+' */ + YYSYMBOL_166_ = 166, /* '-' */ + YYSYMBOL_167_ = 167, /* '*' */ + YYSYMBOL_168_ = 168, /* '/' */ + YYSYMBOL_169_ = 169, /* '%' */ + YYSYMBOL_170_ = 170, /* '^' */ + YYSYMBOL_UMINUS = 171, /* UMINUS */ + YYSYMBOL_172_ = 172, /* '[' */ + YYSYMBOL_173_ = 173, /* ']' */ + YYSYMBOL_174_ = 174, /* '(' */ + YYSYMBOL_175_ = 175, /* ')' */ + YYSYMBOL_176_ = 176, /* '.' */ + YYSYMBOL_177_ = 177, /* ';' */ + YYSYMBOL_178_ = 178, /* ',' */ + YYSYMBOL_179_ = 179, /* '?' */ + YYSYMBOL_YYACCEPT = 180, /* $accept */ + YYSYMBOL_input = 181, /* input */ + YYSYMBOL_statement_list = 182, /* statement_list */ + YYSYMBOL_statement = 183, /* statement */ + YYSYMBOL_preparable_statement = 184, /* preparable_statement */ + YYSYMBOL_opt_hints = 185, /* opt_hints */ + YYSYMBOL_hint_list = 186, /* hint_list */ + YYSYMBOL_hint = 187, /* hint */ + YYSYMBOL_transaction_statement = 188, /* transaction_statement */ + YYSYMBOL_opt_transaction_keyword = 189, /* opt_transaction_keyword */ + YYSYMBOL_prepare_statement = 190, /* prepare_statement */ + YYSYMBOL_prepare_target_query = 191, /* prepare_target_query */ + YYSYMBOL_execute_statement = 192, /* execute_statement */ + YYSYMBOL_import_statement = 193, /* import_statement */ + YYSYMBOL_file_type = 194, /* file_type */ + YYSYMBOL_file_path = 195, /* file_path */ + YYSYMBOL_opt_file_type = 196, /* opt_file_type */ + YYSYMBOL_export_statement = 197, /* export_statement */ + YYSYMBOL_show_statement = 198, /* show_statement */ + YYSYMBOL_create_statement = 199, /* create_statement */ + YYSYMBOL_opt_not_exists = 200, /* opt_not_exists */ + YYSYMBOL_table_elem_commalist = 201, /* table_elem_commalist */ + YYSYMBOL_table_elem = 202, /* table_elem */ + YYSYMBOL_column_def = 203, /* column_def */ + YYSYMBOL_column_type = 204, /* column_type */ + YYSYMBOL_opt_time_precision = 205, /* opt_time_precision */ + YYSYMBOL_opt_decimal_specification = 206, /* opt_decimal_specification */ + YYSYMBOL_opt_column_constraints = 207, /* opt_column_constraints */ + YYSYMBOL_column_constraint_list = 208, /* column_constraint_list */ + YYSYMBOL_column_constraint = 209, /* column_constraint */ + YYSYMBOL_table_constraint = 210, /* table_constraint */ + YYSYMBOL_drop_statement = 211, /* drop_statement */ + YYSYMBOL_opt_exists = 212, /* opt_exists */ + YYSYMBOL_alter_statement = 213, /* alter_statement */ + YYSYMBOL_alter_action = 214, /* alter_action */ + YYSYMBOL_drop_action = 215, /* drop_action */ + YYSYMBOL_delete_statement = 216, /* delete_statement */ + YYSYMBOL_truncate_statement = 217, /* truncate_statement */ + YYSYMBOL_insert_statement = 218, /* insert_statement */ + YYSYMBOL_opt_column_list = 219, /* opt_column_list */ + YYSYMBOL_update_statement = 220, /* update_statement */ + YYSYMBOL_update_clause_commalist = 221, /* update_clause_commalist */ + YYSYMBOL_update_clause = 222, /* update_clause */ + YYSYMBOL_select_statement = 223, /* select_statement */ + YYSYMBOL_select_within_set_operation = 224, /* select_within_set_operation */ + YYSYMBOL_select_within_set_operation_no_parentheses = 225, /* select_within_set_operation_no_parentheses */ + YYSYMBOL_select_with_paren = 226, /* select_with_paren */ + YYSYMBOL_select_no_paren = 227, /* select_no_paren */ + YYSYMBOL_set_operator = 228, /* set_operator */ + YYSYMBOL_set_type = 229, /* set_type */ + YYSYMBOL_opt_all = 230, /* opt_all */ + YYSYMBOL_select_clause = 231, /* select_clause */ + YYSYMBOL_opt_distinct = 232, /* opt_distinct */ + YYSYMBOL_select_list = 233, /* select_list */ + YYSYMBOL_opt_from_clause = 234, /* opt_from_clause */ + YYSYMBOL_from_clause = 235, /* from_clause */ + YYSYMBOL_opt_where = 236, /* opt_where */ + YYSYMBOL_opt_group = 237, /* opt_group */ + YYSYMBOL_opt_having = 238, /* opt_having */ + YYSYMBOL_opt_order = 239, /* opt_order */ + YYSYMBOL_order_list = 240, /* order_list */ + YYSYMBOL_order_desc = 241, /* order_desc */ + YYSYMBOL_opt_order_type = 242, /* opt_order_type */ + YYSYMBOL_opt_top = 243, /* opt_top */ + YYSYMBOL_opt_limit = 244, /* opt_limit */ + YYSYMBOL_expr_list = 245, /* expr_list */ + YYSYMBOL_opt_literal_list = 246, /* opt_literal_list */ + YYSYMBOL_literal_list = 247, /* literal_list */ + YYSYMBOL_expr_alias = 248, /* expr_alias */ + YYSYMBOL_expr = 249, /* expr */ + YYSYMBOL_operand = 250, /* operand */ + YYSYMBOL_scalar_expr = 251, /* scalar_expr */ + YYSYMBOL_unary_expr = 252, /* unary_expr */ + YYSYMBOL_binary_expr = 253, /* binary_expr */ + YYSYMBOL_logic_expr = 254, /* logic_expr */ + YYSYMBOL_in_expr = 255, /* in_expr */ + YYSYMBOL_case_expr = 256, /* case_expr */ + YYSYMBOL_case_list = 257, /* case_list */ + YYSYMBOL_exists_expr = 258, /* exists_expr */ + YYSYMBOL_comp_expr = 259, /* comp_expr */ + YYSYMBOL_function_expr = 260, /* function_expr */ + YYSYMBOL_extract_expr = 261, /* extract_expr */ + YYSYMBOL_cast_expr = 262, /* cast_expr */ + YYSYMBOL_datetime_field = 263, /* datetime_field */ + YYSYMBOL_datetime_field_plural = 264, /* datetime_field_plural */ + YYSYMBOL_duration_field = 265, /* duration_field */ + YYSYMBOL_array_expr = 266, /* array_expr */ + YYSYMBOL_array_index = 267, /* array_index */ + YYSYMBOL_between_expr = 268, /* between_expr */ + YYSYMBOL_column_name = 269, /* column_name */ + YYSYMBOL_literal = 270, /* literal */ + YYSYMBOL_string_literal = 271, /* string_literal */ + YYSYMBOL_bool_literal = 272, /* bool_literal */ + YYSYMBOL_num_literal = 273, /* num_literal */ + YYSYMBOL_int_literal = 274, /* int_literal */ + YYSYMBOL_null_literal = 275, /* null_literal */ + YYSYMBOL_date_literal = 276, /* date_literal */ + YYSYMBOL_interval_literal = 277, /* interval_literal */ + YYSYMBOL_param_expr = 278, /* param_expr */ + YYSYMBOL_table_ref = 279, /* table_ref */ + YYSYMBOL_table_ref_atomic = 280, /* table_ref_atomic */ + YYSYMBOL_nonjoin_table_ref_atomic = 281, /* nonjoin_table_ref_atomic */ + YYSYMBOL_table_ref_commalist = 282, /* table_ref_commalist */ + YYSYMBOL_table_ref_name = 283, /* table_ref_name */ + YYSYMBOL_table_ref_name_no_alias = 284, /* table_ref_name_no_alias */ + YYSYMBOL_table_name = 285, /* table_name */ + YYSYMBOL_opt_index_name = 286, /* opt_index_name */ + YYSYMBOL_table_alias = 287, /* table_alias */ + YYSYMBOL_opt_table_alias = 288, /* opt_table_alias */ + YYSYMBOL_alias = 289, /* alias */ + YYSYMBOL_opt_alias = 290, /* opt_alias */ + YYSYMBOL_opt_with_clause = 291, /* opt_with_clause */ + YYSYMBOL_with_clause = 292, /* with_clause */ + YYSYMBOL_with_description_list = 293, /* with_description_list */ + YYSYMBOL_with_description = 294, /* with_description */ + YYSYMBOL_join_clause = 295, /* join_clause */ + YYSYMBOL_opt_join_type = 296, /* opt_join_type */ + YYSYMBOL_join_condition = 297, /* join_condition */ + YYSYMBOL_opt_semicolon = 298, /* opt_semicolon */ + YYSYMBOL_ident_commalist = 299 /* ident_commalist */ }; typedef enum yysymbol_kind_t yysymbol_kind_t; @@ -763,19 +762,19 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 67 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 870 +#define YYLAST 899 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 181 +#define YYNTOKENS 180 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 120 /* YYNRULES -- Number of rules. */ #define YYNRULES 303 /* YYNSTATES -- Number of states. */ -#define YYNSTATES 550 +#define YYNSTATES 549 /* YYMAXUTOK -- Last valid token kind. */ -#define YYMAXUTOK 418 +#define YYMAXUTOK 417 /* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM @@ -792,13 +791,13 @@ static const yytype_uint8 yytranslate[] = 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 170, 2, 2, - 175, 176, 168, 166, 179, 167, 177, 169, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 178, - 159, 156, 160, 180, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 169, 2, 2, + 174, 175, 167, 165, 178, 166, 176, 168, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 177, + 158, 155, 159, 179, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 173, 2, 174, 171, 2, 2, 2, 2, 2, + 2, 172, 2, 173, 170, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -830,7 +829,7 @@ static const yytype_uint8 yytranslate[] = 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, - 155, 157, 158, 161, 162, 163, 164, 165, 172 + 156, 157, 160, 161, 162, 163, 164, 171 }; #if HSQL_DEBUG @@ -888,22 +887,22 @@ static const char *const yytname[] = "TEMPORARY", "TIMESTAMP", "DISTINCT", "NVARCHAR", "RESTRICT", "TRUNCATE", "ANALYZE", "BETWEEN", "CASCADE", "COLUMNS", "CONTROL", "DEFAULT", "EXECUTE", "EXPLAIN", "INTEGER", "NATURAL", "PREPARE", "PRIMARY", - "SCHEMAS", "CHARACTER", "VARYING", "REAL", "DECIMAL", "SMALLINT", - "SPATIAL", "VARCHAR", "VIRTUAL", "DESCRIBE", "BEFORE", "COLUMN", - "CREATE", "DELETE", "DIRECT", "DOUBLE", "ESCAPE", "EXCEPT", "EXISTS", - "EXTRACT", "CAST", "FORMAT", "GLOBAL", "HAVING", "IMPORT", "INSERT", - "ISNULL", "OFFSET", "RENAME", "SCHEMA", "SELECT", "SORTED", "TABLES", - "UNIQUE", "UNLOAD", "UPDATE", "VALUES", "AFTER", "ALTER", "CROSS", - "DELTA", "FLOAT", "GROUP", "INDEX", "INNER", "LIMIT", "LOCAL", "MERGE", - "MINUS", "ORDER", "OUTER", "RIGHT", "TABLE", "UNION", "USING", "WHERE", - "CALL", "CASE", "CHAR", "COPY", "DATE", "DATETIME", "DESC", "DROP", - "ELSE", "FILE", "FROM", "FULL", "HASH", "HINT", "INTO", "JOIN", "LEFT", - "LIKE", "LOAD", "LONG", "NULL", "PLAN", "SHOW", "TEXT", "THEN", "TIME", - "VIEW", "WHEN", "WITH", "ADD", "ALL", "AND", "ASC", "END", "FOR", "INT", - "KEY", "NOT", "OFF", "SET", "TOP", "AS", "BY", "IF", "IN", "IS", "OF", - "ON", "OR", "TO", "ARRAY", "CONCAT", "ILIKE", "SECOND", "MINUTE", "HOUR", - "DAY", "MONTH", "YEAR", "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", - "YEARS", "INTERVAL", "TRUE", "FALSE", "TRANSACTION", "BEGIN", "COMMIT", + "SCHEMAS", "CHARACTER_VARYING", "REAL", "DECIMAL", "SMALLINT", "SPATIAL", + "VARCHAR", "VIRTUAL", "DESCRIBE", "BEFORE", "COLUMN", "CREATE", "DELETE", + "DIRECT", "DOUBLE", "ESCAPE", "EXCEPT", "EXISTS", "EXTRACT", "CAST", + "FORMAT", "GLOBAL", "HAVING", "IMPORT", "INSERT", "ISNULL", "OFFSET", + "RENAME", "SCHEMA", "SELECT", "SORTED", "TABLES", "UNIQUE", "UNLOAD", + "UPDATE", "VALUES", "AFTER", "ALTER", "CROSS", "DELTA", "FLOAT", "GROUP", + "INDEX", "INNER", "LIMIT", "LOCAL", "MERGE", "MINUS", "ORDER", "OUTER", + "RIGHT", "TABLE", "UNION", "USING", "WHERE", "CALL", "CASE", "CHAR", + "COPY", "DATE", "DATETIME", "DESC", "DROP", "ELSE", "FILE", "FROM", + "FULL", "HASH", "HINT", "INTO", "JOIN", "LEFT", "LIKE", "LOAD", "LONG", + "NULL", "PLAN", "SHOW", "TEXT", "THEN", "TIME", "VIEW", "WHEN", "WITH", + "ADD", "ALL", "AND", "ASC", "END", "FOR", "INT", "KEY", "NOT", "OFF", + "SET", "TOP", "AS", "BY", "IF", "IN", "IS", "OF", "ON", "OR", "TO", + "ARRAY", "CONCAT", "ILIKE", "SECOND", "MINUTE", "HOUR", "DAY", "MONTH", + "YEAR", "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", + "INTERVAL", "TRUE", "FALSE", "TRANSACTION", "BEGIN", "COMMIT", "ROLLBACK", "'='", "EQUALS", "NOTEQUALS", "'<'", "'>'", "LESS", "GREATER", "LESSEQ", "GREATEREQ", "NOTNULL", "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "UMINUS", "'['", "']'", "'('", "')'", "'.'", "';'", "','", @@ -949,7 +948,7 @@ yysymbol_name (yysymbol_kind_t yysymbol) } #endif -#define YYPACT_NINF (-432) +#define YYPACT_NINF (-410) #define yypact_value_is_default(Yyn) \ ((Yyn) == YYPACT_NINF) @@ -963,61 +962,61 @@ yysymbol_name (yysymbol_kind_t yysymbol) STATE-NUM. */ static const yytype_int16 yypact[] = { - 567, 128, 64, 171, 179, 64, 96, 69, 135, 102, - 64, 163, 64, 97, 15, 266, 101, 101, 101, 271, - 119, -432, 186, -432, 186, -432, -432, -432, -432, -432, - -432, -432, -432, -432, -432, -432, -432, -30, -432, 277, - 129, -432, 127, 218, -432, 192, 192, 192, 64, 313, - 64, 208, -432, 210, -57, 210, 210, 210, 64, -432, - 223, 173, -432, -432, -432, -432, -432, -432, 562, -432, - 257, -432, -432, 234, -30, 42, -432, 160, -432, 364, - 36, 365, 252, 371, 64, 64, 292, -432, 283, 203, - 381, 339, 64, 389, 389, 392, 64, 64, -432, 224, - 266, -432, 225, 400, 395, 232, 235, -432, -432, -432, - -30, 299, 289, -30, -19, -432, -432, -432, -432, 412, - -432, 413, -432, -432, -432, 242, 243, -432, -432, -432, - -432, 658, -432, -432, -432, -432, -432, -432, 375, -432, - 294, -31, 203, 324, -432, 389, 423, 182, 273, -45, - -432, -432, 336, 320, -432, 320, -432, -432, -432, -432, - -432, 432, -432, -432, 324, -432, -432, 359, -432, -432, - 42, -432, -432, 324, 359, 324, 124, -432, -432, 250, - -432, 36, -432, -432, -432, -432, -432, -432, -432, -432, - -432, -432, -432, -432, -432, -432, -432, -432, 64, 434, - 326, 99, 315, -74, 267, 268, 274, 175, 356, 275, - 335, -432, 230, -53, 397, -432, -432, -432, -432, -432, - -432, -432, -432, -432, -432, -432, -432, -432, -432, -432, - -432, 348, -432, -111, 278, -432, 324, 381, -432, 411, - -432, -432, 405, -432, -432, 280, -96, -432, 363, 282, - -432, 18, -19, -30, 284, -432, -44, -19, -53, 404, - 27, -432, -432, 287, 372, -432, 751, 344, 291, -15, - -432, -432, -432, 326, 19, 21, 409, 250, 324, 324, - 151, 91, 293, 335, 577, 324, 176, 295, 41, 324, - 324, 335, -432, 335, 56, 297, 106, 335, 335, 335, - 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, - 335, 335, 400, 64, -432, 467, 36, -53, -432, 210, - 313, 36, -432, 432, 13, 292, -432, 324, -432, 473, - -432, -432, -432, -432, 324, -432, -432, -432, -432, 324, - 324, 423, 389, -432, 448, -432, 304, -432, 305, -432, - -432, 306, -432, -432, -432, -432, 307, -432, 34, 312, - 423, -432, 99, -432, -432, 324, -432, -432, 317, 394, - -66, 140, 133, 324, 324, -432, 409, 388, -127, -432, - -432, -432, 380, 526, 603, 335, 319, 230, -432, 393, - 323, 603, 603, 603, 603, 379, 379, 379, 379, 176, - 176, -82, -82, -82, -100, 327, -432, -432, 25, 497, - -432, 63, -432, 326, -432, 53, -432, 330, -432, 24, - -432, 441, -432, -432, -432, -53, -53, 105, -432, 337, - 507, -432, 510, 511, 513, -432, 401, -432, -432, 416, - -432, 34, -432, 423, 111, -432, 144, -432, 324, 751, - 324, 324, -432, 150, 153, 346, -432, 335, 603, 230, - 351, 156, -432, -432, -432, -432, -432, 353, 429, -432, - -432, -432, 452, 456, 457, 438, 13, 537, -432, -432, - -432, 415, -432, -432, 538, 157, 382, 383, 396, -432, - -432, -432, 177, -432, -432, 43, 399, -53, 178, -432, - 324, -432, 577, 402, 187, -432, -432, 24, 13, -432, - -432, -432, 13, 222, 376, 324, 403, -432, 565, -432, - -432, -432, -432, -432, -432, -432, -53, -432, -432, -432, - -432, 352, 423, -28, -432, 407, 398, 324, 189, 324, - -432, -432, 26, -53, -432, -432, -53, 408, 410, -432 + 579, 31, 44, 117, 138, 44, -26, 70, 74, 76, + 44, 116, 44, -14, 19, 203, 78, 78, 78, 241, + 84, -410, 140, -410, 140, -410, -410, -410, -410, -410, + -410, -410, -410, -410, -410, -410, -410, -23, -410, 244, + 77, -410, 91, 196, -410, 146, 146, 146, 44, 287, + 44, 180, -410, 185, -57, 185, 185, 185, 44, -410, + 182, 134, -410, -410, -410, -410, -410, -410, 548, -410, + 220, -410, -410, 194, -23, 204, -410, 166, -410, 320, + 37, 323, 218, 337, 44, 44, 267, -410, 266, 186, + 363, 322, 44, 364, 364, 373, 44, 44, -410, 222, + 203, -410, 225, 371, 380, 208, 219, -410, -410, -410, + -23, 288, 277, -23, 80, -410, -410, -410, -410, 400, + -410, 403, -410, -410, -410, 233, 235, -410, -410, -410, + -410, 714, -410, -410, -410, -410, -410, -410, 369, -410, + 285, -48, 186, 316, -410, 364, 413, 105, 265, -51, + -410, -410, 332, 312, -410, 312, -410, -410, -410, -410, + -410, 421, -410, -410, 316, -410, -410, 349, -410, -410, + 204, -410, -410, 316, 349, 316, 125, -410, -410, 375, + -410, 37, -410, -410, -410, -410, -410, -410, -410, -410, + -410, -410, -410, -410, -410, -410, -410, -410, 44, 423, + 318, 34, 306, -106, 259, 261, 263, 176, 325, 268, + 385, -410, 231, 93, 410, -410, -410, -410, -410, -410, + -410, -410, -410, -410, -410, -410, -410, -410, -410, -410, + -410, 341, -410, 27, 269, -410, 316, 363, -410, 404, + -410, -410, 393, -410, -410, 270, 39, -410, 353, 272, + -410, 24, 80, -23, 273, -410, -43, 80, 93, 394, + 28, -410, -410, 278, 355, -410, 781, 335, 281, 65, + -410, -410, -410, 318, 9, 21, 399, 375, 316, 316, + 43, 109, 283, 385, 607, 316, 99, 284, -52, 316, + 316, 385, -410, 385, -46, 286, 136, 385, 385, 385, + 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, + 385, 385, 371, 44, -410, 458, 37, 93, -410, 185, + 287, 37, -410, 421, 20, 267, -410, 316, -410, 459, + -410, -410, -410, -410, 316, -410, -410, -410, -410, 316, + 316, 413, 364, -410, 293, -410, 294, -410, 297, -410, + -410, 302, -410, -410, -410, -410, 303, -410, 98, 304, + 413, -410, 34, -410, -410, 316, -410, -410, 305, 386, + -65, 47, 171, 316, 316, -410, 399, 381, 26, -410, + -410, -410, 370, 554, 625, 385, 311, 231, -410, 383, + 315, 625, 625, 625, 625, 675, 675, 675, 675, 99, + 99, -83, -83, -83, -71, 321, -410, -410, 119, 486, + -410, 123, -410, 318, -410, 66, -410, 319, -410, 25, + -410, 424, -410, -410, -410, 93, 93, 157, -410, 490, + 492, -410, 494, 495, 496, -410, 384, -410, -410, 405, + -410, 98, -410, 413, 158, -410, 169, -410, 316, 781, + 316, 316, -410, 179, 101, 331, -410, 385, 625, 231, + 334, 170, -410, -410, -410, -410, -410, 342, 409, -410, + -410, -410, 442, 443, 444, 425, 20, 519, -410, -410, + -410, 401, -410, -410, 350, 181, 352, 354, 356, -410, + -410, -410, 200, -410, -410, 52, 357, 93, 223, -410, + 316, -410, 607, 361, 207, -410, -410, 25, 20, -410, + -410, -410, 20, 275, 365, 316, -410, -410, 518, -410, + -410, -410, -410, -410, -410, -410, 93, -410, -410, -410, + -410, 340, 413, -28, 366, 368, 316, 209, 316, -410, + -410, 22, 93, -410, -410, 93, 367, 372, -410 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. @@ -1076,27 +1075,27 @@ static const yytype_int16 yydefact[] = 272, 0, 123, 48, 0, 0, 0, 0, 0, 81, 84, 80, 0, 86, 215, 0, 0, 203, 0, 202, 0, 206, 234, 0, 0, 197, 195, 275, 0, 292, - 294, 290, 0, 259, 276, 0, 0, 75, 0, 71, + 294, 290, 0, 259, 276, 0, 59, 75, 0, 71, 58, 72, 85, 216, 217, 200, 204, 198, 196, 263, - 286, 298, 0, 135, 59, 0, 0, 0, 0, 0, - 132, 74, 0, 299, 287, 273, 134, 235, 0, 288 + 286, 298, 0, 135, 0, 0, 0, 0, 0, 132, + 74, 0, 299, 287, 273, 134, 235, 0, 288 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -432, -432, -432, 508, -432, 557, -432, 264, -432, 39, - -432, -432, -432, -432, 270, -85, 436, -432, -432, -432, - 168, -432, 233, -432, 143, -432, -432, -432, -432, 155, - -432, -432, -49, -432, -432, -432, -432, -432, -432, 455, - -432, -432, 357, -187, -87, -432, 125, -73, -33, -432, - -432, -88, 331, -432, -432, -432, -135, -432, -432, -97, - -432, 272, -432, -432, -39, -266, -432, -65, 285, -143, - -193, -432, -432, -432, -432, -432, -432, 318, -432, -432, - -432, -432, -432, -136, -432, -432, -432, -432, -432, 58, - -62, -90, -432, -432, -92, -432, -432, -432, -432, -432, - -431, 93, -432, -432, -432, 0, -432, -432, 103, 358, - -432, -432, -432, -432, 516, -432, -432, -432, -432, -321 + -410, -410, -410, 460, -410, 516, -410, 226, -410, 159, + -410, -410, -410, -410, 230, -85, 391, -410, -410, -410, + 236, -410, 191, -410, 107, -410, -410, -410, -410, 113, + -410, -410, -49, -410, -410, -410, -410, -410, -410, 415, + -410, -410, 324, -187, -97, -410, 3, -73, -25, -410, + -410, -84, 307, -410, -410, -410, -135, -410, -410, -94, + -410, 224, -410, -410, -2, -266, -410, -36, 256, -143, + -193, -410, -410, -410, -410, -410, -410, 280, -410, -410, + -410, -410, -410, -144, -410, -410, -410, -410, -410, 30, + -62, -90, -410, -410, -92, -410, -410, -410, -410, -410, + -409, 54, -410, -410, -410, 0, -410, -410, 82, 339, + -410, -410, -410, -410, 485, -410, -410, -410, -410, -321 }; /* YYDEFGOTO[NTERM-NUM]. */ @@ -1107,13 +1106,13 @@ static const yytype_int16 yydefgoto[] = 83, 269, 270, 271, 358, 435, 431, 440, 441, 442, 272, 30, 92, 31, 240, 241, 32, 33, 34, 147, 35, 149, 150, 36, 167, 168, 169, 76, 110, 111, - 172, 77, 164, 248, 325, 326, 144, 482, 540, 114, + 172, 77, 164, 248, 325, 326, 144, 482, 539, 114, 254, 255, 337, 104, 177, 249, 125, 126, 250, 251, 214, 215, 216, 217, 218, 219, 220, 281, 221, 222, 223, 224, 225, 194, 195, 196, 226, 227, 228, 229, 230, 128, 129, 130, 131, 132, 133, 134, 135, 414, 415, 416, 417, 418, 51, 419, 140, 478, 479, 480, - 331, 37, 38, 61, 62, 420, 475, 544, 69, 233 + 331, 37, 38, 61, 62, 420, 475, 543, 69, 233 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If @@ -1122,282 +1121,286 @@ static const yytype_int16 yydefgoto[] = static const yytype_int16 yytable[] = { 213, 106, 41, 154, 154, 44, 95, 96, 97, 155, - 52, 162, 54, 265, 238, 284, 40, 286, 127, 378, - 427, 328, 170, 539, 366, 170, 174, 328, 73, 547, - 256, 163, 258, 260, 58, 297, 175, 93, 143, 444, - 116, 117, 118, 261, 113, 513, 335, 456, 86, 289, - 89, 107, 327, 297, 176, 154, 65, 66, 98, 449, - 231, 436, 289, 199, 280, 314, 290, 40, 315, 288, - 252, 289, 336, 312, 235, 59, 94, 257, 468, 290, - 322, 531, 340, 323, 141, 142, 363, 108, 290, 311, - 284, 312, 152, 317, 200, 437, 157, 158, 383, 446, - 384, 274, 266, 275, 390, 391, 392, 393, 394, 395, + 52, 162, 54, 265, 238, 284, 174, 286, 127, 378, + 427, 163, 538, 40, 366, 546, 170, 328, 328, 170, + 256, 143, 258, 260, 73, 261, 93, 266, 58, 444, + 75, 116, 117, 118, 45, 199, 335, 40, 86, 289, + 89, 297, 113, 46, 385, 154, 55, 39, 98, 449, + 231, 267, 289, 297, 280, 56, 290, 513, 274, 288, + 275, 289, 336, 252, 235, 94, 200, 105, 59, 290, + 257, 386, 340, 47, 141, 142, 363, 311, 290, 312, + 284, 468, 152, 317, 268, 57, 157, 158, 383, 446, + 384, 312, 159, 531, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 262, - 469, 461, 492, 109, 119, 470, 267, 203, 116, 117, - 118, 471, 472, 289, 237, 370, 371, 253, 438, 287, - 120, 369, 289, 329, 201, 74, 381, 382, 473, 477, - 290, 327, -298, 474, 39, 439, 289, 385, 289, 290, - 268, 361, 75, 48, 362, 170, 333, 45, 55, 107, - 204, 205, 206, 290, 42, 290, 46, 56, 203, 116, - 117, 118, 43, 373, 386, 121, 122, 123, 413, 367, - 421, 256, 458, 504, 211, 364, 425, 426, 263, 105, - 50, 464, 374, 368, 181, 108, 47, 57, 375, 207, - 388, 538, 119, 332, 84, 85, 124, 380, 338, 523, - 405, 204, 205, 206, 159, 451, 467, 389, 120, 49, - 453, 454, -264, 203, 116, 117, 118, 112, 259, 466, - 73, 109, 181, 53, 374, 208, 234, 468, 450, 533, - 452, 408, 154, 63, 127, 289, 411, 428, 209, 127, - 207, 500, 279, 119, 502, 289, 289, 499, 289, 60, - 409, 67, 290, 121, 122, 123, 204, 205, 206, 120, - 78, 483, 290, 290, 315, 290, 279, 493, 73, 469, - 315, 210, 211, 289, 470, 525, 208, 68, 70, 212, - 471, 472, 80, 455, 124, 495, 79, 497, 498, 209, - 290, 297, 81, 406, 460, 207, 87, 473, 119, 82, - 494, -298, 474, 327, 121, 122, 123, 203, 116, 117, - 118, 90, 506, 517, 120, 327, 518, 91, 203, 116, - 117, 118, 210, 211, 308, 309, 310, 311, 99, 312, - 212, 208, 100, 522, 102, 124, 315, 526, 103, 203, - 116, 117, 118, 528, 209, 545, 327, 115, 315, 136, - 204, 205, 206, 138, 139, 143, 145, 468, 146, 121, - 122, 123, 205, 206, 148, 151, 503, 182, 183, 184, - 185, 186, 187, 116, 543, 156, 546, 210, 211, 74, - 161, -265, 282, 205, 206, 212, 118, 163, 165, 207, - 124, 166, 119, 171, 291, 173, 178, 179, 180, 469, - 207, 197, 181, 119, 470, 198, 232, 239, 120, 236, - 471, 472, 242, 292, 536, 245, 112, 264, 15, 120, - 273, 207, 276, 277, 119, 208, 313, 473, 285, 278, - 319, 292, 474, 316, 320, 321, 283, 324, 209, 339, - 120, 327, 341, 334, 359, 342, 360, 73, 376, 209, - 407, 379, 387, 121, 122, 123, 423, 283, 429, 430, - 432, 433, 434, 537, 121, 122, 123, 443, 448, 385, - 209, 210, 211, 447, 459, 289, 312, 462, 293, 212, - 465, 463, 210, 211, 124, 121, 122, 123, 296, 476, - 212, 481, 484, 485, 297, 124, 486, 487, 294, 488, - 490, 489, 501, 210, 211, 295, 296, 505, 508, 507, - 509, 212, 297, 298, 510, 511, 124, 512, -301, -301, - 514, 515, -301, -301, 516, 306, 307, 308, 309, 310, - 311, 532, 312, 299, 300, 301, 302, 303, 519, 520, - 304, 305, -300, 306, 307, 308, 309, 310, 311, 1, - 312, 535, 521, 542, 1, 524, 101, 2, 527, 534, - 292, 72, 2, 541, 3, 275, 549, 412, 4, 3, - 410, 244, 496, 4, 318, 445, 491, 202, 372, 5, - 548, 530, 6, 7, 5, 365, 424, 6, 7, 330, - 529, 0, 422, 0, 8, 9, 160, 0, 0, 8, - 9, 0, 0, 0, 0, 10, 0, 293, 11, 0, - 10, 292, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 457, 0, 0, 0, 0, 0, 377, 0, 12, - 0, 0, 0, 13, 12, 296, 0, 292, 13, 0, - 0, 297, 298, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 14, 15, 0, 0, 0, 293, 15, - 0, 0, 299, 300, 301, 302, 303, 0, 0, 304, - 305, 0, 306, 307, 308, 309, 310, 311, 377, 312, - 0, 0, 0, 0, -301, 0, 296, 0, 0, 0, - 0, 0, 297, 298, 0, 16, 17, 18, 0, 0, - 16, 17, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 296, 299, 300, 301, 302, 303, 297, -301, - 304, 305, 0, 306, 307, 308, 309, 310, 311, 0, - 312, 0, 0, 0, 0, 0, 0, 0, 0, -301, - -301, -301, 302, 303, 0, 0, 304, 305, 0, 306, - 307, 308, 309, 310, 311, 343, 312, 0, 0, 0, - 344, 0, 345, 346, 347, 0, 348, 0, 0, 0, - 0, 0, 0, 0, 349, 182, 183, 184, 185, 186, - 187, 188, 189, 190, 191, 192, 193, 0, 0, 0, + 42, 461, 492, 380, 119, 436, 201, 237, 203, 116, + 117, 118, 469, 369, 175, 370, 371, 470, 289, 287, + 120, 43, 289, 471, 472, 253, 381, 382, 329, 477, + 327, 74, 176, 279, 450, 290, 333, 289, 437, 290, + 473, 289, 73, 48, -298, 474, 289, 49, 234, 170, + 204, 205, 206, 50, 290, 107, 65, 66, 290, 203, + 116, 117, 118, 290, 364, 121, 122, 123, 367, 211, + 421, 256, 458, 504, 413, 53, 425, 426, 263, 456, + 373, 438, 314, 368, 327, 315, 60, 289, 500, 207, + 108, 537, 119, 107, 322, 289, 124, 323, 439, 374, + 405, 204, 205, 206, 290, 375, 467, 523, 120, 63, + 453, 454, 290, 297, 203, 116, 117, 118, 259, 388, + 361, 67, 112, 362, -264, 208, 109, 78, 108, 533, + 332, 70, 154, 79, 127, 338, 389, 428, 209, 127, + 207, 68, 451, 119, 502, 80, 308, 309, 310, 311, + 409, 312, 82, 121, 122, 123, 204, 205, 206, 120, + 408, 374, 84, 85, 109, 411, 279, 452, 73, 81, + 87, 210, 211, 289, 464, 499, 208, 181, 466, 212, + 468, 181, 90, 455, 124, 495, 99, 497, 498, 209, + 290, 91, 100, 406, 460, 207, 102, 103, 119, 203, + 116, 117, 118, 115, 121, 122, 123, 136, 203, 116, + 117, 118, 483, 493, 120, 315, 315, 289, 138, 525, + 139, 469, 210, 211, 494, 506, 470, 327, 327, 143, + 212, 208, 471, 472, 290, 124, 517, 526, 145, 518, + 146, 204, 205, 206, 209, 468, 148, 151, 116, 473, + 282, 205, 206, -298, 474, 522, 156, 118, 315, 121, + 122, 123, 528, 165, 544, 327, 503, 315, 203, 116, + 117, 118, 163, 542, 166, 545, 74, 210, 211, 161, + 207, 171, 173, 119, 178, 212, 469, 179, 180, 207, + 124, 470, 119, 181, 197, 198, 232, 471, 472, 120, + 236, 535, 239, 242, 245, 112, 264, 291, 120, 15, + 273, 205, 206, 276, 473, 277, 208, 278, 313, 474, + 285, 320, 319, 316, 321, 283, 324, 342, 339, 209, + 327, 334, 341, -265, 359, 360, 73, 376, 209, 379, + 387, 407, 423, 292, 121, 122, 123, 429, 430, 207, + 536, 432, 119, 121, 122, 123, 433, 434, 443, 448, + 447, 385, 210, 211, 289, 459, 462, 312, 120, 465, + 212, 210, 211, 481, 463, 124, 484, 476, 485, 212, + 486, 487, 488, 489, 124, 283, 501, 508, 490, 505, + 293, 182, 183, 184, 185, 186, 187, 507, 209, 509, + 510, 511, 514, 512, 534, 516, 515, 519, 101, 520, + 294, 521, 524, 121, 122, 123, 527, 295, 296, 532, + 72, 540, 541, 275, 297, 298, 244, 548, -300, 412, + 410, 210, 211, 445, 491, 1, 496, 202, 424, 212, + 372, 318, 530, 2, 124, 299, 300, 301, 302, 303, + 3, 547, 304, 305, 4, 306, 307, 308, 309, 310, + 311, 365, 312, 422, 5, 160, 1, 6, 7, 529, + 330, 0, 0, 0, 2, 0, 0, 0, 0, 8, + 9, 3, 0, 0, 0, 4, 0, 292, 0, 0, + 10, 0, 0, 11, 0, 5, 0, 0, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 350, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 351, 0, 352, - 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 354, 0, 0, 0, 355, 0, - 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 357 + 8, 9, 0, 0, 12, 0, 0, 0, 13, 0, + 0, 10, 0, 0, 11, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 293, 0, 0, 0, 0, 15, + 292, 0, 0, 0, 0, 12, 0, 0, 457, 13, + 0, 0, 0, 0, 377, 0, 0, 0, 292, 0, + 0, 0, 296, 0, 14, 0, 0, 0, 297, 298, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 17, 18, 0, 0, 0, 0, 293, 0, 299, + 300, 301, 302, 303, 0, 0, 304, 305, 0, 306, + 307, 308, 309, 310, 311, -301, 312, 377, 292, 0, + 0, 16, 17, 18, 0, 296, 0, 0, 0, 0, + 0, 297, 298, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 296, 0, 0, 0, 0, 0, 297, + -301, 0, 299, 300, 301, 302, 303, 0, 0, 304, + 305, 0, 306, 307, 308, 309, 310, 311, 0, 312, + -301, -301, -301, 302, 303, 0, 0, 304, 305, 0, + 306, 307, 308, 309, 310, 311, 0, 312, 0, 0, + 0, 0, 0, 296, 0, 343, 0, 0, 0, 297, + 344, 345, 346, 347, 0, 348, 0, 0, 0, 0, + 0, 0, 0, 349, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -301, -301, 0, 0, -301, -301, 0, + 306, 307, 308, 309, 310, 311, 0, 312, 0, 350, + 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, + 192, 193, 0, 0, 0, 0, 351, 0, 352, 353, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 354, 0, 0, 0, 355, 0, 356, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 }; static const yytype_int16 yycheck[] = { 143, 74, 2, 93, 94, 5, 55, 56, 57, 94, - 10, 103, 12, 200, 149, 208, 3, 210, 80, 285, - 341, 3, 110, 51, 3, 113, 113, 3, 58, 3, - 173, 12, 175, 176, 19, 135, 55, 94, 83, 360, - 4, 5, 6, 179, 77, 476, 90, 174, 48, 115, - 50, 9, 179, 135, 73, 145, 17, 18, 58, 125, - 145, 27, 115, 94, 207, 176, 132, 3, 179, 212, - 167, 115, 116, 173, 147, 60, 133, 174, 25, 132, - 176, 512, 55, 179, 84, 85, 273, 45, 132, 171, - 283, 173, 92, 236, 125, 61, 96, 97, 291, 365, - 293, 175, 3, 177, 297, 298, 299, 300, 301, 302, + 10, 103, 12, 200, 149, 208, 113, 210, 80, 285, + 341, 12, 50, 3, 3, 3, 110, 3, 3, 113, + 173, 82, 175, 176, 57, 179, 93, 3, 19, 360, + 37, 4, 5, 6, 70, 93, 89, 3, 48, 114, + 50, 134, 77, 79, 100, 145, 70, 26, 58, 124, + 145, 27, 114, 134, 207, 79, 131, 476, 174, 212, + 176, 114, 115, 167, 147, 132, 124, 74, 59, 131, + 174, 127, 54, 109, 84, 85, 273, 170, 131, 172, + 283, 25, 92, 236, 60, 109, 96, 97, 291, 365, + 293, 172, 99, 512, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 181, - 67, 387, 443, 81, 88, 72, 27, 3, 4, 5, - 6, 78, 79, 115, 179, 278, 279, 170, 104, 212, - 104, 277, 115, 125, 175, 175, 289, 290, 95, 125, - 132, 179, 99, 100, 26, 121, 115, 101, 115, 132, - 61, 176, 37, 94, 179, 253, 253, 71, 71, 9, - 46, 47, 48, 132, 3, 132, 80, 80, 3, 4, - 5, 6, 3, 92, 128, 149, 150, 151, 175, 168, - 325, 334, 385, 459, 168, 176, 339, 340, 198, 74, - 98, 176, 111, 276, 179, 45, 110, 110, 117, 85, - 104, 532, 88, 252, 46, 47, 180, 176, 257, 176, - 312, 46, 47, 48, 99, 92, 413, 121, 104, 94, - 373, 374, 179, 3, 4, 5, 6, 77, 114, 176, - 58, 81, 179, 80, 111, 121, 64, 25, 108, 515, - 117, 316, 342, 152, 316, 115, 321, 342, 134, 321, - 85, 108, 111, 88, 457, 115, 115, 117, 115, 3, - 319, 0, 132, 149, 150, 151, 46, 47, 48, 104, - 3, 176, 132, 132, 179, 132, 111, 176, 58, 67, - 179, 167, 168, 115, 72, 117, 121, 178, 112, 175, - 78, 79, 175, 376, 180, 448, 177, 450, 451, 134, - 132, 135, 94, 313, 387, 85, 3, 95, 88, 127, - 176, 99, 100, 179, 149, 150, 151, 3, 4, 5, - 6, 123, 176, 176, 104, 179, 179, 127, 3, 4, - 5, 6, 167, 168, 168, 169, 170, 171, 125, 173, - 175, 121, 179, 176, 97, 180, 179, 500, 124, 3, - 4, 5, 6, 176, 134, 176, 179, 3, 179, 4, - 46, 47, 48, 121, 3, 83, 93, 25, 175, 149, - 150, 151, 47, 48, 3, 46, 459, 137, 138, 139, - 140, 141, 142, 4, 537, 3, 539, 167, 168, 175, - 175, 179, 46, 47, 48, 175, 6, 12, 176, 85, - 180, 176, 88, 114, 17, 126, 4, 4, 176, 67, - 85, 46, 179, 88, 72, 131, 3, 91, 104, 156, - 78, 79, 112, 54, 82, 3, 77, 3, 112, 104, - 125, 85, 175, 175, 88, 121, 98, 95, 173, 175, - 39, 54, 100, 175, 49, 175, 121, 94, 134, 55, - 104, 179, 175, 179, 120, 93, 175, 58, 175, 134, - 3, 176, 175, 149, 150, 151, 3, 121, 30, 175, - 175, 175, 175, 131, 149, 150, 151, 175, 94, 101, - 134, 167, 168, 176, 175, 115, 173, 104, 101, 175, - 3, 174, 167, 168, 180, 149, 150, 151, 129, 179, - 175, 70, 175, 6, 135, 180, 6, 6, 121, 6, - 104, 120, 176, 167, 168, 128, 129, 176, 99, 176, - 78, 175, 135, 136, 78, 78, 180, 99, 159, 160, - 3, 126, 163, 164, 6, 166, 167, 168, 169, 170, - 171, 175, 173, 156, 157, 158, 159, 160, 176, 176, - 163, 164, 0, 166, 167, 168, 169, 170, 171, 7, - 173, 6, 176, 175, 7, 176, 68, 15, 176, 176, - 54, 24, 15, 176, 22, 177, 176, 323, 26, 22, - 320, 155, 449, 26, 237, 362, 441, 142, 280, 37, - 542, 508, 40, 41, 37, 274, 334, 40, 41, 251, - 507, -1, 327, -1, 52, 53, 100, -1, -1, 52, - 53, -1, -1, -1, -1, 63, -1, 101, 66, -1, - 63, 54, -1, 66, -1, -1, -1, -1, -1, -1, - -1, 115, -1, -1, -1, -1, -1, 121, -1, 87, - -1, -1, -1, 91, 87, 129, -1, 54, 91, -1, - -1, 135, 136, -1, -1, -1, -1, -1, 106, -1, - -1, -1, -1, 106, 112, -1, -1, -1, 101, 112, - -1, -1, 156, 157, 158, 159, 160, -1, -1, 163, - 164, -1, 166, 167, 168, 169, 170, 171, 121, 173, - -1, -1, -1, -1, 101, -1, 129, -1, -1, -1, - -1, -1, 135, 136, -1, 153, 154, 155, -1, -1, - 153, 154, 155, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 129, 156, 157, 158, 159, 160, 135, 136, - 163, 164, -1, 166, 167, 168, 169, 170, 171, -1, - 173, -1, -1, -1, -1, -1, -1, -1, -1, 156, - 157, 158, 159, 160, -1, -1, 163, 164, -1, 166, - 167, 168, 169, 170, 171, 24, 173, -1, -1, -1, - 29, -1, 31, 32, 33, -1, 35, -1, -1, -1, - -1, -1, -1, -1, 43, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, -1, -1, -1, + 3, 387, 443, 175, 87, 27, 174, 178, 3, 4, + 5, 6, 66, 277, 54, 278, 279, 71, 114, 212, + 103, 3, 114, 77, 78, 170, 289, 290, 124, 124, + 178, 174, 72, 110, 107, 131, 253, 114, 60, 131, + 94, 114, 57, 93, 98, 99, 114, 93, 63, 253, + 45, 46, 47, 97, 131, 9, 17, 18, 131, 3, + 4, 5, 6, 131, 175, 148, 149, 150, 167, 167, + 325, 334, 385, 459, 174, 79, 339, 340, 198, 173, + 91, 103, 175, 276, 178, 178, 3, 114, 107, 84, + 44, 532, 87, 9, 175, 114, 179, 178, 120, 110, + 312, 45, 46, 47, 131, 116, 413, 175, 103, 151, + 373, 374, 131, 134, 3, 4, 5, 6, 113, 103, + 175, 0, 76, 178, 178, 120, 80, 3, 44, 515, + 252, 111, 342, 176, 316, 257, 120, 342, 133, 321, + 84, 177, 91, 87, 457, 174, 167, 168, 169, 170, + 319, 172, 126, 148, 149, 150, 45, 46, 47, 103, + 316, 110, 46, 47, 80, 321, 110, 116, 57, 93, + 3, 166, 167, 114, 175, 116, 120, 178, 175, 174, + 25, 178, 122, 376, 179, 448, 124, 450, 451, 133, + 131, 126, 178, 313, 387, 84, 96, 123, 87, 3, + 4, 5, 6, 3, 148, 149, 150, 4, 3, 4, + 5, 6, 175, 175, 103, 178, 178, 114, 120, 116, + 3, 66, 166, 167, 175, 175, 71, 178, 178, 82, + 174, 120, 77, 78, 131, 179, 175, 500, 92, 178, + 174, 45, 46, 47, 133, 25, 3, 45, 4, 94, + 45, 46, 47, 98, 99, 175, 3, 6, 178, 148, + 149, 150, 175, 175, 175, 178, 459, 178, 3, 4, + 5, 6, 12, 536, 175, 538, 174, 166, 167, 174, + 84, 113, 125, 87, 4, 174, 66, 4, 175, 84, + 179, 71, 87, 178, 45, 130, 3, 77, 78, 103, + 155, 81, 90, 111, 3, 76, 3, 17, 103, 111, + 124, 46, 47, 174, 94, 174, 120, 174, 97, 99, + 172, 48, 38, 174, 174, 120, 93, 92, 54, 133, + 178, 178, 174, 178, 119, 174, 57, 174, 133, 175, + 174, 3, 3, 53, 148, 149, 150, 174, 174, 84, + 130, 174, 87, 148, 149, 150, 174, 174, 174, 93, + 175, 100, 166, 167, 114, 174, 103, 172, 103, 3, + 174, 166, 167, 69, 173, 179, 6, 178, 6, 174, + 6, 6, 6, 119, 179, 120, 175, 98, 103, 175, + 100, 136, 137, 138, 139, 140, 141, 175, 133, 77, + 77, 77, 3, 98, 6, 175, 125, 175, 68, 175, + 120, 175, 175, 148, 149, 150, 175, 127, 128, 174, + 24, 175, 174, 176, 134, 135, 155, 175, 0, 323, + 320, 166, 167, 362, 441, 7, 449, 142, 334, 174, + 280, 237, 508, 15, 179, 155, 156, 157, 158, 159, + 22, 541, 162, 163, 26, 165, 166, 167, 168, 169, + 170, 274, 172, 327, 36, 100, 7, 39, 40, 507, + 251, -1, -1, -1, 15, -1, -1, -1, -1, 51, + 52, 22, -1, -1, -1, 26, -1, 53, -1, -1, + 62, -1, -1, 65, -1, 36, -1, -1, 39, 40, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 51, 52, -1, -1, 86, -1, -1, -1, 90, -1, + -1, 62, -1, -1, 65, -1, -1, -1, -1, -1, + -1, -1, -1, 105, 100, -1, -1, -1, -1, 111, + 53, -1, -1, -1, -1, 86, -1, -1, 114, 90, + -1, -1, -1, -1, 120, -1, -1, -1, 53, -1, + -1, -1, 128, -1, 105, -1, -1, -1, 134, 135, + 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 152, 153, 154, -1, -1, -1, -1, 100, -1, 155, + 156, 157, 158, 159, -1, -1, 162, 163, -1, 165, + 166, 167, 168, 169, 170, 100, 172, 120, 53, -1, + -1, 152, 153, 154, -1, 128, -1, -1, -1, -1, + -1, 134, 135, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 128, -1, -1, -1, -1, -1, 134, + 135, -1, 155, 156, 157, 158, 159, -1, -1, 162, + 163, -1, 165, 166, 167, 168, 169, 170, -1, 172, + 155, 156, 157, 158, 159, -1, -1, 162, 163, -1, + 165, 166, 167, 168, 169, 170, -1, 172, -1, -1, + -1, -1, -1, 128, -1, 24, -1, -1, -1, 134, + 29, 30, 31, 32, -1, 34, -1, -1, -1, -1, + -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 158, 159, -1, -1, 162, 163, -1, + 165, 166, 167, 168, 169, 170, -1, 172, -1, 68, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, -1, -1, -1, -1, 85, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 86, -1, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, - 109, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 119 + -1, -1, -1, 102, -1, -1, -1, 106, -1, 108, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 118 }; /* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of state STATE-NUM. */ static const yytype_int16 yystos[] = { - 0, 7, 15, 22, 26, 37, 40, 41, 52, 53, - 63, 66, 87, 91, 106, 112, 153, 154, 155, 182, - 183, 184, 185, 189, 191, 193, 194, 198, 199, 200, - 212, 214, 217, 218, 219, 221, 224, 292, 293, 26, - 3, 286, 3, 3, 286, 71, 80, 110, 94, 94, - 98, 285, 286, 80, 286, 71, 80, 110, 19, 60, - 3, 294, 295, 152, 190, 190, 190, 0, 178, 299, - 112, 186, 186, 58, 175, 227, 228, 232, 3, 177, - 175, 94, 127, 201, 201, 201, 286, 3, 195, 286, - 123, 127, 213, 94, 133, 213, 213, 213, 286, 125, - 179, 184, 97, 124, 244, 227, 228, 9, 45, 81, - 229, 230, 77, 229, 240, 3, 4, 5, 6, 88, - 104, 149, 150, 151, 180, 247, 248, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 4, 192, 121, 3, - 287, 286, 286, 83, 237, 93, 175, 220, 3, 222, - 223, 46, 286, 196, 272, 196, 3, 286, 286, 227, - 295, 175, 275, 12, 233, 176, 176, 225, 226, 227, - 232, 114, 231, 126, 225, 55, 73, 245, 4, 4, - 176, 179, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 264, 265, 266, 46, 131, 94, - 125, 175, 220, 3, 46, 47, 48, 85, 121, 134, - 167, 168, 175, 250, 251, 252, 253, 254, 255, 256, - 257, 259, 260, 261, 262, 263, 267, 268, 269, 270, - 271, 196, 3, 300, 64, 228, 156, 179, 237, 91, - 215, 216, 112, 197, 197, 3, 187, 188, 234, 246, - 249, 250, 240, 229, 241, 242, 250, 240, 250, 114, - 250, 264, 271, 286, 3, 224, 3, 27, 61, 202, - 203, 204, 211, 125, 175, 177, 175, 175, 175, 111, - 250, 258, 46, 121, 251, 173, 251, 228, 250, 115, - 132, 17, 54, 101, 121, 128, 129, 135, 136, 156, - 157, 158, 159, 160, 163, 164, 166, 167, 168, 169, - 170, 171, 173, 98, 176, 179, 175, 250, 223, 39, - 49, 175, 176, 179, 94, 235, 236, 179, 3, 125, - 290, 291, 245, 225, 179, 90, 116, 243, 245, 55, - 55, 175, 93, 24, 29, 31, 32, 33, 35, 43, - 69, 86, 88, 89, 103, 107, 109, 119, 205, 120, - 175, 176, 179, 224, 176, 233, 3, 168, 228, 264, - 250, 250, 258, 92, 111, 117, 175, 121, 246, 176, - 176, 250, 250, 251, 251, 101, 128, 175, 104, 121, - 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, - 251, 251, 251, 251, 251, 275, 286, 3, 248, 213, - 195, 248, 188, 175, 280, 281, 282, 283, 284, 286, - 296, 237, 249, 3, 242, 250, 250, 300, 196, 30, - 175, 207, 175, 175, 175, 206, 27, 61, 104, 121, - 208, 209, 210, 175, 300, 203, 246, 176, 94, 125, - 108, 92, 117, 250, 250, 228, 174, 115, 251, 175, - 228, 246, 104, 174, 176, 3, 176, 224, 25, 67, - 72, 78, 79, 95, 100, 297, 179, 125, 288, 289, - 290, 70, 238, 176, 175, 6, 6, 6, 6, 120, - 104, 210, 300, 176, 176, 250, 205, 250, 250, 117, - 108, 176, 251, 228, 246, 176, 176, 176, 99, 78, - 78, 78, 99, 281, 3, 126, 6, 176, 179, 176, - 176, 176, 176, 176, 176, 117, 250, 176, 176, 289, - 282, 281, 175, 246, 176, 6, 82, 131, 300, 51, - 239, 176, 175, 250, 298, 176, 250, 3, 270, 176 + 0, 7, 15, 22, 26, 36, 39, 40, 51, 52, + 62, 65, 86, 90, 105, 111, 152, 153, 154, 181, + 182, 183, 184, 188, 190, 192, 193, 197, 198, 199, + 211, 213, 216, 217, 218, 220, 223, 291, 292, 26, + 3, 285, 3, 3, 285, 70, 79, 109, 93, 93, + 97, 284, 285, 79, 285, 70, 79, 109, 19, 59, + 3, 293, 294, 151, 189, 189, 189, 0, 177, 298, + 111, 185, 185, 57, 174, 226, 227, 231, 3, 176, + 174, 93, 126, 200, 200, 200, 285, 3, 194, 285, + 122, 126, 212, 93, 132, 212, 212, 212, 285, 124, + 178, 183, 96, 123, 243, 226, 227, 9, 44, 80, + 228, 229, 76, 228, 239, 3, 4, 5, 6, 87, + 103, 148, 149, 150, 179, 246, 247, 270, 271, 272, + 273, 274, 275, 276, 277, 278, 4, 191, 120, 3, + 286, 285, 285, 82, 236, 92, 174, 219, 3, 221, + 222, 45, 285, 195, 271, 195, 3, 285, 285, 226, + 294, 174, 274, 12, 232, 175, 175, 224, 225, 226, + 231, 113, 230, 125, 224, 54, 72, 244, 4, 4, + 175, 178, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 263, 264, 265, 45, 130, 93, + 124, 174, 219, 3, 45, 46, 47, 84, 120, 133, + 166, 167, 174, 249, 250, 251, 252, 253, 254, 255, + 256, 258, 259, 260, 261, 262, 266, 267, 268, 269, + 270, 195, 3, 299, 63, 227, 155, 178, 236, 90, + 214, 215, 111, 196, 196, 3, 186, 187, 233, 245, + 248, 249, 239, 228, 240, 241, 249, 239, 249, 113, + 249, 263, 270, 285, 3, 223, 3, 27, 60, 201, + 202, 203, 210, 124, 174, 176, 174, 174, 174, 110, + 249, 257, 45, 120, 250, 172, 250, 227, 249, 114, + 131, 17, 53, 100, 120, 127, 128, 134, 135, 155, + 156, 157, 158, 159, 162, 163, 165, 166, 167, 168, + 169, 170, 172, 97, 175, 178, 174, 249, 222, 38, + 48, 174, 175, 178, 93, 234, 235, 178, 3, 124, + 289, 290, 244, 224, 178, 89, 115, 242, 244, 54, + 54, 174, 92, 24, 29, 30, 31, 32, 34, 42, + 68, 85, 87, 88, 102, 106, 108, 118, 204, 119, + 174, 175, 178, 223, 175, 232, 3, 167, 227, 263, + 249, 249, 257, 91, 110, 116, 174, 120, 245, 175, + 175, 249, 249, 250, 250, 100, 127, 174, 103, 120, + 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, + 250, 250, 250, 250, 250, 274, 285, 3, 247, 212, + 194, 247, 187, 174, 279, 280, 281, 282, 283, 285, + 295, 236, 248, 3, 241, 249, 249, 299, 195, 174, + 174, 206, 174, 174, 174, 205, 27, 60, 103, 120, + 207, 208, 209, 174, 299, 202, 245, 175, 93, 124, + 107, 91, 116, 249, 249, 227, 173, 114, 250, 174, + 227, 245, 103, 173, 175, 3, 175, 223, 25, 66, + 71, 77, 78, 94, 99, 296, 178, 124, 287, 288, + 289, 69, 237, 175, 6, 6, 6, 6, 6, 119, + 103, 209, 299, 175, 175, 249, 204, 249, 249, 116, + 107, 175, 250, 227, 245, 175, 175, 175, 98, 77, + 77, 77, 98, 280, 3, 125, 175, 175, 178, 175, + 175, 175, 175, 175, 175, 116, 249, 175, 175, 288, + 281, 280, 174, 245, 6, 81, 130, 299, 50, 238, + 175, 174, 249, 297, 175, 249, 3, 269, 175 }; /* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */ static const yytype_int16 yyr1[] = { - 0, 181, 182, 183, 183, 184, 184, 184, 184, 184, - 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, - 186, 186, 187, 187, 188, 188, 189, 189, 189, 190, - 190, 191, 192, 193, 193, 194, 194, 195, 196, 197, - 197, 198, 199, 199, 199, 200, 200, 200, 200, 200, - 201, 201, 202, 202, 203, 203, 204, 205, 205, 205, - 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, - 205, 205, 206, 206, 207, 207, 207, 208, 208, 209, - 209, 210, 210, 210, 210, 211, 211, 212, 212, 212, - 212, 213, 213, 214, 215, 216, 217, 218, 219, 219, - 220, 220, 221, 222, 222, 223, 224, 224, 224, 225, - 225, 226, 226, 227, 227, 228, 228, 229, 230, 230, - 230, 231, 231, 232, 233, 233, 234, 235, 235, 236, - 237, 237, 238, 238, 239, 239, 240, 240, 241, 241, - 242, 243, 243, 243, 244, 244, 245, 245, 245, 245, - 245, 245, 246, 246, 247, 247, 248, 248, 249, 250, - 250, 250, 250, 250, 251, 251, 251, 251, 251, 251, - 251, 251, 251, 251, 251, 252, 252, 253, 253, 253, - 253, 253, 254, 254, 254, 254, 254, 254, 254, 254, - 254, 254, 254, 255, 255, 256, 256, 256, 256, 257, - 257, 257, 257, 258, 258, 259, 259, 260, 260, 260, - 260, 260, 260, 260, 261, 261, 262, 263, 264, 264, - 264, 264, 264, 264, 265, 265, 265, 265, 265, 265, - 266, 266, 267, 268, 269, 270, 270, 270, 270, 271, - 271, 271, 271, 271, 271, 271, 272, 273, 273, 274, - 274, 275, 276, 277, 278, 278, 278, 279, 280, 280, - 281, 281, 282, 282, 283, 283, 284, 285, 286, 286, - 287, 287, 288, 288, 289, 289, 290, 290, 291, 291, - 292, 292, 293, 294, 294, 295, 296, 296, 296, 297, - 297, 297, 297, 297, 297, 297, 297, 297, 297, 298, - 299, 299, 300, 300 + 0, 180, 181, 182, 182, 183, 183, 183, 183, 183, + 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, + 185, 185, 186, 186, 187, 187, 188, 188, 188, 189, + 189, 190, 191, 192, 192, 193, 193, 194, 195, 196, + 196, 197, 198, 198, 198, 199, 199, 199, 199, 199, + 200, 200, 201, 201, 202, 202, 203, 204, 204, 204, + 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, + 204, 204, 205, 205, 206, 206, 206, 207, 207, 208, + 208, 209, 209, 209, 209, 210, 210, 211, 211, 211, + 211, 212, 212, 213, 214, 215, 216, 217, 218, 218, + 219, 219, 220, 221, 221, 222, 223, 223, 223, 224, + 224, 225, 225, 226, 226, 227, 227, 228, 229, 229, + 229, 230, 230, 231, 232, 232, 233, 234, 234, 235, + 236, 236, 237, 237, 238, 238, 239, 239, 240, 240, + 241, 242, 242, 242, 243, 243, 244, 244, 244, 244, + 244, 244, 245, 245, 246, 246, 247, 247, 248, 249, + 249, 249, 249, 249, 250, 250, 250, 250, 250, 250, + 250, 250, 250, 250, 250, 251, 251, 252, 252, 252, + 252, 252, 253, 253, 253, 253, 253, 253, 253, 253, + 253, 253, 253, 254, 254, 255, 255, 255, 255, 256, + 256, 256, 256, 257, 257, 258, 258, 259, 259, 259, + 259, 259, 259, 259, 260, 260, 261, 262, 263, 263, + 263, 263, 263, 263, 264, 264, 264, 264, 264, 264, + 265, 265, 266, 267, 268, 269, 269, 269, 269, 270, + 270, 270, 270, 270, 270, 270, 271, 272, 272, 273, + 273, 274, 275, 276, 277, 277, 277, 278, 279, 279, + 280, 280, 281, 281, 282, 282, 283, 284, 285, 285, + 286, 286, 287, 287, 288, 288, 289, 289, 290, 290, + 291, 291, 292, 293, 293, 294, 295, 295, 295, 296, + 296, 296, 296, 296, 296, 296, 296, 296, 296, 297, + 298, 298, 299, 299 }; /* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */ @@ -1408,7 +1411,7 @@ static const yytype_int8 yyr2[] = 5, 0, 1, 3, 1, 4, 2, 2, 2, 1, 0, 4, 1, 2, 5, 7, 5, 1, 1, 3, 0, 5, 2, 3, 2, 8, 7, 6, 9, 7, - 3, 0, 1, 3, 1, 1, 3, 1, 4, 5, + 3, 0, 1, 3, 1, 1, 3, 1, 4, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 4, 3, 0, 5, 3, 0, 1, 0, 1, 2, 2, 1, 1, 2, 5, 4, 4, 4, 3, @@ -1999,25 +2002,25 @@ yydestruct (const char *yymsg, case YYSYMBOL_IDENTIFIER: /* IDENTIFIER */ #line 163 "bison_parser.y" { free( (((*yyvaluep).sval)) ); } -#line 2003 "bison_parser.cpp" +#line 2006 "bison_parser.cpp" break; case YYSYMBOL_STRING: /* STRING */ #line 163 "bison_parser.y" { free( (((*yyvaluep).sval)) ); } -#line 2009 "bison_parser.cpp" +#line 2012 "bison_parser.cpp" break; case YYSYMBOL_FLOATVAL: /* FLOATVAL */ #line 161 "bison_parser.y" { } -#line 2015 "bison_parser.cpp" +#line 2018 "bison_parser.cpp" break; case YYSYMBOL_INTVAL: /* INTVAL */ #line 161 "bison_parser.y" { } -#line 2021 "bison_parser.cpp" +#line 2024 "bison_parser.cpp" break; case YYSYMBOL_statement_list: /* statement_list */ @@ -2030,19 +2033,19 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).stmt_vec)); } -#line 2034 "bison_parser.cpp" +#line 2037 "bison_parser.cpp" break; case YYSYMBOL_statement: /* statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).statement)); } -#line 2040 "bison_parser.cpp" +#line 2043 "bison_parser.cpp" break; case YYSYMBOL_preparable_statement: /* preparable_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).statement)); } -#line 2046 "bison_parser.cpp" +#line 2049 "bison_parser.cpp" break; case YYSYMBOL_opt_hints: /* opt_hints */ @@ -2055,7 +2058,7 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2059 "bison_parser.cpp" +#line 2062 "bison_parser.cpp" break; case YYSYMBOL_hint_list: /* hint_list */ @@ -2068,85 +2071,85 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2072 "bison_parser.cpp" +#line 2075 "bison_parser.cpp" break; case YYSYMBOL_hint: /* hint */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2078 "bison_parser.cpp" +#line 2081 "bison_parser.cpp" break; case YYSYMBOL_transaction_statement: /* transaction_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).transaction_stmt)); } -#line 2084 "bison_parser.cpp" +#line 2087 "bison_parser.cpp" break; case YYSYMBOL_prepare_statement: /* prepare_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).prep_stmt)); } -#line 2090 "bison_parser.cpp" +#line 2093 "bison_parser.cpp" break; case YYSYMBOL_prepare_target_query: /* prepare_target_query */ #line 163 "bison_parser.y" { free( (((*yyvaluep).sval)) ); } -#line 2096 "bison_parser.cpp" +#line 2099 "bison_parser.cpp" break; case YYSYMBOL_execute_statement: /* execute_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).exec_stmt)); } -#line 2102 "bison_parser.cpp" +#line 2105 "bison_parser.cpp" break; case YYSYMBOL_import_statement: /* import_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).import_stmt)); } -#line 2108 "bison_parser.cpp" +#line 2111 "bison_parser.cpp" break; case YYSYMBOL_file_type: /* file_type */ #line 161 "bison_parser.y" { } -#line 2114 "bison_parser.cpp" +#line 2117 "bison_parser.cpp" break; case YYSYMBOL_file_path: /* file_path */ #line 163 "bison_parser.y" { free( (((*yyvaluep).sval)) ); } -#line 2120 "bison_parser.cpp" +#line 2123 "bison_parser.cpp" break; case YYSYMBOL_opt_file_type: /* opt_file_type */ #line 161 "bison_parser.y" { } -#line 2126 "bison_parser.cpp" +#line 2129 "bison_parser.cpp" break; case YYSYMBOL_export_statement: /* export_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).export_stmt)); } -#line 2132 "bison_parser.cpp" +#line 2135 "bison_parser.cpp" break; case YYSYMBOL_show_statement: /* show_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).show_stmt)); } -#line 2138 "bison_parser.cpp" +#line 2141 "bison_parser.cpp" break; case YYSYMBOL_create_statement: /* create_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).create_stmt)); } -#line 2144 "bison_parser.cpp" +#line 2147 "bison_parser.cpp" break; case YYSYMBOL_opt_not_exists: /* opt_not_exists */ #line 161 "bison_parser.y" { } -#line 2150 "bison_parser.cpp" +#line 2153 "bison_parser.cpp" break; case YYSYMBOL_table_elem_commalist: /* table_elem_commalist */ @@ -2159,109 +2162,109 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).table_element_vec)); } -#line 2163 "bison_parser.cpp" +#line 2166 "bison_parser.cpp" break; case YYSYMBOL_table_elem: /* table_elem */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table_element_t)); } -#line 2169 "bison_parser.cpp" +#line 2172 "bison_parser.cpp" break; case YYSYMBOL_column_def: /* column_def */ #line 172 "bison_parser.y" { delete (((*yyvaluep).column_t)); } -#line 2175 "bison_parser.cpp" +#line 2178 "bison_parser.cpp" break; case YYSYMBOL_column_type: /* column_type */ #line 161 "bison_parser.y" { } -#line 2181 "bison_parser.cpp" +#line 2184 "bison_parser.cpp" break; case YYSYMBOL_opt_time_precision: /* opt_time_precision */ #line 161 "bison_parser.y" { } -#line 2187 "bison_parser.cpp" +#line 2190 "bison_parser.cpp" break; case YYSYMBOL_opt_decimal_specification: /* opt_decimal_specification */ #line 172 "bison_parser.y" { delete (((*yyvaluep).ival_pair)); } -#line 2193 "bison_parser.cpp" +#line 2196 "bison_parser.cpp" break; case YYSYMBOL_opt_column_constraints: /* opt_column_constraints */ #line 161 "bison_parser.y" { } -#line 2199 "bison_parser.cpp" +#line 2202 "bison_parser.cpp" break; case YYSYMBOL_column_constraint_list: /* column_constraint_list */ #line 161 "bison_parser.y" { } -#line 2205 "bison_parser.cpp" +#line 2208 "bison_parser.cpp" break; case YYSYMBOL_column_constraint: /* column_constraint */ #line 161 "bison_parser.y" { } -#line 2211 "bison_parser.cpp" +#line 2214 "bison_parser.cpp" break; case YYSYMBOL_table_constraint: /* table_constraint */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table_constraint_t)); } -#line 2217 "bison_parser.cpp" +#line 2220 "bison_parser.cpp" break; case YYSYMBOL_drop_statement: /* drop_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).drop_stmt)); } -#line 2223 "bison_parser.cpp" +#line 2226 "bison_parser.cpp" break; case YYSYMBOL_opt_exists: /* opt_exists */ #line 161 "bison_parser.y" { } -#line 2229 "bison_parser.cpp" +#line 2232 "bison_parser.cpp" break; case YYSYMBOL_alter_statement: /* alter_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alter_stmt)); } -#line 2235 "bison_parser.cpp" +#line 2238 "bison_parser.cpp" break; case YYSYMBOL_alter_action: /* alter_action */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alter_action_t)); } -#line 2241 "bison_parser.cpp" +#line 2244 "bison_parser.cpp" break; case YYSYMBOL_drop_action: /* drop_action */ #line 172 "bison_parser.y" { delete (((*yyvaluep).drop_action_t)); } -#line 2247 "bison_parser.cpp" +#line 2250 "bison_parser.cpp" break; case YYSYMBOL_delete_statement: /* delete_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).delete_stmt)); } -#line 2253 "bison_parser.cpp" +#line 2256 "bison_parser.cpp" break; case YYSYMBOL_truncate_statement: /* truncate_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).delete_stmt)); } -#line 2259 "bison_parser.cpp" +#line 2262 "bison_parser.cpp" break; case YYSYMBOL_insert_statement: /* insert_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).insert_stmt)); } -#line 2265 "bison_parser.cpp" +#line 2268 "bison_parser.cpp" break; case YYSYMBOL_opt_column_list: /* opt_column_list */ @@ -2274,13 +2277,13 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).str_vec)); } -#line 2278 "bison_parser.cpp" +#line 2281 "bison_parser.cpp" break; case YYSYMBOL_update_statement: /* update_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).update_stmt)); } -#line 2284 "bison_parser.cpp" +#line 2287 "bison_parser.cpp" break; case YYSYMBOL_update_clause_commalist: /* update_clause_commalist */ @@ -2293,73 +2296,73 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).update_vec)); } -#line 2297 "bison_parser.cpp" +#line 2300 "bison_parser.cpp" break; case YYSYMBOL_update_clause: /* update_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).update_t)); } -#line 2303 "bison_parser.cpp" +#line 2306 "bison_parser.cpp" break; case YYSYMBOL_select_statement: /* select_statement */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2309 "bison_parser.cpp" +#line 2312 "bison_parser.cpp" break; case YYSYMBOL_select_within_set_operation: /* select_within_set_operation */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2315 "bison_parser.cpp" +#line 2318 "bison_parser.cpp" break; case YYSYMBOL_select_within_set_operation_no_parentheses: /* select_within_set_operation_no_parentheses */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2321 "bison_parser.cpp" +#line 2324 "bison_parser.cpp" break; case YYSYMBOL_select_with_paren: /* select_with_paren */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2327 "bison_parser.cpp" +#line 2330 "bison_parser.cpp" break; case YYSYMBOL_select_no_paren: /* select_no_paren */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2333 "bison_parser.cpp" +#line 2336 "bison_parser.cpp" break; case YYSYMBOL_set_operator: /* set_operator */ #line 172 "bison_parser.y" { delete (((*yyvaluep).set_operator_t)); } -#line 2339 "bison_parser.cpp" +#line 2342 "bison_parser.cpp" break; case YYSYMBOL_set_type: /* set_type */ #line 172 "bison_parser.y" { delete (((*yyvaluep).set_operator_t)); } -#line 2345 "bison_parser.cpp" +#line 2348 "bison_parser.cpp" break; case YYSYMBOL_opt_all: /* opt_all */ #line 161 "bison_parser.y" { } -#line 2351 "bison_parser.cpp" +#line 2354 "bison_parser.cpp" break; case YYSYMBOL_select_clause: /* select_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).select_stmt)); } -#line 2357 "bison_parser.cpp" +#line 2360 "bison_parser.cpp" break; case YYSYMBOL_opt_distinct: /* opt_distinct */ #line 161 "bison_parser.y" { } -#line 2363 "bison_parser.cpp" +#line 2366 "bison_parser.cpp" break; case YYSYMBOL_select_list: /* select_list */ @@ -2372,37 +2375,37 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2376 "bison_parser.cpp" +#line 2379 "bison_parser.cpp" break; case YYSYMBOL_opt_from_clause: /* opt_from_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2382 "bison_parser.cpp" +#line 2385 "bison_parser.cpp" break; case YYSYMBOL_from_clause: /* from_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2388 "bison_parser.cpp" +#line 2391 "bison_parser.cpp" break; case YYSYMBOL_opt_where: /* opt_where */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2394 "bison_parser.cpp" +#line 2397 "bison_parser.cpp" break; case YYSYMBOL_opt_group: /* opt_group */ #line 172 "bison_parser.y" { delete (((*yyvaluep).group_t)); } -#line 2400 "bison_parser.cpp" +#line 2403 "bison_parser.cpp" break; case YYSYMBOL_opt_having: /* opt_having */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2406 "bison_parser.cpp" +#line 2409 "bison_parser.cpp" break; case YYSYMBOL_opt_order: /* opt_order */ @@ -2415,7 +2418,7 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).order_vec)); } -#line 2419 "bison_parser.cpp" +#line 2422 "bison_parser.cpp" break; case YYSYMBOL_order_list: /* order_list */ @@ -2428,31 +2431,31 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).order_vec)); } -#line 2432 "bison_parser.cpp" +#line 2435 "bison_parser.cpp" break; case YYSYMBOL_order_desc: /* order_desc */ #line 172 "bison_parser.y" { delete (((*yyvaluep).order)); } -#line 2438 "bison_parser.cpp" +#line 2441 "bison_parser.cpp" break; case YYSYMBOL_opt_order_type: /* opt_order_type */ #line 161 "bison_parser.y" { } -#line 2444 "bison_parser.cpp" +#line 2447 "bison_parser.cpp" break; case YYSYMBOL_opt_top: /* opt_top */ #line 172 "bison_parser.y" { delete (((*yyvaluep).limit)); } -#line 2450 "bison_parser.cpp" +#line 2453 "bison_parser.cpp" break; case YYSYMBOL_opt_limit: /* opt_limit */ #line 172 "bison_parser.y" { delete (((*yyvaluep).limit)); } -#line 2456 "bison_parser.cpp" +#line 2459 "bison_parser.cpp" break; case YYSYMBOL_expr_list: /* expr_list */ @@ -2465,7 +2468,7 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2469 "bison_parser.cpp" +#line 2472 "bison_parser.cpp" break; case YYSYMBOL_opt_literal_list: /* opt_literal_list */ @@ -2478,7 +2481,7 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2482 "bison_parser.cpp" +#line 2485 "bison_parser.cpp" break; case YYSYMBOL_literal_list: /* literal_list */ @@ -2491,211 +2494,211 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).expr_vec)); } -#line 2495 "bison_parser.cpp" +#line 2498 "bison_parser.cpp" break; case YYSYMBOL_expr_alias: /* expr_alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2501 "bison_parser.cpp" +#line 2504 "bison_parser.cpp" break; case YYSYMBOL_expr: /* expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2507 "bison_parser.cpp" +#line 2510 "bison_parser.cpp" break; case YYSYMBOL_operand: /* operand */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2513 "bison_parser.cpp" +#line 2516 "bison_parser.cpp" break; case YYSYMBOL_scalar_expr: /* scalar_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2519 "bison_parser.cpp" +#line 2522 "bison_parser.cpp" break; case YYSYMBOL_unary_expr: /* unary_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2525 "bison_parser.cpp" +#line 2528 "bison_parser.cpp" break; case YYSYMBOL_binary_expr: /* binary_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2531 "bison_parser.cpp" +#line 2534 "bison_parser.cpp" break; case YYSYMBOL_logic_expr: /* logic_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2537 "bison_parser.cpp" +#line 2540 "bison_parser.cpp" break; case YYSYMBOL_in_expr: /* in_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2543 "bison_parser.cpp" +#line 2546 "bison_parser.cpp" break; case YYSYMBOL_case_expr: /* case_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2549 "bison_parser.cpp" +#line 2552 "bison_parser.cpp" break; case YYSYMBOL_case_list: /* case_list */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2555 "bison_parser.cpp" +#line 2558 "bison_parser.cpp" break; case YYSYMBOL_exists_expr: /* exists_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2561 "bison_parser.cpp" +#line 2564 "bison_parser.cpp" break; case YYSYMBOL_comp_expr: /* comp_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2567 "bison_parser.cpp" +#line 2570 "bison_parser.cpp" break; case YYSYMBOL_function_expr: /* function_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2573 "bison_parser.cpp" +#line 2576 "bison_parser.cpp" break; case YYSYMBOL_extract_expr: /* extract_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2579 "bison_parser.cpp" +#line 2582 "bison_parser.cpp" break; case YYSYMBOL_cast_expr: /* cast_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2585 "bison_parser.cpp" +#line 2588 "bison_parser.cpp" break; case YYSYMBOL_datetime_field: /* datetime_field */ #line 161 "bison_parser.y" { } -#line 2591 "bison_parser.cpp" +#line 2594 "bison_parser.cpp" break; case YYSYMBOL_datetime_field_plural: /* datetime_field_plural */ #line 161 "bison_parser.y" { } -#line 2597 "bison_parser.cpp" +#line 2600 "bison_parser.cpp" break; case YYSYMBOL_duration_field: /* duration_field */ #line 161 "bison_parser.y" { } -#line 2603 "bison_parser.cpp" +#line 2606 "bison_parser.cpp" break; case YYSYMBOL_array_expr: /* array_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2609 "bison_parser.cpp" +#line 2612 "bison_parser.cpp" break; case YYSYMBOL_array_index: /* array_index */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2615 "bison_parser.cpp" +#line 2618 "bison_parser.cpp" break; case YYSYMBOL_between_expr: /* between_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2621 "bison_parser.cpp" +#line 2624 "bison_parser.cpp" break; case YYSYMBOL_column_name: /* column_name */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2627 "bison_parser.cpp" +#line 2630 "bison_parser.cpp" break; case YYSYMBOL_literal: /* literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2633 "bison_parser.cpp" +#line 2636 "bison_parser.cpp" break; case YYSYMBOL_string_literal: /* string_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2639 "bison_parser.cpp" +#line 2642 "bison_parser.cpp" break; case YYSYMBOL_bool_literal: /* bool_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2645 "bison_parser.cpp" +#line 2648 "bison_parser.cpp" break; case YYSYMBOL_num_literal: /* num_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2651 "bison_parser.cpp" +#line 2654 "bison_parser.cpp" break; case YYSYMBOL_int_literal: /* int_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2657 "bison_parser.cpp" +#line 2660 "bison_parser.cpp" break; case YYSYMBOL_null_literal: /* null_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2663 "bison_parser.cpp" +#line 2666 "bison_parser.cpp" break; case YYSYMBOL_date_literal: /* date_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2669 "bison_parser.cpp" +#line 2672 "bison_parser.cpp" break; case YYSYMBOL_interval_literal: /* interval_literal */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2675 "bison_parser.cpp" +#line 2678 "bison_parser.cpp" break; case YYSYMBOL_param_expr: /* param_expr */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2681 "bison_parser.cpp" +#line 2684 "bison_parser.cpp" break; case YYSYMBOL_table_ref: /* table_ref */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2687 "bison_parser.cpp" +#line 2690 "bison_parser.cpp" break; case YYSYMBOL_table_ref_atomic: /* table_ref_atomic */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2693 "bison_parser.cpp" +#line 2696 "bison_parser.cpp" break; case YYSYMBOL_nonjoin_table_ref_atomic: /* nonjoin_table_ref_atomic */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2699 "bison_parser.cpp" +#line 2702 "bison_parser.cpp" break; case YYSYMBOL_table_ref_commalist: /* table_ref_commalist */ @@ -2708,97 +2711,97 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).table_vec)); } -#line 2712 "bison_parser.cpp" +#line 2715 "bison_parser.cpp" break; case YYSYMBOL_table_ref_name: /* table_ref_name */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2718 "bison_parser.cpp" +#line 2721 "bison_parser.cpp" break; case YYSYMBOL_table_ref_name_no_alias: /* table_ref_name_no_alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2724 "bison_parser.cpp" +#line 2727 "bison_parser.cpp" break; case YYSYMBOL_table_name: /* table_name */ #line 162 "bison_parser.y" { free( (((*yyvaluep).table_name).name) ); free( (((*yyvaluep).table_name).schema) ); } -#line 2730 "bison_parser.cpp" +#line 2733 "bison_parser.cpp" break; case YYSYMBOL_opt_index_name: /* opt_index_name */ #line 163 "bison_parser.y" { free( (((*yyvaluep).sval)) ); } -#line 2736 "bison_parser.cpp" +#line 2739 "bison_parser.cpp" break; case YYSYMBOL_table_alias: /* table_alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alias_t)); } -#line 2742 "bison_parser.cpp" +#line 2745 "bison_parser.cpp" break; case YYSYMBOL_opt_table_alias: /* opt_table_alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alias_t)); } -#line 2748 "bison_parser.cpp" +#line 2751 "bison_parser.cpp" break; case YYSYMBOL_alias: /* alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alias_t)); } -#line 2754 "bison_parser.cpp" +#line 2757 "bison_parser.cpp" break; case YYSYMBOL_opt_alias: /* opt_alias */ #line 172 "bison_parser.y" { delete (((*yyvaluep).alias_t)); } -#line 2760 "bison_parser.cpp" +#line 2763 "bison_parser.cpp" break; case YYSYMBOL_opt_with_clause: /* opt_with_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).with_description_vec)); } -#line 2766 "bison_parser.cpp" +#line 2769 "bison_parser.cpp" break; case YYSYMBOL_with_clause: /* with_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).with_description_vec)); } -#line 2772 "bison_parser.cpp" +#line 2775 "bison_parser.cpp" break; case YYSYMBOL_with_description_list: /* with_description_list */ #line 172 "bison_parser.y" { delete (((*yyvaluep).with_description_vec)); } -#line 2778 "bison_parser.cpp" +#line 2781 "bison_parser.cpp" break; case YYSYMBOL_with_description: /* with_description */ #line 172 "bison_parser.y" { delete (((*yyvaluep).with_description_t)); } -#line 2784 "bison_parser.cpp" +#line 2787 "bison_parser.cpp" break; case YYSYMBOL_join_clause: /* join_clause */ #line 172 "bison_parser.y" { delete (((*yyvaluep).table)); } -#line 2790 "bison_parser.cpp" +#line 2793 "bison_parser.cpp" break; case YYSYMBOL_opt_join_type: /* opt_join_type */ #line 161 "bison_parser.y" { } -#line 2796 "bison_parser.cpp" +#line 2799 "bison_parser.cpp" break; case YYSYMBOL_join_condition: /* join_condition */ #line 172 "bison_parser.y" { delete (((*yyvaluep).expr)); } -#line 2802 "bison_parser.cpp" +#line 2805 "bison_parser.cpp" break; case YYSYMBOL_ident_commalist: /* ident_commalist */ @@ -2811,7 +2814,7 @@ yydestruct (const char *yymsg, } delete (((*yyvaluep).str_vec)); } -#line 2815 "bison_parser.cpp" +#line 2818 "bison_parser.cpp" break; default: @@ -2919,7 +2922,7 @@ YYLTYPE yylloc = yyloc_default; yylloc.string_length = 0; } -#line 2923 "bison_parser.cpp" +#line 2926 "bison_parser.cpp" yylsp[0] = yylloc; goto yysetstate; @@ -3148,7 +3151,7 @@ YYLTYPE yylloc = yyloc_default; } delete (yyvsp[-1].stmt_vec); } -#line 3152 "bison_parser.cpp" +#line 3155 "bison_parser.cpp" break; case 3: /* statement_list: statement */ @@ -3159,7 +3162,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.stmt_vec) = new std::vector(); (yyval.stmt_vec)->push_back((yyvsp[0].statement)); } -#line 3163 "bison_parser.cpp" +#line 3166 "bison_parser.cpp" break; case 4: /* statement_list: statement_list ';' statement */ @@ -3170,7 +3173,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].stmt_vec)->push_back((yyvsp[0].statement)); (yyval.stmt_vec) = (yyvsp[-2].stmt_vec); } -#line 3174 "bison_parser.cpp" +#line 3177 "bison_parser.cpp" break; case 5: /* statement: prepare_statement opt_hints */ @@ -3179,7 +3182,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.statement) = (yyvsp[-1].prep_stmt); (yyval.statement)->hints = (yyvsp[0].expr_vec); } -#line 3183 "bison_parser.cpp" +#line 3186 "bison_parser.cpp" break; case 6: /* statement: preparable_statement opt_hints */ @@ -3188,97 +3191,97 @@ YYLTYPE yylloc = yyloc_default; (yyval.statement) = (yyvsp[-1].statement); (yyval.statement)->hints = (yyvsp[0].expr_vec); } -#line 3192 "bison_parser.cpp" +#line 3195 "bison_parser.cpp" break; case 7: /* statement: show_statement */ #line 334 "bison_parser.y" { (yyval.statement) = (yyvsp[0].show_stmt); } -#line 3198 "bison_parser.cpp" +#line 3201 "bison_parser.cpp" break; case 8: /* statement: import_statement */ #line 335 "bison_parser.y" { (yyval.statement) = (yyvsp[0].import_stmt); } -#line 3204 "bison_parser.cpp" +#line 3207 "bison_parser.cpp" break; case 9: /* statement: export_statement */ #line 336 "bison_parser.y" { (yyval.statement) = (yyvsp[0].export_stmt); } -#line 3210 "bison_parser.cpp" +#line 3213 "bison_parser.cpp" break; case 10: /* preparable_statement: select_statement */ #line 338 "bison_parser.y" { (yyval.statement) = (yyvsp[0].select_stmt); } -#line 3216 "bison_parser.cpp" +#line 3219 "bison_parser.cpp" break; case 11: /* preparable_statement: create_statement */ #line 339 "bison_parser.y" { (yyval.statement) = (yyvsp[0].create_stmt); } -#line 3222 "bison_parser.cpp" +#line 3225 "bison_parser.cpp" break; case 12: /* preparable_statement: insert_statement */ #line 340 "bison_parser.y" { (yyval.statement) = (yyvsp[0].insert_stmt); } -#line 3228 "bison_parser.cpp" +#line 3231 "bison_parser.cpp" break; case 13: /* preparable_statement: delete_statement */ #line 341 "bison_parser.y" { (yyval.statement) = (yyvsp[0].delete_stmt); } -#line 3234 "bison_parser.cpp" +#line 3237 "bison_parser.cpp" break; case 14: /* preparable_statement: truncate_statement */ #line 342 "bison_parser.y" { (yyval.statement) = (yyvsp[0].delete_stmt); } -#line 3240 "bison_parser.cpp" +#line 3243 "bison_parser.cpp" break; case 15: /* preparable_statement: update_statement */ #line 343 "bison_parser.y" { (yyval.statement) = (yyvsp[0].update_stmt); } -#line 3246 "bison_parser.cpp" +#line 3249 "bison_parser.cpp" break; case 16: /* preparable_statement: drop_statement */ #line 344 "bison_parser.y" { (yyval.statement) = (yyvsp[0].drop_stmt); } -#line 3252 "bison_parser.cpp" +#line 3255 "bison_parser.cpp" break; case 17: /* preparable_statement: alter_statement */ #line 345 "bison_parser.y" { (yyval.statement) = (yyvsp[0].alter_stmt); } -#line 3258 "bison_parser.cpp" +#line 3261 "bison_parser.cpp" break; case 18: /* preparable_statement: execute_statement */ #line 346 "bison_parser.y" { (yyval.statement) = (yyvsp[0].exec_stmt); } -#line 3264 "bison_parser.cpp" +#line 3267 "bison_parser.cpp" break; case 19: /* preparable_statement: transaction_statement */ #line 347 "bison_parser.y" { (yyval.statement) = (yyvsp[0].transaction_stmt); } -#line 3270 "bison_parser.cpp" +#line 3273 "bison_parser.cpp" break; case 20: /* opt_hints: WITH HINT '(' hint_list ')' */ #line 353 "bison_parser.y" { (yyval.expr_vec) = (yyvsp[-1].expr_vec); } -#line 3276 "bison_parser.cpp" +#line 3279 "bison_parser.cpp" break; case 21: /* opt_hints: %empty */ #line 354 "bison_parser.y" { (yyval.expr_vec) = nullptr; } -#line 3282 "bison_parser.cpp" +#line 3285 "bison_parser.cpp" break; case 22: /* hint_list: hint */ @@ -3287,7 +3290,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr_vec) = new std::vector(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); } -#line 3291 "bison_parser.cpp" +#line 3294 "bison_parser.cpp" break; case 23: /* hint_list: hint_list ',' hint */ @@ -3296,7 +3299,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); } -#line 3300 "bison_parser.cpp" +#line 3303 "bison_parser.cpp" break; case 24: /* hint: IDENTIFIER */ @@ -3305,7 +3308,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr) = Expr::make(kExprHint); (yyval.expr)->name = (yyvsp[0].sval); } -#line 3309 "bison_parser.cpp" +#line 3312 "bison_parser.cpp" break; case 25: /* hint: IDENTIFIER '(' literal_list ')' */ @@ -3315,25 +3318,25 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr)->name = (yyvsp[-3].sval); (yyval.expr)->exprList = (yyvsp[-1].expr_vec); } -#line 3319 "bison_parser.cpp" +#line 3322 "bison_parser.cpp" break; case 26: /* transaction_statement: BEGIN opt_transaction_keyword */ #line 379 "bison_parser.y" { (yyval.transaction_stmt) = new TransactionStatement(kBeginTransaction); } -#line 3325 "bison_parser.cpp" +#line 3328 "bison_parser.cpp" break; case 27: /* transaction_statement: ROLLBACK opt_transaction_keyword */ #line 380 "bison_parser.y" { (yyval.transaction_stmt) = new TransactionStatement(kRollbackTransaction); } -#line 3331 "bison_parser.cpp" +#line 3334 "bison_parser.cpp" break; case 28: /* transaction_statement: COMMIT opt_transaction_keyword */ #line 381 "bison_parser.y" { (yyval.transaction_stmt) = new TransactionStatement(kCommitTransaction); } -#line 3337 "bison_parser.cpp" +#line 3340 "bison_parser.cpp" break; case 31: /* prepare_statement: PREPARE IDENTIFIER FROM prepare_target_query */ @@ -3343,7 +3346,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.prep_stmt)->name = (yyvsp[-2].sval); (yyval.prep_stmt)->query = (yyvsp[0].sval); } -#line 3347 "bison_parser.cpp" +#line 3350 "bison_parser.cpp" break; case 33: /* execute_statement: EXECUTE IDENTIFIER */ @@ -3352,7 +3355,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.exec_stmt) = new ExecuteStatement(); (yyval.exec_stmt)->name = (yyvsp[0].sval); } -#line 3356 "bison_parser.cpp" +#line 3359 "bison_parser.cpp" break; case 34: /* execute_statement: EXECUTE IDENTIFIER '(' opt_literal_list ')' */ @@ -3362,7 +3365,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.exec_stmt)->name = (yyvsp[-3].sval); (yyval.exec_stmt)->parameters = (yyvsp[-1].expr_vec); } -#line 3366 "bison_parser.cpp" +#line 3369 "bison_parser.cpp" break; case 35: /* import_statement: IMPORT FROM file_type FILE file_path INTO table_name */ @@ -3373,7 +3376,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.import_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.import_stmt)->tableName = (yyvsp[0].table_name).name; } -#line 3377 "bison_parser.cpp" +#line 3380 "bison_parser.cpp" break; case 36: /* import_statement: COPY table_name FROM file_path opt_file_type */ @@ -3384,7 +3387,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.import_stmt)->schema = (yyvsp[-3].table_name).schema; (yyval.import_stmt)->tableName = (yyvsp[-3].table_name).name; } -#line 3388 "bison_parser.cpp" +#line 3391 "bison_parser.cpp" break; case 37: /* file_type: IDENTIFIER */ @@ -3403,7 +3406,7 @@ YYLTYPE yylloc = yyloc_default; } free((yyvsp[0].sval)); } -#line 3407 "bison_parser.cpp" +#line 3410 "bison_parser.cpp" break; case 38: /* file_path: string_literal */ @@ -3412,19 +3415,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.sval) = strdup((yyvsp[0].expr)->name); delete (yyvsp[0].expr); } -#line 3416 "bison_parser.cpp" +#line 3419 "bison_parser.cpp" break; case 39: /* opt_file_type: WITH FORMAT file_type */ #line 445 "bison_parser.y" { (yyval.import_type_t) = (yyvsp[0].import_type_t); } -#line 3422 "bison_parser.cpp" +#line 3425 "bison_parser.cpp" break; case 40: /* opt_file_type: %empty */ #line 446 "bison_parser.y" { (yyval.import_type_t) = kImportAuto; } -#line 3428 "bison_parser.cpp" +#line 3431 "bison_parser.cpp" break; case 41: /* export_statement: COPY table_name TO file_path opt_file_type */ @@ -3435,13 +3438,13 @@ YYLTYPE yylloc = yyloc_default; (yyval.export_stmt)->schema = (yyvsp[-3].table_name).schema; (yyval.export_stmt)->tableName = (yyvsp[-3].table_name).name; } -#line 3439 "bison_parser.cpp" +#line 3442 "bison_parser.cpp" break; case 42: /* show_statement: SHOW TABLES */ #line 464 "bison_parser.y" { (yyval.show_stmt) = new ShowStatement(kShowTables); } -#line 3445 "bison_parser.cpp" +#line 3448 "bison_parser.cpp" break; case 43: /* show_statement: SHOW COLUMNS table_name */ @@ -3451,7 +3454,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.show_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.show_stmt)->name = (yyvsp[0].table_name).name; } -#line 3455 "bison_parser.cpp" +#line 3458 "bison_parser.cpp" break; case 44: /* show_statement: DESCRIBE table_name */ @@ -3461,7 +3464,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.show_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.show_stmt)->name = (yyvsp[0].table_name).name; } -#line 3465 "bison_parser.cpp" +#line 3468 "bison_parser.cpp" break; case 45: /* create_statement: CREATE TABLE opt_not_exists table_name FROM IDENTIFIER FILE file_path */ @@ -3479,7 +3482,7 @@ YYLTYPE yylloc = yyloc_default; free((yyvsp[-2].sval)); (yyval.create_stmt)->filePath = (yyvsp[0].sval); } -#line 3483 "bison_parser.cpp" +#line 3486 "bison_parser.cpp" break; case 46: /* create_statement: CREATE TABLE opt_not_exists table_name '(' table_elem_commalist ')' */ @@ -3492,7 +3495,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.create_stmt)->setColumnDefsAndConstraints((yyvsp[-1].table_element_vec)); delete (yyvsp[-1].table_element_vec); } -#line 3496 "bison_parser.cpp" +#line 3499 "bison_parser.cpp" break; case 47: /* create_statement: CREATE TABLE opt_not_exists table_name AS select_statement */ @@ -3504,7 +3507,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.create_stmt)->tableName = (yyvsp[-2].table_name).name; (yyval.create_stmt)->select = (yyvsp[0].select_stmt); } -#line 3508 "bison_parser.cpp" +#line 3511 "bison_parser.cpp" break; case 48: /* create_statement: CREATE INDEX opt_not_exists opt_index_name ON table_name '(' ident_commalist ')' */ @@ -3516,7 +3519,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.create_stmt)->tableName = (yyvsp[-3].table_name).name; (yyval.create_stmt)->indexColumns = (yyvsp[-1].str_vec); } -#line 3520 "bison_parser.cpp" +#line 3523 "bison_parser.cpp" break; case 49: /* create_statement: CREATE VIEW opt_not_exists table_name opt_column_list AS select_statement */ @@ -3529,19 +3532,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.create_stmt)->viewColumns = (yyvsp[-2].str_vec); (yyval.create_stmt)->select = (yyvsp[0].select_stmt); } -#line 3533 "bison_parser.cpp" +#line 3536 "bison_parser.cpp" break; case 50: /* opt_not_exists: IF NOT EXISTS */ #line 525 "bison_parser.y" { (yyval.bval) = true; } -#line 3539 "bison_parser.cpp" +#line 3542 "bison_parser.cpp" break; case 51: /* opt_not_exists: %empty */ #line 526 "bison_parser.y" { (yyval.bval) = false; } -#line 3545 "bison_parser.cpp" +#line 3548 "bison_parser.cpp" break; case 52: /* table_elem_commalist: table_elem */ @@ -3550,7 +3553,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table_element_vec) = new std::vector(); (yyval.table_element_vec)->push_back((yyvsp[0].table_element_t)); } -#line 3554 "bison_parser.cpp" +#line 3557 "bison_parser.cpp" break; case 53: /* table_elem_commalist: table_elem_commalist ',' table_elem */ @@ -3559,19 +3562,19 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].table_element_vec)->push_back((yyvsp[0].table_element_t)); (yyval.table_element_vec) = (yyvsp[-2].table_element_vec); } -#line 3563 "bison_parser.cpp" +#line 3566 "bison_parser.cpp" break; case 54: /* table_elem: column_def */ #line 537 "bison_parser.y" { (yyval.table_element_t) = (yyvsp[0].column_t); } -#line 3569 "bison_parser.cpp" +#line 3572 "bison_parser.cpp" break; case 55: /* table_elem: table_constraint */ #line 538 "bison_parser.y" { (yyval.table_element_t) = (yyvsp[0].table_constraint_t); } -#line 3575 "bison_parser.cpp" +#line 3578 "bison_parser.cpp" break; case 56: /* column_def: IDENTIFIER column_type opt_column_constraints */ @@ -3580,37 +3583,37 @@ YYLTYPE yylloc = yyloc_default; (yyval.column_t) = new ColumnDefinition((yyvsp[-2].sval), (yyvsp[-1].column_type_t), (yyvsp[0].column_constraint_vec)); (yyval.column_t)->setNullableExplicit(); } -#line 3584 "bison_parser.cpp" +#line 3587 "bison_parser.cpp" break; case 57: /* column_type: INT */ #line 545 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::INT}; } -#line 3590 "bison_parser.cpp" +#line 3593 "bison_parser.cpp" break; case 58: /* column_type: CHAR '(' INTVAL ')' */ #line 546 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::CHAR, (yyvsp[-1].ival)}; } -#line 3596 "bison_parser.cpp" +#line 3599 "bison_parser.cpp" break; - case 59: /* column_type: CHARACTER VARYING '(' INTVAL ')' */ + case 59: /* column_type: CHARACTER_VARYING '(' INTVAL ')' */ #line 547 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::VARCHAR, (yyvsp[-1].ival)}; } -#line 3602 "bison_parser.cpp" +#line 3605 "bison_parser.cpp" break; case 60: /* column_type: DATE */ #line 548 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::DATE}; } -#line 3608 "bison_parser.cpp" +#line 3611 "bison_parser.cpp" break; case 61: /* column_type: DATETIME */ #line 549 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::DATETIME}; } -#line 3614 "bison_parser.cpp" +#line 3617 "bison_parser.cpp" break; case 62: /* column_type: DECIMAL opt_decimal_specification */ @@ -3619,103 +3622,103 @@ YYLTYPE yylloc = yyloc_default; (yyval.column_type_t) = ColumnType{DataType::DECIMAL, 0, (yyvsp[0].ival_pair)->first, (yyvsp[0].ival_pair)->second}; delete (yyvsp[0].ival_pair); } -#line 3623 "bison_parser.cpp" +#line 3626 "bison_parser.cpp" break; case 63: /* column_type: DOUBLE */ #line 554 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::DOUBLE}; } -#line 3629 "bison_parser.cpp" +#line 3632 "bison_parser.cpp" break; case 64: /* column_type: FLOAT */ #line 555 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::FLOAT}; } -#line 3635 "bison_parser.cpp" +#line 3638 "bison_parser.cpp" break; case 65: /* column_type: INTEGER */ #line 556 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::INT}; } -#line 3641 "bison_parser.cpp" +#line 3644 "bison_parser.cpp" break; case 66: /* column_type: LONG */ #line 557 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::LONG}; } -#line 3647 "bison_parser.cpp" +#line 3650 "bison_parser.cpp" break; case 67: /* column_type: REAL */ #line 558 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::REAL}; } -#line 3653 "bison_parser.cpp" +#line 3656 "bison_parser.cpp" break; case 68: /* column_type: SMALLINT */ #line 559 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::SMALLINT}; } -#line 3659 "bison_parser.cpp" +#line 3662 "bison_parser.cpp" break; case 69: /* column_type: TEXT */ #line 560 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::TEXT}; } -#line 3665 "bison_parser.cpp" +#line 3668 "bison_parser.cpp" break; case 70: /* column_type: TIME opt_time_precision */ #line 561 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::TIME, 0, (yyvsp[0].ival)}; } -#line 3671 "bison_parser.cpp" +#line 3674 "bison_parser.cpp" break; case 71: /* column_type: VARCHAR '(' INTVAL ')' */ #line 562 "bison_parser.y" { (yyval.column_type_t) = ColumnType{DataType::VARCHAR, (yyvsp[-1].ival)}; } -#line 3677 "bison_parser.cpp" +#line 3680 "bison_parser.cpp" break; case 72: /* opt_time_precision: '(' INTVAL ')' */ #line 564 "bison_parser.y" { (yyval.ival) = (yyvsp[-1].ival); } -#line 3683 "bison_parser.cpp" +#line 3686 "bison_parser.cpp" break; case 73: /* opt_time_precision: %empty */ #line 565 "bison_parser.y" { (yyval.ival) = 0; } -#line 3689 "bison_parser.cpp" +#line 3692 "bison_parser.cpp" break; case 74: /* opt_decimal_specification: '(' INTVAL ',' INTVAL ')' */ #line 567 "bison_parser.y" { (yyval.ival_pair) = new std::pair{(yyvsp[-3].ival), (yyvsp[-1].ival)}; } -#line 3695 "bison_parser.cpp" +#line 3698 "bison_parser.cpp" break; case 75: /* opt_decimal_specification: '(' INTVAL ')' */ #line 568 "bison_parser.y" { (yyval.ival_pair) = new std::pair{(yyvsp[-1].ival), 0}; } -#line 3701 "bison_parser.cpp" +#line 3704 "bison_parser.cpp" break; case 76: /* opt_decimal_specification: %empty */ #line 569 "bison_parser.y" { (yyval.ival_pair) = new std::pair{0, 0}; } -#line 3707 "bison_parser.cpp" +#line 3710 "bison_parser.cpp" break; case 77: /* opt_column_constraints: column_constraint_list */ #line 571 "bison_parser.y" { (yyval.column_constraint_vec) = (yyvsp[0].column_constraint_vec); } -#line 3713 "bison_parser.cpp" +#line 3716 "bison_parser.cpp" break; case 78: /* opt_column_constraints: %empty */ #line 572 "bison_parser.y" { (yyval.column_constraint_vec) = new std::vector(); } -#line 3719 "bison_parser.cpp" +#line 3722 "bison_parser.cpp" break; case 79: /* column_constraint_list: column_constraint */ @@ -3724,7 +3727,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.column_constraint_vec) = new std::vector(); (yyval.column_constraint_vec)->push_back((yyvsp[0].column_constraint_t)); } -#line 3728 "bison_parser.cpp" +#line 3731 "bison_parser.cpp" break; case 80: /* column_constraint_list: column_constraint_list column_constraint */ @@ -3733,43 +3736,43 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-1].column_constraint_vec)->push_back((yyvsp[0].column_constraint_t)); (yyval.column_constraint_vec) = (yyvsp[-1].column_constraint_vec); } -#line 3737 "bison_parser.cpp" +#line 3740 "bison_parser.cpp" break; case 81: /* column_constraint: PRIMARY KEY */ #line 583 "bison_parser.y" { (yyval.column_constraint_t) = ConstraintType::PrimaryKey; } -#line 3743 "bison_parser.cpp" +#line 3746 "bison_parser.cpp" break; case 82: /* column_constraint: UNIQUE */ #line 584 "bison_parser.y" { (yyval.column_constraint_t) = ConstraintType::Unique; } -#line 3749 "bison_parser.cpp" +#line 3752 "bison_parser.cpp" break; case 83: /* column_constraint: NULL */ #line 585 "bison_parser.y" { (yyval.column_constraint_t) = ConstraintType::Null; } -#line 3755 "bison_parser.cpp" +#line 3758 "bison_parser.cpp" break; case 84: /* column_constraint: NOT NULL */ #line 586 "bison_parser.y" { (yyval.column_constraint_t) = ConstraintType::NotNull; } -#line 3761 "bison_parser.cpp" +#line 3764 "bison_parser.cpp" break; case 85: /* table_constraint: PRIMARY KEY '(' ident_commalist ')' */ #line 588 "bison_parser.y" { (yyval.table_constraint_t) = new TableConstraint(ConstraintType::PrimaryKey, (yyvsp[-1].str_vec)); } -#line 3767 "bison_parser.cpp" +#line 3770 "bison_parser.cpp" break; case 86: /* table_constraint: UNIQUE '(' ident_commalist ')' */ #line 589 "bison_parser.y" { (yyval.table_constraint_t) = new TableConstraint(ConstraintType::Unique, (yyvsp[-1].str_vec)); } -#line 3773 "bison_parser.cpp" +#line 3776 "bison_parser.cpp" break; case 87: /* drop_statement: DROP TABLE opt_exists table_name */ @@ -3780,7 +3783,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.drop_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.drop_stmt)->name = (yyvsp[0].table_name).name; } -#line 3784 "bison_parser.cpp" +#line 3787 "bison_parser.cpp" break; case 88: /* drop_statement: DROP VIEW opt_exists table_name */ @@ -3791,7 +3794,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.drop_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.drop_stmt)->name = (yyvsp[0].table_name).name; } -#line 3795 "bison_parser.cpp" +#line 3798 "bison_parser.cpp" break; case 89: /* drop_statement: DEALLOCATE PREPARE IDENTIFIER */ @@ -3801,7 +3804,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.drop_stmt)->ifExists = false; (yyval.drop_stmt)->name = (yyvsp[0].sval); } -#line 3805 "bison_parser.cpp" +#line 3808 "bison_parser.cpp" break; case 90: /* drop_statement: DROP INDEX opt_exists IDENTIFIER */ @@ -3811,19 +3814,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.drop_stmt)->ifExists = (yyvsp[-1].bval); (yyval.drop_stmt)->indexName = (yyvsp[0].sval); } -#line 3815 "bison_parser.cpp" +#line 3818 "bison_parser.cpp" break; case 91: /* opt_exists: IF EXISTS */ #line 621 "bison_parser.y" { (yyval.bval) = true; } -#line 3821 "bison_parser.cpp" +#line 3824 "bison_parser.cpp" break; case 92: /* opt_exists: %empty */ #line 622 "bison_parser.y" { (yyval.bval) = false; } -#line 3827 "bison_parser.cpp" +#line 3830 "bison_parser.cpp" break; case 93: /* alter_statement: ALTER TABLE opt_exists table_name alter_action */ @@ -3833,13 +3836,13 @@ YYLTYPE yylloc = yyloc_default; (yyval.alter_stmt)->ifTableExists = (yyvsp[-2].bval); (yyval.alter_stmt)->schema = (yyvsp[-1].table_name).schema; } -#line 3837 "bison_parser.cpp" +#line 3840 "bison_parser.cpp" break; case 94: /* alter_action: drop_action */ #line 635 "bison_parser.y" { (yyval.alter_action_t) = (yyvsp[0].drop_action_t); } -#line 3843 "bison_parser.cpp" +#line 3846 "bison_parser.cpp" break; case 95: /* drop_action: DROP COLUMN opt_exists IDENTIFIER */ @@ -3848,7 +3851,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.drop_action_t) = new DropColumnAction((yyvsp[0].sval)); (yyval.drop_action_t)->ifExists = (yyvsp[-1].bval); } -#line 3852 "bison_parser.cpp" +#line 3855 "bison_parser.cpp" break; case 96: /* delete_statement: DELETE FROM table_name opt_where */ @@ -3859,7 +3862,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.delete_stmt)->tableName = (yyvsp[-1].table_name).name; (yyval.delete_stmt)->expr = (yyvsp[0].expr); } -#line 3863 "bison_parser.cpp" +#line 3866 "bison_parser.cpp" break; case 97: /* truncate_statement: TRUNCATE table_name */ @@ -3869,7 +3872,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.delete_stmt)->schema = (yyvsp[0].table_name).schema; (yyval.delete_stmt)->tableName = (yyvsp[0].table_name).name; } -#line 3873 "bison_parser.cpp" +#line 3876 "bison_parser.cpp" break; case 98: /* insert_statement: INSERT INTO table_name opt_column_list VALUES '(' literal_list ')' */ @@ -3881,7 +3884,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.insert_stmt)->columns = (yyvsp[-4].str_vec); (yyval.insert_stmt)->values = (yyvsp[-1].expr_vec); } -#line 3885 "bison_parser.cpp" +#line 3888 "bison_parser.cpp" break; case 99: /* insert_statement: INSERT INTO table_name opt_column_list select_no_paren */ @@ -3893,19 +3896,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.insert_stmt)->columns = (yyvsp[-1].str_vec); (yyval.insert_stmt)->select = (yyvsp[0].select_stmt); } -#line 3897 "bison_parser.cpp" +#line 3900 "bison_parser.cpp" break; case 100: /* opt_column_list: '(' ident_commalist ')' */ #line 680 "bison_parser.y" { (yyval.str_vec) = (yyvsp[-1].str_vec); } -#line 3903 "bison_parser.cpp" +#line 3906 "bison_parser.cpp" break; case 101: /* opt_column_list: %empty */ #line 681 "bison_parser.y" { (yyval.str_vec) = nullptr; } -#line 3909 "bison_parser.cpp" +#line 3912 "bison_parser.cpp" break; case 102: /* update_statement: UPDATE table_ref_name_no_alias SET update_clause_commalist opt_where */ @@ -3916,7 +3919,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.update_stmt)->updates = (yyvsp[-1].update_vec); (yyval.update_stmt)->where = (yyvsp[0].expr); } -#line 3920 "bison_parser.cpp" +#line 3923 "bison_parser.cpp" break; case 103: /* update_clause_commalist: update_clause */ @@ -3925,7 +3928,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.update_vec) = new std::vector(); (yyval.update_vec)->push_back((yyvsp[0].update_t)); } -#line 3929 "bison_parser.cpp" +#line 3932 "bison_parser.cpp" break; case 104: /* update_clause_commalist: update_clause_commalist ',' update_clause */ @@ -3934,7 +3937,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].update_vec)->push_back((yyvsp[0].update_t)); (yyval.update_vec) = (yyvsp[-2].update_vec); } -#line 3938 "bison_parser.cpp" +#line 3941 "bison_parser.cpp" break; case 105: /* update_clause: IDENTIFIER '=' expr */ @@ -3944,7 +3947,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.update_t)->column = (yyvsp[-2].sval); (yyval.update_t)->value = (yyvsp[0].expr); } -#line 3948 "bison_parser.cpp" +#line 3951 "bison_parser.cpp" break; case 106: /* select_statement: opt_with_clause select_with_paren */ @@ -3953,7 +3956,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt) = (yyvsp[0].select_stmt); (yyval.select_stmt)->withDescriptions = (yyvsp[-1].with_description_vec); } -#line 3957 "bison_parser.cpp" +#line 3960 "bison_parser.cpp" break; case 107: /* select_statement: opt_with_clause select_no_paren */ @@ -3962,7 +3965,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt) = (yyvsp[0].select_stmt); (yyval.select_stmt)->withDescriptions = (yyvsp[-1].with_description_vec); } -#line 3966 "bison_parser.cpp" +#line 3969 "bison_parser.cpp" break; case 108: /* select_statement: opt_with_clause select_with_paren set_operator select_within_set_operation opt_order opt_limit */ @@ -3978,13 +3981,13 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt)->setOperations->back()->resultLimit = (yyvsp[0].limit); (yyval.select_stmt)->withDescriptions = (yyvsp[-5].with_description_vec); } -#line 3982 "bison_parser.cpp" +#line 3985 "bison_parser.cpp" break; case 111: /* select_within_set_operation_no_parentheses: select_clause */ #line 736 "bison_parser.y" { (yyval.select_stmt) = (yyvsp[0].select_stmt); } -#line 3988 "bison_parser.cpp" +#line 3991 "bison_parser.cpp" break; case 112: /* select_within_set_operation_no_parentheses: select_clause set_operator select_within_set_operation */ @@ -3997,19 +4000,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt)->setOperations->push_back((yyvsp[-1].set_operator_t)); (yyval.select_stmt)->setOperations->back()->nestedSelectStatement = (yyvsp[0].select_stmt); } -#line 4001 "bison_parser.cpp" +#line 4004 "bison_parser.cpp" break; case 113: /* select_with_paren: '(' select_no_paren ')' */ #line 746 "bison_parser.y" { (yyval.select_stmt) = (yyvsp[-1].select_stmt); } -#line 4007 "bison_parser.cpp" +#line 4010 "bison_parser.cpp" break; case 114: /* select_with_paren: '(' select_with_paren ')' */ #line 747 "bison_parser.y" { (yyval.select_stmt) = (yyvsp[-1].select_stmt); } -#line 4013 "bison_parser.cpp" +#line 4016 "bison_parser.cpp" break; case 115: /* select_no_paren: select_clause opt_order opt_limit */ @@ -4024,7 +4027,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt)->limit = (yyvsp[0].limit); } } -#line 4028 "bison_parser.cpp" +#line 4031 "bison_parser.cpp" break; case 116: /* select_no_paren: select_clause set_operator select_within_set_operation opt_order opt_limit */ @@ -4039,7 +4042,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt)->setOperations->back()->resultOrder = (yyvsp[-1].order_vec); (yyval.select_stmt)->setOperations->back()->resultLimit = (yyvsp[0].limit); } -#line 4043 "bison_parser.cpp" +#line 4046 "bison_parser.cpp" break; case 117: /* set_operator: set_type opt_all */ @@ -4048,7 +4051,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.set_operator_t) = (yyvsp[-1].set_operator_t); (yyval.set_operator_t)->isAll = (yyvsp[0].bval); } -#line 4052 "bison_parser.cpp" +#line 4055 "bison_parser.cpp" break; case 118: /* set_type: UNION */ @@ -4057,7 +4060,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.set_operator_t) = new SetOperation(); (yyval.set_operator_t)->setType = SetType::kSetUnion; } -#line 4061 "bison_parser.cpp" +#line 4064 "bison_parser.cpp" break; case 119: /* set_type: INTERSECT */ @@ -4066,7 +4069,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.set_operator_t) = new SetOperation(); (yyval.set_operator_t)->setType = SetType::kSetIntersect; } -#line 4070 "bison_parser.cpp" +#line 4073 "bison_parser.cpp" break; case 120: /* set_type: EXCEPT */ @@ -4075,19 +4078,19 @@ YYLTYPE yylloc = yyloc_default; (yyval.set_operator_t) = new SetOperation(); (yyval.set_operator_t)->setType = SetType::kSetExcept; } -#line 4079 "bison_parser.cpp" +#line 4082 "bison_parser.cpp" break; case 121: /* opt_all: ALL */ #line 788 "bison_parser.y" { (yyval.bval) = true; } -#line 4085 "bison_parser.cpp" +#line 4088 "bison_parser.cpp" break; case 122: /* opt_all: %empty */ #line 789 "bison_parser.y" { (yyval.bval) = false; } -#line 4091 "bison_parser.cpp" +#line 4094 "bison_parser.cpp" break; case 123: /* select_clause: SELECT opt_top opt_distinct select_list opt_from_clause opt_where opt_group */ @@ -4101,49 +4104,49 @@ YYLTYPE yylloc = yyloc_default; (yyval.select_stmt)->whereClause = (yyvsp[-1].expr); (yyval.select_stmt)->groupBy = (yyvsp[0].group_t); } -#line 4105 "bison_parser.cpp" +#line 4108 "bison_parser.cpp" break; case 124: /* opt_distinct: DISTINCT */ #line 801 "bison_parser.y" { (yyval.bval) = true; } -#line 4111 "bison_parser.cpp" +#line 4114 "bison_parser.cpp" break; case 125: /* opt_distinct: %empty */ #line 802 "bison_parser.y" { (yyval.bval) = false; } -#line 4117 "bison_parser.cpp" +#line 4120 "bison_parser.cpp" break; case 127: /* opt_from_clause: from_clause */ #line 806 "bison_parser.y" { (yyval.table) = (yyvsp[0].table); } -#line 4123 "bison_parser.cpp" +#line 4126 "bison_parser.cpp" break; case 128: /* opt_from_clause: %empty */ #line 807 "bison_parser.y" { (yyval.table) = nullptr; } -#line 4129 "bison_parser.cpp" +#line 4132 "bison_parser.cpp" break; case 129: /* from_clause: FROM table_ref */ #line 809 "bison_parser.y" { (yyval.table) = (yyvsp[0].table); } -#line 4135 "bison_parser.cpp" +#line 4138 "bison_parser.cpp" break; case 130: /* opt_where: WHERE expr */ #line 811 "bison_parser.y" { (yyval.expr) = (yyvsp[0].expr); } -#line 4141 "bison_parser.cpp" +#line 4144 "bison_parser.cpp" break; case 131: /* opt_where: %empty */ #line 812 "bison_parser.y" { (yyval.expr) = nullptr; } -#line 4147 "bison_parser.cpp" +#line 4150 "bison_parser.cpp" break; case 132: /* opt_group: GROUP BY expr_list opt_having */ @@ -4153,37 +4156,37 @@ YYLTYPE yylloc = yyloc_default; (yyval.group_t)->columns = (yyvsp[-1].expr_vec); (yyval.group_t)->having = (yyvsp[0].expr); } -#line 4157 "bison_parser.cpp" +#line 4160 "bison_parser.cpp" break; case 133: /* opt_group: %empty */ #line 819 "bison_parser.y" { (yyval.group_t) = nullptr; } -#line 4163 "bison_parser.cpp" +#line 4166 "bison_parser.cpp" break; case 134: /* opt_having: HAVING expr */ #line 821 "bison_parser.y" { (yyval.expr) = (yyvsp[0].expr); } -#line 4169 "bison_parser.cpp" +#line 4172 "bison_parser.cpp" break; case 135: /* opt_having: %empty */ #line 822 "bison_parser.y" { (yyval.expr) = nullptr; } -#line 4175 "bison_parser.cpp" +#line 4178 "bison_parser.cpp" break; case 136: /* opt_order: ORDER BY order_list */ #line 824 "bison_parser.y" { (yyval.order_vec) = (yyvsp[0].order_vec); } -#line 4181 "bison_parser.cpp" +#line 4184 "bison_parser.cpp" break; case 137: /* opt_order: %empty */ #line 825 "bison_parser.y" { (yyval.order_vec) = nullptr; } -#line 4187 "bison_parser.cpp" +#line 4190 "bison_parser.cpp" break; case 138: /* order_list: order_desc */ @@ -4192,7 +4195,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.order_vec) = new std::vector(); (yyval.order_vec)->push_back((yyvsp[0].order)); } -#line 4196 "bison_parser.cpp" +#line 4199 "bison_parser.cpp" break; case 139: /* order_list: order_list ',' order_desc */ @@ -4201,79 +4204,79 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].order_vec)->push_back((yyvsp[0].order)); (yyval.order_vec) = (yyvsp[-2].order_vec); } -#line 4205 "bison_parser.cpp" +#line 4208 "bison_parser.cpp" break; case 140: /* order_desc: expr opt_order_type */ #line 836 "bison_parser.y" { (yyval.order) = new OrderDescription((yyvsp[0].order_type), (yyvsp[-1].expr)); } -#line 4211 "bison_parser.cpp" +#line 4214 "bison_parser.cpp" break; case 141: /* opt_order_type: ASC */ #line 838 "bison_parser.y" { (yyval.order_type) = kOrderAsc; } -#line 4217 "bison_parser.cpp" +#line 4220 "bison_parser.cpp" break; case 142: /* opt_order_type: DESC */ #line 839 "bison_parser.y" { (yyval.order_type) = kOrderDesc; } -#line 4223 "bison_parser.cpp" +#line 4226 "bison_parser.cpp" break; case 143: /* opt_order_type: %empty */ #line 840 "bison_parser.y" { (yyval.order_type) = kOrderAsc; } -#line 4229 "bison_parser.cpp" +#line 4232 "bison_parser.cpp" break; case 144: /* opt_top: TOP int_literal */ #line 844 "bison_parser.y" { (yyval.limit) = new LimitDescription((yyvsp[0].expr), nullptr); } -#line 4235 "bison_parser.cpp" +#line 4238 "bison_parser.cpp" break; case 145: /* opt_top: %empty */ #line 845 "bison_parser.y" { (yyval.limit) = nullptr; } -#line 4241 "bison_parser.cpp" +#line 4244 "bison_parser.cpp" break; case 146: /* opt_limit: LIMIT expr */ #line 847 "bison_parser.y" { (yyval.limit) = new LimitDescription((yyvsp[0].expr), nullptr); } -#line 4247 "bison_parser.cpp" +#line 4250 "bison_parser.cpp" break; case 147: /* opt_limit: OFFSET expr */ #line 848 "bison_parser.y" { (yyval.limit) = new LimitDescription(nullptr, (yyvsp[0].expr)); } -#line 4253 "bison_parser.cpp" +#line 4256 "bison_parser.cpp" break; case 148: /* opt_limit: LIMIT expr OFFSET expr */ #line 849 "bison_parser.y" { (yyval.limit) = new LimitDescription((yyvsp[-2].expr), (yyvsp[0].expr)); } -#line 4259 "bison_parser.cpp" +#line 4262 "bison_parser.cpp" break; case 149: /* opt_limit: LIMIT ALL */ #line 850 "bison_parser.y" { (yyval.limit) = new LimitDescription(nullptr, nullptr); } -#line 4265 "bison_parser.cpp" +#line 4268 "bison_parser.cpp" break; case 150: /* opt_limit: LIMIT ALL OFFSET expr */ #line 851 "bison_parser.y" { (yyval.limit) = new LimitDescription(nullptr, (yyvsp[0].expr)); } -#line 4271 "bison_parser.cpp" +#line 4274 "bison_parser.cpp" break; case 151: /* opt_limit: %empty */ #line 852 "bison_parser.y" { (yyval.limit) = nullptr; } -#line 4277 "bison_parser.cpp" +#line 4280 "bison_parser.cpp" break; case 152: /* expr_list: expr_alias */ @@ -4282,7 +4285,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr_vec) = new std::vector(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); } -#line 4286 "bison_parser.cpp" +#line 4289 "bison_parser.cpp" break; case 153: /* expr_list: expr_list ',' expr_alias */ @@ -4291,19 +4294,19 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); } -#line 4295 "bison_parser.cpp" +#line 4298 "bison_parser.cpp" break; case 154: /* opt_literal_list: literal_list */ #line 866 "bison_parser.y" { (yyval.expr_vec) = (yyvsp[0].expr_vec); } -#line 4301 "bison_parser.cpp" +#line 4304 "bison_parser.cpp" break; case 155: /* opt_literal_list: %empty */ #line 867 "bison_parser.y" { (yyval.expr_vec) = nullptr; } -#line 4307 "bison_parser.cpp" +#line 4310 "bison_parser.cpp" break; case 156: /* literal_list: literal */ @@ -4312,7 +4315,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr_vec) = new std::vector(); (yyval.expr_vec)->push_back((yyvsp[0].expr)); } -#line 4316 "bison_parser.cpp" +#line 4319 "bison_parser.cpp" break; case 157: /* literal_list: literal_list ',' literal */ @@ -4321,7 +4324,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].expr_vec)->push_back((yyvsp[0].expr)); (yyval.expr_vec) = (yyvsp[-2].expr_vec); } -#line 4325 "bison_parser.cpp" +#line 4328 "bison_parser.cpp" break; case 158: /* expr_alias: expr opt_alias */ @@ -4333,13 +4336,13 @@ YYLTYPE yylloc = yyloc_default; delete (yyvsp[0].alias_t); } } -#line 4337 "bison_parser.cpp" +#line 4340 "bison_parser.cpp" break; case 164: /* operand: '(' expr ')' */ #line 888 "bison_parser.y" { (yyval.expr) = (yyvsp[-1].expr); } -#line 4343 "bison_parser.cpp" +#line 4346 "bison_parser.cpp" break; case 174: /* operand: '(' select_no_paren ')' */ @@ -4347,397 +4350,397 @@ YYLTYPE yylloc = yyloc_default; { (yyval.expr) = Expr::makeSelect((yyvsp[-1].select_stmt)); } -#line 4351 "bison_parser.cpp" +#line 4354 "bison_parser.cpp" break; case 177: /* unary_expr: '-' operand */ #line 896 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpUnaryMinus, (yyvsp[0].expr)); } -#line 4357 "bison_parser.cpp" +#line 4360 "bison_parser.cpp" break; case 178: /* unary_expr: NOT operand */ #line 897 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpNot, (yyvsp[0].expr)); } -#line 4363 "bison_parser.cpp" +#line 4366 "bison_parser.cpp" break; case 179: /* unary_expr: operand ISNULL */ #line 898 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpIsNull, (yyvsp[-1].expr)); } -#line 4369 "bison_parser.cpp" +#line 4372 "bison_parser.cpp" break; case 180: /* unary_expr: operand IS NULL */ #line 899 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpIsNull, (yyvsp[-2].expr)); } -#line 4375 "bison_parser.cpp" +#line 4378 "bison_parser.cpp" break; case 181: /* unary_expr: operand IS NOT NULL */ #line 900 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeOpUnary(kOpIsNull, (yyvsp[-3].expr))); } -#line 4381 "bison_parser.cpp" +#line 4384 "bison_parser.cpp" break; case 183: /* binary_expr: operand '-' operand */ #line 902 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpMinus, (yyvsp[0].expr)); } -#line 4387 "bison_parser.cpp" +#line 4390 "bison_parser.cpp" break; case 184: /* binary_expr: operand '+' operand */ #line 903 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpPlus, (yyvsp[0].expr)); } -#line 4393 "bison_parser.cpp" +#line 4396 "bison_parser.cpp" break; case 185: /* binary_expr: operand '/' operand */ #line 904 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpSlash, (yyvsp[0].expr)); } -#line 4399 "bison_parser.cpp" +#line 4402 "bison_parser.cpp" break; case 186: /* binary_expr: operand '*' operand */ #line 905 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpAsterisk, (yyvsp[0].expr)); } -#line 4405 "bison_parser.cpp" +#line 4408 "bison_parser.cpp" break; case 187: /* binary_expr: operand '%' operand */ #line 906 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpPercentage, (yyvsp[0].expr)); } -#line 4411 "bison_parser.cpp" +#line 4414 "bison_parser.cpp" break; case 188: /* binary_expr: operand '^' operand */ #line 907 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpCaret, (yyvsp[0].expr)); } -#line 4417 "bison_parser.cpp" +#line 4420 "bison_parser.cpp" break; case 189: /* binary_expr: operand LIKE operand */ #line 908 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLike, (yyvsp[0].expr)); } -#line 4423 "bison_parser.cpp" +#line 4426 "bison_parser.cpp" break; case 190: /* binary_expr: operand NOT LIKE operand */ #line 909 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-3].expr), kOpNotLike, (yyvsp[0].expr)); } -#line 4429 "bison_parser.cpp" +#line 4432 "bison_parser.cpp" break; case 191: /* binary_expr: operand ILIKE operand */ #line 910 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpILike, (yyvsp[0].expr)); } -#line 4435 "bison_parser.cpp" +#line 4438 "bison_parser.cpp" break; case 192: /* binary_expr: operand CONCAT operand */ #line 911 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpConcat, (yyvsp[0].expr)); } -#line 4441 "bison_parser.cpp" +#line 4444 "bison_parser.cpp" break; case 193: /* logic_expr: expr AND expr */ #line 913 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpAnd, (yyvsp[0].expr)); } -#line 4447 "bison_parser.cpp" +#line 4450 "bison_parser.cpp" break; case 194: /* logic_expr: expr OR expr */ #line 914 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpOr, (yyvsp[0].expr)); } -#line 4453 "bison_parser.cpp" +#line 4456 "bison_parser.cpp" break; case 195: /* in_expr: operand IN '(' expr_list ')' */ #line 916 "bison_parser.y" { (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].expr_vec)); } -#line 4459 "bison_parser.cpp" +#line 4462 "bison_parser.cpp" break; case 196: /* in_expr: operand NOT IN '(' expr_list ')' */ #line 917 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].expr_vec))); } -#line 4465 "bison_parser.cpp" +#line 4468 "bison_parser.cpp" break; case 197: /* in_expr: operand IN '(' select_no_paren ')' */ #line 918 "bison_parser.y" { (yyval.expr) = Expr::makeInOperator((yyvsp[-4].expr), (yyvsp[-1].select_stmt)); } -#line 4471 "bison_parser.cpp" +#line 4474 "bison_parser.cpp" break; case 198: /* in_expr: operand NOT IN '(' select_no_paren ')' */ #line 919 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeInOperator((yyvsp[-5].expr), (yyvsp[-1].select_stmt))); } -#line 4477 "bison_parser.cpp" +#line 4480 "bison_parser.cpp" break; case 199: /* case_expr: CASE expr case_list END */ #line 923 "bison_parser.y" { (yyval.expr) = Expr::makeCase((yyvsp[-2].expr), (yyvsp[-1].expr), nullptr); } -#line 4483 "bison_parser.cpp" +#line 4486 "bison_parser.cpp" break; case 200: /* case_expr: CASE expr case_list ELSE expr END */ #line 924 "bison_parser.y" { (yyval.expr) = Expr::makeCase((yyvsp[-4].expr), (yyvsp[-3].expr), (yyvsp[-1].expr)); } -#line 4489 "bison_parser.cpp" +#line 4492 "bison_parser.cpp" break; case 201: /* case_expr: CASE case_list END */ #line 925 "bison_parser.y" { (yyval.expr) = Expr::makeCase(nullptr, (yyvsp[-1].expr), nullptr); } -#line 4495 "bison_parser.cpp" +#line 4498 "bison_parser.cpp" break; case 202: /* case_expr: CASE case_list ELSE expr END */ #line 926 "bison_parser.y" { (yyval.expr) = Expr::makeCase(nullptr, (yyvsp[-3].expr), (yyvsp[-1].expr)); } -#line 4501 "bison_parser.cpp" +#line 4504 "bison_parser.cpp" break; case 203: /* case_list: WHEN expr THEN expr */ #line 928 "bison_parser.y" { (yyval.expr) = Expr::makeCaseList(Expr::makeCaseListElement((yyvsp[-2].expr), (yyvsp[0].expr))); } -#line 4507 "bison_parser.cpp" +#line 4510 "bison_parser.cpp" break; case 204: /* case_list: case_list WHEN expr THEN expr */ #line 929 "bison_parser.y" { (yyval.expr) = Expr::caseListAppend((yyvsp[-4].expr), Expr::makeCaseListElement((yyvsp[-2].expr), (yyvsp[0].expr))); } -#line 4513 "bison_parser.cpp" +#line 4516 "bison_parser.cpp" break; case 205: /* exists_expr: EXISTS '(' select_no_paren ')' */ #line 931 "bison_parser.y" { (yyval.expr) = Expr::makeExists((yyvsp[-1].select_stmt)); } -#line 4519 "bison_parser.cpp" +#line 4522 "bison_parser.cpp" break; case 206: /* exists_expr: NOT EXISTS '(' select_no_paren ')' */ #line 932 "bison_parser.y" { (yyval.expr) = Expr::makeOpUnary(kOpNot, Expr::makeExists((yyvsp[-1].select_stmt))); } -#line 4525 "bison_parser.cpp" +#line 4528 "bison_parser.cpp" break; case 207: /* comp_expr: operand '=' operand */ #line 934 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpEquals, (yyvsp[0].expr)); } -#line 4531 "bison_parser.cpp" +#line 4534 "bison_parser.cpp" break; case 208: /* comp_expr: operand EQUALS operand */ #line 935 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpEquals, (yyvsp[0].expr)); } -#line 4537 "bison_parser.cpp" +#line 4540 "bison_parser.cpp" break; case 209: /* comp_expr: operand NOTEQUALS operand */ #line 936 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpNotEquals, (yyvsp[0].expr)); } -#line 4543 "bison_parser.cpp" +#line 4546 "bison_parser.cpp" break; case 210: /* comp_expr: operand '<' operand */ #line 937 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLess, (yyvsp[0].expr)); } -#line 4549 "bison_parser.cpp" +#line 4552 "bison_parser.cpp" break; case 211: /* comp_expr: operand '>' operand */ #line 938 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpGreater, (yyvsp[0].expr)); } -#line 4555 "bison_parser.cpp" +#line 4558 "bison_parser.cpp" break; case 212: /* comp_expr: operand LESSEQ operand */ #line 939 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpLessEq, (yyvsp[0].expr)); } -#line 4561 "bison_parser.cpp" +#line 4564 "bison_parser.cpp" break; case 213: /* comp_expr: operand GREATEREQ operand */ #line 940 "bison_parser.y" { (yyval.expr) = Expr::makeOpBinary((yyvsp[-2].expr), kOpGreaterEq, (yyvsp[0].expr)); } -#line 4567 "bison_parser.cpp" +#line 4570 "bison_parser.cpp" break; case 214: /* function_expr: IDENTIFIER '(' ')' */ #line 942 "bison_parser.y" { (yyval.expr) = Expr::makeFunctionRef((yyvsp[-2].sval), new std::vector(), false); } -#line 4573 "bison_parser.cpp" +#line 4576 "bison_parser.cpp" break; case 215: /* function_expr: IDENTIFIER '(' opt_distinct expr_list ')' */ #line 943 "bison_parser.y" { (yyval.expr) = Expr::makeFunctionRef((yyvsp[-4].sval), (yyvsp[-1].expr_vec), (yyvsp[-2].bval)); } -#line 4579 "bison_parser.cpp" +#line 4582 "bison_parser.cpp" break; case 216: /* extract_expr: EXTRACT '(' datetime_field FROM expr ')' */ #line 945 "bison_parser.y" { (yyval.expr) = Expr::makeExtract((yyvsp[-3].datetime_field), (yyvsp[-1].expr)); } -#line 4585 "bison_parser.cpp" +#line 4588 "bison_parser.cpp" break; case 217: /* cast_expr: CAST '(' expr AS column_type ')' */ #line 947 "bison_parser.y" { (yyval.expr) = Expr::makeCast((yyvsp[-3].expr), (yyvsp[-1].column_type_t)); } -#line 4591 "bison_parser.cpp" +#line 4594 "bison_parser.cpp" break; case 218: /* datetime_field: SECOND */ #line 949 "bison_parser.y" { (yyval.datetime_field) = kDatetimeSecond; } -#line 4597 "bison_parser.cpp" +#line 4600 "bison_parser.cpp" break; case 219: /* datetime_field: MINUTE */ #line 950 "bison_parser.y" { (yyval.datetime_field) = kDatetimeMinute; } -#line 4603 "bison_parser.cpp" +#line 4606 "bison_parser.cpp" break; case 220: /* datetime_field: HOUR */ #line 951 "bison_parser.y" { (yyval.datetime_field) = kDatetimeHour; } -#line 4609 "bison_parser.cpp" +#line 4612 "bison_parser.cpp" break; case 221: /* datetime_field: DAY */ #line 952 "bison_parser.y" { (yyval.datetime_field) = kDatetimeDay; } -#line 4615 "bison_parser.cpp" +#line 4618 "bison_parser.cpp" break; case 222: /* datetime_field: MONTH */ #line 953 "bison_parser.y" { (yyval.datetime_field) = kDatetimeMonth; } -#line 4621 "bison_parser.cpp" +#line 4624 "bison_parser.cpp" break; case 223: /* datetime_field: YEAR */ #line 954 "bison_parser.y" { (yyval.datetime_field) = kDatetimeYear; } -#line 4627 "bison_parser.cpp" +#line 4630 "bison_parser.cpp" break; case 224: /* datetime_field_plural: SECONDS */ #line 956 "bison_parser.y" { (yyval.datetime_field) = kDatetimeSecond; } -#line 4633 "bison_parser.cpp" +#line 4636 "bison_parser.cpp" break; case 225: /* datetime_field_plural: MINUTES */ #line 957 "bison_parser.y" { (yyval.datetime_field) = kDatetimeMinute; } -#line 4639 "bison_parser.cpp" +#line 4642 "bison_parser.cpp" break; case 226: /* datetime_field_plural: HOURS */ #line 958 "bison_parser.y" { (yyval.datetime_field) = kDatetimeHour; } -#line 4645 "bison_parser.cpp" +#line 4648 "bison_parser.cpp" break; case 227: /* datetime_field_plural: DAYS */ #line 959 "bison_parser.y" { (yyval.datetime_field) = kDatetimeDay; } -#line 4651 "bison_parser.cpp" +#line 4654 "bison_parser.cpp" break; case 228: /* datetime_field_plural: MONTHS */ #line 960 "bison_parser.y" { (yyval.datetime_field) = kDatetimeMonth; } -#line 4657 "bison_parser.cpp" +#line 4660 "bison_parser.cpp" break; case 229: /* datetime_field_plural: YEARS */ #line 961 "bison_parser.y" { (yyval.datetime_field) = kDatetimeYear; } -#line 4663 "bison_parser.cpp" +#line 4666 "bison_parser.cpp" break; case 232: /* array_expr: ARRAY '[' expr_list ']' */ #line 965 "bison_parser.y" { (yyval.expr) = Expr::makeArray((yyvsp[-1].expr_vec)); } -#line 4669 "bison_parser.cpp" +#line 4672 "bison_parser.cpp" break; case 233: /* array_index: operand '[' int_literal ']' */ #line 967 "bison_parser.y" { (yyval.expr) = Expr::makeArrayIndex((yyvsp[-3].expr), (yyvsp[-1].expr)->ival); } -#line 4675 "bison_parser.cpp" +#line 4678 "bison_parser.cpp" break; case 234: /* between_expr: operand BETWEEN operand AND operand */ #line 969 "bison_parser.y" { (yyval.expr) = Expr::makeBetween((yyvsp[-4].expr), (yyvsp[-2].expr), (yyvsp[0].expr)); } -#line 4681 "bison_parser.cpp" +#line 4684 "bison_parser.cpp" break; case 235: /* column_name: IDENTIFIER */ #line 971 "bison_parser.y" { (yyval.expr) = Expr::makeColumnRef((yyvsp[0].sval)); } -#line 4687 "bison_parser.cpp" +#line 4690 "bison_parser.cpp" break; case 236: /* column_name: IDENTIFIER '.' IDENTIFIER */ #line 972 "bison_parser.y" { (yyval.expr) = Expr::makeColumnRef((yyvsp[-2].sval), (yyvsp[0].sval)); } -#line 4693 "bison_parser.cpp" +#line 4696 "bison_parser.cpp" break; case 237: /* column_name: '*' */ #line 973 "bison_parser.y" { (yyval.expr) = Expr::makeStar(); } -#line 4699 "bison_parser.cpp" +#line 4702 "bison_parser.cpp" break; case 238: /* column_name: IDENTIFIER '.' '*' */ #line 974 "bison_parser.y" { (yyval.expr) = Expr::makeStar((yyvsp[-2].sval)); } -#line 4705 "bison_parser.cpp" +#line 4708 "bison_parser.cpp" break; case 246: /* string_literal: STRING */ #line 978 "bison_parser.y" { (yyval.expr) = Expr::makeLiteral((yyvsp[0].sval)); } -#line 4711 "bison_parser.cpp" +#line 4714 "bison_parser.cpp" break; case 247: /* bool_literal: TRUE */ #line 980 "bison_parser.y" { (yyval.expr) = Expr::makeLiteral(true); } -#line 4717 "bison_parser.cpp" +#line 4720 "bison_parser.cpp" break; case 248: /* bool_literal: FALSE */ #line 981 "bison_parser.y" { (yyval.expr) = Expr::makeLiteral(false); } -#line 4723 "bison_parser.cpp" +#line 4726 "bison_parser.cpp" break; case 249: /* num_literal: FLOATVAL */ #line 983 "bison_parser.y" { (yyval.expr) = Expr::makeLiteral((yyvsp[0].fval)); } -#line 4729 "bison_parser.cpp" +#line 4732 "bison_parser.cpp" break; case 251: /* int_literal: INTVAL */ #line 986 "bison_parser.y" { (yyval.expr) = Expr::makeLiteral((yyvsp[0].ival)); } -#line 4735 "bison_parser.cpp" +#line 4738 "bison_parser.cpp" break; case 252: /* null_literal: NULL */ #line 988 "bison_parser.y" { (yyval.expr) = Expr::makeNullLiteral(); } -#line 4741 "bison_parser.cpp" +#line 4744 "bison_parser.cpp" break; case 253: /* date_literal: DATE STRING */ @@ -4752,7 +4755,7 @@ YYLTYPE yylloc = yyloc_default; } (yyval.expr) = Expr::makeDateLiteral((yyvsp[0].sval)); } -#line 4756 "bison_parser.cpp" +#line 4759 "bison_parser.cpp" break; case 254: /* interval_literal: int_literal duration_field */ @@ -4761,7 +4764,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr) = Expr::makeIntervalLiteral((yyvsp[-1].expr)->ival, (yyvsp[0].datetime_field)); delete (yyvsp[-1].expr); } -#line 4765 "bison_parser.cpp" +#line 4768 "bison_parser.cpp" break; case 255: /* interval_literal: INTERVAL STRING datetime_field */ @@ -4777,7 +4780,7 @@ YYLTYPE yylloc = yyloc_default; free((yyvsp[-1].sval)); (yyval.expr) = Expr::makeIntervalLiteral(duration, (yyvsp[0].datetime_field)); } -#line 4781 "bison_parser.cpp" +#line 4784 "bison_parser.cpp" break; case 256: /* interval_literal: INTERVAL STRING */ @@ -4813,7 +4816,7 @@ YYLTYPE yylloc = yyloc_default; } (yyval.expr) = Expr::makeIntervalLiteral(duration, unit); } -#line 4817 "bison_parser.cpp" +#line 4820 "bison_parser.cpp" break; case 257: /* param_expr: '?' */ @@ -4823,7 +4826,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.expr)->ival2 = yyloc.param_list.size(); yyloc.param_list.push_back((yyval.expr)); } -#line 4827 "bison_parser.cpp" +#line 4830 "bison_parser.cpp" break; case 259: /* table_ref: table_ref_commalist ',' table_ref_atomic */ @@ -4834,7 +4837,7 @@ YYLTYPE yylloc = yyloc_default; tbl->list = (yyvsp[-2].table_vec); (yyval.table) = tbl; } -#line 4838 "bison_parser.cpp" +#line 4841 "bison_parser.cpp" break; case 263: /* nonjoin_table_ref_atomic: '(' select_statement ')' opt_table_alias */ @@ -4845,7 +4848,7 @@ YYLTYPE yylloc = yyloc_default; tbl->alias = (yyvsp[0].alias_t); (yyval.table) = tbl; } -#line 4849 "bison_parser.cpp" +#line 4852 "bison_parser.cpp" break; case 264: /* table_ref_commalist: table_ref_atomic */ @@ -4854,7 +4857,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table_vec) = new std::vector(); (yyval.table_vec)->push_back((yyvsp[0].table)); } -#line 4858 "bison_parser.cpp" +#line 4861 "bison_parser.cpp" break; case 265: /* table_ref_commalist: table_ref_commalist ',' table_ref_atomic */ @@ -4863,7 +4866,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].table_vec)->push_back((yyvsp[0].table)); (yyval.table_vec) = (yyvsp[-2].table_vec); } -#line 4867 "bison_parser.cpp" +#line 4870 "bison_parser.cpp" break; case 266: /* table_ref_name: table_name opt_table_alias */ @@ -4875,7 +4878,7 @@ YYLTYPE yylloc = yyloc_default; tbl->alias = (yyvsp[0].alias_t); (yyval.table) = tbl; } -#line 4879 "bison_parser.cpp" +#line 4882 "bison_parser.cpp" break; case 267: /* table_ref_name_no_alias: table_name */ @@ -4885,7 +4888,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table)->schema = (yyvsp[0].table_name).schema; (yyval.table)->name = (yyvsp[0].table_name).name; } -#line 4889 "bison_parser.cpp" +#line 4892 "bison_parser.cpp" break; case 268: /* table_name: IDENTIFIER */ @@ -4894,7 +4897,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table_name).schema = nullptr; (yyval.table_name).name = (yyvsp[0].sval); } -#line 4898 "bison_parser.cpp" +#line 4901 "bison_parser.cpp" break; case 269: /* table_name: IDENTIFIER '.' IDENTIFIER */ @@ -4903,61 +4906,61 @@ YYLTYPE yylloc = yyloc_default; (yyval.table_name).schema = (yyvsp[-2].sval); (yyval.table_name).name = (yyvsp[0].sval); } -#line 4907 "bison_parser.cpp" +#line 4910 "bison_parser.cpp" break; case 270: /* opt_index_name: IDENTIFIER */ #line 1105 "bison_parser.y" { (yyval.sval) = (yyvsp[0].sval); } -#line 4913 "bison_parser.cpp" +#line 4916 "bison_parser.cpp" break; case 271: /* opt_index_name: %empty */ #line 1106 "bison_parser.y" { (yyval.sval) = nullptr; } -#line 4919 "bison_parser.cpp" +#line 4922 "bison_parser.cpp" break; case 273: /* table_alias: AS IDENTIFIER '(' ident_commalist ')' */ #line 1108 "bison_parser.y" { (yyval.alias_t) = new Alias((yyvsp[-3].sval), (yyvsp[-1].str_vec)); } -#line 4925 "bison_parser.cpp" +#line 4928 "bison_parser.cpp" break; case 275: /* opt_table_alias: %empty */ #line 1110 "bison_parser.y" { (yyval.alias_t) = nullptr; } -#line 4931 "bison_parser.cpp" +#line 4934 "bison_parser.cpp" break; case 276: /* alias: AS IDENTIFIER */ #line 1112 "bison_parser.y" { (yyval.alias_t) = new Alias((yyvsp[0].sval)); } -#line 4937 "bison_parser.cpp" +#line 4940 "bison_parser.cpp" break; case 277: /* alias: IDENTIFIER */ #line 1113 "bison_parser.y" { (yyval.alias_t) = new Alias((yyvsp[0].sval)); } -#line 4943 "bison_parser.cpp" +#line 4946 "bison_parser.cpp" break; case 279: /* opt_alias: %empty */ #line 1115 "bison_parser.y" { (yyval.alias_t) = nullptr; } -#line 4949 "bison_parser.cpp" +#line 4952 "bison_parser.cpp" break; case 281: /* opt_with_clause: %empty */ #line 1121 "bison_parser.y" { (yyval.with_description_vec) = nullptr; } -#line 4955 "bison_parser.cpp" +#line 4958 "bison_parser.cpp" break; case 282: /* with_clause: WITH with_description_list */ #line 1123 "bison_parser.y" { (yyval.with_description_vec) = (yyvsp[0].with_description_vec); } -#line 4961 "bison_parser.cpp" +#line 4964 "bison_parser.cpp" break; case 283: /* with_description_list: with_description */ @@ -4966,7 +4969,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.with_description_vec) = new std::vector(); (yyval.with_description_vec)->push_back((yyvsp[0].with_description_t)); } -#line 4970 "bison_parser.cpp" +#line 4973 "bison_parser.cpp" break; case 284: /* with_description_list: with_description_list ',' with_description */ @@ -4975,7 +4978,7 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].with_description_vec)->push_back((yyvsp[0].with_description_t)); (yyval.with_description_vec) = (yyvsp[-2].with_description_vec); } -#line 4979 "bison_parser.cpp" +#line 4982 "bison_parser.cpp" break; case 285: /* with_description: IDENTIFIER AS select_with_paren */ @@ -4985,7 +4988,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.with_description_t)->alias = (yyvsp[-2].sval); (yyval.with_description_t)->select = (yyvsp[0].select_stmt); } -#line 4989 "bison_parser.cpp" +#line 4992 "bison_parser.cpp" break; case 286: /* join_clause: table_ref_atomic NATURAL JOIN nonjoin_table_ref_atomic */ @@ -4997,7 +5000,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table)->join->left = (yyvsp[-3].table); (yyval.table)->join->right = (yyvsp[0].table); } -#line 5001 "bison_parser.cpp" +#line 5004 "bison_parser.cpp" break; case 287: /* join_clause: table_ref_atomic opt_join_type JOIN table_ref_atomic ON join_condition */ @@ -5010,7 +5013,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.table)->join->right = (yyvsp[-2].table); (yyval.table)->join->condition = (yyvsp[0].expr); } -#line 5014 "bison_parser.cpp" +#line 5017 "bison_parser.cpp" break; case 288: /* join_clause: table_ref_atomic opt_join_type JOIN table_ref_atomic USING '(' column_name ')' */ @@ -5030,67 +5033,67 @@ YYLTYPE yylloc = yyloc_default; (yyval.table)->join->condition = Expr::makeOpBinary(left_col, kOpEquals, right_col); delete (yyvsp[-1].expr); } -#line 5034 "bison_parser.cpp" +#line 5037 "bison_parser.cpp" break; case 289: /* opt_join_type: INNER */ #line 1175 "bison_parser.y" { (yyval.join_type) = kJoinInner; } -#line 5040 "bison_parser.cpp" +#line 5043 "bison_parser.cpp" break; case 290: /* opt_join_type: LEFT OUTER */ #line 1176 "bison_parser.y" { (yyval.join_type) = kJoinLeft; } -#line 5046 "bison_parser.cpp" +#line 5049 "bison_parser.cpp" break; case 291: /* opt_join_type: LEFT */ #line 1177 "bison_parser.y" { (yyval.join_type) = kJoinLeft; } -#line 5052 "bison_parser.cpp" +#line 5055 "bison_parser.cpp" break; case 292: /* opt_join_type: RIGHT OUTER */ #line 1178 "bison_parser.y" { (yyval.join_type) = kJoinRight; } -#line 5058 "bison_parser.cpp" +#line 5061 "bison_parser.cpp" break; case 293: /* opt_join_type: RIGHT */ #line 1179 "bison_parser.y" { (yyval.join_type) = kJoinRight; } -#line 5064 "bison_parser.cpp" +#line 5067 "bison_parser.cpp" break; case 294: /* opt_join_type: FULL OUTER */ #line 1180 "bison_parser.y" { (yyval.join_type) = kJoinFull; } -#line 5070 "bison_parser.cpp" +#line 5073 "bison_parser.cpp" break; case 295: /* opt_join_type: OUTER */ #line 1181 "bison_parser.y" { (yyval.join_type) = kJoinFull; } -#line 5076 "bison_parser.cpp" +#line 5079 "bison_parser.cpp" break; case 296: /* opt_join_type: FULL */ #line 1182 "bison_parser.y" { (yyval.join_type) = kJoinFull; } -#line 5082 "bison_parser.cpp" +#line 5085 "bison_parser.cpp" break; case 297: /* opt_join_type: CROSS */ #line 1183 "bison_parser.y" { (yyval.join_type) = kJoinCross; } -#line 5088 "bison_parser.cpp" +#line 5091 "bison_parser.cpp" break; case 298: /* opt_join_type: %empty */ #line 1184 "bison_parser.y" { (yyval.join_type) = kJoinInner; } -#line 5094 "bison_parser.cpp" +#line 5097 "bison_parser.cpp" break; case 302: /* ident_commalist: IDENTIFIER */ @@ -5099,7 +5102,7 @@ YYLTYPE yylloc = yyloc_default; (yyval.str_vec) = new std::vector(); (yyval.str_vec)->push_back((yyvsp[0].sval)); } -#line 5103 "bison_parser.cpp" +#line 5106 "bison_parser.cpp" break; case 303: /* ident_commalist: ident_commalist ',' IDENTIFIER */ @@ -5108,11 +5111,11 @@ YYLTYPE yylloc = yyloc_default; (yyvsp[-2].str_vec)->push_back((yyvsp[0].sval)); (yyval.str_vec) = (yyvsp[-2].str_vec); } -#line 5112 "bison_parser.cpp" +#line 5115 "bison_parser.cpp" break; -#line 5116 "bison_parser.cpp" +#line 5119 "bison_parser.cpp" default: break; } @@ -5343,9 +5346,9 @@ YYLTYPE yylloc = yyloc_default; #line 1205 "bison_parser.y" -// clang-format on -/********************************* + // clang-format on + /********************************* ** Section 4: Additional C code *********************************/ -/* empty */ + /* empty */ diff --git a/src/parser/bison_parser.h b/src/parser/bison_parser.h index e0703d38..10b50d67 100644 --- a/src/parser/bison_parser.h +++ b/src/parser/bison_parser.h @@ -36,27 +36,27 @@ private implementation details that can be changed or removed. */ #ifndef YY_HSQL_BISON_PARSER_H_INCLUDED -#define YY_HSQL_BISON_PARSER_H_INCLUDED +# define YY_HSQL_BISON_PARSER_H_INCLUDED /* Debug traces. */ #ifndef HSQL_DEBUG -#if defined YYDEBUG +# if defined YYDEBUG #if YYDEBUG -#define HSQL_DEBUG 1 -#else -#define HSQL_DEBUG 0 -#endif -#else /* ! defined YYDEBUG */ -#define HSQL_DEBUG 0 -#endif /* ! defined YYDEBUG */ -#endif /* ! defined HSQL_DEBUG */ +# define HSQL_DEBUG 1 +# else +# define HSQL_DEBUG 0 +# endif +# else /* ! defined YYDEBUG */ +# define HSQL_DEBUG 0 +# endif /* ! defined YYDEBUG */ +#endif /* ! defined HSQL_DEBUG */ #if HSQL_DEBUG extern int hsql_debug; #endif /* "%code requires" blocks. */ #line 38 "bison_parser.y" -// clang-format on -// %code requires block + // clang-format on + // %code requires block #include "../SQLParserResult.h" #include "../sql/statements.h" @@ -81,180 +81,181 @@ extern int hsql_debug; /* Token kinds. */ #ifndef HSQL_TOKENTYPE -#define HSQL_TOKENTYPE -enum hsql_tokentype { - SQL_HSQL_EMPTY = -2, - SQL_YYEOF = 0, /* "end of file" */ - SQL_HSQL_error = 256, /* error */ - SQL_HSQL_UNDEF = 257, /* "invalid token" */ - SQL_IDENTIFIER = 258, /* IDENTIFIER */ - SQL_STRING = 259, /* STRING */ - SQL_FLOATVAL = 260, /* FLOATVAL */ - SQL_INTVAL = 261, /* INTVAL */ - SQL_DEALLOCATE = 262, /* DEALLOCATE */ - SQL_PARAMETERS = 263, /* PARAMETERS */ - SQL_INTERSECT = 264, /* INTERSECT */ - SQL_TEMPORARY = 265, /* TEMPORARY */ - SQL_TIMESTAMP = 266, /* TIMESTAMP */ - SQL_DISTINCT = 267, /* DISTINCT */ - SQL_NVARCHAR = 268, /* NVARCHAR */ - SQL_RESTRICT = 269, /* RESTRICT */ - SQL_TRUNCATE = 270, /* TRUNCATE */ - SQL_ANALYZE = 271, /* ANALYZE */ - SQL_BETWEEN = 272, /* BETWEEN */ - SQL_CASCADE = 273, /* CASCADE */ - SQL_COLUMNS = 274, /* COLUMNS */ - SQL_CONTROL = 275, /* CONTROL */ - SQL_DEFAULT = 276, /* DEFAULT */ - SQL_EXECUTE = 277, /* EXECUTE */ - SQL_EXPLAIN = 278, /* EXPLAIN */ - SQL_INTEGER = 279, /* INTEGER */ - SQL_NATURAL = 280, /* NATURAL */ - SQL_PREPARE = 281, /* PREPARE */ - SQL_PRIMARY = 282, /* PRIMARY */ - SQL_SCHEMAS = 283, /* SCHEMAS */ - SQL_CHARACTER = 284, /* CHARACTER */ - SQL_VARYING = 285, /* VARYING */ - SQL_REAL = 286, /* REAL */ - SQL_DECIMAL = 287, /* DECIMAL */ - SQL_SMALLINT = 288, /* SMALLINT */ - SQL_SPATIAL = 289, /* SPATIAL */ - SQL_VARCHAR = 290, /* VARCHAR */ - SQL_VIRTUAL = 291, /* VIRTUAL */ - SQL_DESCRIBE = 292, /* DESCRIBE */ - SQL_BEFORE = 293, /* BEFORE */ - SQL_COLUMN = 294, /* COLUMN */ - SQL_CREATE = 295, /* CREATE */ - SQL_DELETE = 296, /* DELETE */ - SQL_DIRECT = 297, /* DIRECT */ - SQL_DOUBLE = 298, /* DOUBLE */ - SQL_ESCAPE = 299, /* ESCAPE */ - SQL_EXCEPT = 300, /* EXCEPT */ - SQL_EXISTS = 301, /* EXISTS */ - SQL_EXTRACT = 302, /* EXTRACT */ - SQL_CAST = 303, /* CAST */ - SQL_FORMAT = 304, /* FORMAT */ - SQL_GLOBAL = 305, /* GLOBAL */ - SQL_HAVING = 306, /* HAVING */ - SQL_IMPORT = 307, /* IMPORT */ - SQL_INSERT = 308, /* INSERT */ - SQL_ISNULL = 309, /* ISNULL */ - SQL_OFFSET = 310, /* OFFSET */ - SQL_RENAME = 311, /* RENAME */ - SQL_SCHEMA = 312, /* SCHEMA */ - SQL_SELECT = 313, /* SELECT */ - SQL_SORTED = 314, /* SORTED */ - SQL_TABLES = 315, /* TABLES */ - SQL_UNIQUE = 316, /* UNIQUE */ - SQL_UNLOAD = 317, /* UNLOAD */ - SQL_UPDATE = 318, /* UPDATE */ - SQL_VALUES = 319, /* VALUES */ - SQL_AFTER = 320, /* AFTER */ - SQL_ALTER = 321, /* ALTER */ - SQL_CROSS = 322, /* CROSS */ - SQL_DELTA = 323, /* DELTA */ - SQL_FLOAT = 324, /* FLOAT */ - SQL_GROUP = 325, /* GROUP */ - SQL_INDEX = 326, /* INDEX */ - SQL_INNER = 327, /* INNER */ - SQL_LIMIT = 328, /* LIMIT */ - SQL_LOCAL = 329, /* LOCAL */ - SQL_MERGE = 330, /* MERGE */ - SQL_MINUS = 331, /* MINUS */ - SQL_ORDER = 332, /* ORDER */ - SQL_OUTER = 333, /* OUTER */ - SQL_RIGHT = 334, /* RIGHT */ - SQL_TABLE = 335, /* TABLE */ - SQL_UNION = 336, /* UNION */ - SQL_USING = 337, /* USING */ - SQL_WHERE = 338, /* WHERE */ - SQL_CALL = 339, /* CALL */ - SQL_CASE = 340, /* CASE */ - SQL_CHAR = 341, /* CHAR */ - SQL_COPY = 342, /* COPY */ - SQL_DATE = 343, /* DATE */ - SQL_DATETIME = 344, /* DATETIME */ - SQL_DESC = 345, /* DESC */ - SQL_DROP = 346, /* DROP */ - SQL_ELSE = 347, /* ELSE */ - SQL_FILE = 348, /* FILE */ - SQL_FROM = 349, /* FROM */ - SQL_FULL = 350, /* FULL */ - SQL_HASH = 351, /* HASH */ - SQL_HINT = 352, /* HINT */ - SQL_INTO = 353, /* INTO */ - SQL_JOIN = 354, /* JOIN */ - SQL_LEFT = 355, /* LEFT */ - SQL_LIKE = 356, /* LIKE */ - SQL_LOAD = 357, /* LOAD */ - SQL_LONG = 358, /* LONG */ - SQL_NULL = 359, /* NULL */ - SQL_PLAN = 360, /* PLAN */ - SQL_SHOW = 361, /* SHOW */ - SQL_TEXT = 362, /* TEXT */ - SQL_THEN = 363, /* THEN */ - SQL_TIME = 364, /* TIME */ - SQL_VIEW = 365, /* VIEW */ - SQL_WHEN = 366, /* WHEN */ - SQL_WITH = 367, /* WITH */ - SQL_ADD = 368, /* ADD */ - SQL_ALL = 369, /* ALL */ - SQL_AND = 370, /* AND */ - SQL_ASC = 371, /* ASC */ - SQL_END = 372, /* END */ - SQL_FOR = 373, /* FOR */ - SQL_INT = 374, /* INT */ - SQL_KEY = 375, /* KEY */ - SQL_NOT = 376, /* NOT */ - SQL_OFF = 377, /* OFF */ - SQL_SET = 378, /* SET */ - SQL_TOP = 379, /* TOP */ - SQL_AS = 380, /* AS */ - SQL_BY = 381, /* BY */ - SQL_IF = 382, /* IF */ - SQL_IN = 383, /* IN */ - SQL_IS = 384, /* IS */ - SQL_OF = 385, /* OF */ - SQL_ON = 386, /* ON */ - SQL_OR = 387, /* OR */ - SQL_TO = 388, /* TO */ - SQL_ARRAY = 389, /* ARRAY */ - SQL_CONCAT = 390, /* CONCAT */ - SQL_ILIKE = 391, /* ILIKE */ - SQL_SECOND = 392, /* SECOND */ - SQL_MINUTE = 393, /* MINUTE */ - SQL_HOUR = 394, /* HOUR */ - SQL_DAY = 395, /* DAY */ - SQL_MONTH = 396, /* MONTH */ - SQL_YEAR = 397, /* YEAR */ - SQL_SECONDS = 398, /* SECONDS */ - SQL_MINUTES = 399, /* MINUTES */ - SQL_HOURS = 400, /* HOURS */ - SQL_DAYS = 401, /* DAYS */ - SQL_MONTHS = 402, /* MONTHS */ - SQL_YEARS = 403, /* YEARS */ - SQL_INTERVAL = 404, /* INTERVAL */ - SQL_TRUE = 405, /* TRUE */ - SQL_FALSE = 406, /* FALSE */ - SQL_TRANSACTION = 407, /* TRANSACTION */ - SQL_BEGIN = 408, /* BEGIN */ - SQL_COMMIT = 409, /* COMMIT */ - SQL_ROLLBACK = 410, /* ROLLBACK */ - SQL_EQUALS = 411, /* EQUALS */ - SQL_NOTEQUALS = 412, /* NOTEQUALS */ - SQL_LESS = 413, /* LESS */ - SQL_GREATER = 414, /* GREATER */ - SQL_LESSEQ = 415, /* LESSEQ */ - SQL_GREATEREQ = 416, /* GREATEREQ */ - SQL_NOTNULL = 417, /* NOTNULL */ - SQL_UMINUS = 418 /* UMINUS */ -}; -typedef enum hsql_tokentype hsql_token_kind_t; +# define HSQL_TOKENTYPE + enum hsql_tokentype + { + SQL_HSQL_EMPTY = -2, + SQL_YYEOF = 0, /* "end of file" */ + SQL_HSQL_error = 256, /* error */ + SQL_HSQL_UNDEF = 257, /* "invalid token" */ + SQL_IDENTIFIER = 258, /* IDENTIFIER */ + SQL_STRING = 259, /* STRING */ + SQL_FLOATVAL = 260, /* FLOATVAL */ + SQL_INTVAL = 261, /* INTVAL */ + SQL_DEALLOCATE = 262, /* DEALLOCATE */ + SQL_PARAMETERS = 263, /* PARAMETERS */ + SQL_INTERSECT = 264, /* INTERSECT */ + SQL_TEMPORARY = 265, /* TEMPORARY */ + SQL_TIMESTAMP = 266, /* TIMESTAMP */ + SQL_DISTINCT = 267, /* DISTINCT */ + SQL_NVARCHAR = 268, /* NVARCHAR */ + SQL_RESTRICT = 269, /* RESTRICT */ + SQL_TRUNCATE = 270, /* TRUNCATE */ + SQL_ANALYZE = 271, /* ANALYZE */ + SQL_BETWEEN = 272, /* BETWEEN */ + SQL_CASCADE = 273, /* CASCADE */ + SQL_COLUMNS = 274, /* COLUMNS */ + SQL_CONTROL = 275, /* CONTROL */ + SQL_DEFAULT = 276, /* DEFAULT */ + SQL_EXECUTE = 277, /* EXECUTE */ + SQL_EXPLAIN = 278, /* EXPLAIN */ + SQL_INTEGER = 279, /* INTEGER */ + SQL_NATURAL = 280, /* NATURAL */ + SQL_PREPARE = 281, /* PREPARE */ + SQL_PRIMARY = 282, /* PRIMARY */ + SQL_SCHEMAS = 283, /* SCHEMAS */ + SQL_CHARACTER_VARYING = 284, /* CHARACTER_VARYING */ + SQL_REAL = 285, /* REAL */ + SQL_DECIMAL = 286, /* DECIMAL */ + SQL_SMALLINT = 287, /* SMALLINT */ + SQL_SPATIAL = 288, /* SPATIAL */ + SQL_VARCHAR = 289, /* VARCHAR */ + SQL_VIRTUAL = 290, /* VIRTUAL */ + SQL_DESCRIBE = 291, /* DESCRIBE */ + SQL_BEFORE = 292, /* BEFORE */ + SQL_COLUMN = 293, /* COLUMN */ + SQL_CREATE = 294, /* CREATE */ + SQL_DELETE = 295, /* DELETE */ + SQL_DIRECT = 296, /* DIRECT */ + SQL_DOUBLE = 297, /* DOUBLE */ + SQL_ESCAPE = 298, /* ESCAPE */ + SQL_EXCEPT = 299, /* EXCEPT */ + SQL_EXISTS = 300, /* EXISTS */ + SQL_EXTRACT = 301, /* EXTRACT */ + SQL_CAST = 302, /* CAST */ + SQL_FORMAT = 303, /* FORMAT */ + SQL_GLOBAL = 304, /* GLOBAL */ + SQL_HAVING = 305, /* HAVING */ + SQL_IMPORT = 306, /* IMPORT */ + SQL_INSERT = 307, /* INSERT */ + SQL_ISNULL = 308, /* ISNULL */ + SQL_OFFSET = 309, /* OFFSET */ + SQL_RENAME = 310, /* RENAME */ + SQL_SCHEMA = 311, /* SCHEMA */ + SQL_SELECT = 312, /* SELECT */ + SQL_SORTED = 313, /* SORTED */ + SQL_TABLES = 314, /* TABLES */ + SQL_UNIQUE = 315, /* UNIQUE */ + SQL_UNLOAD = 316, /* UNLOAD */ + SQL_UPDATE = 317, /* UPDATE */ + SQL_VALUES = 318, /* VALUES */ + SQL_AFTER = 319, /* AFTER */ + SQL_ALTER = 320, /* ALTER */ + SQL_CROSS = 321, /* CROSS */ + SQL_DELTA = 322, /* DELTA */ + SQL_FLOAT = 323, /* FLOAT */ + SQL_GROUP = 324, /* GROUP */ + SQL_INDEX = 325, /* INDEX */ + SQL_INNER = 326, /* INNER */ + SQL_LIMIT = 327, /* LIMIT */ + SQL_LOCAL = 328, /* LOCAL */ + SQL_MERGE = 329, /* MERGE */ + SQL_MINUS = 330, /* MINUS */ + SQL_ORDER = 331, /* ORDER */ + SQL_OUTER = 332, /* OUTER */ + SQL_RIGHT = 333, /* RIGHT */ + SQL_TABLE = 334, /* TABLE */ + SQL_UNION = 335, /* UNION */ + SQL_USING = 336, /* USING */ + SQL_WHERE = 337, /* WHERE */ + SQL_CALL = 338, /* CALL */ + SQL_CASE = 339, /* CASE */ + SQL_CHAR = 340, /* CHAR */ + SQL_COPY = 341, /* COPY */ + SQL_DATE = 342, /* DATE */ + SQL_DATETIME = 343, /* DATETIME */ + SQL_DESC = 344, /* DESC */ + SQL_DROP = 345, /* DROP */ + SQL_ELSE = 346, /* ELSE */ + SQL_FILE = 347, /* FILE */ + SQL_FROM = 348, /* FROM */ + SQL_FULL = 349, /* FULL */ + SQL_HASH = 350, /* HASH */ + SQL_HINT = 351, /* HINT */ + SQL_INTO = 352, /* INTO */ + SQL_JOIN = 353, /* JOIN */ + SQL_LEFT = 354, /* LEFT */ + SQL_LIKE = 355, /* LIKE */ + SQL_LOAD = 356, /* LOAD */ + SQL_LONG = 357, /* LONG */ + SQL_NULL = 358, /* NULL */ + SQL_PLAN = 359, /* PLAN */ + SQL_SHOW = 360, /* SHOW */ + SQL_TEXT = 361, /* TEXT */ + SQL_THEN = 362, /* THEN */ + SQL_TIME = 363, /* TIME */ + SQL_VIEW = 364, /* VIEW */ + SQL_WHEN = 365, /* WHEN */ + SQL_WITH = 366, /* WITH */ + SQL_ADD = 367, /* ADD */ + SQL_ALL = 368, /* ALL */ + SQL_AND = 369, /* AND */ + SQL_ASC = 370, /* ASC */ + SQL_END = 371, /* END */ + SQL_FOR = 372, /* FOR */ + SQL_INT = 373, /* INT */ + SQL_KEY = 374, /* KEY */ + SQL_NOT = 375, /* NOT */ + SQL_OFF = 376, /* OFF */ + SQL_SET = 377, /* SET */ + SQL_TOP = 378, /* TOP */ + SQL_AS = 379, /* AS */ + SQL_BY = 380, /* BY */ + SQL_IF = 381, /* IF */ + SQL_IN = 382, /* IN */ + SQL_IS = 383, /* IS */ + SQL_OF = 384, /* OF */ + SQL_ON = 385, /* ON */ + SQL_OR = 386, /* OR */ + SQL_TO = 387, /* TO */ + SQL_ARRAY = 388, /* ARRAY */ + SQL_CONCAT = 389, /* CONCAT */ + SQL_ILIKE = 390, /* ILIKE */ + SQL_SECOND = 391, /* SECOND */ + SQL_MINUTE = 392, /* MINUTE */ + SQL_HOUR = 393, /* HOUR */ + SQL_DAY = 394, /* DAY */ + SQL_MONTH = 395, /* MONTH */ + SQL_YEAR = 396, /* YEAR */ + SQL_SECONDS = 397, /* SECONDS */ + SQL_MINUTES = 398, /* MINUTES */ + SQL_HOURS = 399, /* HOURS */ + SQL_DAYS = 400, /* DAYS */ + SQL_MONTHS = 401, /* MONTHS */ + SQL_YEARS = 402, /* YEARS */ + SQL_INTERVAL = 403, /* INTERVAL */ + SQL_TRUE = 404, /* TRUE */ + SQL_FALSE = 405, /* FALSE */ + SQL_TRANSACTION = 406, /* TRANSACTION */ + SQL_BEGIN = 407, /* BEGIN */ + SQL_COMMIT = 408, /* COMMIT */ + SQL_ROLLBACK = 409, /* ROLLBACK */ + SQL_EQUALS = 410, /* EQUALS */ + SQL_NOTEQUALS = 411, /* NOTEQUALS */ + SQL_LESS = 412, /* LESS */ + SQL_GREATER = 413, /* GREATER */ + SQL_LESSEQ = 414, /* LESSEQ */ + SQL_GREATEREQ = 415, /* GREATEREQ */ + SQL_NOTNULL = 416, /* NOTNULL */ + SQL_UMINUS = 417 /* UMINUS */ + }; + typedef enum hsql_tokentype hsql_token_kind_t; #endif /* Value type. */ -#if !defined HSQL_STYPE && !defined HSQL_STYPE_IS_DECLARED -union HSQL_STYPE { +#if ! defined HSQL_STYPE && ! defined HSQL_STYPE_IS_DECLARED +union HSQL_STYPE +{ #line 98 "bison_parser.y" // clang-format on @@ -314,26 +315,32 @@ union HSQL_STYPE { std::pair* ival_pair; -#line 320 "bison_parser.h" +#line 319 "bison_parser.h" + }; typedef union HSQL_STYPE HSQL_STYPE; -#define HSQL_STYPE_IS_TRIVIAL 1 -#define HSQL_STYPE_IS_DECLARED 1 +# define HSQL_STYPE_IS_TRIVIAL 1 +# define HSQL_STYPE_IS_DECLARED 1 #endif /* Location type. */ -#if !defined HSQL_LTYPE && !defined HSQL_LTYPE_IS_DECLARED +#if ! defined HSQL_LTYPE && ! defined HSQL_LTYPE_IS_DECLARED typedef struct HSQL_LTYPE HSQL_LTYPE; -struct HSQL_LTYPE { +struct HSQL_LTYPE +{ int first_line; int first_column; int last_line; int last_column; }; -#define HSQL_LTYPE_IS_DECLARED 1 -#define HSQL_LTYPE_IS_TRIVIAL 1 +# define HSQL_LTYPE_IS_DECLARED 1 +# define HSQL_LTYPE_IS_TRIVIAL 1 #endif -int hsql_parse(hsql::SQLParserResult* result, yyscan_t scanner); + + + +int hsql_parse (hsql::SQLParserResult* result, yyscan_t scanner); + #endif /* !YY_HSQL_BISON_PARSER_H_INCLUDED */ diff --git a/src/parser/bison_parser.y b/src/parser/bison_parser.y index a64ade3f..72fe81bf 100644 --- a/src/parser/bison_parser.y +++ b/src/parser/bison_parser.y @@ -183,7 +183,7 @@ %token DEALLOCATE PARAMETERS INTERSECT TEMPORARY TIMESTAMP %token DISTINCT NVARCHAR RESTRICT TRUNCATE ANALYZE BETWEEN %token CASCADE COLUMNS CONTROL DEFAULT EXECUTE EXPLAIN - %token INTEGER NATURAL PREPARE PRIMARY SCHEMAS CHARACTER VARYING REAL DECIMAL SMALLINT + %token INTEGER NATURAL PREPARE PRIMARY SCHEMAS CHARACTER_VARYING REAL DECIMAL SMALLINT %token SPATIAL VARCHAR VIRTUAL DESCRIBE BEFORE COLUMN CREATE DELETE DIRECT %token DOUBLE ESCAPE EXCEPT EXISTS EXTRACT CAST FORMAT GLOBAL HAVING IMPORT %token INSERT ISNULL OFFSET RENAME SCHEMA SELECT SORTED @@ -544,7 +544,7 @@ column_def : IDENTIFIER column_type opt_column_constraints { column_type : INT { $$ = ColumnType{DataType::INT}; } | CHAR '(' INTVAL ')' { $$ = ColumnType{DataType::CHAR, $3}; } -| CHARACTER VARYING '(' INTVAL ')' { $$ = ColumnType{DataType::VARCHAR, $4}; } +| CHARACTER_VARYING '(' INTVAL ')' { $$ = ColumnType{DataType::VARCHAR, $3}; } | DATE { $$ = ColumnType{DataType::DATE}; }; | DATETIME { $$ = ColumnType{DataType::DATETIME}; } | DECIMAL opt_decimal_specification { diff --git a/src/parser/flex_lexer.cpp b/src/parser/flex_lexer.cpp index f8983223..ae858840 100644 --- a/src/parser/flex_lexer.cpp +++ b/src/parser/flex_lexer.cpp @@ -2,7 +2,7 @@ #line 3 "flex_lexer.cpp" -#define YY_INT_ALIGNED short int +#define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ @@ -251,10 +251,10 @@ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ -#include #include -#include #include +#include +#include /* end standard C headers. */ @@ -265,7 +265,7 @@ /* C99 systems have . Non-C99 systems may or may not. */ -#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. @@ -285,41 +285,41 @@ typedef uint32_t flex_uint32_t; typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; -typedef unsigned char flex_uint8_t; +typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN -#define INT8_MIN (-128) +#define INT8_MIN (-128) #endif #ifndef INT16_MIN -#define INT16_MIN (-32767 - 1) +#define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN -#define INT32_MIN (-2147483647 - 1) +#define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX -#define INT8_MAX (127) +#define INT8_MAX (127) #endif #ifndef INT16_MAX -#define INT16_MAX (32767) +#define INT16_MAX (32767) #endif #ifndef INT32_MAX -#define INT32_MAX (2147483647) +#define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX -#define UINT8_MAX (255U) +#define UINT8_MAX (255U) #endif #ifndef UINT16_MAX -#define UINT16_MAX (65535U) +#define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX -#define UINT32_MAX (4294967295U) +#define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX -#define SIZE_MAX (~(size_t)0) +#define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ @@ -343,7 +343,7 @@ typedef unsigned int flex_uint32_t; /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ -#define YY_SC_TO_UI(c) ((YY_CHAR)(c)) +#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T @@ -376,7 +376,7 @@ typedef void* yyscan_t; /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ -#define YY_NEW_FILE yyrestart(yyin, yyscanner) +#define YY_NEW_FILE yyrestart( yyin , yyscanner ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ @@ -394,11 +394,11 @@ typedef void* yyscan_t; /* The state buf must be large enough to hold one state per character in the main buffer. */ -#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE -typedef struct yy_buffer_state* YY_BUFFER_STATE; +typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T @@ -409,73 +409,76 @@ typedef size_t yy_size_t; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 - -#define YY_LESS_LINENO(n) -#define YY_LINENO_REWIND_TO(ptr) - + + #define YY_LESS_LINENO(n) + #define YY_LINENO_REWIND_TO(ptr) + /* Return all but the first "n" matched characters back to the input stream. */ -#define yyless(n) \ - do { \ - /* Undo effects of setting up yytext. */ \ - int yyless_macro_arg = (n); \ - YY_LESS_LINENO(yyless_macro_arg); \ - *yy_cp = yyg->yy_hold_char; \ - YY_RESTORE_YY_MORE_OFFSET \ - yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ - YY_DO_BEFORE_ACTION; /* set up yytext again */ \ - } while (0) -#define unput(c) yyunput(c, yyg->yytext_ptr, yyscanner) +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + *yy_cp = yyg->yy_hold_char; \ + YY_RESTORE_YY_MORE_OFFSET \ + yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ + YY_DO_BEFORE_ACTION; /* set up yytext again */ \ + } \ + while ( 0 ) +#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE -struct yy_buffer_state { - FILE* yy_input_file; +struct yy_buffer_state + { + FILE *yy_input_file; - char* yy_ch_buf; /* input buffer */ - char* yy_buf_pos; /* current position in input buffer */ + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ - /* Size of input buffer in bytes, not including room for EOB + /* Size of input buffer in bytes, not including room for EOB * characters. */ - int yy_buf_size; + int yy_buf_size; - /* Number of characters read into yy_ch_buf, not including EOB + /* Number of characters read into yy_ch_buf, not including EOB * characters. */ - int yy_n_chars; + int yy_n_chars; - /* Whether we "own" the buffer - i.e., we know we created it, + /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ - int yy_is_our_buffer; + int yy_is_our_buffer; - /* Whether this is an "interactive" input source; if so, and + /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ - int yy_is_interactive; + int yy_is_interactive; - /* Whether we're considered to be at the beginning of a line. + /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ - int yy_at_bol; + int yy_at_bol; - int yy_bs_lineno; /**< The line count. */ - int yy_bs_column; /**< The column count. */ + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ - /* Whether to try to fill the input buffer when we reach the + /* Whether to try to fill the input buffer when we reach the * end of it. */ - int yy_fill_buffer; + int yy_fill_buffer; - int yy_buffer_status; + int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 - /* When an EOF's been seen but there's still some text to process + /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of @@ -486,7 +489,8 @@ struct yy_buffer_state { * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 -}; + + }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* We provide macros for accessing buffer states in case in the @@ -495,55 +499,59 @@ struct yy_buffer_state { * * Returns the top of the stack, or NULL. */ -#define YY_CURRENT_BUFFER (yyg->yy_buffer_stack ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] : NULL) +#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ + ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ + : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] -void yyrestart(FILE* input_file, yyscan_t yyscanner); -void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); -YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner); -void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); -void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); -void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); -void yypop_buffer_state(yyscan_t yyscanner); +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); -static void yyensure_buffer_stack(yyscan_t yyscanner); -static void yy_load_buffer_state(yyscan_t yyscanner); -static void yy_init_buffer(YY_BUFFER_STATE b, FILE* file, yyscan_t yyscanner); -#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER, yyscanner) +static void yyensure_buffer_stack ( yyscan_t yyscanner ); +static void yy_load_buffer_state ( yyscan_t yyscanner ); +static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner ); +#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner) -YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner); -YY_BUFFER_STATE yy_scan_string(const char* yy_str, yyscan_t yyscanner); -YY_BUFFER_STATE yy_scan_bytes(const char* bytes, int len, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); -void* yyalloc(yy_size_t, yyscan_t yyscanner); -void* yyrealloc(void*, yy_size_t, yyscan_t yyscanner); -void yyfree(void*, yyscan_t yyscanner); +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); #define yy_new_buffer yy_create_buffer -#define yy_set_interactive(is_interactive) \ - { \ - if (!YY_CURRENT_BUFFER) { \ - yyensure_buffer_stack(yyscanner); \ - YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); \ - } \ - YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ - } -#define yy_set_bol(at_bol) \ - { \ - if (!YY_CURRENT_BUFFER) { \ - yyensure_buffer_stack(yyscanner); \ - YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); \ - } \ - YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ - } +#define yy_set_interactive(is_interactive) \ + { \ + if ( ! YY_CURRENT_BUFFER ){ \ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ + } +#define yy_set_bol(at_bol) \ + { \ + if ( ! YY_CURRENT_BUFFER ){\ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ + } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ -#define hsql_wrap(yyscanner) (/*CONSTCOND*/ 1) +#define hsql_wrap(yyscanner) (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP typedef flex_uint8_t YY_CHAR; @@ -551,965 +559,1548 @@ typedef int yy_state_type; #define yytext_ptr yytext_r -static yy_state_type yy_get_previous_state(yyscan_t yyscanner); -static yy_state_type yy_try_NUL_trans(yy_state_type current_state, yyscan_t yyscanner); -static int yy_get_next_buffer(yyscan_t yyscanner); -static void yynoreturn yy_fatal_error(const char* msg, yyscan_t yyscanner); +static yy_state_type yy_get_previous_state ( yyscan_t yyscanner ); +static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner); +static int yy_get_next_buffer ( yyscan_t yyscanner ); +static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ -#define YY_DO_BEFORE_ACTION \ - yyg->yytext_ptr = yy_bp; \ - yyleng = (int)(yy_cp - yy_bp); \ - yyg->yy_hold_char = *yy_cp; \ - *yy_cp = '\0'; \ - yyg->yy_c_buf_p = yy_cp; -#define YY_NUM_RULES 171 -#define YY_END_OF_BUFFER 172 +#define YY_DO_BEFORE_ACTION \ + yyg->yytext_ptr = yy_bp; \ + yyleng = (int) (yy_cp - yy_bp); \ + yyg->yy_hold_char = *yy_cp; \ + *yy_cp = '\0'; \ + yyg->yy_c_buf_p = yy_cp; +#define YY_NUM_RULES 170 +#define YY_END_OF_BUFFER 171 /* This struct is not used in this scanner, but its presence is necessary. */ -struct yy_trans_info { - flex_int32_t yy_verify; - flex_int32_t yy_nxt; -}; -static const flex_int16_t yy_accept[1184] = { - 0, 0, 0, 168, 168, 2, 2, 172, 170, 4, 4, 170, 170, 159, 166, 159, 159, 163, 159, 159, 159, - 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 159, 168, 169, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 4, 154, 0, 1, 0, 161, 160, 163, 156, 155, 153, 157, 165, 165, 165, - - 165, 165, 165, 125, 165, 126, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 165, 165, 165, 165, 127, 165, 165, 128, 129, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 130, 131, 132, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 133, 165, 165, 165, 165, 165, 165, 165, 165, 165, 158, 168, 167, 2, 2, 2, 2, - 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 164, 0, 160, 113, 165, 114, 165, 165, 115, 165, - 116, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 137, 165, - - 165, 165, 165, 165, 165, 165, 165, 165, 165, 117, 165, 165, 165, 165, 165, 165, 165, 165, 165, 118, 165, - 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 119, 165, 165, 120, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 121, 165, 165, 122, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 123, 165, 165, 165, 165, 165, 165, 165, 165, 165, 124, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 0, 165, 165, 165, 165, 165, 165, 165, 84, 165, 85, 47, 86, 165, 165, 165, 87, - 165, 165, 88, 143, 165, 165, 165, 165, 165, 90, 165, 165, 165, 91, 92, 165, 165, 165, 165, 165, 165, - 165, 93, 165, 165, 94, 95, 165, 165, 96, 165, 97, 136, 165, 165, 165, 165, 165, 165, 98, 165, 99, - 100, 101, 165, 103, 165, 104, 165, 165, 165, 165, 105, 165, 165, 165, 165, 165, 106, 165, 165, 34, 165, - 165, 165, 165, 165, 165, 165, 107, 165, 165, 165, 165, 165, 108, 109, 32, 165, - - 146, 165, 165, 165, 165, 165, 165, 165, 165, 165, 110, 165, 111, 165, 112, 139, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 0, 64, 65, 165, 66, 165, 149, 165, 165, 165, 165, 165, 165, 165, - 67, 165, 165, 165, 165, 165, 68, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 147, 69, 165, 165, - 70, 165, 142, 102, 165, 71, 72, 165, 165, 165, 165, 73, 74, 75, 76, 165, 138, 165, 165, 165, 77, - 78, 165, 165, 165, 165, 165, 79, 165, 165, 165, 165, 165, 165, 165, 80, 165, - - 165, 165, 165, 81, 165, 165, 165, 82, 165, 165, 165, 165, 83, 145, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 0, 165, 37, 165, 165, 165, 38, 151, 165, 39, 165, 165, 165, 165, 40, 165, 41, 165, 42, 43, 44, - 165, 45, 165, 165, 48, 49, 50, 51, 52, 165, 165, 165, 53, 135, 144, 165, 165, 54, 165, 165, 165, - 55, 165, 165, 56, 134, 57, 165, 58, 165, 59, 165, 165, 165, 165, 60, 61, 62, 63, 165, 165, 165, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 0, 15, 16, 17, 165, 18, 19, 165, 165, 33, 20, 165, 165, 21, 22, 46, - 23, 165, 165, 141, 24, 165, 165, 25, 26, 165, 165, 27, 140, 165, 28, 165, 165, 165, 165, 29, 31, - 36, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 0, 165, 89, 165, 10, 11, 165, 152, 12, 165, 13, 150, 35, 165, 165, 165, 14, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 30, 165, 7, 165, 8, - 9, 165, 2, 2, 2, 2, 2, 2, 2, 2, 0, 5, 6, 165, 2, 2, 2, 2, 0, 148, 2, - 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 162, 2, 0}; - -static const YY_CHAR yy_ec[256] = { - 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 4, 5, 1, 1, 6, 1, 7, 6, 6, 6, 6, 6, 8, 9, 6, 10, 11, 12, 13, 14, 15, 16, 17, - 18, 19, 6, 6, 20, 21, 22, 6, 1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 6, 1, 6, 6, 49, 1, 50, 51, 52, 53, - - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 6, 76, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; - -static const YY_CHAR yy_meta[77] = {0, 1, 1, 2, 1, 3, 1, 4, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1}; - -static const flex_int16_t yy_base[1191] = { - 0, 0, 0, 574, 566, 76, 0, 568, 4751, 151, 153, 535, 0, 4751, 4751, 149, 148, 160, - 159, 532, 531, 156, 156, 164, 162, 172, 223, 198, 211, 215, 151, 168, 210, 255, 257, 263, - 262, 0, 277, 317, 360, 296, 221, 258, 171, 461, 0, 529, 0, 295, 308, 500, 515, 0, - 0, 317, 418, 429, 317, 496, 492, 448, 524, 578, 630, 678, 730, 338, 436, 778, 330, 319, - 349, 444, 830, 878, 500, 321, 511, 928, 980, 556, 512, 533, 431, 436, 347, 4751, 492, 4751, - 484, 1045, 1055, 1066, 4751, 4751, 4751, 4751, 0, 174, 253, - - 438, 469, 284, 318, 567, 0, 538, 339, 578, 361, 591, 621, 607, 417, 429, 436, 453, 489, - 641, 515, 521, 520, 537, 556, 568, 590, 594, 659, 601, 608, 0, 628, 625, 675, 633, 650, - 644, 674, 674, 697, 673, 679, 685, 681, 689, 701, 722, 726, 0, 729, 714, 719, 740, 738, - 766, 737, 734, 741, 776, 739, 776, 768, 786, 787, 785, 788, 782, 783, 800, 793, 796, 824, - 822, 832, 833, 819, 840, 4751, 0, 4751, 0, 399, 0, 460, 0, 452, 1076, 1086, 1097, 0, - 0, 0, 0, 838, 849, 866, 882, 923, 890, 934, - - 967, 868, 971, 1094, 1142, 952, 977, 1194, 1091, 1092, 1093, 1096, 1107, 1146, 1244, 1152, 1184, 1196, - 1185, 1200, 1229, 1230, 1252, 1270, 1265, 1278, 880, 1296, 1136, 1345, 1293, 1304, 1128, 1306, 1322, 1341, - 1226, 1347, 1370, 1268, 1358, 1375, 1384, 1398, 1234, 1413, 1401, 1410, 1424, 1415, 1456, 1434, 1466, 1455, - 1489, 1464, 1498, 1495, 1510, 1520, 1519, 1528, 1541, 1532, 1562, 1573, 1564, 1583, 1595, 1586, 1574, 1597, - 1596, 0, 4751, 450, 1662, 0, 837, 0, 844, 877, 0, 924, 0, 923, 970, 968, 981, 1640, - 1082, 1081, 1090, 1084, 1082, 1164, 1147, 1170, 1168, 1217, - - 1305, 1323, 1641, 1364, 1376, 1399, 1435, 1442, 1472, 0, 1482, 1507, 1526, 1512, 1522, 1558, 1617, 1632, - 1638, 1628, 1629, 1650, 1663, 1646, 1663, 1665, 1655, 1658, 1666, 1663, 1674, 1675, 1676, 1678, 1661, 1670, - 0, 1665, 1681, 1681, 1687, 1694, 1689, 1690, 1678, 1680, 1693, 0, 1703, 1698, 1700, 1716, 1720, 1727, - 1715, 1714, 1718, 1720, 1732, 1714, 1727, 1724, 1732, 1723, 1734, 0, 1717, 1732, 1725, 1727, 1737, 1734, - 1731, 1739, 1749, 0, 1754, 1765, 1758, 1754, 1781, 1769, 1763, 1782, 1763, 1767, 1774, 1781, 1772, 0, - 449, 1832, 1813, 1825, 1826, 1827, 1828, 1830, 1836, 1831, - - 1861, 1864, 1849, 1879, 1882, 1890, 1885, 1914, 1900, 1916, 1925, 1919, 1931, 1950, 1955, 1953, 1983, 1954, - 1967, 1968, 1993, 2007, 1998, 1985, 1999, 2021, 2022, 2039, 2033, 2043, 2038, 2061, 2052, 2071, 2076, 2087, - 2093, 2092, 2101, 2106, 2125, 2115, 2138, 2141, 2149, 2143, 2146, 2155, 2167, 2164, 2183, 2179, 2197, 2181, - 2205, 2221, 2222, 2231, 2235, 2234, 2256, 2243, 2246, 2265, 2267, 2275, 2284, 2288, 2300, 2297, 2310, 2305, - 2319, 2338, 2336, 2342, 2360, 2350, 2354, 2355, 2359, 2390, 2392, 2373, 2396, 2398, 2413, 2414, 2422, 2427, - 2428, 2444, 2450, 2472, 2463, 2485, 2467, 2501, 2468, 2498, - - 2507, 2520, 2535, 2526, 438, 1825, 1826, 1823, 1924, 1946, 2019, 2029, 0, 2087, 0, 0, 2101, 2096, - 2101, 2158, 0, 2174, 2186, 2198, 0, 2267, 2283, 2325, 2334, 2407, 2396, 2454, 2458, 2489, 0, 0, - 2493, 2513, 2514, 2521, 2541, 2545, 2542, 0, 2535, 2556, 0, 0, 2562, 2548, 0, 2552, 0, 2556, - 2571, 2559, 2555, 2562, 2563, 2576, 0, 2573, 0, 0, 0, 2566, 0, 2576, 0, 2584, 2576, 2584, - 2579, 0, 2595, 2594, 2582, 2583, 2592, 0, 2608, 2610, 0, 2601, 2599, 2598, 2618, 2616, 2616, 2628, - 0, 2621, 2629, 2626, 2632, 2624, 0, 0, 2621, 2623, - - 0, 2640, 2632, 2627, 2648, 2630, 2644, 2647, 2645, 2645, 0, 2634, 0, 2654, 0, 2644, 413, 2666, - 2667, 2663, 2669, 2678, 2688, 2682, 2684, 2699, 2700, 2701, 2734, 2732, 2733, 2723, 2738, 2751, 2742, 2772, - 2755, 2777, 2768, 2774, 2805, 2810, 2796, 2828, 2818, 2834, 2831, 2839, 2856, 2860, 2869, 2864, 2850, 2899, - 2882, 2888, 2890, 2904, 2893, 2901, 2918, 2923, 2933, 2947, 2939, 2944, 2942, 2955, 2957, 2979, 2987, 2988, - 2978, 3009, 2993, 3010, 3011, 3024, 3021, 3042, 3032, 3033, 3050, 3075, 3054, 3063, 3084, 3073, 3086, 3103, - 3107, 3098, 3112, 3121, 3129, 3138, 3140, 3137, 3166, 3161, - - 3162, 3172, 3174, 3195, 3183, 3200, 3191, 3206, 3205, 3214, 3235, 3236, 3217, 3248, 3245, 3251, 3270, 3259, - 3285, 3269, 3288, 3280, 3299, 3304, 3302, 3303, 3313, 3325, 409, 0, 0, 2691, 0, 2717, 0, 2773, - 2787, 2810, 2916, 2921, 2944, 2996, 0, 3014, 3051, 3091, 3117, 3128, 0, 3208, 3294, 3301, 3321, 3328, - 3319, 3323, 3327, 3338, 3345, 0, 0, 3329, 3346, 0, 3352, 0, 0, 3341, 0, 0, 3342, 3358, - 3345, 3356, 0, 0, 0, 0, 3364, 3353, 3377, 3371, 3360, 0, 0, 3376, 3364, 3365, 3379, 3378, - 0, 3391, 3392, 3393, 3378, 3391, 3397, 3401, 3384, 3386, - - 3392, 3412, 3414, 0, 3411, 3413, 3413, 0, 3402, 3421, 3409, 3425, 0, 0, 408, 3427, 3429, 3430, - 3432, 3433, 3441, 3442, 3464, 3467, 3446, 3481, 3475, 3483, 3486, 3500, 3497, 3509, 3518, 3499, 3515, 3537, - 3539, 3540, 3543, 3551, 3573, 3574, 3555, 3579, 3597, 3585, 3591, 3608, 3607, 3609, 3631, 3619, 3625, 3642, - 3643, 3647, 3653, 3659, 3671, 3676, 3677, 3681, 3682, 3687, 3693, 3705, 3721, 3727, 3711, 3716, 3722, 3735, - 3751, 3759, 3750, 3756, 3761, 3784, 3789, 3793, 3775, 3801, 3815, 3827, 3810, 3825, 3829, 3843, 3859, 3826, - 3858, 3861, 3864, 3869, 3880, 3897, 3883, 3902, 3912, 3913, - - 403, 3431, 0, 3462, 3521, 3535, 3539, 0, 3596, 0, 3605, 3639, 3641, 3650, 0, 3742, 0, 3769, - 0, 0, 0, 3773, 0, 3859, 3862, 0, 0, 0, 0, 0, 3886, 3901, 3913, 0, 3900, 0, - 3908, 3922, 0, 3908, 3931, 3914, 0, 3937, 3939, 3924, 3929, 0, 3937, 0, 3940, 0, 3952, 3955, - 3954, 3938, 0, 0, 0, 0, 3941, 3953, 3949, 402, 3957, 3966, 3967, 3968, 3985, 3996, 3971, 3999, - 3997, 4001, 4022, 4031, 4025, 4030, 4056, 4034, 4062, 4039, 4064, 4068, 4070, 4073, 4085, 4098, 4079, 4096, - 4102, 4104, 4107, 4128, 4110, 4139, 4133, 4136, 4138, 4164, - - 4173, 4147, 4161, 4152, 4170, 4182, 4206, 4207, 4201, 4210, 4192, 4216, 4218, 4240, 4235, 4250, 4268, 4258, - 4266, 4249, 4272, 4280, 4284, 4289, 4301, 4317, 404, 0, 0, 0, 3963, 0, 0, 4002, 4012, 0, - 0, 4074, 4077, 0, 0, 0, 0, 4189, 4188, 0, 0, 4231, 4279, 0, 0, 4283, 4306, 0, - 0, 4299, 0, 4305, 4312, 4307, 4323, 0, 0, 0, 399, 4326, 4332, 4334, 4335, 4338, 4340, 4343, - 4372, 4356, 4357, 4366, 4374, 4371, 4380, 4388, 4397, 4411, 4405, 4402, 4406, 4410, 4414, 4420, 4428, 4445, - 4456, 4443, 4446, 4454, 4451, 4464, 4480, 4479, 4482, 4485, - - 4497, 4508, 399, 4329, 0, 4444, 0, 0, 4453, 0, 0, 4497, 0, 0, 0, 4493, 4503, 4512, - 0, 398, 4518, 4519, 4533, 4522, 4530, 4536, 4534, 4547, 4559, 4562, 4564, 4568, 4570, 4576, 4598, 4573, - 393, 0, 4525, 0, 4571, 0, 0, 4582, 350, 4601, 4604, 4607, 4616, 4613, 4622, 4646, 344, 0, - 0, 4596, 342, 4635, 4638, 4641, 338, 0, 335, 4644, 330, 325, 306, 303, 288, 255, 250, 245, - 243, 240, 235, 221, 226, 197, 187, 173, 4751, 0, 4751, 4720, 4725, 181, 4730, 4735, 4740, 4745}; - -static const flex_int16_t yy_def[1191] = { - 0, 1183, 1, 1184, 1184, 1183, 5, 1183, 1183, 1183, 1183, 1183, 1185, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1183, 1187, 1183, 1188, 1188, 1183, 1188, 1189, 1188, - 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1190, 1190, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 1188, 1183, 1183, 1185, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1186, 1186, 1186, - - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1183, 1187, 1183, 1188, 1188, 1188, 1189, 1188, 1188, 1188, 1188, 1188, 1188, - 1188, 1188, 1188, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 1188, 1183, 1183, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, - 1188, 1188, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, - 1186, 1188, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 1183, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 62, 62, 62, 62, 62, 62, 62, 1183, 1186, - 1186, 1186, 1188, 62, 62, 62, 1183, 1186, 1188, 62, 1183, 1188, 1183, 1188, 1183, 1188, 1183, 1188, - 1183, 1188, 1183, 1188, 1183, 1188, 1183, 1188, 1183, 1188, 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183}; - -static const flex_int16_t yy_nxt[4828] = { - 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, - 17, 17, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 37, 44, 37, 8, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 37, 44, 37, 45, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 58, 59, 60, 61, 62, - - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 77, 84, 77, 48, 61, 62, 63, 64, 65, 66, 67, 68, 69, - 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 77, 84, 77, - 85, 86, 86, 86, 86, 89, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, - 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 94, 95, 99, 105, 100, 111, - 98, 107, 136, 112, 101, 1182, 102, 113, 108, 137, 103, 104, 177, 114, 278, - - 109, 115, 106, 110, 1181, 116, 1180, 117, 99, 105, 100, 111, 118, 107, 136, 112, 101, - 119, 102, 113, 108, 137, 103, 104, 177, 114, 278, 109, 115, 106, 110, 126, 116, 128, - 117, 1179, 138, 127, 1178, 118, 139, 129, 131, 173, 119, 120, 140, 130, 132, 133, 134, - 174, 1177, 121, 1176, 135, 122, 1175, 126, 123, 128, 1174, 124, 138, 127, 125, 1173, 139, - 129, 131, 173, 1172, 120, 140, 130, 132, 133, 134, 174, 144, 121, 141, 135, 122, 152, - 142, 123, 175, 176, 124, 148, 143, 125, 145, 279, 153, 182, 86, 149, 146, - - 147, 154, 150, 155, 1171, 151, 144, 156, 141, 86, 86, 152, 142, 157, 175, 176, 1170, - 148, 143, 1169, 145, 279, 153, 284, 185, 149, 146, 147, 154, 150, 155, 170, 151, 171, - 156, 186, 172, 190, 191, 1168, 157, 158, 285, 159, 1167, 233, 160, 194, 86, 86, 284, - 161, 1166, 162, 163, 1165, 194, 1163, 170, 1161, 171, 291, 1157, 172, 194, 194, 232, 194, - 158, 285, 159, 222, 233, 160, 194, 234, 194, 223, 161, 235, 162, 163, 164, 194, 194, - 236, 165, 296, 291, 166, 167, 194, 194, 232, 194, 194, 168, 297, 222, 169, - - 182, 86, 234, 194, 223, 1153, 235, 1145, 1137, 164, 1120, 194, 236, 165, 296, 1103, 166, - 167, 1065, 1027, 964, 901, 194, 168, 297, 815, 169, 187, 187, 187, 187, 187, 187, 187, - 187, 187, 187, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 181, 181, 729, - 181, 181, 181, 181, 181, 181, 273, 224, 307, 617, 505, 194, 391, 390, 308, 225, 181, - 181, 181, 237, 280, 226, 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, 198, 273, - 224, 307, 199, 200, 194, 194, 282, 308, 225, 283, 276, 275, 237, 280, 226, - - 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, 198, 274, 193, 311, 199, 200, 192, - 194, 282, 181, 183, 283, 248, 181, 181, 181, 194, 181, 181, 181, 181, 181, 181, 249, - 269, 180, 178, 251, 194, 250, 311, 252, 270, 181, 181, 181, 194, 253, 317, 248, 201, - 97, 96, 194, 318, 87, 319, 194, 194, 194, 249, 269, 271, 272, 251, 194, 250, 1183, - 252, 270, 202, 289, 47, 194, 253, 317, 320, 201, 290, 194, 47, 318, 194, 319, 194, - 194, 194, 1183, 1183, 271, 272, 266, 321, 267, 286, 287, 268, 202, 289, 181, - - 203, 322, 194, 320, 194, 290, 194, 204, 288, 194, 1183, 292, 293, 294, 205, 295, 1183, - 206, 266, 321, 267, 286, 287, 268, 194, 1183, 323, 203, 322, 194, 324, 194, 298, 1183, - 204, 288, 327, 299, 292, 293, 294, 205, 295, 300, 206, 301, 305, 306, 302, 1183, 328, - 194, 207, 323, 303, 1183, 208, 324, 329, 298, 209, 304, 330, 327, 299, 312, 210, 313, - 335, 211, 300, 314, 301, 305, 306, 302, 194, 328, 315, 207, 336, 303, 316, 208, 1183, - 329, 1183, 209, 304, 330, 337, 1183, 312, 210, 313, 335, 211, 1183, 314, 325, - - 331, 338, 326, 194, 194, 315, 339, 336, 340, 316, 332, 212, 344, 213, 345, 333, 334, - 337, 214, 341, 346, 342, 347, 215, 194, 1183, 325, 331, 338, 326, 348, 194, 343, 339, - 349, 340, 1183, 332, 212, 344, 213, 345, 333, 334, 350, 214, 341, 346, 342, 347, 215, - 194, 216, 351, 352, 353, 194, 348, 354, 343, 217, 349, 355, 218, 356, 361, 219, 362, - 357, 220, 363, 350, 221, 1183, 1183, 367, 194, 1183, 1183, 216, 351, 352, 353, 194, 1183, - 354, 1183, 217, 358, 355, 218, 356, 361, 219, 362, 357, 220, 363, 368, 221, - - 364, 359, 367, 194, 194, 227, 360, 369, 370, 365, 371, 228, 229, 230, 374, 358, 375, - 366, 231, 372, 376, 381, 377, 379, 194, 368, 380, 364, 359, 1183, 373, 194, 227, 360, - 369, 370, 365, 371, 228, 229, 230, 374, 378, 375, 366, 231, 372, 376, 381, 377, 379, - 194, 240, 380, 382, 383, 194, 373, 385, 387, 388, 384, 389, 506, 194, 1183, 241, 1183, - 1183, 378, 507, 386, 242, 243, 393, 194, 194, 1183, 1183, 240, 1183, 382, 383, 194, 194, - 385, 387, 388, 384, 389, 506, 194, 194, 241, 194, 194, 1183, 507, 386, 242, - - 243, 393, 194, 194, 194, 244, 194, 394, 194, 1183, 508, 194, 194, 245, 194, 395, 194, - 246, 1183, 194, 247, 194, 194, 396, 194, 1183, 194, 1183, 194, 399, 1183, 194, 244, 194, - 394, 194, 194, 508, 1183, 194, 245, 194, 395, 194, 246, 397, 509, 247, 398, 194, 396, - 194, 254, 194, 255, 194, 399, 256, 400, 510, 194, 1183, 257, 194, 258, 259, 1183, 1183, - 1183, 194, 1183, 1183, 397, 509, 194, 398, 194, 1183, 411, 254, 194, 255, 1183, 1183, 256, - 400, 510, 194, 412, 257, 1183, 258, 259, 194, 401, 402, 194, 194, 194, 1183, - - 511, 194, 260, 194, 404, 411, 261, 194, 403, 262, 263, 405, 512, 194, 513, 412, 264, - 194, 413, 265, 194, 401, 402, 414, 194, 194, 194, 511, 1183, 260, 194, 404, 1183, 261, - 1183, 403, 262, 263, 405, 512, 194, 513, 1183, 264, 194, 413, 265, 1183, 1183, 1183, 414, - 1183, 1183, 194, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 277, 277, 277, 277, - 277, 277, 277, 277, 277, 277, 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 392, 392, 392, 392, 392, - - 392, 392, 392, 392, 392, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 406, - 194, 194, 194, 194, 517, 194, 518, 519, 520, 1183, 1183, 521, 423, 420, 421, 425, 194, - 422, 1183, 424, 194, 194, 194, 194, 1183, 194, 406, 194, 194, 194, 194, 517, 194, 518, - 519, 520, 194, 194, 521, 423, 420, 421, 425, 194, 422, 194, 424, 194, 194, 194, 194, - 194, 194, 426, 1183, 194, 445, 452, 407, 408, 409, 194, 410, 194, 194, 194, 1183, 1183, - 432, 522, 523, 194, 194, 1183, 1183, 194, 1183, 1183, 194, 524, 426, 194, 194, - - 445, 452, 407, 408, 409, 194, 410, 1183, 525, 194, 194, 194, 432, 522, 523, 194, 415, - 433, 416, 194, 194, 417, 194, 524, 435, 194, 194, 418, 1183, 1183, 194, 194, 434, 1183, - 419, 525, 436, 194, 194, 1183, 194, 1183, 194, 415, 433, 416, 194, 194, 417, 194, 526, - 435, 194, 194, 418, 194, 194, 194, 194, 434, 194, 419, 437, 436, 1183, 459, 438, 194, - 427, 194, 428, 1183, 194, 194, 429, 194, 194, 526, 194, 194, 194, 430, 194, 194, 1183, - 431, 1183, 194, 439, 437, 194, 194, 459, 438, 194, 427, 194, 428, 194, 194, - - 442, 429, 194, 194, 194, 194, 1183, 194, 430, 462, 440, 194, 431, 441, 194, 439, 194, - 194, 194, 194, 443, 194, 194, 194, 194, 194, 444, 442, 450, 1183, 194, 194, 194, 453, - 451, 527, 462, 440, 194, 194, 441, 194, 194, 194, 1183, 528, 194, 443, 194, 194, 194, - 194, 194, 444, 454, 450, 455, 194, 1183, 194, 453, 451, 527, 456, 1183, 457, 194, 194, - 194, 194, 446, 194, 528, 194, 1183, 194, 458, 194, 1183, 194, 447, 454, 460, 455, 194, - 448, 449, 194, 531, 1183, 456, 194, 457, 194, 194, 194, 194, 446, 194, 463, - - 194, 194, 532, 458, 194, 461, 465, 447, 464, 460, 194, 194, 448, 449, 194, 531, 194, - 1183, 194, 1183, 194, 194, 1183, 194, 194, 466, 463, 194, 194, 532, 194, 194, 461, 465, - 1183, 464, 194, 194, 467, 194, 533, 471, 468, 194, 194, 472, 470, 194, 194, 469, 194, - 194, 466, 1183, 194, 1183, 194, 194, 534, 194, 194, 194, 476, 194, 1183, 467, 194, 533, - 471, 468, 194, 194, 472, 470, 194, 1183, 469, 194, 473, 535, 194, 194, 194, 194, 478, - 534, 194, 194, 194, 476, 194, 474, 194, 1183, 1183, 1183, 475, 194, 536, 477, - - 482, 194, 194, 1183, 537, 473, 535, 194, 194, 194, 194, 478, 194, 479, 1183, 194, 1183, - 194, 474, 194, 483, 194, 480, 475, 194, 536, 477, 482, 194, 194, 481, 537, 485, 538, - 484, 194, 194, 194, 1183, 194, 479, 194, 194, 486, 194, 194, 194, 483, 194, 480, 539, - 194, 540, 487, 489, 541, 194, 481, 194, 485, 538, 484, 194, 194, 488, 194, 194, 194, - 194, 491, 486, 194, 194, 194, 194, 490, 1183, 539, 194, 540, 487, 489, 541, 194, 492, - 194, 1183, 194, 194, 496, 194, 488, 194, 194, 194, 1183, 491, 542, 1183, 194, - - 502, 194, 490, 494, 493, 194, 495, 1183, 194, 194, 194, 492, 500, 497, 194, 194, 496, - 194, 504, 194, 194, 194, 194, 194, 542, 501, 194, 502, 498, 194, 494, 493, 194, 495, - 499, 194, 194, 194, 503, 500, 497, 194, 194, 194, 1183, 504, 194, 194, 194, 194, 194, - 1183, 501, 1183, 1183, 498, 194, 543, 544, 194, 545, 499, 546, 547, 514, 503, 515, 529, - 194, 194, 194, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 516, 530, 548, 543, - 544, 549, 545, 550, 546, 547, 514, 551, 515, 529, 552, 553, 554, 555, 556, - - 557, 558, 559, 562, 560, 563, 564, 565, 516, 530, 548, 566, 567, 549, 561, 550, 568, - 569, 570, 551, 571, 572, 552, 553, 554, 555, 556, 557, 558, 559, 562, 560, 563, 564, - 565, 573, 574, 575, 566, 567, 576, 561, 577, 568, 569, 570, 578, 571, 572, 579, 580, - 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 573, 574, 575, 592, 593, 576, - 594, 577, 595, 596, 597, 578, 598, 599, 579, 580, 581, 582, 583, 584, 585, 586, 587, - 588, 589, 590, 591, 600, 605, 601, 592, 593, 603, 594, 604, 595, 596, 597, - - 602, 598, 599, 606, 607, 608, 609, 611, 612, 613, 615, 616, 1183, 614, 1183, 1183, 600, - 605, 601, 1183, 1183, 603, 1183, 604, 1183, 1183, 1183, 602, 610, 1183, 606, 607, 608, 609, - 611, 612, 613, 615, 616, 194, 614, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, - 618, 194, 619, 194, 610, 194, 194, 621, 194, 1183, 620, 194, 1183, 730, 731, 194, 1183, - 1183, 732, 1183, 194, 194, 194, 194, 194, 194, 194, 618, 194, 619, 194, 194, 194, 194, - 621, 194, 194, 620, 194, 194, 730, 731, 624, 623, 194, 732, 622, 194, 194, - - 194, 194, 194, 194, 194, 194, 626, 194, 627, 194, 194, 194, 625, 1183, 194, 1183, 194, - 194, 1183, 1183, 624, 623, 194, 628, 622, 194, 194, 630, 194, 629, 1183, 194, 194, 626, - 194, 627, 194, 194, 194, 625, 194, 632, 194, 194, 1183, 194, 194, 634, 631, 1183, 628, - 194, 194, 194, 630, 194, 629, 636, 194, 635, 194, 1183, 633, 194, 1183, 194, 1183, 194, - 632, 194, 733, 194, 194, 194, 634, 631, 194, 194, 194, 194, 641, 194, 1183, 639, 636, - 734, 635, 194, 638, 633, 637, 643, 194, 194, 644, 642, 194, 733, 194, 194, - - 194, 194, 1183, 194, 194, 640, 194, 641, 194, 194, 639, 648, 734, 194, 194, 638, 1183, - 637, 643, 194, 194, 644, 642, 194, 194, 194, 194, 194, 194, 194, 646, 194, 640, 194, - 645, 647, 194, 1183, 648, 194, 194, 194, 1183, 649, 194, 194, 194, 194, 650, 1183, 1183, - 194, 194, 194, 735, 736, 194, 646, 194, 194, 194, 645, 647, 651, 194, 194, 194, 194, - 194, 194, 649, 194, 194, 652, 194, 650, 653, 654, 656, 194, 194, 735, 736, 1183, 194, - 194, 194, 194, 1183, 194, 651, 194, 194, 657, 194, 194, 194, 194, 194, 1183, - - 652, 655, 194, 653, 654, 656, 194, 194, 1183, 737, 658, 194, 194, 194, 194, 661, 194, - 194, 194, 194, 657, 659, 194, 738, 194, 194, 660, 194, 655, 194, 739, 740, 194, 194, - 194, 663, 737, 658, 194, 194, 194, 194, 661, 662, 194, 194, 194, 194, 659, 194, 738, - 194, 194, 660, 194, 664, 665, 739, 740, 194, 194, 194, 663, 1183, 194, 194, 194, 194, - 194, 669, 662, 194, 670, 667, 194, 194, 1183, 666, 194, 194, 1183, 671, 664, 665, 194, - 668, 1183, 194, 194, 194, 194, 194, 194, 672, 194, 194, 669, 741, 194, 670, - - 667, 194, 194, 673, 666, 194, 674, 677, 671, 194, 194, 194, 668, 194, 194, 742, 194, - 194, 675, 194, 672, 1183, 194, 194, 741, 194, 743, 194, 194, 194, 673, 194, 194, 674, - 677, 678, 194, 194, 676, 744, 194, 1183, 742, 194, 680, 675, 679, 194, 194, 1183, 194, - 194, 194, 743, 194, 1183, 194, 194, 194, 681, 194, 194, 678, 682, 1183, 676, 744, 194, - 194, 194, 194, 680, 194, 679, 194, 194, 683, 194, 194, 1183, 194, 194, 194, 1183, 194, - 685, 681, 194, 194, 194, 682, 194, 194, 194, 194, 194, 194, 684, 686, 194, - - 745, 194, 194, 683, 194, 1183, 687, 194, 194, 194, 689, 194, 685, 194, 690, 688, 194, - 746, 194, 194, 194, 194, 691, 194, 684, 686, 194, 745, 194, 194, 194, 194, 692, 687, - 194, 1183, 194, 689, 194, 694, 194, 690, 688, 194, 746, 194, 194, 693, 194, 691, 194, - 194, 695, 194, 1183, 1183, 194, 194, 194, 692, 696, 194, 194, 194, 194, 194, 694, 747, - 194, 1183, 194, 698, 194, 194, 693, 748, 700, 697, 194, 695, 194, 702, 194, 194, 194, - 194, 194, 696, 194, 194, 701, 194, 194, 699, 747, 194, 194, 1183, 698, 194, - - 194, 194, 748, 700, 697, 194, 194, 194, 702, 194, 1183, 194, 194, 194, 705, 194, 194, - 701, 194, 194, 699, 1183, 194, 194, 194, 704, 194, 194, 194, 749, 1183, 707, 194, 194, - 703, 750, 194, 706, 194, 194, 194, 705, 194, 194, 194, 194, 194, 1183, 194, 194, 708, - 194, 704, 711, 194, 709, 749, 710, 707, 194, 194, 703, 750, 194, 706, 194, 194, 194, - 194, 194, 194, 194, 1183, 194, 194, 194, 713, 708, 751, 712, 711, 194, 709, 1183, 710, - 714, 194, 194, 752, 194, 194, 1183, 721, 194, 194, 194, 194, 194, 194, 717, - - 194, 194, 719, 713, 1183, 751, 712, 718, 715, 194, 716, 194, 714, 194, 722, 752, 194, - 194, 194, 721, 194, 194, 753, 194, 194, 194, 717, 194, 1183, 719, 754, 194, 1183, 194, - 718, 715, 194, 716, 194, 1183, 194, 722, 723, 720, 194, 194, 194, 194, 724, 753, 755, - 194, 194, 194, 194, 725, 756, 754, 194, 726, 194, 194, 757, 758, 727, 728, 194, 759, - 760, 723, 720, 194, 194, 194, 194, 724, 761, 755, 762, 194, 194, 194, 725, 756, 763, - 764, 726, 765, 194, 757, 758, 727, 728, 194, 759, 760, 766, 767, 768, 194, - - 769, 770, 771, 761, 772, 762, 774, 775, 194, 776, 777, 763, 764, 780, 765, 773, 778, - 779, 781, 782, 783, 784, 785, 766, 767, 768, 786, 769, 770, 771, 787, 772, 788, 774, - 775, 789, 776, 777, 790, 791, 780, 792, 773, 778, 779, 781, 782, 783, 784, 785, 793, - 794, 795, 786, 796, 797, 798, 787, 799, 788, 800, 801, 789, 802, 803, 790, 791, 804, - 792, 805, 806, 807, 808, 809, 810, 811, 812, 793, 794, 795, 813, 796, 797, 798, 814, - 799, 1183, 800, 801, 194, 802, 803, 194, 194, 804, 194, 805, 806, 807, 808, - - 809, 810, 811, 812, 194, 816, 817, 813, 822, 818, 194, 814, 194, 194, 194, 819, 194, - 820, 1183, 194, 194, 823, 194, 821, 194, 194, 194, 194, 194, 1183, 194, 194, 816, 817, - 194, 822, 818, 194, 902, 194, 194, 194, 819, 903, 820, 194, 194, 194, 823, 194, 821, - 194, 194, 194, 194, 194, 824, 194, 194, 194, 194, 194, 827, 826, 194, 902, 825, 1183, - 194, 194, 903, 1183, 194, 194, 194, 1183, 194, 194, 194, 194, 194, 194, 829, 824, 194, - 194, 194, 194, 194, 827, 826, 194, 828, 825, 194, 194, 194, 194, 194, 904, - - 194, 194, 832, 194, 194, 194, 194, 194, 194, 829, 831, 194, 905, 830, 194, 194, 833, - 1183, 194, 828, 194, 194, 194, 194, 194, 194, 904, 194, 194, 832, 194, 194, 835, 1183, - 906, 836, 194, 831, 1183, 905, 830, 194, 194, 833, 194, 194, 834, 194, 838, 194, 194, - 194, 837, 1183, 194, 1183, 194, 194, 194, 835, 194, 906, 836, 194, 194, 194, 1183, 839, - 1183, 194, 1183, 194, 844, 834, 194, 838, 194, 194, 194, 837, 194, 194, 194, 194, 194, - 194, 194, 194, 1183, 1183, 194, 194, 194, 840, 839, 194, 194, 841, 1183, 844, - - 1183, 194, 194, 194, 194, 843, 194, 194, 846, 194, 194, 842, 194, 194, 194, 194, 194, - 194, 1183, 194, 840, 845, 194, 194, 841, 194, 848, 194, 194, 194, 194, 847, 843, 194, - 194, 846, 194, 194, 842, 194, 849, 194, 194, 194, 194, 194, 194, 194, 845, 194, 194, - 907, 194, 848, 194, 194, 1183, 194, 847, 194, 850, 194, 908, 194, 194, 194, 194, 849, - 853, 194, 194, 194, 194, 194, 194, 1183, 194, 194, 907, 194, 909, 194, 851, 194, 852, - 194, 194, 850, 194, 908, 194, 194, 194, 194, 854, 853, 194, 194, 1183, 1183, - - 194, 194, 855, 194, 194, 194, 194, 909, 194, 851, 194, 852, 194, 194, 194, 194, 858, - 194, 856, 194, 194, 854, 910, 1183, 194, 194, 857, 859, 194, 855, 194, 194, 194, 194, - 194, 194, 194, 194, 1183, 194, 194, 194, 860, 858, 911, 856, 194, 194, 1183, 910, 194, - 194, 194, 857, 859, 194, 194, 194, 194, 863, 194, 194, 194, 194, 194, 861, 194, 194, - 194, 860, 194, 911, 1183, 1183, 194, 862, 194, 194, 194, 194, 194, 1183, 194, 194, 194, - 194, 863, 912, 194, 194, 864, 865, 861, 867, 194, 194, 194, 194, 1183, 869, - - 194, 194, 862, 194, 866, 194, 194, 194, 868, 194, 194, 1183, 194, 913, 912, 194, 194, - 864, 865, 194, 867, 194, 1183, 194, 194, 870, 869, 194, 194, 194, 194, 866, 194, 194, - 873, 868, 194, 194, 194, 194, 913, 872, 871, 874, 194, 1183, 194, 194, 194, 194, 914, - 194, 870, 194, 915, 194, 194, 194, 194, 194, 194, 873, 1183, 194, 194, 194, 194, 194, - 872, 871, 874, 194, 875, 1183, 194, 194, 194, 914, 877, 876, 194, 915, 194, 194, 194, - 194, 194, 194, 194, 878, 194, 194, 194, 194, 194, 879, 881, 880, 194, 875, - - 194, 1183, 194, 1183, 1183, 877, 876, 194, 194, 883, 194, 194, 194, 194, 194, 194, 878, - 885, 194, 194, 194, 194, 879, 881, 880, 194, 194, 194, 882, 194, 884, 194, 194, 1183, - 194, 194, 883, 194, 916, 194, 194, 194, 886, 194, 885, 194, 194, 194, 194, 1183, 1183, - 194, 194, 194, 1183, 882, 194, 884, 194, 194, 194, 194, 194, 194, 194, 916, 1183, 194, - 194, 886, 194, 194, 889, 194, 194, 887, 888, 194, 194, 194, 890, 194, 194, 1183, 1183, - 194, 1183, 194, 194, 194, 194, 194, 892, 891, 194, 895, 194, 194, 194, 889, - - 893, 194, 887, 888, 194, 194, 194, 890, 194, 194, 897, 194, 194, 894, 194, 194, 194, - 896, 194, 892, 891, 194, 895, 194, 194, 194, 194, 893, 194, 899, 194, 194, 194, 194, - 194, 917, 918, 897, 194, 194, 894, 194, 194, 194, 896, 194, 898, 919, 194, 194, 194, - 194, 194, 194, 920, 194, 899, 194, 194, 194, 921, 194, 917, 918, 922, 900, 194, 923, - 924, 925, 926, 194, 194, 898, 919, 194, 194, 194, 194, 927, 928, 920, 929, 930, 931, - 932, 194, 921, 933, 934, 935, 922, 900, 936, 923, 924, 925, 926, 194, 937, - - 938, 939, 940, 941, 942, 943, 927, 928, 944, 929, 930, 931, 932, 945, 946, 933, 934, - 935, 947, 948, 936, 949, 950, 951, 952, 953, 937, 938, 939, 940, 941, 942, 943, 954, - 955, 944, 956, 957, 958, 959, 945, 946, 960, 961, 962, 947, 948, 963, 949, 950, 951, - 952, 953, 194, 1183, 194, 194, 1028, 194, 966, 954, 955, 1183, 956, 957, 958, 959, 194, - 967, 960, 961, 962, 194, 194, 963, 194, 194, 965, 194, 194, 194, 970, 194, 194, 1028, - 194, 966, 194, 194, 968, 194, 969, 194, 194, 194, 967, 1183, 1029, 1183, 194, - - 194, 194, 194, 194, 965, 194, 194, 194, 970, 973, 194, 972, 194, 194, 194, 194, 968, - 194, 969, 194, 194, 194, 971, 194, 1029, 978, 194, 194, 194, 194, 974, 976, 194, 975, - 194, 194, 973, 194, 972, 194, 194, 194, 1183, 194, 194, 194, 194, 1030, 194, 971, 194, - 977, 978, 194, 194, 194, 194, 974, 976, 194, 975, 194, 194, 194, 194, 194, 194, 979, - 194, 982, 194, 194, 194, 194, 1030, 981, 1031, 983, 977, 1032, 980, 194, 194, 194, 1183, - 194, 194, 1183, 194, 194, 194, 194, 194, 194, 979, 986, 982, 194, 1183, 194, - - 194, 194, 981, 1031, 983, 194, 1032, 980, 194, 987, 194, 194, 194, 194, 984, 985, 194, - 194, 1183, 194, 194, 988, 986, 194, 194, 194, 194, 194, 194, 1033, 1183, 194, 194, 194, - 194, 194, 987, 194, 194, 1034, 990, 984, 985, 194, 194, 194, 194, 194, 988, 989, 194, - 194, 194, 194, 194, 194, 1033, 194, 194, 991, 194, 194, 194, 1035, 194, 194, 1034, 990, - 194, 194, 194, 194, 194, 194, 1036, 1183, 989, 194, 194, 194, 194, 194, 194, 992, 194, - 994, 991, 1183, 194, 194, 1035, 1037, 194, 194, 993, 194, 194, 194, 194, 194, - - 194, 1036, 194, 194, 194, 194, 194, 194, 194, 997, 992, 995, 994, 194, 996, 194, 194, - 194, 1037, 998, 194, 993, 194, 194, 194, 1183, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 997, 194, 995, 194, 194, 996, 194, 1000, 194, 999, 998, 194, 194, 194, 194, - 194, 1002, 194, 194, 194, 1001, 194, 194, 1183, 194, 1003, 194, 1183, 194, 1038, 194, 194, - 194, 194, 1000, 1183, 999, 194, 194, 194, 1006, 194, 194, 1002, 194, 194, 194, 1001, 194, - 194, 1007, 194, 1003, 194, 1004, 1183, 1038, 1039, 194, 194, 194, 194, 1005, 1040, - - 194, 194, 194, 1006, 194, 194, 1008, 194, 194, 194, 194, 1009, 194, 1007, 194, 194, 1011, - 1004, 1010, 194, 1039, 194, 1183, 194, 194, 1005, 1040, 194, 194, 194, 194, 1012, 194, 1008, - 194, 194, 194, 194, 1009, 194, 1013, 194, 194, 1011, 1183, 1010, 194, 194, 194, 1014, 1015, - 194, 194, 194, 194, 194, 194, 194, 1012, 1183, 1183, 194, 194, 194, 1016, 1018, 194, 1013, - 194, 194, 1017, 194, 194, 194, 194, 194, 1014, 1015, 194, 194, 194, 1019, 194, 194, 1020, - 194, 1021, 194, 194, 194, 1022, 1016, 1018, 1183, 1041, 194, 194, 1017, 194, 194, - - 194, 1183, 194, 1042, 194, 194, 194, 194, 1019, 194, 194, 1020, 194, 1021, 194, 194, 194, - 1022, 1025, 1024, 1023, 1041, 194, 194, 1026, 1043, 194, 1044, 194, 194, 1042, 194, 194, 194, - 194, 1045, 194, 194, 194, 194, 1046, 1047, 194, 194, 1048, 1025, 1024, 1023, 194, 1049, 194, - 1026, 1043, 194, 1044, 194, 194, 1050, 194, 194, 1051, 1052, 1045, 1053, 1054, 194, 194, 1046, - 1047, 1055, 194, 1048, 1056, 1057, 1058, 194, 1049, 1059, 1060, 1061, 1062, 1063, 1064, 1066, 1050, - 194, 194, 1051, 1052, 1104, 1053, 1054, 194, 194, 1068, 1183, 1055, 194, 1183, 1056, - - 1057, 1058, 1067, 194, 1059, 1060, 1061, 1062, 1063, 1064, 1066, 194, 194, 194, 194, 1183, 1104, - 194, 1183, 194, 194, 1068, 194, 194, 194, 194, 1069, 194, 1105, 1067, 194, 194, 1071, 1183, - 1106, 1072, 1070, 1183, 194, 194, 194, 194, 194, 194, 194, 194, 1073, 194, 194, 194, 194, - 194, 194, 1069, 194, 1105, 194, 194, 194, 1071, 194, 1106, 1072, 1070, 1074, 194, 1075, 1183, - 194, 194, 194, 194, 194, 1073, 194, 194, 194, 194, 194, 1076, 194, 1183, 194, 194, 194, - 194, 1077, 194, 194, 1183, 194, 1074, 194, 1075, 194, 194, 1078, 1183, 194, 194, - - 1107, 1183, 194, 194, 194, 194, 1076, 194, 194, 194, 194, 194, 194, 1077, 194, 194, 194, - 194, 1108, 194, 1079, 194, 194, 1078, 194, 194, 194, 1107, 194, 194, 194, 194, 194, 194, - 1183, 194, 1082, 194, 194, 1080, 1183, 194, 194, 194, 194, 1108, 194, 1079, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1083, 194, 1082, 194, 194, 1080, 1081, - 1183, 194, 1183, 194, 1183, 194, 194, 194, 1084, 194, 1088, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 1083, 194, 194, 194, 194, 194, 1081, 1086, 194, 1085, 194, 194, - - 194, 194, 1087, 1084, 1183, 1088, 194, 194, 194, 194, 194, 194, 194, 1109, 194, 1183, 1089, - 194, 194, 194, 194, 1110, 1086, 194, 1085, 194, 194, 194, 194, 1087, 1090, 1091, 194, 194, - 194, 194, 194, 194, 194, 1183, 1109, 1092, 194, 1089, 194, 194, 194, 194, 1110, 1183, 1093, - 1094, 194, 194, 194, 194, 194, 1090, 1091, 194, 194, 194, 194, 194, 194, 194, 194, 1183, - 1092, 194, 1111, 194, 1096, 1095, 194, 194, 194, 1093, 1094, 194, 194, 194, 1098, 194, 194, - 1183, 194, 1183, 194, 194, 1097, 194, 194, 194, 194, 194, 194, 1111, 194, 1096, - - 1095, 1183, 194, 194, 194, 1112, 194, 1099, 194, 1098, 194, 194, 194, 194, 194, 194, 1183, - 1097, 194, 194, 1183, 194, 194, 194, 1113, 194, 194, 194, 1100, 1101, 194, 194, 1112, 194, - 1099, 194, 1183, 194, 1114, 194, 1115, 194, 194, 194, 1116, 194, 1117, 194, 1118, 1119, 1102, - 1113, 194, 194, 194, 1100, 1101, 194, 194, 1183, 194, 1121, 194, 194, 194, 1114, 194, 1115, - 1138, 1122, 194, 1116, 194, 1117, 194, 1118, 1119, 1102, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 1121, 194, 194, 194, 1124, 194, 1123, 1138, 1122, 194, 194, 194, - - 194, 1183, 194, 194, 1183, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1125, 194, - 194, 194, 1124, 194, 1123, 1183, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 1126, 194, 194, 1127, 194, 1129, 194, 1125, 194, 194, 194, 194, 194, 194, 1128, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1126, 194, 194, 1127, 194, 1129, - 1183, 194, 194, 194, 194, 194, 194, 194, 1128, 194, 194, 194, 194, 194, 194, 194, 194, - 1139, 1130, 194, 1131, 194, 194, 194, 194, 194, 1140, 1132, 194, 194, 194, 194, - - 194, 194, 194, 1133, 194, 194, 194, 194, 1136, 194, 194, 194, 1139, 1130, 1134, 1131, 194, - 194, 194, 194, 1135, 1140, 1132, 194, 194, 194, 194, 194, 194, 194, 1133, 194, 194, 194, - 194, 1136, 1141, 194, 194, 1142, 1143, 1134, 1144, 194, 194, 194, 1183, 1135, 194, 1183, 194, - 1154, 194, 194, 194, 194, 194, 1146, 194, 194, 194, 194, 194, 1141, 194, 194, 1142, 1143, - 194, 1144, 194, 194, 194, 194, 1147, 194, 194, 1148, 1154, 194, 194, 194, 194, 194, 1146, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1183, 1149, 194, - - 194, 1147, 194, 194, 1148, 194, 194, 194, 194, 194, 194, 1155, 194, 1151, 194, 194, 1150, - 194, 1156, 194, 194, 194, 194, 194, 194, 1149, 194, 194, 1152, 194, 1158, 1162, 194, 194, - 1183, 194, 1183, 194, 1155, 194, 1151, 194, 194, 1150, 194, 1156, 194, 194, 194, 194, 194, - 194, 1183, 194, 194, 1152, 1159, 1158, 1162, 194, 194, 194, 194, 1183, 194, 1183, 194, 194, - 194, 194, 194, 194, 194, 1183, 194, 194, 1164, 194, 1183, 1183, 194, 194, 1160, 1159, 194, - 1183, 194, 194, 194, 194, 194, 194, 194, 1183, 194, 194, 1183, 194, 1183, 194, - - 1183, 1183, 1183, 1164, 1183, 1183, 1183, 1183, 194, 1160, 1183, 194, 1183, 1183, 194, 1183, 1183, - 194, 1183, 194, 46, 46, 46, 46, 46, 88, 1183, 1183, 88, 88, 179, 179, 179, 1183, - 179, 181, 1183, 181, 181, 181, 184, 1183, 184, 184, 184, 194, 1183, 194, 194, 194, 7, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183}; - -static const flex_int16_t yy_chk[4828] = { - 0, 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, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 9, 9, 10, 10, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, - 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 21, 22, 21, 24, - 1186, 23, 30, 24, 21, 1180, 21, 24, 23, 31, 21, 21, 44, 24, 99, - - 23, 24, 22, 23, 1179, 25, 1178, 25, 21, 22, 21, 24, 25, 23, 30, 24, 21, - 25, 21, 24, 23, 31, 21, 21, 44, 24, 99, 23, 24, 22, 23, 27, 25, 28, - 25, 1177, 32, 27, 1176, 25, 32, 28, 29, 42, 25, 26, 32, 28, 29, 29, 29, - 42, 1175, 26, 1174, 29, 26, 1173, 27, 26, 28, 1172, 26, 32, 27, 26, 1171, 32, - 28, 29, 42, 1170, 26, 32, 28, 29, 29, 29, 42, 34, 26, 33, 29, 26, 36, - 33, 26, 43, 43, 26, 35, 33, 26, 34, 100, 36, 49, 49, 35, 34, - - 34, 36, 35, 38, 1169, 35, 34, 38, 33, 50, 50, 36, 33, 38, 43, 43, 1168, - 35, 33, 1167, 34, 100, 36, 103, 55, 35, 34, 34, 36, 35, 38, 41, 35, 41, - 38, 55, 41, 58, 58, 1166, 38, 39, 104, 39, 1165, 71, 39, 77, 86, 86, 103, - 39, 1163, 39, 39, 1161, 70, 1157, 41, 1153, 41, 108, 1145, 41, 67, 71, 70, 77, - 39, 104, 39, 67, 71, 39, 77, 72, 70, 67, 39, 72, 39, 39, 40, 70, 67, - 72, 40, 110, 108, 40, 40, 67, 71, 70, 77, 72, 40, 110, 67, 40, - - 182, 182, 72, 70, 67, 1137, 72, 1120, 1103, 40, 1065, 67, 72, 40, 110, 1027, 40, - 40, 964, 901, 815, 729, 72, 40, 110, 617, 40, 56, 56, 56, 56, 56, 56, 56, - 56, 56, 56, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 61, 61, 505, - 61, 61, 61, 61, 61, 61, 84, 68, 114, 391, 276, 68, 186, 184, 115, 68, 61, - 61, 61, 73, 101, 68, 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, 61, 84, - 68, 114, 61, 61, 68, 73, 102, 115, 68, 102, 90, 88, 73, 101, 68, - - 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, 61, 85, 60, 118, 61, 61, 59, - 73, 102, 52, 51, 102, 76, 61, 62, 62, 76, 62, 62, 62, 62, 62, 62, 76, - 82, 47, 45, 78, 82, 76, 118, 78, 82, 62, 62, 62, 76, 78, 120, 76, 62, - 20, 19, 76, 121, 11, 122, 78, 82, 83, 76, 82, 83, 83, 78, 82, 76, 7, - 78, 82, 62, 107, 4, 76, 78, 120, 123, 62, 107, 83, 3, 121, 81, 122, 78, - 82, 83, 0, 0, 83, 83, 81, 124, 81, 105, 105, 81, 62, 107, 62, - - 63, 125, 81, 123, 63, 107, 83, 63, 105, 81, 0, 109, 109, 109, 63, 109, 0, - 63, 81, 124, 81, 105, 105, 81, 63, 0, 126, 63, 125, 81, 127, 63, 111, 0, - 63, 105, 129, 111, 109, 109, 109, 63, 109, 112, 63, 112, 113, 113, 112, 0, 130, - 63, 64, 126, 112, 0, 64, 127, 132, 111, 64, 112, 133, 129, 111, 119, 64, 119, - 135, 64, 112, 119, 112, 113, 113, 112, 64, 130, 119, 64, 136, 112, 119, 64, 0, - 132, 0, 64, 112, 133, 137, 0, 119, 64, 119, 135, 64, 0, 119, 128, - - 134, 138, 128, 64, 65, 119, 139, 136, 139, 119, 134, 65, 141, 65, 142, 134, 134, - 137, 65, 140, 143, 140, 144, 65, 65, 0, 128, 134, 138, 128, 145, 65, 140, 139, - 146, 139, 0, 134, 65, 141, 65, 142, 134, 134, 147, 65, 140, 143, 140, 144, 65, - 65, 66, 148, 150, 151, 66, 145, 152, 140, 66, 146, 153, 66, 154, 156, 66, 157, - 154, 66, 158, 147, 66, 0, 0, 160, 66, 0, 0, 66, 148, 150, 151, 66, 0, - 152, 0, 66, 155, 153, 66, 154, 156, 66, 157, 154, 66, 158, 161, 66, - - 159, 155, 160, 66, 69, 69, 155, 162, 163, 159, 164, 69, 69, 69, 166, 155, 167, - 159, 69, 165, 168, 171, 169, 170, 69, 161, 170, 159, 155, 0, 165, 69, 69, 155, - 162, 163, 159, 164, 69, 69, 69, 166, 169, 167, 159, 69, 165, 168, 171, 169, 170, - 69, 74, 170, 172, 173, 74, 165, 174, 175, 176, 173, 177, 279, 194, 0, 74, 0, - 0, 169, 281, 174, 74, 74, 195, 195, 74, 0, 0, 74, 0, 172, 173, 74, 194, - 174, 175, 176, 173, 177, 279, 194, 196, 74, 202, 195, 0, 281, 174, 74, - - 74, 195, 195, 74, 75, 75, 227, 196, 197, 0, 282, 194, 196, 75, 202, 197, 199, - 75, 0, 196, 75, 202, 195, 197, 75, 0, 227, 0, 197, 199, 0, 75, 75, 227, - 196, 197, 199, 282, 0, 196, 75, 202, 197, 199, 75, 198, 284, 75, 198, 198, 197, - 75, 79, 227, 79, 197, 199, 79, 200, 286, 200, 0, 79, 199, 79, 79, 0, 0, - 0, 198, 0, 0, 198, 284, 79, 198, 198, 0, 206, 79, 200, 79, 0, 0, 79, - 200, 286, 200, 206, 79, 0, 79, 79, 201, 201, 201, 198, 203, 206, 0, - - 287, 79, 80, 207, 203, 206, 80, 200, 201, 80, 80, 203, 288, 201, 289, 206, 80, - 203, 207, 80, 201, 201, 201, 207, 203, 206, 80, 287, 0, 80, 207, 203, 0, 80, - 0, 201, 80, 80, 203, 288, 201, 289, 0, 80, 203, 207, 80, 0, 0, 0, 207, - 0, 0, 80, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 92, 92, 92, 92, - 92, 92, 92, 92, 92, 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, - 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 188, 188, 188, 188, 188, - - 188, 188, 188, 188, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 204, - 209, 210, 211, 204, 291, 212, 292, 293, 294, 0, 0, 295, 211, 209, 209, 213, 213, - 210, 0, 212, 209, 210, 211, 204, 0, 212, 204, 209, 210, 211, 204, 291, 212, 292, - 293, 294, 213, 233, 295, 211, 209, 209, 213, 213, 210, 229, 212, 209, 210, 211, 204, - 205, 212, 214, 0, 214, 229, 233, 205, 205, 205, 216, 205, 213, 233, 229, 0, 0, - 216, 296, 297, 205, 229, 0, 0, 214, 0, 0, 205, 298, 214, 216, 214, - - 229, 233, 205, 205, 205, 216, 205, 0, 299, 229, 217, 219, 216, 296, 297, 205, 208, - 217, 208, 214, 208, 208, 218, 298, 219, 216, 220, 208, 0, 0, 217, 219, 218, 0, - 208, 299, 220, 217, 219, 0, 208, 0, 218, 208, 217, 208, 220, 208, 208, 218, 300, - 219, 237, 220, 208, 221, 222, 217, 219, 218, 245, 208, 221, 220, 0, 237, 222, 208, - 215, 218, 215, 0, 237, 220, 215, 221, 222, 300, 223, 237, 245, 215, 221, 222, 0, - 215, 0, 245, 223, 221, 215, 225, 237, 222, 240, 215, 224, 215, 223, 237, - - 225, 215, 221, 222, 226, 223, 0, 245, 215, 240, 224, 225, 215, 224, 240, 223, 224, - 215, 225, 231, 226, 240, 228, 224, 226, 223, 228, 225, 231, 0, 232, 226, 234, 234, - 232, 301, 240, 224, 225, 231, 224, 240, 228, 224, 0, 302, 231, 226, 235, 228, 232, - 226, 234, 228, 235, 231, 235, 232, 0, 234, 234, 232, 301, 236, 0, 236, 231, 236, - 235, 228, 230, 230, 302, 238, 0, 235, 236, 232, 0, 234, 230, 235, 238, 235, 241, - 230, 230, 236, 304, 0, 236, 230, 236, 238, 236, 235, 239, 230, 230, 241, - - 238, 242, 305, 236, 241, 239, 243, 230, 242, 238, 243, 241, 230, 230, 236, 304, 239, - 0, 230, 0, 238, 242, 0, 239, 244, 244, 241, 247, 242, 305, 243, 241, 239, 243, - 0, 242, 248, 243, 246, 246, 306, 250, 247, 239, 244, 250, 249, 247, 242, 248, 249, - 244, 244, 0, 247, 0, 248, 243, 307, 246, 252, 250, 252, 248, 0, 246, 246, 306, - 250, 247, 249, 244, 250, 249, 247, 0, 248, 249, 251, 308, 252, 254, 251, 248, 254, - 307, 246, 252, 250, 252, 256, 251, 253, 0, 0, 0, 251, 249, 309, 253, - - 256, 254, 251, 0, 311, 251, 308, 252, 254, 251, 256, 254, 253, 255, 0, 255, 0, - 256, 251, 253, 257, 258, 255, 251, 257, 309, 253, 256, 254, 251, 255, 311, 259, 312, - 258, 255, 259, 256, 0, 253, 255, 258, 255, 260, 257, 261, 260, 257, 258, 255, 313, - 257, 314, 261, 262, 315, 259, 255, 264, 259, 312, 258, 255, 259, 261, 261, 260, 263, - 258, 264, 260, 257, 261, 260, 262, 263, 0, 313, 264, 314, 261, 262, 315, 259, 265, - 264, 0, 263, 265, 267, 267, 261, 261, 260, 263, 0, 264, 316, 0, 266, - - 271, 262, 263, 266, 265, 264, 266, 0, 265, 268, 267, 265, 270, 268, 263, 265, 267, - 267, 273, 266, 271, 269, 273, 272, 316, 270, 266, 271, 269, 268, 266, 265, 270, 266, - 269, 265, 268, 267, 272, 270, 268, 269, 273, 272, 0, 273, 266, 271, 269, 273, 272, - 0, 270, 0, 0, 269, 268, 317, 318, 270, 319, 269, 320, 321, 290, 272, 290, 303, - 269, 273, 272, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 290, 303, 322, 317, - 318, 323, 319, 324, 320, 321, 290, 325, 290, 303, 326, 327, 328, 329, 330, - - 331, 332, 333, 335, 334, 336, 338, 339, 290, 303, 322, 340, 341, 323, 334, 324, 342, - 343, 344, 325, 345, 346, 326, 327, 328, 329, 330, 331, 332, 333, 335, 334, 336, 338, - 339, 347, 349, 350, 340, 341, 351, 334, 352, 342, 343, 344, 353, 345, 346, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 347, 349, 350, 368, 369, 351, - 370, 352, 371, 372, 373, 353, 374, 375, 354, 355, 356, 357, 358, 359, 360, 361, 362, - 363, 364, 365, 367, 377, 380, 378, 368, 369, 379, 370, 379, 371, 372, 373, - - 378, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 0, 387, 0, 0, 377, - 380, 378, 0, 0, 379, 0, 379, 0, 0, 0, 378, 384, 0, 381, 382, 383, 384, - 385, 386, 387, 388, 389, 393, 387, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, - 394, 395, 396, 397, 384, 398, 400, 399, 393, 0, 397, 399, 0, 506, 507, 393, 0, - 0, 508, 0, 394, 395, 396, 397, 403, 398, 400, 394, 395, 396, 397, 399, 398, 400, - 399, 393, 401, 397, 399, 402, 506, 507, 403, 402, 403, 508, 401, 394, 395, - - 396, 397, 403, 398, 400, 404, 405, 401, 405, 399, 402, 407, 404, 0, 401, 0, 406, - 402, 0, 0, 403, 402, 403, 405, 401, 404, 409, 407, 405, 406, 0, 407, 404, 405, - 401, 405, 406, 402, 407, 404, 408, 409, 410, 406, 0, 412, 409, 411, 408, 0, 405, - 411, 404, 409, 407, 405, 406, 413, 407, 412, 408, 0, 410, 406, 0, 412, 0, 408, - 409, 410, 509, 411, 412, 409, 411, 408, 414, 413, 411, 416, 418, 415, 0, 416, 413, - 510, 412, 408, 415, 410, 414, 419, 412, 419, 420, 418, 414, 509, 411, 416, - - 418, 415, 0, 414, 413, 417, 416, 418, 415, 417, 416, 424, 510, 419, 420, 415, 0, - 414, 419, 421, 419, 420, 418, 414, 423, 425, 416, 418, 415, 417, 422, 424, 417, 422, - 421, 423, 417, 0, 424, 421, 419, 420, 0, 426, 423, 425, 421, 426, 427, 0, 0, - 423, 425, 422, 511, 512, 417, 422, 424, 429, 422, 421, 423, 428, 431, 428, 421, 426, - 427, 430, 426, 423, 425, 429, 426, 427, 430, 431, 433, 429, 422, 511, 512, 0, 431, - 428, 429, 432, 0, 430, 428, 431, 428, 434, 426, 427, 430, 434, 433, 0, - - 429, 432, 435, 430, 431, 433, 429, 432, 0, 514, 435, 431, 428, 436, 432, 438, 430, - 434, 438, 437, 434, 436, 435, 517, 434, 433, 437, 439, 432, 435, 518, 519, 440, 436, - 432, 440, 514, 435, 438, 437, 436, 442, 438, 439, 434, 438, 437, 439, 436, 435, 517, - 441, 440, 437, 439, 441, 442, 518, 519, 440, 436, 442, 440, 0, 443, 438, 437, 444, - 442, 446, 439, 441, 447, 444, 439, 445, 0, 443, 441, 440, 0, 448, 441, 442, 443, - 445, 0, 444, 442, 446, 450, 443, 447, 449, 444, 445, 446, 520, 441, 447, - - 444, 448, 445, 449, 443, 452, 450, 454, 448, 451, 450, 443, 445, 449, 444, 522, 446, - 450, 451, 447, 449, 0, 445, 453, 520, 452, 523, 454, 448, 451, 449, 455, 452, 450, - 454, 455, 451, 450, 453, 524, 449, 0, 522, 453, 457, 451, 456, 456, 457, 0, 453, - 455, 452, 523, 454, 0, 451, 458, 455, 458, 460, 459, 455, 459, 0, 453, 524, 456, - 457, 462, 453, 457, 463, 456, 456, 457, 460, 458, 455, 0, 460, 459, 461, 0, 458, - 462, 458, 460, 459, 462, 459, 464, 463, 465, 456, 457, 462, 461, 464, 463, - - 526, 466, 461, 460, 458, 0, 465, 460, 459, 461, 467, 464, 462, 465, 468, 466, 462, - 527, 464, 463, 465, 466, 469, 470, 461, 464, 469, 526, 466, 461, 467, 472, 470, 465, - 468, 0, 471, 467, 464, 472, 465, 468, 466, 470, 527, 473, 469, 471, 466, 469, 470, - 472, 473, 469, 0, 0, 471, 467, 472, 470, 474, 468, 475, 471, 474, 473, 472, 528, - 476, 0, 470, 476, 473, 469, 471, 529, 478, 475, 472, 473, 479, 480, 475, 471, 474, - 481, 477, 474, 476, 475, 479, 474, 473, 477, 528, 476, 478, 0, 476, 484, - - 479, 480, 529, 478, 475, 481, 477, 479, 480, 475, 0, 474, 481, 477, 484, 476, 482, - 479, 483, 484, 477, 0, 485, 478, 486, 483, 484, 479, 480, 530, 0, 486, 481, 477, - 482, 531, 482, 485, 483, 487, 488, 484, 485, 482, 486, 483, 484, 0, 489, 485, 487, - 486, 483, 490, 491, 488, 530, 489, 486, 487, 488, 482, 531, 482, 485, 483, 487, 488, - 489, 485, 492, 486, 0, 490, 491, 489, 493, 487, 532, 492, 490, 491, 488, 0, 489, - 493, 487, 488, 533, 495, 492, 0, 499, 497, 499, 489, 493, 492, 494, 495, - - 490, 491, 497, 493, 0, 532, 492, 496, 494, 495, 494, 496, 493, 497, 499, 533, 495, - 492, 494, 499, 497, 499, 534, 493, 500, 494, 495, 498, 0, 497, 537, 496, 0, 501, - 496, 494, 495, 494, 496, 0, 497, 499, 500, 498, 500, 494, 502, 498, 501, 534, 538, - 500, 504, 501, 498, 502, 539, 537, 496, 502, 501, 503, 540, 541, 503, 504, 502, 542, - 543, 500, 498, 500, 504, 502, 498, 501, 545, 538, 546, 504, 501, 503, 502, 539, 549, - 550, 502, 552, 503, 540, 541, 503, 504, 502, 542, 543, 554, 555, 556, 504, - - 557, 558, 559, 545, 560, 546, 562, 566, 503, 568, 570, 549, 550, 572, 552, 560, 571, - 571, 573, 575, 576, 577, 578, 554, 555, 556, 579, 557, 558, 559, 581, 560, 582, 562, - 566, 584, 568, 570, 585, 586, 572, 587, 560, 571, 571, 573, 575, 576, 577, 578, 588, - 589, 590, 579, 592, 593, 594, 581, 595, 582, 596, 599, 584, 600, 602, 585, 586, 603, - 587, 604, 605, 606, 607, 608, 609, 610, 612, 588, 589, 590, 614, 592, 593, 594, 616, - 595, 0, 596, 599, 620, 600, 602, 618, 619, 603, 621, 604, 605, 606, 607, - - 608, 609, 610, 612, 622, 618, 619, 614, 624, 620, 625, 616, 618, 619, 623, 621, 620, - 622, 0, 618, 619, 626, 621, 623, 622, 626, 627, 628, 624, 0, 625, 622, 618, 619, - 623, 624, 620, 625, 732, 618, 619, 623, 621, 734, 622, 626, 627, 628, 626, 632, 623, - 622, 626, 627, 628, 624, 629, 625, 630, 631, 629, 623, 632, 631, 633, 732, 630, 0, - 635, 632, 734, 0, 626, 627, 628, 0, 632, 634, 630, 631, 629, 637, 635, 629, 633, - 630, 631, 629, 635, 632, 631, 633, 634, 630, 639, 635, 632, 634, 636, 736, - - 640, 637, 639, 638, 634, 630, 631, 629, 637, 635, 638, 633, 737, 636, 639, 635, 640, - 0, 636, 634, 640, 639, 643, 638, 634, 636, 736, 640, 637, 639, 638, 641, 642, 0, - 738, 643, 642, 638, 0, 737, 636, 639, 643, 640, 645, 636, 641, 640, 645, 643, 638, - 641, 644, 0, 644, 0, 642, 647, 641, 642, 646, 738, 643, 642, 645, 648, 0, 646, - 0, 643, 0, 645, 653, 641, 644, 645, 653, 647, 641, 644, 646, 644, 649, 642, 647, - 648, 650, 646, 0, 0, 652, 645, 648, 649, 646, 651, 653, 650, 0, 653, - - 0, 644, 649, 653, 647, 652, 650, 646, 655, 649, 652, 651, 648, 650, 656, 651, 657, - 652, 0, 659, 649, 654, 651, 653, 650, 654, 658, 660, 655, 649, 658, 657, 652, 650, - 656, 655, 657, 652, 651, 659, 661, 656, 651, 657, 661, 654, 659, 660, 654, 662, 658, - 739, 654, 658, 660, 655, 0, 658, 657, 663, 662, 656, 740, 657, 661, 665, 659, 661, - 667, 662, 666, 661, 654, 664, 660, 0, 662, 658, 739, 663, 741, 668, 664, 669, 666, - 665, 663, 662, 667, 740, 666, 661, 665, 664, 668, 667, 662, 666, 0, 0, - - 664, 668, 669, 669, 673, 670, 663, 741, 668, 664, 669, 666, 665, 671, 672, 667, 672, - 666, 670, 675, 664, 668, 742, 0, 673, 670, 671, 672, 668, 669, 669, 673, 670, 671, - 672, 674, 676, 677, 0, 675, 671, 672, 674, 672, 744, 670, 675, 679, 0, 742, 678, - 673, 670, 671, 672, 674, 676, 677, 681, 682, 671, 672, 674, 676, 677, 678, 675, 679, - 680, 674, 678, 744, 0, 0, 679, 680, 683, 678, 681, 682, 685, 0, 674, 676, 677, - 681, 682, 745, 680, 686, 683, 683, 678, 685, 679, 680, 683, 678, 0, 688, - - 685, 684, 680, 683, 684, 681, 682, 685, 687, 686, 687, 0, 689, 746, 745, 680, 686, - 683, 683, 688, 685, 684, 0, 683, 692, 689, 688, 685, 684, 690, 687, 684, 689, 691, - 693, 687, 686, 687, 693, 689, 746, 691, 690, 694, 692, 0, 688, 694, 684, 690, 747, - 692, 689, 691, 748, 695, 690, 687, 693, 689, 691, 693, 0, 698, 696, 693, 697, 694, - 691, 690, 694, 692, 696, 0, 694, 695, 690, 747, 698, 697, 691, 748, 695, 698, 696, - 693, 697, 700, 701, 699, 698, 696, 699, 697, 694, 700, 702, 701, 702, 696, - - 703, 0, 695, 0, 0, 698, 697, 700, 701, 705, 698, 696, 699, 697, 700, 701, 699, - 707, 702, 699, 703, 704, 700, 702, 701, 702, 706, 703, 704, 705, 706, 709, 708, 0, - 700, 701, 705, 707, 750, 699, 710, 704, 708, 713, 707, 702, 706, 703, 704, 0, 0, - 709, 708, 706, 0, 704, 705, 706, 709, 708, 710, 711, 712, 713, 707, 750, 0, 710, - 704, 708, 713, 715, 714, 706, 714, 711, 712, 716, 709, 708, 715, 711, 712, 0, 0, - 718, 0, 710, 711, 712, 713, 715, 717, 716, 714, 720, 717, 716, 715, 714, - - 718, 714, 711, 712, 716, 718, 722, 715, 711, 712, 722, 719, 718, 719, 721, 720, 717, - 721, 715, 717, 716, 714, 720, 717, 716, 723, 722, 718, 725, 726, 724, 719, 718, 722, - 721, 751, 752, 722, 719, 727, 719, 721, 720, 717, 721, 723, 724, 753, 725, 726, 724, - 728, 723, 722, 754, 725, 726, 724, 719, 727, 755, 721, 751, 752, 756, 728, 727, 757, - 758, 759, 762, 728, 723, 724, 753, 725, 726, 724, 728, 763, 765, 754, 768, 771, 772, - 773, 727, 755, 773, 774, 779, 756, 728, 780, 757, 758, 759, 762, 728, 781, - - 782, 783, 786, 787, 788, 789, 763, 765, 790, 768, 771, 772, 773, 792, 793, 773, 774, - 779, 794, 795, 780, 796, 797, 798, 799, 800, 781, 782, 783, 786, 787, 788, 789, 801, - 802, 790, 803, 805, 806, 807, 792, 793, 809, 810, 811, 794, 795, 812, 796, 797, 798, - 799, 800, 816, 0, 817, 818, 902, 819, 820, 801, 802, 0, 803, 805, 806, 807, 821, - 822, 809, 810, 811, 825, 816, 812, 817, 818, 818, 819, 820, 816, 825, 817, 818, 902, - 819, 820, 821, 822, 823, 823, 824, 825, 824, 821, 822, 0, 904, 0, 825, - - 816, 827, 817, 818, 818, 819, 820, 826, 825, 828, 823, 827, 829, 824, 821, 822, 823, - 823, 824, 825, 824, 827, 826, 831, 904, 834, 830, 826, 827, 828, 830, 832, 829, 831, - 826, 832, 828, 823, 827, 829, 824, 835, 0, 831, 833, 834, 830, 905, 827, 826, 831, - 833, 834, 830, 826, 832, 828, 830, 832, 829, 831, 835, 832, 836, 833, 837, 838, 836, - 835, 839, 831, 833, 834, 830, 905, 838, 906, 840, 833, 907, 837, 843, 832, 836, 0, - 837, 838, 0, 835, 839, 836, 833, 837, 838, 836, 843, 839, 840, 0, 841, - - 842, 843, 838, 906, 840, 844, 907, 837, 843, 844, 836, 846, 837, 838, 841, 842, 839, - 847, 0, 841, 842, 845, 843, 845, 840, 844, 841, 842, 843, 909, 0, 846, 844, 849, - 848, 850, 844, 847, 846, 911, 849, 841, 842, 845, 847, 852, 841, 842, 845, 848, 845, - 853, 844, 849, 848, 850, 909, 851, 846, 851, 849, 848, 850, 912, 847, 852, 911, 849, - 854, 855, 845, 853, 852, 856, 913, 0, 848, 851, 853, 857, 849, 848, 850, 854, 851, - 858, 851, 0, 854, 855, 912, 914, 852, 856, 857, 854, 855, 859, 853, 857, - - 856, 913, 860, 861, 851, 858, 857, 862, 863, 860, 854, 859, 858, 864, 859, 854, 855, - 859, 914, 865, 856, 857, 860, 861, 859, 0, 857, 862, 863, 860, 861, 866, 858, 864, - 862, 863, 860, 869, 859, 865, 864, 859, 870, 867, 859, 866, 865, 867, 871, 860, 861, - 866, 869, 868, 862, 863, 868, 869, 866, 0, 864, 872, 870, 0, 869, 916, 865, 867, - 871, 870, 867, 0, 866, 868, 867, 871, 875, 873, 866, 869, 868, 872, 876, 868, 869, - 874, 876, 877, 872, 870, 873, 0, 916, 918, 867, 871, 875, 873, 874, 922, - - 868, 881, 876, 875, 873, 874, 878, 877, 872, 876, 878, 879, 874, 876, 877, 879, 881, - 873, 880, 880, 918, 881, 0, 875, 873, 874, 922, 882, 881, 876, 878, 882, 874, 878, - 877, 879, 885, 878, 879, 880, 883, 883, 879, 881, 0, 880, 880, 882, 881, 884, 885, - 886, 890, 884, 882, 887, 885, 878, 882, 0, 0, 883, 879, 885, 886, 888, 880, 883, - 883, 888, 887, 886, 890, 884, 882, 887, 884, 885, 886, 890, 884, 889, 887, 885, 891, - 889, 892, 892, 883, 888, 893, 886, 888, 0, 924, 894, 888, 887, 886, 890, - - 884, 0, 887, 925, 891, 889, 895, 892, 889, 897, 893, 891, 889, 892, 892, 894, 888, - 893, 897, 896, 895, 924, 894, 896, 898, 931, 895, 932, 898, 897, 925, 891, 889, 895, - 892, 933, 897, 893, 899, 900, 935, 937, 894, 896, 938, 897, 896, 895, 898, 940, 896, - 898, 931, 895, 932, 898, 897, 941, 899, 900, 942, 944, 933, 945, 946, 899, 900, 935, - 937, 947, 896, 938, 949, 951, 953, 898, 940, 954, 955, 956, 961, 962, 963, 965, 941, - 899, 900, 942, 944, 1031, 945, 946, 966, 967, 968, 0, 947, 971, 0, 949, - - 951, 953, 967, 965, 954, 955, 956, 961, 962, 963, 965, 969, 966, 967, 968, 0, 1031, - 971, 0, 966, 967, 968, 970, 973, 971, 972, 969, 974, 1034, 967, 965, 969, 972, 0, - 1035, 974, 970, 0, 969, 966, 967, 968, 970, 973, 971, 972, 975, 974, 975, 970, 973, - 977, 972, 969, 974, 1034, 978, 976, 969, 972, 980, 1035, 974, 970, 976, 982, 977, 0, - 975, 970, 973, 977, 972, 975, 974, 975, 978, 976, 977, 979, 980, 0, 979, 978, 976, - 982, 981, 980, 981, 0, 983, 976, 982, 977, 984, 975, 985, 0, 977, 986, - - 1038, 0, 979, 978, 976, 989, 979, 980, 981, 979, 983, 987, 982, 981, 984, 981, 985, - 983, 1039, 986, 987, 984, 990, 985, 988, 989, 986, 1038, 991, 979, 992, 987, 989, 993, - 0, 981, 995, 983, 987, 988, 0, 984, 990, 985, 988, 1039, 986, 987, 991, 990, 992, - 988, 989, 993, 994, 991, 995, 992, 987, 997, 993, 996, 998, 995, 999, 996, 988, 994, - 0, 990, 0, 988, 0, 1002, 994, 991, 998, 992, 1004, 997, 993, 994, 998, 995, 999, - 996, 997, 1003, 996, 998, 1000, 999, 996, 1002, 994, 1001, 1005, 1000, 1004, 1001, - - 1002, 994, 1003, 998, 0, 1004, 997, 1003, 1006, 998, 1000, 999, 996, 1044, 1003, 0, 1005, - 1000, 1011, 1001, 1002, 1045, 1001, 1005, 1000, 1004, 1001, 1009, 1006, 1003, 1007, 1008, 1007, 1008, - 1003, 1006, 1010, 1000, 1011, 0, 1044, 1009, 1012, 1005, 1013, 1011, 1001, 1009, 1045, 0, 1010, - 1012, 1007, 1008, 1009, 1006, 1010, 1007, 1008, 1007, 1008, 1015, 1012, 1010, 1013, 1011, 1014, 0, - 1009, 1012, 1048, 1013, 1016, 1014, 1009, 1020, 1016, 1010, 1012, 1007, 1008, 1015, 1018, 1010, 1018, - 0, 1014, 0, 1015, 1012, 1017, 1013, 1019, 1014, 1017, 1020, 1016, 1048, 1021, 1016, - - 1014, 0, 1020, 1016, 1018, 1049, 1022, 1019, 1015, 1018, 1023, 1018, 1019, 1014, 1017, 1024, 0, - 1017, 1021, 1019, 0, 1017, 1020, 1016, 1052, 1021, 1022, 1025, 1024, 1025, 1023, 1018, 1049, 1022, - 1019, 1024, 0, 1023, 1053, 1019, 1056, 1017, 1024, 1026, 1058, 1021, 1059, 1025, 1060, 1061, 1026, - 1052, 1066, 1022, 1025, 1024, 1025, 1023, 1067, 0, 1068, 1069, 1024, 1026, 1070, 1053, 1071, 1056, - 1104, 1072, 1026, 1058, 1066, 1059, 1025, 1060, 1061, 1026, 1067, 1066, 1068, 1069, 1074, 1075, 1070, - 1067, 1071, 1068, 1069, 1072, 1026, 1070, 1076, 1071, 1073, 1104, 1072, 1078, 1073, 1066, - - 1077, 0, 1074, 1075, 0, 1067, 1079, 1068, 1069, 1074, 1075, 1070, 1076, 1071, 1080, 1077, 1072, - 1078, 1073, 1076, 1077, 1073, 0, 1081, 1078, 1073, 1079, 1077, 1084, 1074, 1075, 1083, 1085, 1079, - 1080, 1082, 1086, 1082, 1083, 1076, 1087, 1080, 1077, 1081, 1078, 1073, 1088, 1077, 1084, 1086, 1081, - 1083, 1085, 1079, 1089, 1084, 1086, 1082, 1083, 1085, 1087, 1080, 1082, 1086, 1082, 1083, 1088, 1087, - 0, 1092, 1081, 1090, 1093, 1088, 1089, 1084, 1086, 1095, 1083, 1085, 1094, 1089, 1091, 1086, 1082, - 1106, 1090, 1087, 1091, 1092, 1096, 1090, 1093, 1088, 1109, 1094, 1092, 1095, 1090, 1093, - - 1094, 1089, 1091, 1096, 1095, 1098, 1097, 1094, 1099, 1091, 1096, 1100, 1106, 1090, 1097, 1091, 1092, - 1096, 1090, 1093, 1098, 1109, 1094, 1101, 1095, 1098, 1097, 1094, 1099, 1091, 1096, 1100, 1098, 1097, - 1102, 1099, 1112, 1096, 1100, 1116, 1117, 1097, 1118, 1101, 1121, 1122, 0, 1098, 1124, 0, 1101, - 1139, 1098, 1097, 1102, 1099, 1125, 1121, 1100, 1123, 1127, 1102, 1126, 1112, 1121, 1122, 1116, 1117, - 1124, 1118, 1101, 1121, 1122, 1128, 1123, 1124, 1125, 1126, 1139, 1123, 1127, 1102, 1126, 1125, 1121, - 1129, 1123, 1127, 1130, 1126, 1131, 1121, 1122, 1128, 1132, 1124, 1133, 0, 1129, 1136, - - 1128, 1123, 1134, 1125, 1126, 1129, 1123, 1127, 1130, 1126, 1131, 1141, 1129, 1134, 1132, 1130, 1133, - 1131, 1144, 1136, 1128, 1132, 1134, 1133, 1135, 1129, 1136, 1146, 1135, 1134, 1147, 1156, 1129, 1148, - 0, 1130, 0, 1131, 1141, 1150, 1134, 1132, 1149, 1133, 1135, 1144, 1136, 1146, 1151, 1134, 1147, - 1135, 0, 1148, 1146, 1135, 1149, 1147, 1156, 1150, 1148, 1158, 1149, 0, 1159, 0, 1150, 1160, - 1151, 1149, 1164, 1135, 1152, 0, 1146, 1151, 1160, 1147, 0, 0, 1148, 1158, 1152, 1149, 1159, - 0, 1150, 1160, 1158, 1149, 1164, 1159, 1152, 0, 1160, 1151, 0, 1164, 0, 1152, - - 0, 0, 0, 1160, 0, 0, 0, 0, 1158, 1152, 0, 1159, 0, 0, 1160, 0, 0, - 1164, 0, 1152, 1184, 1184, 1184, 1184, 1184, 1185, 0, 0, 1185, 1185, 1187, 1187, 1187, 0, - 1187, 1188, 0, 1188, 1188, 1188, 1189, 0, 1189, 1189, 1189, 1190, 0, 1190, 1190, 1190, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, - 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183}; +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static const flex_int16_t yy_accept[1192] = + { 0, + 0, 0, 167, 167, 2, 2, 171, 169, 4, 4, + 169, 169, 158, 165, 158, 158, 162, 158, 158, 158, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 158, 167, 168, 2, 2, 3, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 4, 153, 0, 1, 0, + 160, 159, 162, 155, 154, 152, 156, 164, 164, 164, + + 164, 164, 164, 123, 164, 124, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 125, 164, 164, 126, 127, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 128, 129, 130, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 131, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 157, 167, 166, + 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 163, 0, 159, 111, 164, 112, + 164, 164, 113, 164, 114, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 135, 164, + + 164, 164, 164, 164, 164, 164, 164, 164, 164, 115, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 116, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 117, 164, 164, 118, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 119, 164, 164, + 120, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 121, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 122, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 0, 164, 164, 164, 164, 164, + 164, 164, 82, 164, 83, 45, 84, 164, 164, 164, + 85, 164, 164, 86, 141, 164, 164, 164, 164, 164, + 88, 164, 164, 164, 89, 90, 164, 164, 164, 164, + 164, 164, 164, 91, 164, 164, 92, 93, 164, 164, + 94, 164, 95, 134, 164, 164, 164, 164, 164, 164, + 96, 164, 97, 98, 99, 164, 101, 164, 102, 164, + 164, 164, 164, 103, 164, 164, 164, 164, 164, 104, + 164, 164, 32, 164, 164, 164, 164, 164, 164, 164, + 105, 164, 164, 164, 164, 164, 106, 107, 30, 164, + + 144, 164, 164, 164, 164, 164, 164, 164, 164, 108, + 164, 109, 164, 110, 137, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 0, 62, 63, 164, + 64, 164, 147, 164, 164, 164, 164, 164, 164, 164, + 65, 164, 164, 164, 164, 164, 66, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 145, 67, 164, + 164, 68, 164, 140, 100, 164, 69, 70, 164, 164, + 164, 164, 71, 72, 73, 74, 164, 136, 164, 164, + 164, 75, 76, 164, 164, 164, 164, 164, 77, 164, + 164, 164, 164, 164, 164, 164, 78, 164, 164, 164, + + 164, 79, 164, 164, 164, 80, 164, 164, 164, 81, + 143, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 0, 164, 35, 164, + + 164, 164, 36, 149, 164, 37, 164, 164, 164, 164, + 38, 164, 39, 164, 40, 41, 42, 164, 43, 164, + 164, 46, 47, 48, 49, 50, 164, 164, 164, 51, + 133, 142, 164, 164, 52, 164, 164, 164, 53, 164, + 164, 54, 132, 55, 164, 56, 164, 57, 164, 164, + 164, 164, 58, 59, 60, 61, 164, 164, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 0, 15, 16, 17, 164, 18, 19, 164, 164, 31, + 20, 164, 164, 21, 22, 44, 23, 164, 164, 139, + 24, 164, 164, 25, 26, 164, 164, 27, 138, 164, + 28, 164, 164, 164, 164, 29, 34, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 0, 164, 87, 164, 10, 11, + + 164, 150, 12, 164, 13, 148, 33, 164, 164, 164, + 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 0, 164, + 164, 7, 164, 8, 9, 164, 2, 2, 2, 2, + 2, 2, 2, 2, 0, 0, 5, 6, 164, 2, + 2, 2, 2, 2, 0, 0, 146, 2, 2, 2, + 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, + 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, + 0, 151, 2, 2, 0, 2, 0, 2, 161, 2, + 0 + + } ; + +static const YY_CHAR yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 4, 5, 1, 1, 6, 1, 7, 6, + 6, 6, 6, 6, 8, 9, 6, 10, 11, 12, + 13, 14, 15, 16, 17, 18, 19, 6, 6, 20, + 21, 22, 6, 1, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + 6, 1, 6, 6, 49, 1, 50, 51, 52, 53, + + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, + 74, 75, 6, 76, 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, 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, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1 + } ; + +static const YY_CHAR yy_meta[77] = + { 0, + 1, 1, 2, 1, 3, 1, 4, 1, 1, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, + 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 1 + } ; + +static const flex_int16_t yy_base[1199] = + { 0, + 0, 0, 581, 574, 76, 0, 573, 4737, 151, 153, + 547, 0, 4737, 4737, 149, 148, 160, 159, 535, 532, + 156, 156, 164, 162, 172, 223, 198, 211, 215, 151, + 168, 210, 255, 257, 263, 262, 0, 277, 317, 360, + 296, 221, 258, 171, 476, 0, 530, 0, 295, 308, + 515, 516, 0, 0, 317, 418, 429, 317, 499, 496, + 448, 524, 578, 630, 678, 730, 338, 436, 778, 330, + 319, 349, 444, 830, 878, 500, 321, 511, 928, 980, + 556, 512, 533, 431, 437, 347, 4737, 507, 4737, 485, + 1045, 1055, 1066, 4737, 4737, 4737, 4737, 0, 174, 253, + + 438, 469, 284, 318, 567, 0, 538, 339, 578, 361, + 591, 621, 607, 417, 429, 436, 453, 489, 641, 515, + 521, 520, 537, 556, 568, 590, 594, 659, 601, 608, + 0, 628, 625, 675, 633, 650, 644, 674, 674, 697, + 673, 679, 685, 681, 689, 701, 722, 726, 0, 729, + 714, 719, 740, 738, 766, 737, 734, 741, 776, 739, + 776, 768, 786, 787, 785, 788, 782, 783, 800, 793, + 796, 824, 822, 832, 833, 819, 840, 4737, 0, 4737, + 0, 399, 0, 491, 0, 453, 1076, 1086, 1097, 0, + 0, 0, 0, 838, 849, 866, 882, 923, 890, 934, + + 967, 868, 971, 1094, 1142, 952, 977, 1194, 1091, 1092, + 1093, 1096, 1107, 1146, 1244, 1152, 1184, 1196, 1185, 1200, + 1229, 1230, 1252, 1270, 1265, 1278, 880, 1296, 1136, 1345, + 1293, 1304, 1128, 1306, 1322, 1341, 1226, 1347, 1370, 1268, + 1358, 1375, 1384, 1398, 1234, 1413, 1401, 1410, 1424, 1415, + 1456, 1434, 1466, 1455, 1489, 1464, 1498, 1495, 1510, 1520, + 1519, 1528, 1541, 1532, 1562, 1573, 1564, 1583, 1595, 1586, + 1574, 1597, 1596, 0, 4737, 452, 1662, 0, 837, 0, + 844, 877, 0, 924, 0, 923, 970, 968, 981, 1640, + 1082, 1081, 1090, 1084, 1082, 1164, 1147, 1170, 1168, 1217, + + 1305, 1323, 1641, 1364, 1376, 1399, 1435, 1442, 1472, 0, + 1482, 1507, 1526, 1512, 1522, 1558, 1617, 1632, 1638, 1628, + 1629, 1650, 1663, 1646, 1663, 1665, 1655, 1658, 1666, 1663, + 1674, 1675, 1676, 1678, 1661, 1670, 0, 1665, 1681, 1681, + 1687, 1694, 1689, 1690, 1678, 1680, 1693, 0, 1703, 1698, + 1700, 1716, 1720, 1727, 1715, 1714, 1718, 1720, 1732, 1714, + 1727, 1724, 1732, 1723, 1734, 0, 1717, 1732, 1725, 1727, + 1737, 1734, 1731, 1739, 1749, 0, 1754, 1765, 1758, 1754, + 1781, 1769, 1763, 1782, 1763, 1767, 1774, 1781, 1772, 0, + 450, 1832, 1813, 1825, 1826, 1827, 1828, 1829, 1838, 1830, + + 1859, 1863, 1864, 1880, 1897, 1888, 1903, 1905, 1851, 1916, + 1933, 1931, 1921, 1947, 1942, 1955, 1970, 1964, 1983, 1965, + 1998, 1999, 2004, 1987, 2000, 2009, 2001, 2035, 2038, 2037, + 2041, 2039, 2043, 2073, 2067, 2083, 2092, 2077, 2089, 2095, + 2107, 2108, 2131, 2137, 2146, 2113, 2121, 2145, 2149, 2147, + 2179, 2162, 2180, 2177, 2181, 2203, 2191, 2217, 2231, 2205, + 2220, 2239, 2216, 2234, 2256, 2257, 2245, 2253, 2274, 2279, + 2291, 2285, 2307, 2313, 2308, 2319, 2310, 2325, 2343, 2331, + 2342, 2347, 2361, 2356, 2364, 2393, 2385, 2382, 2401, 2387, + 2399, 2416, 2422, 2435, 2441, 2457, 2456, 2444, 2475, 2479, + + 2439, 2485, 2490, 2496, 448, 1828, 1830, 1879, 1975, 2036, + 2280, 2348, 0, 2363, 0, 0, 2381, 2493, 2503, 2495, + 0, 2496, 2499, 2499, 0, 2508, 2510, 2503, 2512, 2533, + 2517, 2533, 2529, 2532, 0, 0, 2533, 2536, 2532, 2534, + 2554, 2555, 2552, 0, 2538, 2559, 0, 0, 2563, 2550, + 0, 2553, 0, 2549, 2564, 2552, 2548, 2555, 2556, 2568, + 0, 2565, 0, 0, 0, 2558, 0, 2576, 0, 2584, + 2587, 2582, 2574, 0, 2595, 2598, 2590, 2591, 2597, 0, + 2610, 2611, 0, 2601, 2600, 2600, 2619, 2609, 2609, 2621, + 0, 2614, 2622, 2619, 2624, 2616, 0, 0, 2613, 2621, + + 0, 2639, 2629, 2623, 2645, 2632, 2650, 2655, 2653, 0, + 2641, 0, 2658, 0, 2645, 438, 2660, 2675, 2669, 2670, + 2678, 2672, 2693, 2694, 2710, 2704, 2709, 2727, 2726, 2728, + 2745, 2742, 2763, 2766, 2764, 2767, 2781, 2796, 2782, 2797, + 2799, 2820, 2832, 2834, 2835, 2821, 2836, 2853, 2866, 2858, + 2872, 2875, 2888, 2870, 2876, 2906, 2916, 2907, 2910, 2924, + 2918, 2932, 2940, 2941, 2950, 2942, 2972, 2955, 2973, 2983, + 3004, 2978, 3007, 2995, 3008, 3009, 3032, 3018, 3043, 3026, + 3037, 3061, 3066, 3058, 3040, 3091, 3072, 3094, 3097, 3112, + 3095, 3129, 3130, 3128, 3143, 3145, 3146, 3167, 3154, 3186, + + 3182, 3183, 3197, 3196, 3208, 3198, 3226, 3200, 3221, 3237, + 3238, 3234, 3242, 3250, 3256, 3275, 3290, 3280, 3274, 3288, + 3292, 3304, 3296, 3306, 3314, 3328, 413, 0, 0, 2655, + 0, 2711, 0, 2712, 2744, 2746, 2740, 2785, 2808, 2931, + 0, 2980, 2984, 3086, 3093, 3104, 0, 3102, 3169, 3196, + 3260, 3266, 3296, 3298, 3311, 3325, 3332, 0, 0, 3321, + 3337, 0, 3343, 0, 0, 3331, 0, 0, 3334, 3350, + 3345, 3347, 0, 0, 0, 0, 3358, 3346, 3368, 3362, + 3351, 0, 0, 3367, 3355, 3357, 3374, 3374, 0, 3383, + 3384, 3383, 3368, 3380, 3389, 3394, 3382, 3385, 3384, 3404, + + 3406, 0, 3403, 3405, 3408, 0, 3398, 3417, 3418, 0, + 0, 409, 3416, 3418, 3428, 3424, 3432, 3433, 3434, 3447, + 3458, 3457, 3472, 3486, 3442, 3468, 3497, 3498, 3507, 3502, + 3511, 3512, 3537, 3540, 3542, 3526, 3543, 3556, 3565, 3552, + 3577, 3596, 3575, 3586, 3600, 3610, 3591, 3626, 3605, 3609, + 3634, 3631, 3639, 3645, 3648, 3650, 3662, 3663, 3679, 3680, + 3684, 3685, 3688, 3717, 3698, 3719, 3703, 3716, 3721, 3738, + 3742, 3733, 3752, 3747, 3775, 3777, 3787, 3776, 3788, 3806, + 3816, 3811, 3817, 3827, 3845, 3850, 3801, 3829, 3860, 3851, + 3855, 3879, 3885, 3894, 3883, 3884, 404, 3437, 0, 3511, + + 3521, 3546, 3560, 0, 3607, 0, 3685, 3724, 3747, 3742, + 0, 3796, 0, 3842, 0, 0, 0, 3861, 0, 3853, + 3876, 0, 0, 0, 0, 0, 3882, 3896, 3904, 0, + 3887, 0, 3902, 3917, 0, 3900, 3916, 3899, 0, 3926, + 3927, 3915, 3919, 0, 3925, 0, 3928, 0, 3941, 3942, + 3941, 3929, 0, 0, 0, 0, 3932, 3940, 403, 3948, + 3949, 3950, 3953, 3963, 3967, 3979, 3982, 3984, 3993, 4017, + 4012, 4003, 4007, 4036, 4021, 4049, 4035, 4038, 4051, 4052, + 4053, 4057, 4075, 4061, 4067, 4086, 4089, 4091, 4092, 4101, + 4107, 4115, 4123, 4120, 4124, 4129, 4126, 4145, 4141, 4155, + + 4157, 4180, 4181, 4169, 4195, 4166, 4194, 4191, 4212, 4197, + 4229, 4235, 4245, 4233, 4220, 4234, 4237, 4251, 4266, 4283, + 407, 0, 0, 0, 3958, 0, 0, 3998, 4047, 0, + 0, 4163, 4184, 0, 0, 0, 0, 4225, 4261, 0, + 0, 4256, 4273, 0, 0, 4259, 4271, 0, 0, 4270, + 0, 4274, 4280, 4274, 4291, 0, 0, 404, 4299, 4302, + 4305, 4307, 4308, 4311, 4320, 4337, 4321, 4323, 4324, 4359, + 4336, 4342, 4345, 4353, 4377, 4378, 4361, 4376, 4394, 4390, + 4391, 4393, 4415, 4416, 4399, 4427, 4433, 4431, 4432, 4456, + 4450, 4461, 4466, 4467, 401, 4326, 0, 4367, 0, 0, + + 4413, 0, 0, 4431, 0, 0, 0, 4448, 4458, 4469, + 0, 399, 4485, 4482, 4484, 4490, 4501, 4507, 4515, 4516, + 4520, 4518, 4519, 4524, 4530, 4541, 4555, 4553, 395, 404, + 4556, 0, 4544, 0, 0, 4554, 350, 4594, 4570, 4572, + 4581, 4576, 4578, 4606, 344, 4612, 0, 0, 4575, 342, + 4614, 4593, 4607, 4615, 338, 4613, 0, 335, 4614, 4612, + 330, 4605, 325, 4617, 306, 4618, 303, 4624, 288, 4642, + 255, 4643, 250, 4639, 245, 4640, 243, 4648, 240, 4650, + 235, 4737, 221, 0, 226, 197, 187, 173, 4737, 0, + 4737, 4706, 4711, 181, 4716, 4721, 4726, 4731 + + } ; + +static const flex_int16_t yy_def[1199] = + { 0, + 1191, 1, 1192, 1192, 1191, 5, 1191, 1191, 1191, 1191, + 1191, 1193, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1191, 1195, 1191, 1196, 1196, 1191, + 1196, 1197, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, + 1198, 1198, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 1196, 1191, 1191, 1193, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1191, 1195, 1191, + 1196, 1196, 1196, 1197, 1196, 1196, 1196, 1196, 1196, 1196, + 1196, 1196, 1196, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 1196, 1191, 1191, 1191, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, + 1196, 1196, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, + 62, 62, 62, 62, 1191, 1191, 1194, 1194, 1194, 1196, + 1196, 62, 62, 62, 1191, 1191, 1194, 1196, 1196, 62, + 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, + 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, + 1191, 1191, 1196, 1196, 1191, 1196, 1191, 1196, 1191, 1196, + 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191 + + } ; + +static const flex_int16_t yy_nxt[4814] = + { 0, + 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 37, 44, 37, 8, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 37, 44, 37, 45, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 57, 57, 57, 57, + 57, 57, 57, 57, 57, 58, 59, 60, 61, 62, + + 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, + 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, + 83, 77, 84, 77, 48, 61, 62, 63, 64, 65, + 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, + 76, 77, 78, 79, 80, 81, 82, 83, 77, 84, + 77, 85, 86, 86, 86, 86, 89, 91, 91, 91, + 91, 91, 91, 91, 91, 91, 91, 90, 92, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 94, + 95, 99, 105, 100, 111, 98, 107, 136, 112, 101, + 1190, 102, 113, 108, 137, 103, 104, 177, 114, 278, + + 109, 115, 106, 110, 1189, 116, 1188, 117, 99, 105, + 100, 111, 118, 107, 136, 112, 101, 119, 102, 113, + 108, 137, 103, 104, 177, 114, 278, 109, 115, 106, + 110, 126, 116, 128, 117, 1187, 138, 127, 1186, 118, + 139, 129, 131, 173, 119, 120, 140, 130, 132, 133, + 134, 174, 1185, 121, 1183, 135, 122, 1181, 126, 123, + 128, 1179, 124, 138, 127, 125, 1177, 139, 129, 131, + 173, 1175, 120, 140, 130, 132, 133, 134, 174, 144, + 121, 141, 135, 122, 152, 142, 123, 175, 176, 124, + 148, 143, 125, 145, 279, 153, 182, 86, 149, 146, + + 147, 154, 150, 155, 1173, 151, 144, 156, 141, 86, + 86, 152, 142, 157, 175, 176, 1171, 148, 143, 1169, + 145, 279, 153, 284, 185, 149, 146, 147, 154, 150, + 155, 170, 151, 171, 156, 186, 172, 190, 191, 1167, + 157, 158, 285, 159, 1165, 233, 160, 194, 86, 86, + 284, 161, 1163, 162, 163, 1161, 194, 1158, 170, 1155, + 171, 291, 1150, 172, 194, 194, 232, 194, 158, 285, + 159, 222, 233, 160, 194, 234, 194, 223, 161, 235, + 162, 163, 164, 194, 194, 236, 165, 296, 291, 166, + 167, 194, 194, 232, 194, 194, 168, 297, 222, 169, + + 182, 86, 234, 194, 223, 1146, 235, 1145, 1137, 164, + 1129, 194, 236, 165, 296, 1112, 166, 167, 1095, 1058, + 1021, 959, 194, 168, 297, 897, 169, 187, 187, 187, + 187, 187, 187, 187, 187, 187, 187, 188, 189, 189, + 189, 189, 189, 189, 189, 189, 189, 189, 181, 181, + 812, 181, 181, 181, 181, 181, 181, 273, 224, 307, + 727, 616, 194, 505, 391, 308, 225, 181, 181, 181, + 237, 280, 226, 195, 238, 196, 309, 194, 310, 281, + 239, 197, 194, 198, 273, 224, 307, 199, 200, 194, + 194, 282, 308, 225, 283, 390, 276, 237, 280, 226, + + 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, + 198, 275, 274, 311, 199, 200, 193, 194, 282, 192, + 181, 283, 248, 181, 181, 181, 194, 181, 181, 181, + 181, 181, 181, 249, 269, 183, 180, 251, 194, 250, + 311, 252, 270, 181, 181, 181, 194, 253, 317, 248, + 201, 178, 97, 194, 318, 96, 319, 194, 194, 194, + 249, 269, 271, 272, 251, 194, 250, 87, 252, 270, + 202, 289, 1191, 194, 253, 317, 320, 201, 290, 194, + 47, 318, 194, 319, 194, 194, 194, 47, 1191, 271, + 272, 266, 321, 267, 286, 287, 268, 202, 289, 181, + + 203, 322, 194, 320, 194, 290, 194, 204, 288, 194, + 1191, 292, 293, 294, 205, 295, 1191, 206, 266, 321, + 267, 286, 287, 268, 194, 1191, 323, 203, 322, 194, + 324, 194, 298, 1191, 204, 288, 327, 299, 292, 293, + 294, 205, 295, 300, 206, 301, 305, 306, 302, 1191, + 328, 194, 207, 323, 303, 1191, 208, 324, 329, 298, + 209, 304, 330, 327, 299, 312, 210, 313, 335, 211, + 300, 314, 301, 305, 306, 302, 194, 328, 315, 207, + 336, 303, 316, 208, 1191, 329, 1191, 209, 304, 330, + 337, 1191, 312, 210, 313, 335, 211, 1191, 314, 325, + + 331, 338, 326, 194, 194, 315, 339, 336, 340, 316, + 332, 212, 344, 213, 345, 333, 334, 337, 214, 341, + 346, 342, 347, 215, 194, 1191, 325, 331, 338, 326, + 348, 194, 343, 339, 349, 340, 1191, 332, 212, 344, + 213, 345, 333, 334, 350, 214, 341, 346, 342, 347, + 215, 194, 216, 351, 352, 353, 194, 348, 354, 343, + 217, 349, 355, 218, 356, 361, 219, 362, 357, 220, + 363, 350, 221, 1191, 1191, 367, 194, 1191, 1191, 216, + 351, 352, 353, 194, 1191, 354, 1191, 217, 358, 355, + 218, 356, 361, 219, 362, 357, 220, 363, 368, 221, + + 364, 359, 367, 194, 194, 227, 360, 369, 370, 365, + 371, 228, 229, 230, 374, 358, 375, 366, 231, 372, + 376, 381, 377, 379, 194, 368, 380, 364, 359, 1191, + 373, 194, 227, 360, 369, 370, 365, 371, 228, 229, + 230, 374, 378, 375, 366, 231, 372, 376, 381, 377, + 379, 194, 240, 380, 382, 383, 194, 373, 385, 387, + 388, 384, 389, 506, 194, 1191, 241, 1191, 1191, 378, + 507, 386, 242, 243, 393, 194, 194, 1191, 1191, 240, + 1191, 382, 383, 194, 194, 385, 387, 388, 384, 389, + 506, 194, 194, 241, 194, 194, 1191, 507, 386, 242, + + 243, 393, 194, 194, 194, 244, 194, 394, 194, 1191, + 508, 194, 194, 245, 194, 395, 194, 246, 1191, 194, + 247, 194, 194, 396, 194, 1191, 194, 1191, 194, 399, + 1191, 194, 244, 194, 394, 194, 194, 508, 1191, 194, + 245, 194, 395, 194, 246, 397, 509, 247, 398, 194, + 396, 194, 254, 194, 255, 194, 399, 256, 400, 510, + 194, 1191, 257, 194, 258, 259, 1191, 1191, 1191, 194, + 1191, 1191, 397, 509, 194, 398, 194, 1191, 411, 254, + 194, 255, 1191, 1191, 256, 400, 510, 194, 412, 257, + 1191, 258, 259, 194, 401, 402, 194, 194, 194, 1191, + + 511, 194, 260, 194, 404, 411, 261, 194, 403, 262, + 263, 405, 512, 194, 513, 412, 264, 194, 413, 265, + 194, 401, 402, 414, 194, 194, 194, 511, 1191, 260, + 194, 404, 1191, 261, 1191, 403, 262, 263, 405, 512, + 194, 513, 1191, 264, 194, 413, 265, 1191, 1191, 1191, + 414, 1191, 1191, 194, 91, 91, 91, 91, 91, 91, + 91, 91, 91, 91, 277, 277, 277, 277, 277, 277, + 277, 277, 277, 277, 92, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 392, 392, 392, 392, 392, + + 392, 392, 392, 392, 392, 188, 189, 189, 189, 189, + 189, 189, 189, 189, 189, 189, 406, 194, 194, 194, + 194, 517, 194, 518, 519, 520, 1191, 1191, 521, 423, + 420, 421, 425, 194, 422, 1191, 424, 194, 194, 194, + 194, 1191, 194, 406, 194, 194, 194, 194, 517, 194, + 518, 519, 520, 194, 194, 521, 423, 420, 421, 425, + 194, 422, 194, 424, 194, 194, 194, 194, 194, 194, + 426, 1191, 194, 445, 452, 407, 408, 409, 194, 410, + 194, 194, 194, 1191, 1191, 432, 522, 523, 194, 194, + 1191, 1191, 194, 1191, 1191, 194, 524, 426, 194, 194, + + 445, 452, 407, 408, 409, 194, 410, 1191, 525, 194, + 194, 194, 432, 522, 523, 194, 415, 433, 416, 194, + 194, 417, 194, 524, 435, 194, 194, 418, 1191, 1191, + 194, 194, 434, 1191, 419, 525, 436, 194, 194, 1191, + 194, 1191, 194, 415, 433, 416, 194, 194, 417, 194, + 526, 435, 194, 194, 418, 194, 194, 194, 194, 434, + 194, 419, 437, 436, 1191, 459, 438, 194, 427, 194, + 428, 1191, 194, 194, 429, 194, 194, 526, 194, 194, + 194, 430, 194, 194, 1191, 431, 1191, 194, 439, 437, + 194, 194, 459, 438, 194, 427, 194, 428, 194, 194, + + 442, 429, 194, 194, 194, 194, 1191, 194, 430, 462, + 440, 194, 431, 441, 194, 439, 194, 194, 194, 194, + 443, 194, 194, 194, 194, 194, 444, 442, 450, 1191, + 194, 194, 194, 453, 451, 527, 462, 440, 194, 194, + 441, 194, 194, 194, 1191, 528, 194, 443, 194, 194, + 194, 194, 194, 444, 454, 450, 455, 194, 1191, 194, + 453, 451, 527, 456, 1191, 457, 194, 194, 194, 194, + 446, 194, 528, 194, 1191, 194, 458, 194, 1191, 194, + 447, 454, 460, 455, 194, 448, 449, 194, 531, 1191, + 456, 194, 457, 194, 194, 194, 194, 446, 194, 463, + + 194, 194, 532, 458, 194, 461, 465, 447, 464, 460, + 194, 194, 448, 449, 194, 531, 194, 1191, 194, 1191, + 194, 194, 1191, 194, 194, 466, 463, 194, 194, 532, + 194, 194, 461, 465, 1191, 464, 194, 194, 467, 194, + 533, 471, 468, 194, 194, 472, 470, 194, 194, 469, + 194, 194, 466, 1191, 194, 1191, 194, 194, 534, 194, + 194, 194, 476, 194, 1191, 467, 194, 533, 471, 468, + 194, 194, 472, 470, 194, 1191, 469, 194, 473, 535, + 194, 194, 194, 194, 478, 534, 194, 194, 194, 476, + 194, 474, 194, 1191, 1191, 1191, 475, 194, 536, 477, + + 482, 194, 194, 1191, 537, 473, 535, 194, 194, 194, + 194, 478, 194, 479, 1191, 194, 1191, 194, 474, 194, + 483, 194, 480, 475, 194, 536, 477, 482, 194, 194, + 481, 537, 485, 538, 484, 194, 194, 194, 1191, 194, + 479, 194, 194, 486, 194, 194, 194, 483, 194, 480, + 539, 194, 540, 487, 489, 541, 194, 481, 194, 485, + 538, 484, 194, 194, 488, 194, 194, 194, 194, 491, + 486, 194, 194, 194, 194, 490, 1191, 539, 194, 540, + 487, 489, 541, 194, 492, 194, 1191, 194, 194, 496, + 194, 488, 194, 194, 194, 1191, 491, 542, 1191, 194, + + 502, 194, 490, 494, 493, 194, 495, 1191, 194, 194, + 194, 492, 500, 497, 194, 194, 496, 194, 504, 194, + 194, 194, 194, 194, 542, 501, 194, 502, 498, 194, + 494, 493, 194, 495, 499, 194, 194, 194, 503, 500, + 497, 194, 194, 194, 1191, 504, 194, 194, 194, 194, + 194, 1191, 501, 1191, 1191, 498, 194, 543, 544, 194, + 545, 499, 546, 547, 514, 503, 515, 529, 194, 194, + 194, 277, 277, 277, 277, 277, 277, 277, 277, 277, + 277, 516, 530, 548, 543, 544, 549, 545, 550, 546, + 547, 514, 551, 515, 529, 552, 553, 554, 555, 556, + + 557, 558, 559, 562, 560, 563, 564, 565, 516, 530, + 548, 566, 567, 549, 561, 550, 568, 569, 570, 551, + 571, 572, 552, 553, 554, 555, 556, 557, 558, 559, + 562, 560, 563, 564, 565, 573, 574, 575, 566, 567, + 576, 561, 577, 568, 569, 570, 578, 571, 572, 579, + 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, + 590, 591, 573, 574, 575, 592, 593, 576, 594, 577, + 595, 596, 597, 578, 598, 599, 579, 580, 581, 582, + 583, 584, 585, 586, 587, 588, 589, 590, 591, 600, + 605, 601, 592, 593, 603, 594, 604, 595, 596, 597, + + 602, 598, 599, 606, 607, 608, 609, 610, 611, 612, + 614, 615, 1191, 613, 1191, 1191, 600, 605, 601, 1191, + 1191, 603, 1191, 604, 1191, 1191, 1191, 602, 1191, 1191, + 606, 607, 608, 609, 610, 611, 612, 614, 615, 194, + 613, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 392, 617, 194, 618, 194, 194, 194, 1191, 1191, 194, + 620, 619, 1191, 1191, 194, 1191, 194, 728, 1191, 729, + 1191, 194, 194, 194, 194, 194, 194, 194, 617, 194, + 618, 194, 194, 194, 194, 194, 194, 620, 619, 194, + 194, 194, 631, 622, 728, 621, 729, 194, 194, 194, + + 194, 194, 194, 194, 194, 194, 194, 1191, 623, 194, + 194, 194, 194, 624, 194, 1191, 194, 194, 1191, 631, + 622, 625, 621, 626, 194, 730, 194, 628, 1191, 194, + 1191, 194, 194, 194, 194, 623, 194, 194, 627, 630, + 624, 194, 194, 194, 1191, 629, 1191, 635, 625, 194, + 626, 194, 730, 194, 628, 633, 194, 194, 194, 194, + 1191, 194, 632, 1191, 1191, 627, 630, 194, 194, 194, + 194, 634, 629, 194, 635, 637, 194, 194, 194, 194, + 1191, 194, 633, 1191, 194, 638, 194, 636, 194, 632, + 640, 643, 639, 194, 194, 194, 194, 1191, 634, 1191, + + 194, 194, 637, 1191, 194, 641, 194, 642, 194, 194, + 194, 194, 638, 647, 636, 194, 194, 640, 643, 639, + 194, 731, 645, 194, 194, 194, 194, 649, 194, 194, + 194, 648, 641, 194, 642, 194, 194, 194, 194, 644, + 647, 646, 1191, 194, 194, 194, 194, 194, 731, 645, + 194, 194, 194, 194, 649, 194, 194, 194, 648, 650, + 194, 194, 194, 194, 194, 194, 644, 194, 646, 655, + 652, 194, 194, 194, 194, 732, 1191, 194, 651, 654, + 653, 194, 194, 194, 194, 194, 650, 194, 194, 194, + 194, 194, 194, 194, 194, 656, 655, 652, 1191, 194, + + 660, 657, 732, 194, 1191, 651, 654, 653, 194, 194, + 194, 194, 194, 194, 194, 194, 194, 658, 194, 194, + 194, 194, 656, 194, 662, 659, 194, 660, 657, 194, + 194, 661, 1191, 194, 194, 194, 194, 663, 194, 668, + 194, 194, 194, 1191, 658, 194, 194, 669, 194, 664, + 194, 662, 659, 194, 194, 1191, 194, 194, 661, 194, + 194, 194, 194, 194, 663, 194, 668, 194, 194, 666, + 665, 670, 194, 194, 669, 671, 664, 194, 1191, 1191, + 194, 194, 667, 194, 194, 672, 194, 1191, 194, 673, + 194, 194, 194, 194, 194, 194, 666, 665, 670, 194, + + 194, 1191, 671, 676, 194, 194, 194, 194, 194, 667, + 194, 677, 672, 679, 674, 194, 673, 194, 194, 194, + 194, 675, 194, 194, 1191, 194, 194, 194, 678, 194, + 676, 194, 194, 194, 194, 194, 1191, 194, 677, 1191, + 679, 674, 194, 194, 194, 680, 194, 682, 675, 194, + 194, 194, 194, 194, 194, 678, 194, 194, 194, 681, + 194, 683, 194, 194, 194, 194, 194, 685, 1191, 194, + 194, 688, 680, 194, 682, 1191, 194, 194, 194, 689, + 194, 684, 194, 194, 194, 194, 681, 194, 683, 194, + 194, 194, 194, 194, 685, 686, 690, 687, 688, 194, + + 194, 1191, 194, 194, 194, 194, 689, 194, 684, 194, + 194, 194, 194, 1191, 691, 733, 1191, 194, 194, 693, + 194, 1191, 686, 690, 687, 194, 194, 194, 692, 194, + 194, 194, 194, 194, 194, 695, 194, 194, 194, 194, + 694, 691, 733, 698, 194, 194, 693, 194, 697, 696, + 1191, 699, 194, 194, 194, 692, 194, 701, 194, 194, + 194, 194, 695, 194, 194, 194, 194, 694, 194, 194, + 698, 194, 194, 194, 734, 697, 696, 194, 699, 700, + 194, 194, 194, 194, 701, 735, 194, 194, 194, 194, + 194, 702, 194, 194, 703, 194, 194, 704, 194, 1191, + + 194, 734, 194, 736, 194, 705, 700, 194, 194, 194, + 194, 194, 735, 710, 194, 194, 194, 194, 702, 194, + 194, 703, 707, 708, 704, 194, 706, 194, 194, 194, + 736, 194, 705, 194, 194, 194, 709, 194, 194, 194, + 710, 1191, 194, 1191, 1191, 194, 194, 194, 712, 707, + 708, 711, 194, 706, 194, 194, 1191, 713, 194, 1191, + 194, 194, 194, 709, 1191, 194, 194, 194, 194, 194, + 194, 714, 194, 715, 194, 712, 1191, 716, 711, 717, + 722, 194, 194, 194, 713, 194, 719, 194, 194, 194, + 194, 718, 194, 1191, 194, 194, 1191, 194, 714, 720, + + 715, 194, 194, 194, 716, 194, 717, 722, 194, 194, + 194, 194, 194, 719, 194, 1191, 194, 194, 718, 725, + 723, 194, 194, 721, 724, 194, 720, 737, 194, 194, + 194, 194, 194, 738, 739, 726, 194, 740, 194, 741, + 742, 743, 194, 194, 744, 745, 725, 723, 194, 194, + 721, 724, 194, 746, 737, 747, 748, 749, 194, 750, + 738, 739, 726, 194, 740, 751, 741, 742, 743, 194, + 752, 744, 745, 753, 754, 755, 756, 757, 758, 759, + 746, 760, 747, 748, 749, 761, 750, 762, 763, 764, + 765, 766, 751, 767, 768, 769, 770, 752, 772, 773, + + 753, 754, 755, 756, 757, 758, 759, 771, 760, 774, + 775, 778, 761, 779, 762, 763, 764, 765, 766, 780, + 767, 768, 769, 770, 781, 772, 773, 776, 777, 782, + 783, 784, 785, 786, 771, 787, 774, 775, 778, 788, + 779, 789, 790, 791, 792, 793, 780, 794, 795, 796, + 797, 781, 798, 799, 776, 777, 782, 783, 784, 785, + 786, 800, 787, 801, 802, 803, 788, 804, 789, 790, + 791, 792, 793, 805, 794, 795, 796, 797, 806, 798, + 799, 807, 808, 809, 810, 811, 194, 1191, 800, 1191, + 801, 802, 803, 1191, 804, 194, 194, 1191, 194, 813, + + 805, 194, 898, 1191, 194, 806, 194, 818, 807, 808, + 809, 810, 811, 194, 814, 815, 816, 817, 194, 819, + 194, 194, 194, 194, 194, 194, 813, 1191, 194, 898, + 194, 194, 820, 194, 818, 194, 194, 899, 900, 194, + 194, 814, 815, 816, 817, 194, 819, 194, 194, 821, + 194, 194, 194, 194, 194, 194, 194, 194, 823, 820, + 822, 1191, 194, 194, 899, 900, 194, 194, 194, 901, + 902, 194, 194, 194, 194, 903, 821, 194, 1191, 194, + 194, 194, 194, 194, 824, 823, 1191, 822, 194, 194, + 194, 194, 194, 194, 1191, 194, 901, 902, 194, 194, + + 194, 194, 903, 1191, 825, 827, 826, 194, 194, 194, + 194, 824, 194, 194, 828, 194, 194, 194, 194, 194, + 194, 832, 194, 194, 830, 194, 904, 194, 194, 1191, + 829, 825, 827, 826, 194, 194, 194, 194, 831, 194, + 194, 828, 194, 194, 905, 194, 194, 194, 832, 194, + 194, 830, 194, 904, 194, 194, 834, 829, 194, 833, + 194, 194, 194, 1191, 835, 831, 194, 194, 836, 194, + 194, 905, 194, 194, 194, 1191, 1191, 1191, 194, 194, + 194, 194, 194, 834, 194, 194, 833, 194, 194, 194, + 837, 835, 194, 194, 194, 836, 843, 841, 194, 194, + + 839, 194, 194, 838, 194, 194, 194, 194, 194, 194, + 842, 194, 194, 840, 194, 1191, 194, 837, 194, 194, + 1191, 194, 194, 843, 841, 194, 194, 839, 194, 194, + 838, 194, 194, 194, 194, 1191, 194, 842, 845, 194, + 840, 194, 194, 194, 194, 194, 846, 844, 194, 194, + 194, 1191, 194, 194, 1191, 847, 194, 906, 194, 194, + 194, 194, 194, 194, 194, 845, 194, 194, 850, 194, + 194, 194, 1191, 846, 844, 848, 194, 194, 194, 194, + 194, 194, 847, 194, 906, 194, 194, 194, 194, 194, + 849, 194, 1191, 194, 194, 850, 194, 194, 194, 194, + + 852, 194, 848, 194, 194, 194, 1191, 1191, 194, 194, + 907, 851, 853, 194, 194, 194, 1191, 849, 194, 194, + 908, 194, 854, 194, 194, 194, 194, 852, 194, 194, + 194, 194, 855, 194, 194, 194, 194, 907, 851, 853, + 857, 194, 1191, 856, 194, 194, 194, 908, 194, 854, + 194, 194, 194, 194, 194, 194, 194, 194, 194, 855, + 194, 194, 194, 860, 194, 1191, 194, 857, 194, 194, + 856, 194, 194, 858, 1191, 1191, 859, 194, 194, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 1191, 194, + 860, 194, 194, 194, 1191, 863, 194, 864, 866, 194, + + 858, 861, 862, 859, 194, 194, 1191, 194, 909, 1191, + 194, 194, 194, 194, 194, 865, 194, 194, 194, 194, + 194, 194, 863, 194, 864, 866, 910, 1191, 861, 862, + 911, 194, 912, 867, 194, 909, 868, 194, 194, 194, + 194, 194, 865, 194, 194, 194, 869, 194, 194, 1191, + 194, 870, 871, 910, 194, 194, 194, 911, 194, 912, + 867, 1191, 1191, 868, 194, 194, 1191, 194, 194, 194, + 194, 194, 194, 869, 194, 194, 194, 872, 870, 871, + 194, 194, 194, 194, 873, 194, 1191, 874, 876, 194, + 875, 194, 194, 194, 1191, 1191, 194, 1191, 194, 194, + + 194, 194, 194, 194, 872, 1191, 878, 194, 194, 194, + 913, 873, 194, 194, 874, 876, 194, 875, 194, 194, + 194, 877, 880, 194, 882, 1191, 194, 194, 194, 194, + 879, 914, 194, 878, 194, 194, 194, 913, 881, 194, + 194, 1191, 194, 194, 194, 1191, 194, 194, 877, 880, + 194, 882, 194, 194, 194, 194, 194, 879, 914, 194, + 194, 194, 883, 194, 194, 881, 886, 194, 194, 194, + 194, 194, 194, 194, 194, 1191, 194, 884, 885, 194, + 194, 194, 194, 194, 194, 887, 915, 194, 194, 883, + 194, 194, 916, 886, 194, 194, 194, 889, 888, 194, + + 892, 194, 194, 194, 884, 885, 194, 194, 891, 194, + 194, 194, 887, 915, 194, 194, 194, 893, 194, 916, + 194, 194, 194, 194, 889, 888, 194, 892, 194, 194, + 194, 890, 895, 194, 194, 891, 194, 917, 194, 918, + 194, 194, 194, 194, 893, 194, 894, 194, 194, 194, + 194, 919, 194, 194, 194, 920, 921, 194, 890, 895, + 194, 194, 922, 194, 917, 194, 918, 194, 896, 194, + 923, 924, 925, 894, 194, 926, 927, 194, 919, 194, + 930, 194, 920, 921, 931, 928, 932, 194, 929, 922, + 933, 934, 935, 936, 937, 896, 938, 923, 924, 925, + + 939, 194, 926, 927, 940, 941, 942, 930, 943, 944, + 945, 931, 928, 932, 946, 929, 947, 933, 934, 935, + 936, 937, 948, 938, 949, 950, 951, 939, 952, 953, + 954, 940, 941, 942, 955, 943, 944, 945, 956, 957, + 958, 946, 194, 947, 194, 1191, 1191, 1191, 1191, 948, + 194, 949, 950, 951, 194, 952, 953, 954, 961, 194, + 962, 955, 194, 1022, 194, 956, 957, 958, 968, 194, + 194, 194, 963, 194, 194, 960, 1191, 194, 194, 194, + 194, 194, 964, 194, 194, 961, 194, 962, 194, 194, + 1022, 194, 965, 194, 194, 968, 1191, 194, 194, 963, + + 194, 194, 960, 194, 194, 194, 194, 194, 1191, 964, + 194, 194, 194, 966, 194, 194, 1191, 1191, 194, 965, + 194, 194, 967, 194, 194, 194, 1191, 969, 194, 971, + 194, 194, 194, 194, 970, 972, 1191, 973, 194, 194, + 966, 194, 1191, 194, 194, 194, 1023, 1024, 194, 967, + 194, 194, 977, 194, 969, 194, 971, 194, 194, 194, + 194, 970, 972, 194, 973, 194, 194, 974, 194, 978, + 194, 194, 194, 1023, 1024, 194, 1191, 976, 194, 977, + 194, 975, 194, 194, 194, 194, 194, 1025, 194, 194, + 194, 194, 981, 194, 974, 194, 978, 979, 194, 194, + + 1026, 194, 194, 194, 976, 194, 980, 982, 975, 194, + 194, 194, 194, 194, 1025, 194, 194, 194, 194, 981, + 983, 194, 194, 194, 979, 194, 194, 1026, 194, 194, + 194, 194, 194, 980, 982, 194, 194, 194, 194, 194, + 1027, 984, 194, 985, 194, 1191, 194, 983, 194, 194, + 194, 194, 194, 194, 986, 194, 194, 194, 194, 194, + 194, 1191, 194, 194, 194, 194, 1191, 1027, 984, 194, + 985, 194, 194, 194, 989, 987, 194, 194, 194, 194, + 194, 986, 194, 194, 194, 194, 988, 194, 194, 194, + 990, 194, 194, 991, 194, 992, 194, 1191, 194, 194, + + 1191, 989, 987, 194, 194, 194, 194, 194, 194, 194, + 194, 993, 194, 988, 194, 194, 194, 990, 194, 1028, + 991, 194, 992, 194, 194, 194, 194, 996, 994, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 993, 995, + 1191, 194, 194, 194, 194, 194, 1028, 998, 1029, 194, + 1191, 194, 194, 194, 996, 994, 194, 194, 194, 1001, + 997, 194, 194, 194, 194, 194, 995, 194, 194, 194, + 194, 194, 194, 194, 998, 1029, 194, 999, 194, 194, + 1030, 1000, 1002, 1031, 194, 1191, 1001, 997, 194, 194, + 194, 194, 194, 194, 194, 194, 1191, 1003, 194, 1004, + + 194, 194, 194, 194, 999, 194, 194, 1030, 1000, 1002, + 1031, 194, 1005, 194, 194, 194, 1191, 1006, 1007, 1032, + 194, 194, 194, 194, 1003, 194, 1004, 194, 194, 194, + 194, 1008, 194, 194, 194, 1191, 1191, 194, 1009, 1005, + 194, 194, 194, 194, 1006, 1007, 1032, 194, 194, 194, + 194, 1010, 194, 194, 194, 1015, 1011, 194, 1008, 194, + 194, 194, 194, 194, 194, 1009, 1033, 1013, 1012, 194, + 194, 194, 1014, 194, 194, 194, 194, 1017, 1010, 194, + 194, 194, 1015, 1011, 194, 1016, 194, 1034, 1035, 194, + 194, 194, 1191, 1033, 1013, 1012, 194, 194, 194, 1014, + + 194, 194, 194, 194, 1017, 194, 194, 1019, 194, 194, + 194, 194, 1016, 194, 1034, 1035, 1020, 1036, 194, 1018, + 194, 1037, 1038, 194, 194, 194, 1039, 1040, 194, 194, + 194, 194, 194, 194, 1019, 1041, 194, 194, 194, 1042, + 194, 1043, 1044, 1020, 1036, 1045, 1018, 194, 1037, 1038, + 1046, 1047, 194, 1039, 1040, 1048, 194, 194, 194, 1049, + 1050, 1051, 1041, 1052, 1053, 1054, 1042, 194, 1043, 1044, + 1055, 1056, 1045, 1057, 1059, 194, 194, 1046, 1047, 1061, + 1191, 1191, 1048, 1191, 1096, 1060, 1049, 1050, 1051, 194, + 1052, 1053, 1054, 194, 194, 194, 194, 1055, 1056, 194, + + 1057, 1059, 194, 194, 1062, 194, 1061, 1063, 194, 194, + 194, 1096, 1060, 194, 1191, 1064, 194, 1191, 1191, 194, + 194, 194, 194, 194, 1097, 194, 194, 1065, 194, 194, + 194, 1062, 194, 194, 1063, 194, 194, 194, 194, 194, + 194, 1066, 1064, 194, 1068, 1067, 194, 194, 1191, 194, + 1191, 1097, 194, 194, 1065, 194, 194, 194, 194, 1069, + 194, 194, 194, 194, 194, 194, 194, 194, 1066, 1098, + 194, 1068, 1067, 1070, 194, 194, 194, 194, 1071, 194, + 194, 194, 194, 194, 194, 194, 1069, 194, 194, 194, + 194, 194, 1072, 194, 194, 194, 1098, 194, 194, 194, + + 1070, 194, 194, 194, 194, 1071, 194, 194, 194, 194, + 194, 194, 194, 194, 194, 194, 1073, 194, 194, 1072, + 194, 194, 194, 1191, 194, 194, 194, 1075, 194, 1076, + 194, 1074, 194, 194, 194, 194, 1191, 194, 194, 194, + 194, 194, 194, 1073, 194, 194, 194, 194, 194, 194, + 194, 1079, 194, 194, 1075, 194, 1076, 1078, 1074, 194, + 194, 194, 194, 1077, 194, 194, 194, 1081, 194, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 1079, 194, + 194, 194, 194, 194, 1078, 1191, 1080, 194, 194, 1099, + 1077, 194, 194, 194, 1081, 194, 194, 194, 194, 194, + + 1191, 1082, 194, 194, 1083, 1084, 194, 194, 194, 1085, + 194, 1191, 194, 1080, 194, 194, 1099, 194, 194, 194, + 194, 194, 194, 194, 1191, 1100, 194, 194, 1082, 1087, + 194, 1083, 1084, 194, 194, 1086, 1085, 194, 194, 194, + 194, 194, 194, 194, 194, 1088, 194, 194, 194, 1101, + 194, 1089, 1100, 194, 194, 194, 1087, 1090, 194, 194, + 194, 194, 1086, 194, 194, 194, 194, 194, 194, 1091, + 194, 194, 1088, 194, 1092, 194, 1101, 194, 1089, 194, + 194, 194, 194, 194, 1090, 194, 194, 194, 194, 1191, + 194, 194, 194, 194, 1102, 1103, 1091, 194, 194, 1104, + + 1105, 1092, 194, 1106, 194, 1093, 194, 194, 194, 194, + 194, 1107, 194, 1108, 1109, 1110, 1094, 1111, 194, 194, + 1191, 1102, 1103, 1191, 194, 194, 1104, 1105, 194, 194, + 1106, 194, 1093, 1113, 194, 1191, 194, 194, 1107, 194, + 1108, 1109, 1110, 1094, 1111, 194, 1114, 194, 194, 194, + 1116, 194, 194, 194, 194, 194, 194, 194, 194, 1115, + 1113, 194, 194, 194, 194, 1130, 194, 194, 194, 194, + 194, 194, 194, 1114, 194, 194, 194, 1116, 194, 194, + 194, 194, 194, 194, 194, 194, 1115, 194, 194, 194, + 194, 194, 1130, 194, 194, 194, 194, 194, 194, 194, + + 1117, 1118, 194, 194, 194, 194, 194, 194, 1131, 194, + 194, 1119, 194, 1191, 194, 194, 1121, 194, 194, 194, + 194, 1191, 194, 194, 194, 194, 194, 1117, 1118, 194, + 194, 194, 194, 1120, 194, 1131, 194, 194, 1119, 194, + 194, 194, 194, 1121, 194, 194, 194, 194, 1123, 194, + 194, 194, 194, 194, 1132, 1191, 1122, 194, 194, 194, + 1120, 194, 194, 194, 194, 1191, 194, 194, 194, 194, + 1133, 1125, 194, 194, 1124, 1123, 194, 194, 194, 194, + 194, 1132, 194, 1122, 194, 194, 194, 1128, 194, 194, + 1126, 1127, 194, 194, 1134, 1135, 194, 1133, 1125, 1136, + + 194, 1124, 194, 194, 194, 194, 194, 194, 194, 194, + 194, 194, 194, 194, 1128, 1191, 194, 1126, 1127, 194, + 194, 1134, 1135, 194, 1138, 1139, 1136, 194, 194, 194, + 194, 194, 1191, 194, 194, 194, 194, 194, 194, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 1140, 1191, + 194, 1138, 1139, 194, 194, 194, 194, 194, 194, 1141, + 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, + 194, 194, 194, 194, 194, 1140, 1142, 194, 1143, 194, + 194, 194, 1147, 194, 1148, 1144, 1141, 194, 194, 194, + 1149, 194, 194, 194, 194, 1151, 1152, 194, 194, 194, + + 1191, 194, 194, 1142, 194, 1143, 194, 194, 194, 1147, + 1157, 1148, 1144, 1146, 194, 1151, 194, 1149, 194, 194, + 194, 1153, 194, 1152, 194, 194, 194, 194, 194, 194, + 1191, 194, 194, 194, 194, 1162, 1164, 1157, 194, 194, + 194, 194, 1154, 194, 1166, 194, 194, 194, 1153, 194, + 1160, 194, 194, 194, 194, 1156, 1168, 1159, 194, 194, + 194, 194, 1162, 1164, 1170, 194, 194, 194, 194, 1154, + 1172, 1166, 1174, 1176, 1178, 1180, 1182, 1160, 1184, 194, + 194, 1191, 1156, 1168, 1159, 194, 1191, 1191, 194, 1191, + 1191, 1170, 1191, 1191, 1191, 1191, 1191, 1172, 1191, 1174, + + 1176, 1178, 1180, 1182, 1191, 1184, 46, 46, 46, 46, + 46, 88, 1191, 1191, 88, 88, 179, 179, 179, 1191, + 179, 181, 1191, 181, 181, 181, 184, 1191, 184, 184, + 184, 194, 1191, 194, 194, 194, 7, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191 + } ; + +static const flex_int16_t yy_chk[4814] = + { 0, + 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, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 9, 9, 10, 10, 15, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 15, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, + 18, 21, 22, 21, 24, 1194, 23, 30, 24, 21, + 1188, 21, 24, 23, 31, 21, 21, 44, 24, 99, + + 23, 24, 22, 23, 1187, 25, 1186, 25, 21, 22, + 21, 24, 25, 23, 30, 24, 21, 25, 21, 24, + 23, 31, 21, 21, 44, 24, 99, 23, 24, 22, + 23, 27, 25, 28, 25, 1185, 32, 27, 1183, 25, + 32, 28, 29, 42, 25, 26, 32, 28, 29, 29, + 29, 42, 1181, 26, 1179, 29, 26, 1177, 27, 26, + 28, 1175, 26, 32, 27, 26, 1173, 32, 28, 29, + 42, 1171, 26, 32, 28, 29, 29, 29, 42, 34, + 26, 33, 29, 26, 36, 33, 26, 43, 43, 26, + 35, 33, 26, 34, 100, 36, 49, 49, 35, 34, + + 34, 36, 35, 38, 1169, 35, 34, 38, 33, 50, + 50, 36, 33, 38, 43, 43, 1167, 35, 33, 1165, + 34, 100, 36, 103, 55, 35, 34, 34, 36, 35, + 38, 41, 35, 41, 38, 55, 41, 58, 58, 1163, + 38, 39, 104, 39, 1161, 71, 39, 77, 86, 86, + 103, 39, 1158, 39, 39, 1155, 70, 1150, 41, 1145, + 41, 108, 1137, 41, 67, 71, 70, 77, 39, 104, + 39, 67, 71, 39, 77, 72, 70, 67, 39, 72, + 39, 39, 40, 70, 67, 72, 40, 110, 108, 40, + 40, 67, 71, 70, 77, 72, 40, 110, 67, 40, + + 182, 182, 72, 70, 67, 1130, 72, 1129, 1112, 40, + 1095, 67, 72, 40, 110, 1058, 40, 40, 1021, 959, + 897, 812, 72, 40, 110, 727, 40, 56, 56, 56, + 56, 56, 56, 56, 56, 56, 56, 57, 57, 57, + 57, 57, 57, 57, 57, 57, 57, 57, 61, 61, + 616, 61, 61, 61, 61, 61, 61, 84, 68, 114, + 505, 391, 68, 276, 186, 115, 68, 61, 61, 61, + 73, 101, 68, 61, 73, 61, 116, 84, 117, 101, + 73, 61, 68, 61, 84, 68, 114, 61, 61, 68, + 73, 102, 115, 68, 102, 184, 90, 73, 101, 68, + + 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, + 61, 88, 85, 118, 61, 61, 60, 73, 102, 59, + 52, 102, 76, 61, 62, 62, 76, 62, 62, 62, + 62, 62, 62, 76, 82, 51, 47, 78, 82, 76, + 118, 78, 82, 62, 62, 62, 76, 78, 120, 76, + 62, 45, 20, 76, 121, 19, 122, 78, 82, 83, + 76, 82, 83, 83, 78, 82, 76, 11, 78, 82, + 62, 107, 7, 76, 78, 120, 123, 62, 107, 83, + 4, 121, 81, 122, 78, 82, 83, 3, 0, 83, + 83, 81, 124, 81, 105, 105, 81, 62, 107, 62, + + 63, 125, 81, 123, 63, 107, 83, 63, 105, 81, + 0, 109, 109, 109, 63, 109, 0, 63, 81, 124, + 81, 105, 105, 81, 63, 0, 126, 63, 125, 81, + 127, 63, 111, 0, 63, 105, 129, 111, 109, 109, + 109, 63, 109, 112, 63, 112, 113, 113, 112, 0, + 130, 63, 64, 126, 112, 0, 64, 127, 132, 111, + 64, 112, 133, 129, 111, 119, 64, 119, 135, 64, + 112, 119, 112, 113, 113, 112, 64, 130, 119, 64, + 136, 112, 119, 64, 0, 132, 0, 64, 112, 133, + 137, 0, 119, 64, 119, 135, 64, 0, 119, 128, + + 134, 138, 128, 64, 65, 119, 139, 136, 139, 119, + 134, 65, 141, 65, 142, 134, 134, 137, 65, 140, + 143, 140, 144, 65, 65, 0, 128, 134, 138, 128, + 145, 65, 140, 139, 146, 139, 0, 134, 65, 141, + 65, 142, 134, 134, 147, 65, 140, 143, 140, 144, + 65, 65, 66, 148, 150, 151, 66, 145, 152, 140, + 66, 146, 153, 66, 154, 156, 66, 157, 154, 66, + 158, 147, 66, 0, 0, 160, 66, 0, 0, 66, + 148, 150, 151, 66, 0, 152, 0, 66, 155, 153, + 66, 154, 156, 66, 157, 154, 66, 158, 161, 66, + + 159, 155, 160, 66, 69, 69, 155, 162, 163, 159, + 164, 69, 69, 69, 166, 155, 167, 159, 69, 165, + 168, 171, 169, 170, 69, 161, 170, 159, 155, 0, + 165, 69, 69, 155, 162, 163, 159, 164, 69, 69, + 69, 166, 169, 167, 159, 69, 165, 168, 171, 169, + 170, 69, 74, 170, 172, 173, 74, 165, 174, 175, + 176, 173, 177, 279, 194, 0, 74, 0, 0, 169, + 281, 174, 74, 74, 195, 195, 74, 0, 0, 74, + 0, 172, 173, 74, 194, 174, 175, 176, 173, 177, + 279, 194, 196, 74, 202, 195, 0, 281, 174, 74, + + 74, 195, 195, 74, 75, 75, 227, 196, 197, 0, + 282, 194, 196, 75, 202, 197, 199, 75, 0, 196, + 75, 202, 195, 197, 75, 0, 227, 0, 197, 199, + 0, 75, 75, 227, 196, 197, 199, 282, 0, 196, + 75, 202, 197, 199, 75, 198, 284, 75, 198, 198, + 197, 75, 79, 227, 79, 197, 199, 79, 200, 286, + 200, 0, 79, 199, 79, 79, 0, 0, 0, 198, + 0, 0, 198, 284, 79, 198, 198, 0, 206, 79, + 200, 79, 0, 0, 79, 200, 286, 200, 206, 79, + 0, 79, 79, 201, 201, 201, 198, 203, 206, 0, + + 287, 79, 80, 207, 203, 206, 80, 200, 201, 80, + 80, 203, 288, 201, 289, 206, 80, 203, 207, 80, + 201, 201, 201, 207, 203, 206, 80, 287, 0, 80, + 207, 203, 0, 80, 0, 201, 80, 80, 203, 288, + 201, 289, 0, 80, 203, 207, 80, 0, 0, 0, + 207, 0, 0, 80, 91, 91, 91, 91, 91, 91, + 91, 91, 91, 91, 92, 92, 92, 92, 92, 92, + 92, 92, 92, 92, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 187, 187, 187, 187, 187, + 187, 187, 187, 187, 187, 188, 188, 188, 188, 188, + + 188, 188, 188, 188, 188, 189, 189, 189, 189, 189, + 189, 189, 189, 189, 189, 189, 204, 209, 210, 211, + 204, 291, 212, 292, 293, 294, 0, 0, 295, 211, + 209, 209, 213, 213, 210, 0, 212, 209, 210, 211, + 204, 0, 212, 204, 209, 210, 211, 204, 291, 212, + 292, 293, 294, 213, 233, 295, 211, 209, 209, 213, + 213, 210, 229, 212, 209, 210, 211, 204, 205, 212, + 214, 0, 214, 229, 233, 205, 205, 205, 216, 205, + 213, 233, 229, 0, 0, 216, 296, 297, 205, 229, + 0, 0, 214, 0, 0, 205, 298, 214, 216, 214, + + 229, 233, 205, 205, 205, 216, 205, 0, 299, 229, + 217, 219, 216, 296, 297, 205, 208, 217, 208, 214, + 208, 208, 218, 298, 219, 216, 220, 208, 0, 0, + 217, 219, 218, 0, 208, 299, 220, 217, 219, 0, + 208, 0, 218, 208, 217, 208, 220, 208, 208, 218, + 300, 219, 237, 220, 208, 221, 222, 217, 219, 218, + 245, 208, 221, 220, 0, 237, 222, 208, 215, 218, + 215, 0, 237, 220, 215, 221, 222, 300, 223, 237, + 245, 215, 221, 222, 0, 215, 0, 245, 223, 221, + 215, 225, 237, 222, 240, 215, 224, 215, 223, 237, + + 225, 215, 221, 222, 226, 223, 0, 245, 215, 240, + 224, 225, 215, 224, 240, 223, 224, 215, 225, 231, + 226, 240, 228, 224, 226, 223, 228, 225, 231, 0, + 232, 226, 234, 234, 232, 301, 240, 224, 225, 231, + 224, 240, 228, 224, 0, 302, 231, 226, 235, 228, + 232, 226, 234, 228, 235, 231, 235, 232, 0, 234, + 234, 232, 301, 236, 0, 236, 231, 236, 235, 228, + 230, 230, 302, 238, 0, 235, 236, 232, 0, 234, + 230, 235, 238, 235, 241, 230, 230, 236, 304, 0, + 236, 230, 236, 238, 236, 235, 239, 230, 230, 241, + + 238, 242, 305, 236, 241, 239, 243, 230, 242, 238, + 243, 241, 230, 230, 236, 304, 239, 0, 230, 0, + 238, 242, 0, 239, 244, 244, 241, 247, 242, 305, + 243, 241, 239, 243, 0, 242, 248, 243, 246, 246, + 306, 250, 247, 239, 244, 250, 249, 247, 242, 248, + 249, 244, 244, 0, 247, 0, 248, 243, 307, 246, + 252, 250, 252, 248, 0, 246, 246, 306, 250, 247, + 249, 244, 250, 249, 247, 0, 248, 249, 251, 308, + 252, 254, 251, 248, 254, 307, 246, 252, 250, 252, + 256, 251, 253, 0, 0, 0, 251, 249, 309, 253, + + 256, 254, 251, 0, 311, 251, 308, 252, 254, 251, + 256, 254, 253, 255, 0, 255, 0, 256, 251, 253, + 257, 258, 255, 251, 257, 309, 253, 256, 254, 251, + 255, 311, 259, 312, 258, 255, 259, 256, 0, 253, + 255, 258, 255, 260, 257, 261, 260, 257, 258, 255, + 313, 257, 314, 261, 262, 315, 259, 255, 264, 259, + 312, 258, 255, 259, 261, 261, 260, 263, 258, 264, + 260, 257, 261, 260, 262, 263, 0, 313, 264, 314, + 261, 262, 315, 259, 265, 264, 0, 263, 265, 267, + 267, 261, 261, 260, 263, 0, 264, 316, 0, 266, + + 271, 262, 263, 266, 265, 264, 266, 0, 265, 268, + 267, 265, 270, 268, 263, 265, 267, 267, 273, 266, + 271, 269, 273, 272, 316, 270, 266, 271, 269, 268, + 266, 265, 270, 266, 269, 265, 268, 267, 272, 270, + 268, 269, 273, 272, 0, 273, 266, 271, 269, 273, + 272, 0, 270, 0, 0, 269, 268, 317, 318, 270, + 319, 269, 320, 321, 290, 272, 290, 303, 269, 273, + 272, 277, 277, 277, 277, 277, 277, 277, 277, 277, + 277, 290, 303, 322, 317, 318, 323, 319, 324, 320, + 321, 290, 325, 290, 303, 326, 327, 328, 329, 330, + + 331, 332, 333, 335, 334, 336, 338, 339, 290, 303, + 322, 340, 341, 323, 334, 324, 342, 343, 344, 325, + 345, 346, 326, 327, 328, 329, 330, 331, 332, 333, + 335, 334, 336, 338, 339, 347, 349, 350, 340, 341, + 351, 334, 352, 342, 343, 344, 353, 345, 346, 354, + 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, + 365, 367, 347, 349, 350, 368, 369, 351, 370, 352, + 371, 372, 373, 353, 374, 375, 354, 355, 356, 357, + 358, 359, 360, 361, 362, 363, 364, 365, 367, 377, + 380, 378, 368, 369, 379, 370, 379, 371, 372, 373, + + 378, 374, 375, 381, 382, 383, 384, 385, 386, 387, + 388, 389, 0, 387, 0, 0, 377, 380, 378, 0, + 0, 379, 0, 379, 0, 0, 0, 378, 0, 0, + 381, 382, 383, 384, 385, 386, 387, 388, 389, 393, + 387, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 392, 394, 395, 396, 397, 398, 400, 0, 0, 393, + 399, 397, 0, 0, 399, 0, 393, 506, 0, 507, + 0, 394, 395, 396, 397, 398, 400, 409, 394, 395, + 396, 397, 398, 400, 399, 401, 393, 399, 397, 402, + 403, 399, 409, 402, 506, 401, 507, 409, 394, 395, + + 396, 397, 398, 400, 409, 401, 404, 0, 403, 402, + 403, 399, 401, 404, 406, 0, 402, 403, 0, 409, + 402, 405, 401, 405, 409, 508, 404, 406, 0, 407, + 0, 408, 401, 404, 406, 403, 402, 403, 405, 408, + 404, 406, 410, 405, 0, 407, 0, 413, 405, 407, + 405, 408, 508, 404, 406, 411, 407, 412, 408, 411, + 0, 406, 410, 0, 0, 405, 408, 413, 415, 410, + 405, 412, 407, 414, 413, 415, 407, 412, 408, 411, + 0, 416, 411, 0, 412, 416, 411, 414, 415, 410, + 418, 420, 417, 414, 413, 415, 417, 0, 412, 0, + + 414, 416, 415, 0, 412, 418, 411, 419, 416, 419, + 418, 420, 416, 424, 414, 415, 417, 418, 420, 417, + 414, 509, 422, 417, 421, 422, 425, 427, 416, 419, + 423, 426, 418, 424, 419, 426, 419, 418, 420, 421, + 424, 423, 0, 417, 421, 422, 425, 427, 509, 422, + 423, 421, 422, 425, 427, 426, 419, 423, 426, 428, + 424, 428, 426, 430, 429, 432, 421, 431, 423, 433, + 430, 421, 422, 425, 427, 510, 0, 423, 429, 432, + 431, 428, 426, 430, 429, 432, 428, 431, 428, 433, + 430, 429, 432, 435, 431, 434, 433, 430, 0, 434, + + 438, 435, 510, 438, 0, 429, 432, 431, 428, 436, + 430, 429, 432, 435, 431, 439, 433, 436, 437, 434, + 435, 440, 434, 438, 440, 437, 434, 438, 435, 436, + 438, 439, 0, 441, 442, 439, 436, 441, 437, 446, + 435, 440, 439, 0, 436, 437, 434, 447, 440, 442, + 438, 440, 437, 441, 442, 0, 436, 443, 439, 446, + 441, 442, 439, 444, 441, 437, 446, 447, 440, 444, + 443, 448, 445, 450, 447, 449, 442, 443, 0, 0, + 441, 442, 445, 444, 443, 449, 446, 0, 452, 450, + 444, 448, 445, 450, 447, 449, 444, 443, 448, 445, + + 450, 0, 449, 454, 443, 451, 453, 455, 452, 445, + 444, 455, 449, 457, 451, 452, 450, 457, 448, 445, + 450, 453, 449, 454, 0, 451, 453, 455, 456, 456, + 454, 460, 451, 453, 455, 452, 0, 457, 455, 0, + 457, 451, 463, 458, 457, 458, 461, 460, 453, 456, + 454, 460, 451, 453, 455, 456, 456, 459, 460, 459, + 464, 461, 463, 458, 457, 462, 461, 464, 0, 463, + 458, 467, 458, 461, 460, 0, 456, 459, 460, 468, + 464, 462, 465, 466, 459, 462, 459, 464, 461, 463, + 458, 467, 462, 461, 464, 465, 469, 466, 467, 468, + + 469, 0, 465, 466, 459, 470, 468, 464, 462, 465, + 466, 472, 462, 0, 470, 511, 0, 471, 467, 472, + 469, 0, 465, 469, 466, 470, 468, 469, 471, 465, + 466, 472, 470, 473, 475, 474, 477, 471, 472, 474, + 473, 470, 511, 477, 471, 476, 472, 469, 476, 475, + 0, 478, 470, 473, 475, 471, 477, 480, 472, 474, + 473, 475, 474, 477, 471, 476, 474, 473, 481, 479, + 477, 478, 476, 482, 512, 476, 475, 480, 478, 479, + 473, 475, 484, 477, 480, 514, 474, 483, 481, 479, + 485, 482, 476, 482, 483, 481, 479, 484, 478, 0, + + 482, 512, 484, 517, 480, 485, 479, 483, 488, 484, + 485, 487, 514, 490, 483, 481, 479, 485, 482, 486, + 482, 483, 487, 488, 484, 491, 486, 489, 488, 484, + 517, 487, 485, 490, 483, 488, 489, 485, 487, 486, + 490, 0, 492, 0, 0, 491, 486, 489, 493, 487, + 488, 492, 491, 486, 489, 488, 0, 493, 487, 0, + 490, 494, 492, 489, 0, 501, 486, 495, 493, 492, + 498, 494, 491, 494, 489, 493, 0, 495, 492, 496, + 501, 494, 497, 496, 493, 501, 498, 495, 494, 492, + 498, 497, 501, 0, 495, 493, 0, 498, 494, 499, + + 494, 499, 497, 496, 495, 500, 496, 501, 494, 497, + 496, 502, 501, 498, 495, 0, 503, 498, 497, 503, + 502, 499, 504, 500, 502, 500, 499, 518, 499, 497, + 496, 502, 500, 519, 520, 504, 503, 522, 502, 523, + 524, 526, 504, 503, 527, 528, 503, 502, 499, 504, + 500, 502, 500, 529, 518, 530, 531, 532, 502, 533, + 519, 520, 504, 503, 522, 534, 523, 524, 526, 504, + 537, 527, 528, 538, 539, 540, 541, 542, 543, 545, + 529, 546, 530, 531, 532, 549, 533, 550, 552, 554, + 555, 556, 534, 557, 558, 559, 560, 537, 562, 566, + + 538, 539, 540, 541, 542, 543, 545, 560, 546, 568, + 570, 572, 549, 573, 550, 552, 554, 555, 556, 575, + 557, 558, 559, 560, 576, 562, 566, 571, 571, 577, + 578, 579, 581, 582, 560, 584, 568, 570, 572, 585, + 573, 586, 587, 588, 589, 590, 575, 592, 593, 594, + 595, 576, 596, 599, 571, 571, 577, 578, 579, 581, + 582, 600, 584, 602, 603, 604, 585, 605, 586, 587, + 588, 589, 590, 606, 592, 593, 594, 595, 607, 596, + 599, 608, 609, 611, 613, 615, 617, 0, 600, 0, + 602, 603, 604, 0, 605, 619, 620, 0, 622, 617, + + 606, 618, 730, 0, 621, 607, 617, 622, 608, 609, + 611, 613, 615, 617, 618, 619, 620, 621, 622, 623, + 624, 618, 619, 620, 621, 622, 617, 0, 618, 730, + 626, 621, 625, 617, 622, 627, 625, 732, 734, 623, + 624, 618, 619, 620, 621, 622, 623, 624, 618, 628, + 626, 621, 629, 628, 630, 627, 625, 626, 630, 625, + 629, 0, 627, 625, 732, 734, 623, 624, 632, 735, + 736, 631, 629, 628, 630, 737, 628, 626, 0, 629, + 628, 630, 627, 625, 631, 630, 0, 629, 632, 633, + 635, 631, 634, 636, 0, 632, 735, 736, 631, 629, + + 628, 630, 737, 0, 633, 635, 634, 637, 639, 633, + 635, 631, 634, 636, 637, 632, 633, 635, 631, 634, + 636, 641, 638, 640, 639, 641, 738, 637, 639, 0, + 638, 633, 635, 634, 637, 639, 633, 635, 640, 634, + 636, 637, 638, 640, 739, 641, 642, 646, 641, 638, + 640, 639, 641, 738, 637, 639, 643, 638, 643, 642, + 644, 645, 647, 0, 644, 640, 642, 646, 645, 638, + 640, 739, 641, 642, 646, 0, 0, 0, 643, 648, + 644, 645, 647, 643, 650, 643, 642, 644, 645, 647, + 648, 644, 649, 642, 646, 645, 654, 652, 651, 648, + + 650, 652, 655, 649, 650, 643, 648, 644, 645, 647, + 653, 650, 649, 651, 653, 0, 654, 648, 651, 649, + 0, 652, 655, 654, 652, 651, 648, 650, 652, 655, + 649, 650, 656, 658, 653, 0, 659, 653, 657, 649, + 651, 653, 657, 654, 661, 651, 660, 656, 652, 655, + 660, 0, 656, 658, 0, 661, 659, 740, 662, 656, + 658, 653, 657, 659, 661, 657, 663, 664, 666, 657, + 660, 661, 0, 660, 656, 663, 665, 660, 662, 656, + 658, 668, 661, 659, 740, 662, 663, 664, 666, 657, + 665, 661, 0, 663, 664, 666, 665, 660, 667, 669, + + 668, 668, 663, 665, 672, 662, 0, 0, 668, 670, + 742, 667, 669, 663, 664, 666, 0, 665, 667, 669, + 743, 674, 670, 665, 672, 667, 669, 668, 668, 670, + 671, 672, 671, 673, 675, 676, 670, 742, 667, 669, + 673, 674, 0, 671, 678, 667, 669, 743, 674, 670, + 671, 672, 680, 673, 675, 676, 670, 671, 677, 671, + 673, 675, 676, 681, 678, 0, 685, 673, 674, 679, + 671, 678, 680, 677, 0, 0, 679, 671, 677, 680, + 673, 675, 676, 681, 684, 677, 685, 682, 0, 679, + 681, 678, 683, 685, 0, 683, 679, 684, 687, 680, + + 677, 682, 682, 679, 684, 677, 0, 682, 744, 0, + 681, 684, 683, 685, 682, 686, 679, 686, 687, 683, + 688, 691, 683, 689, 684, 687, 745, 0, 682, 682, + 746, 684, 748, 688, 682, 744, 689, 686, 690, 683, + 688, 691, 686, 689, 686, 687, 690, 688, 691, 0, + 689, 692, 693, 745, 694, 692, 693, 746, 690, 748, + 688, 0, 0, 689, 686, 690, 0, 688, 691, 695, + 689, 696, 697, 690, 694, 692, 693, 695, 692, 693, + 699, 694, 692, 693, 696, 690, 0, 697, 699, 695, + 698, 696, 697, 698, 0, 0, 695, 0, 696, 697, + + 699, 694, 692, 693, 695, 0, 701, 699, 701, 702, + 749, 696, 700, 698, 697, 699, 695, 698, 696, 697, + 698, 700, 704, 703, 706, 0, 708, 699, 701, 702, + 703, 750, 700, 701, 705, 701, 702, 749, 705, 700, + 698, 0, 704, 703, 706, 0, 708, 709, 700, 704, + 703, 706, 707, 708, 705, 701, 702, 703, 750, 700, + 712, 705, 707, 710, 711, 705, 713, 709, 713, 704, + 703, 706, 707, 708, 709, 0, 714, 710, 711, 707, + 712, 705, 715, 710, 711, 714, 751, 712, 713, 707, + 710, 711, 752, 713, 709, 713, 714, 716, 715, 707, + + 719, 716, 715, 714, 710, 711, 718, 712, 718, 715, + 710, 711, 714, 751, 720, 713, 717, 720, 721, 752, + 719, 716, 723, 714, 716, 715, 718, 719, 716, 715, + 722, 717, 724, 718, 720, 718, 717, 753, 721, 754, + 725, 720, 723, 717, 720, 721, 722, 719, 716, 723, + 722, 755, 724, 718, 726, 756, 757, 722, 717, 724, + 725, 720, 760, 717, 753, 721, 754, 725, 726, 723, + 761, 763, 766, 722, 726, 769, 770, 722, 755, 724, + 772, 726, 756, 757, 777, 771, 778, 725, 771, 760, + 779, 780, 781, 784, 785, 726, 786, 761, 763, 766, + + 787, 726, 769, 770, 788, 790, 791, 772, 792, 793, + 794, 777, 771, 778, 795, 771, 796, 779, 780, 781, + 784, 785, 797, 786, 798, 799, 800, 787, 801, 803, + 804, 788, 790, 791, 805, 792, 793, 794, 807, 808, + 809, 795, 813, 796, 814, 0, 0, 0, 0, 797, + 816, 798, 799, 800, 815, 801, 803, 804, 817, 818, + 819, 805, 813, 898, 814, 807, 808, 809, 825, 813, + 816, 814, 820, 820, 815, 815, 0, 816, 817, 818, + 819, 815, 821, 822, 821, 817, 818, 819, 825, 813, + 898, 814, 822, 820, 826, 825, 0, 816, 823, 820, + + 820, 815, 815, 822, 821, 817, 818, 819, 0, 821, + 822, 821, 824, 823, 826, 825, 0, 0, 823, 822, + 820, 826, 824, 827, 828, 823, 0, 827, 830, 829, + 822, 821, 824, 829, 828, 830, 0, 831, 832, 824, + 823, 826, 0, 827, 828, 823, 900, 901, 830, 824, + 827, 828, 836, 829, 827, 830, 829, 831, 832, 824, + 829, 828, 830, 833, 831, 832, 834, 833, 835, 837, + 827, 828, 836, 900, 901, 830, 0, 835, 840, 836, + 829, 834, 838, 833, 831, 832, 834, 902, 835, 837, + 833, 839, 840, 834, 833, 835, 837, 838, 840, 836, + + 903, 843, 838, 841, 835, 840, 839, 841, 834, 838, + 833, 839, 844, 834, 902, 835, 837, 847, 839, 840, + 842, 843, 842, 841, 838, 840, 845, 903, 843, 838, + 841, 849, 844, 839, 841, 850, 846, 847, 839, 844, + 905, 845, 842, 846, 847, 0, 845, 842, 843, 842, + 841, 849, 848, 845, 848, 850, 846, 852, 849, 844, + 851, 0, 850, 846, 847, 853, 0, 905, 845, 842, + 846, 854, 848, 845, 855, 851, 856, 852, 849, 848, + 851, 848, 850, 846, 852, 853, 854, 851, 857, 858, + 856, 854, 853, 856, 855, 857, 856, 0, 854, 848, + + 0, 855, 851, 856, 852, 859, 860, 851, 857, 858, + 861, 862, 853, 854, 863, 857, 858, 856, 854, 907, + 856, 855, 857, 856, 865, 859, 860, 865, 863, 867, + 861, 862, 859, 860, 863, 857, 858, 861, 862, 864, + 0, 863, 868, 864, 865, 866, 907, 869, 908, 867, + 0, 865, 859, 860, 865, 863, 867, 861, 862, 872, + 866, 863, 868, 864, 870, 866, 864, 869, 871, 868, + 864, 865, 866, 874, 869, 908, 867, 870, 873, 872, + 909, 871, 873, 910, 870, 0, 872, 866, 871, 868, + 864, 870, 866, 874, 869, 871, 0, 875, 873, 876, + + 874, 875, 878, 876, 870, 873, 872, 909, 871, 873, + 910, 870, 877, 877, 879, 871, 0, 878, 879, 912, + 874, 875, 878, 876, 875, 873, 876, 887, 875, 878, + 876, 880, 880, 877, 879, 0, 0, 882, 881, 877, + 877, 879, 881, 883, 878, 879, 912, 887, 875, 878, + 876, 882, 880, 884, 887, 888, 883, 882, 880, 880, + 877, 879, 881, 883, 882, 881, 914, 885, 884, 881, + 883, 885, 886, 884, 887, 888, 886, 890, 882, 880, + 884, 891, 888, 883, 882, 889, 889, 918, 920, 881, + 883, 885, 0, 914, 885, 884, 886, 890, 885, 886, + + 884, 891, 888, 886, 890, 892, 889, 893, 891, 895, + 896, 893, 889, 889, 918, 920, 894, 921, 885, 892, + 894, 927, 928, 886, 890, 892, 929, 931, 891, 895, + 896, 893, 892, 889, 893, 933, 895, 896, 893, 934, + 894, 936, 937, 894, 921, 938, 892, 894, 927, 928, + 940, 941, 892, 929, 931, 942, 895, 896, 893, 943, + 945, 947, 933, 949, 950, 951, 934, 894, 936, 937, + 952, 957, 938, 958, 960, 961, 962, 940, 941, 963, + 0, 0, 942, 0, 1025, 962, 943, 945, 947, 964, + 949, 950, 951, 965, 960, 961, 962, 952, 957, 963, + + 958, 960, 961, 962, 964, 966, 963, 965, 967, 964, + 968, 1025, 962, 965, 0, 967, 964, 0, 0, 969, + 965, 960, 961, 962, 1028, 966, 963, 969, 967, 972, + 968, 964, 966, 973, 965, 967, 964, 968, 971, 969, + 965, 970, 967, 970, 972, 971, 969, 975, 0, 972, + 0, 1028, 966, 973, 969, 967, 972, 968, 971, 974, + 973, 977, 974, 970, 978, 971, 969, 975, 970, 1029, + 970, 972, 971, 976, 975, 976, 972, 979, 980, 981, + 973, 977, 974, 982, 978, 971, 974, 984, 977, 974, + 970, 978, 982, 985, 975, 976, 1029, 979, 980, 981, + + 976, 983, 976, 982, 979, 980, 981, 984, 977, 974, + 982, 978, 986, 985, 984, 987, 983, 988, 989, 982, + 985, 983, 976, 0, 979, 980, 981, 990, 983, 991, + 982, 989, 986, 991, 984, 987, 0, 988, 989, 986, + 985, 992, 987, 983, 988, 989, 994, 990, 983, 993, + 995, 996, 997, 991, 990, 996, 991, 995, 989, 986, + 991, 992, 987, 993, 988, 989, 994, 999, 992, 993, + 995, 998, 997, 994, 990, 996, 993, 995, 996, 997, + 991, 1000, 996, 1001, 995, 0, 998, 999, 992, 1032, + 993, 998, 1006, 994, 999, 1004, 993, 995, 998, 997, + + 0, 1000, 996, 1001, 1002, 1003, 1002, 1003, 1000, 1004, + 1001, 0, 1006, 998, 999, 1004, 1032, 1008, 998, 1006, + 1007, 1005, 1004, 1010, 0, 1033, 1002, 1003, 1000, 1007, + 1001, 1002, 1003, 1002, 1003, 1005, 1004, 1008, 1009, 1006, + 1007, 1005, 1004, 1010, 1008, 1009, 1015, 1007, 1005, 1038, + 1010, 1011, 1033, 1002, 1003, 1011, 1007, 1012, 1009, 1014, + 1016, 1012, 1005, 1017, 1008, 1009, 1015, 1007, 1005, 1013, + 1010, 1013, 1009, 1015, 1014, 1011, 1038, 1018, 1011, 1014, + 1016, 1012, 1011, 1017, 1012, 1009, 1014, 1016, 1012, 0, + 1017, 1013, 1019, 1015, 1039, 1042, 1013, 1018, 1013, 1043, + + 1046, 1014, 1011, 1047, 1018, 1019, 1014, 1016, 1012, 1020, + 1017, 1050, 1019, 1052, 1053, 1054, 1020, 1055, 1013, 1019, + 0, 1039, 1042, 0, 1018, 1059, 1043, 1046, 1060, 1020, + 1047, 1061, 1019, 1062, 1063, 0, 1020, 1064, 1050, 1019, + 1052, 1053, 1054, 1020, 1055, 1059, 1065, 1067, 1060, 1068, + 1069, 1061, 1059, 1062, 1063, 1060, 1020, 1064, 1061, 1066, + 1062, 1063, 1071, 1066, 1064, 1096, 1065, 1067, 1072, 1068, + 1069, 1073, 1059, 1065, 1067, 1060, 1068, 1069, 1061, 1074, + 1062, 1063, 1071, 1066, 1064, 1070, 1066, 1077, 1072, 1071, + 1066, 1073, 1096, 1065, 1067, 1072, 1068, 1069, 1073, 1074, + + 1070, 1075, 1078, 1075, 1076, 1070, 1074, 1077, 1098, 1071, + 1066, 1076, 1070, 0, 1077, 1072, 1080, 1081, 1073, 1082, + 1079, 0, 1078, 1075, 1076, 1085, 1074, 1070, 1075, 1078, + 1075, 1076, 1070, 1079, 1077, 1098, 1080, 1081, 1076, 1082, + 1079, 1083, 1084, 1080, 1081, 1085, 1082, 1079, 1084, 1078, + 1075, 1076, 1085, 1086, 1101, 0, 1083, 1088, 1089, 1087, + 1079, 1083, 1084, 1080, 1081, 0, 1082, 1079, 1083, 1084, + 1104, 1089, 1085, 1086, 1087, 1084, 1091, 1088, 1089, 1087, + 1086, 1101, 1090, 1083, 1088, 1089, 1087, 1092, 1083, 1084, + 1090, 1091, 1093, 1094, 1108, 1109, 1091, 1104, 1089, 1110, + + 1086, 1087, 1090, 1091, 1088, 1089, 1087, 1092, 1114, 1090, + 1115, 1113, 1093, 1094, 1092, 0, 1116, 1090, 1091, 1093, + 1094, 1108, 1109, 1091, 1113, 1115, 1110, 1117, 1114, 1090, + 1115, 1113, 0, 1118, 1092, 1114, 1116, 1115, 1113, 1093, + 1094, 1119, 1120, 1116, 1122, 1123, 1121, 1117, 1118, 0, + 1124, 1113, 1115, 1118, 1117, 1114, 1125, 1115, 1113, 1121, + 1118, 1119, 1120, 1116, 1122, 1123, 1121, 1126, 1119, 1120, + 1124, 1122, 1123, 1121, 1117, 1118, 1125, 1124, 1126, 1128, + 1118, 1127, 1131, 1125, 1133, 1127, 1121, 1126, 1119, 1120, + 1136, 1122, 1123, 1121, 1126, 1138, 1139, 1124, 1140, 1128, + + 0, 1127, 1142, 1125, 1143, 1126, 1128, 1141, 1127, 1131, + 1149, 1133, 1127, 1146, 1126, 1151, 1139, 1136, 1140, 1152, + 1138, 1141, 1142, 1139, 1143, 1140, 1128, 1141, 1127, 1142, + 0, 1143, 1144, 1153, 1141, 1156, 1159, 1149, 1160, 1152, + 1138, 1154, 1144, 1139, 1162, 1140, 1152, 1138, 1141, 1142, + 1154, 1143, 1144, 1153, 1141, 1146, 1164, 1151, 1160, 1144, + 1153, 1154, 1156, 1159, 1166, 1160, 1152, 1138, 1154, 1144, + 1168, 1162, 1170, 1172, 1174, 1176, 1178, 1154, 1180, 1144, + 1153, 0, 1146, 1164, 1151, 1160, 0, 0, 1154, 0, + 0, 1166, 0, 0, 0, 0, 0, 1168, 0, 1170, + + 1172, 1174, 1176, 1178, 0, 1180, 1192, 1192, 1192, 1192, + 1192, 1193, 0, 0, 1193, 1193, 1195, 1195, 1195, 0, + 1195, 1196, 0, 1196, 1196, 1196, 1197, 0, 1197, 1197, + 1197, 1198, 0, 1198, 1198, 1198, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191 + } ; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. @@ -1529,18 +2120,17 @@ static const flex_int16_t yy_chk[4828] = { ***************************/ #line 12 "flex_lexer.l" -#include -#include -#include #include "../sql/Expr.h" #include "bison_parser.h" +#include +#include +#include -#define TOKEN(name) \ - { return SQL_##name; } +#define TOKEN(name) { return SQL_##name; } static thread_local std::stringstream strbuf; -#line 2129 "flex_lexer.cpp" +#line 2133 "flex_lexer.cpp" /*************************** ** Section 2: Rules @@ -1554,7 +2144,7 @@ static thread_local std::stringstream strbuf; /*************************** ** Section 3: Rules ***************************/ -#line 2143 "flex_lexer.cpp" +#line 2147 "flex_lexer.cpp" #define INITIAL 0 #define singlequotedstring 1 @@ -1569,127 +2159,129 @@ static thread_local std::stringstream strbuf; #endif #ifndef YY_EXTRA_TYPE -#define YY_EXTRA_TYPE void* +#define YY_EXTRA_TYPE void * #endif /* Holds the entire state of the reentrant scanner. */ -struct yyguts_t { - /* User-defined. Not touched by flex. */ - YY_EXTRA_TYPE yyextra_r; - - /* The rest are the same as the globals declared in the non-reentrant scanner. */ - FILE *yyin_r, *yyout_r; - size_t yy_buffer_stack_top; /**< index of top of stack. */ - size_t yy_buffer_stack_max; /**< capacity of stack. */ - YY_BUFFER_STATE* yy_buffer_stack; /**< Stack as an array. */ - char yy_hold_char; - int yy_n_chars; - int yyleng_r; - char* yy_c_buf_p; - int yy_init; - int yy_start; - int yy_did_buffer_switch_on_eof; - int yy_start_stack_ptr; - int yy_start_stack_depth; - int* yy_start_stack; - yy_state_type yy_last_accepting_state; - char* yy_last_accepting_cpos; - - int yylineno_r; - int yy_flex_debug_r; - - char* yytext_r; - int yy_more_flag; - int yy_more_len; - - YYSTYPE* yylval_r; - - YYLTYPE* yylloc_r; - -}; /* end struct yyguts_t */ - -static int yy_init_globals(yyscan_t yyscanner); - -/* This must go here because YYSTYPE and YYLTYPE are included - * from bison output in section 1.*/ -#define yylval yyg->yylval_r +struct yyguts_t + { -#define yylloc yyg->yylloc_r + /* User-defined. Not touched by flex. */ + YY_EXTRA_TYPE yyextra_r; -int yylex_init(yyscan_t* scanner); + /* The rest are the same as the globals declared in the non-reentrant scanner. */ + FILE *yyin_r, *yyout_r; + size_t yy_buffer_stack_top; /**< index of top of stack. */ + size_t yy_buffer_stack_max; /**< capacity of stack. */ + YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ + char yy_hold_char; + int yy_n_chars; + int yyleng_r; + char *yy_c_buf_p; + int yy_init; + int yy_start; + int yy_did_buffer_switch_on_eof; + int yy_start_stack_ptr; + int yy_start_stack_depth; + int *yy_start_stack; + yy_state_type yy_last_accepting_state; + char* yy_last_accepting_cpos; -int yylex_init_extra(YY_EXTRA_TYPE user_defined, yyscan_t* scanner); + int yylineno_r; + int yy_flex_debug_r; -/* Accessor methods to globals. - These are made visible to non-reentrant scanners for convenience. */ + char *yytext_r; + int yy_more_flag; + int yy_more_len; + + YYSTYPE * yylval_r; + + YYLTYPE * yylloc_r; + + }; /* end struct yyguts_t */ + +static int yy_init_globals ( yyscan_t yyscanner ); + + /* This must go here because YYSTYPE and YYLTYPE are included + * from bison output in section 1.*/ + # define yylval yyg->yylval_r + + # define yylloc yyg->yylloc_r + +int yylex_init (yyscan_t* scanner); -int yylex_destroy(yyscan_t yyscanner); +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); -int yyget_debug(yyscan_t yyscanner); +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ -void yyset_debug(int debug_flag, yyscan_t yyscanner); +int yylex_destroy ( yyscan_t yyscanner ); -YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner); +int yyget_debug ( yyscan_t yyscanner ); -void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner); +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); -FILE* yyget_in(yyscan_t yyscanner); +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); -void yyset_in(FILE* _in_str, yyscan_t yyscanner); +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); -FILE* yyget_out(yyscan_t yyscanner); +FILE *yyget_in ( yyscan_t yyscanner ); -void yyset_out(FILE* _out_str, yyscan_t yyscanner); +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); -int yyget_leng(yyscan_t yyscanner); +FILE *yyget_out ( yyscan_t yyscanner ); -char* yyget_text(yyscan_t yyscanner); +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); -int yyget_lineno(yyscan_t yyscanner); + int yyget_leng ( yyscan_t yyscanner ); -void yyset_lineno(int _line_number, yyscan_t yyscanner); +char *yyget_text ( yyscan_t yyscanner ); -int yyget_column(yyscan_t yyscanner); +int yyget_lineno ( yyscan_t yyscanner ); -void yyset_column(int _column_no, yyscan_t yyscanner); +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); -YYSTYPE* yyget_lval(yyscan_t yyscanner); +int yyget_column ( yyscan_t yyscanner ); -void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner); +void yyset_column ( int _column_no , yyscan_t yyscanner ); -YYLTYPE* yyget_lloc(yyscan_t yyscanner); +YYSTYPE * yyget_lval ( yyscan_t yyscanner ); -void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner); +void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner ); + YYLTYPE *yyget_lloc ( yyscan_t yyscanner ); + + void yyset_lloc ( YYLTYPE * yylloc_param , yyscan_t yyscanner ); + /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap(yyscan_t yyscanner); +extern "C" int yywrap ( yyscan_t yyscanner ); #else -extern int yywrap(yyscan_t yyscanner); +extern int yywrap ( yyscan_t yyscanner ); #endif #endif #ifndef YY_NO_UNPUT - + #endif #ifndef yytext_ptr -static void yy_flex_strncpy(char*, const char*, int, yyscan_t yyscanner); +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen(const char*, yyscan_t yyscanner); +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus -static int yyinput(yyscan_t yyscanner); +static int yyinput ( yyscan_t yyscanner ); #else -static int input(yyscan_t yyscanner); +static int input ( yyscan_t yyscanner ); #endif #endif @@ -1709,36 +2301,42 @@ static int input(yyscan_t yyscanner); /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ -#define ECHO \ - do { \ - if (fwrite(yytext, (size_t)yyleng, 1, yyout)) { \ - } \ - } while (0) +#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT -#define YY_INPUT(buf, result, max_size) \ - if (YY_CURRENT_BUFFER_LVALUE->yy_is_interactive) { \ - int c = '*'; \ - int n; \ - for (n = 0; n < max_size && (c = getc(yyin)) != EOF && c != '\n'; ++n) buf[n] = (char)c; \ - if (c == '\n') buf[n++] = (char)c; \ - if (c == EOF && ferror(yyin)) YY_FATAL_ERROR("input in flex scanner failed"); \ - result = n; \ - } else { \ - errno = 0; \ - while ((result = (int)fread(buf, 1, (yy_size_t)max_size, yyin)) == 0 && ferror(yyin)) { \ - if (errno != EINTR) { \ - YY_FATAL_ERROR("input in flex scanner failed"); \ - break; \ - } \ - errno = 0; \ - clearerr(yyin); \ - } \ - } +#define YY_INPUT(buf,result,max_size) \ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ + { \ + int c = '*'; \ + int n; \ + for ( n = 0; n < max_size && \ + (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( yyin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(yyin); \ + } \ + }\ +\ #endif @@ -1757,7 +2355,7 @@ static int input(yyscan_t yyscanner); /* Report a fatal error. */ #ifndef YY_FATAL_ERROR -#define YY_FATAL_ERROR(msg) yy_fatal_error(msg, yyscanner) +#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) #endif /* end tables serialization structures and prototypes */ @@ -1768,9 +2366,11 @@ static int input(yyscan_t yyscanner); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner); +extern int yylex \ + (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner); -#define YY_DECL int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner) +#define YY_DECL int yylex \ + (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng @@ -1782,1015 +2382,1006 @@ extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanne /* Code executed at the end of each rule. */ #ifndef YY_BREAK -#define YY_BREAK /*LINTED*/ break; +#define YY_BREAK /*LINTED*/break; #endif -#define YY_RULE_SETUP YY_USER_ACTION +#define YY_RULE_SETUP \ + YY_USER_ACTION /** The main scanner function which does all the work. */ -YY_DECL { - yy_state_type yy_current_state; - char *yy_cp, *yy_bp; - int yy_act; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; +YY_DECL +{ + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yylval = yylval_param; + yylval = yylval_param; - yylloc = yylloc_param; + yylloc = yylloc_param; - if (!yyg->yy_init) { - yyg->yy_init = 1; + if ( !yyg->yy_init ) + { + yyg->yy_init = 1; #ifdef YY_USER_INIT - YY_USER_INIT; + YY_USER_INIT; #endif - if (!yyg->yy_start) yyg->yy_start = 1; /* first start state */ + if ( ! yyg->yy_start ) + yyg->yy_start = 1; /* first start state */ - if (!yyin) yyin = stdin; + if ( ! yyin ) + yyin = stdin; - if (!yyout) yyout = stdout; + if ( ! yyout ) + yyout = stdout; - if (!YY_CURRENT_BUFFER) { - yyensure_buffer_stack(yyscanner); - YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); - } + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } - yy_load_buffer_state(yyscanner); - } + yy_load_buffer_state( yyscanner ); + } - { + { #line 57 "flex_lexer.l" -#line 2430 "flex_lexer.cpp" - while (/*CONSTCOND*/ 1) /* loops until end-of-file is reached */ - { - yy_cp = yyg->yy_c_buf_p; +#line 2434 "flex_lexer.cpp" + + while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ + { + yy_cp = yyg->yy_c_buf_p; - /* Support of yytext. */ - *yy_cp = yyg->yy_hold_char; + /* Support of yytext. */ + *yy_cp = yyg->yy_hold_char; - /* yy_bp points to the position in yy_ch_buf of the start of + /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ - yy_bp = yy_cp; - - yy_current_state = yyg->yy_start; - yy_match: - do { - YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; - if (yy_accept[yy_current_state]) { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { - yy_current_state = (int)yy_def[yy_current_state]; - if (yy_current_state >= 1184) yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - ++yy_cp; - } while (yy_current_state != 1183); - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - - yy_find_action: - yy_act = yy_accept[yy_current_state]; - - YY_DO_BEFORE_ACTION; - - do_action: /* This label is used only to access EOF actions. */ - - switch (yy_act) { /* beginning of action switch */ - case 0: /* must back up */ - /* undo the effects of YY_DO_BEFORE_ACTION */ - *yy_cp = yyg->yy_hold_char; - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - goto yy_find_action; - - case 1: - YY_RULE_SETUP + yy_bp = yy_cp; + + yy_current_state = yyg->yy_start; +yy_match: + do + { + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1192 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + ++yy_cp; + } + while ( yy_current_state != 1191 ); + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + +yy_find_action: + yy_act = yy_accept[yy_current_state]; + + YY_DO_BEFORE_ACTION; + +do_action: /* This label is used only to access EOF actions. */ + + switch ( yy_act ) + { /* beginning of action switch */ + case 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *yy_cp = yyg->yy_hold_char; + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + +case 1: +YY_RULE_SETUP #line 59 "flex_lexer.l" - BEGIN(COMMENT); - YY_BREAK - case 2: - YY_RULE_SETUP +BEGIN(COMMENT); + YY_BREAK +case 2: +YY_RULE_SETUP #line 60 "flex_lexer.l" - /* skipping comment content until a end of line is read */; - YY_BREAK - case 3: - /* rule 3 can match eol */ - YY_RULE_SETUP +/* skipping comment content until a end of line is read */; + YY_BREAK +case 3: +/* rule 3 can match eol */ +YY_RULE_SETUP #line 61 "flex_lexer.l" - BEGIN(INITIAL); - YY_BREAK - case 4: - /* rule 4 can match eol */ - YY_RULE_SETUP +BEGIN(INITIAL); + YY_BREAK +case 4: +/* rule 4 can match eol */ +YY_RULE_SETUP #line 63 "flex_lexer.l" - /* skip whitespace */; - YY_BREAK - case 5: - YY_RULE_SETUP +/* skip whitespace */; + YY_BREAK +case 5: +YY_RULE_SETUP #line 65 "flex_lexer.l" - TOKEN(DEALLOCATE) - YY_BREAK - case 6: - YY_RULE_SETUP +TOKEN(DEALLOCATE) + YY_BREAK +case 6: +YY_RULE_SETUP #line 66 "flex_lexer.l" - TOKEN(PARAMETERS) - YY_BREAK - case 7: - YY_RULE_SETUP +TOKEN(PARAMETERS) + YY_BREAK +case 7: +YY_RULE_SETUP #line 67 "flex_lexer.l" - TOKEN(INTERSECT) - YY_BREAK - case 8: - YY_RULE_SETUP +TOKEN(INTERSECT) + YY_BREAK +case 8: +YY_RULE_SETUP #line 68 "flex_lexer.l" - TOKEN(TEMPORARY) - YY_BREAK - case 9: - YY_RULE_SETUP +TOKEN(TEMPORARY) + YY_BREAK +case 9: +YY_RULE_SETUP #line 69 "flex_lexer.l" - TOKEN(TIMESTAMP) - YY_BREAK - case 10: - YY_RULE_SETUP +TOKEN(TIMESTAMP) + YY_BREAK +case 10: +YY_RULE_SETUP #line 70 "flex_lexer.l" - TOKEN(DESCRIBE) - YY_BREAK - case 11: - YY_RULE_SETUP +TOKEN(DESCRIBE) + YY_BREAK +case 11: +YY_RULE_SETUP #line 71 "flex_lexer.l" - TOKEN(DISTINCT) - YY_BREAK - case 12: - YY_RULE_SETUP +TOKEN(DISTINCT) + YY_BREAK +case 12: +YY_RULE_SETUP #line 72 "flex_lexer.l" - TOKEN(NVARCHAR) - YY_BREAK - case 13: - YY_RULE_SETUP +TOKEN(NVARCHAR) + YY_BREAK +case 13: +YY_RULE_SETUP #line 73 "flex_lexer.l" - TOKEN(RESTRICT) - YY_BREAK - case 14: - YY_RULE_SETUP +TOKEN(RESTRICT) + YY_BREAK +case 14: +YY_RULE_SETUP #line 74 "flex_lexer.l" - TOKEN(TRUNCATE) - YY_BREAK - case 15: - YY_RULE_SETUP +TOKEN(TRUNCATE) + YY_BREAK +case 15: +YY_RULE_SETUP #line 75 "flex_lexer.l" - TOKEN(ANALYZE) - YY_BREAK - case 16: - YY_RULE_SETUP +TOKEN(ANALYZE) + YY_BREAK +case 16: +YY_RULE_SETUP #line 76 "flex_lexer.l" - TOKEN(BETWEEN) - YY_BREAK - case 17: - YY_RULE_SETUP +TOKEN(BETWEEN) + YY_BREAK +case 17: +YY_RULE_SETUP #line 77 "flex_lexer.l" - TOKEN(CASCADE) - YY_BREAK - case 18: - YY_RULE_SETUP +TOKEN(CASCADE) + YY_BREAK +case 18: +YY_RULE_SETUP #line 78 "flex_lexer.l" - TOKEN(COLUMNS) - YY_BREAK - case 19: - YY_RULE_SETUP +TOKEN(COLUMNS) + YY_BREAK +case 19: +YY_RULE_SETUP #line 79 "flex_lexer.l" - TOKEN(CONTROL) - YY_BREAK - case 20: - YY_RULE_SETUP +TOKEN(CONTROL) + YY_BREAK +case 20: +YY_RULE_SETUP #line 80 "flex_lexer.l" - TOKEN(DEFAULT) - YY_BREAK - case 21: - YY_RULE_SETUP +TOKEN(DEFAULT) + YY_BREAK +case 21: +YY_RULE_SETUP #line 81 "flex_lexer.l" - TOKEN(EXECUTE) - YY_BREAK - case 22: - YY_RULE_SETUP +TOKEN(EXECUTE) + YY_BREAK +case 22: +YY_RULE_SETUP #line 82 "flex_lexer.l" - TOKEN(EXPLAIN) - YY_BREAK - case 23: - YY_RULE_SETUP +TOKEN(EXPLAIN) + YY_BREAK +case 23: +YY_RULE_SETUP #line 83 "flex_lexer.l" - TOKEN(INTEGER) - YY_BREAK - case 24: - YY_RULE_SETUP +TOKEN(INTEGER) + YY_BREAK +case 24: +YY_RULE_SETUP #line 84 "flex_lexer.l" - TOKEN(NATURAL) - YY_BREAK - case 25: - YY_RULE_SETUP +TOKEN(NATURAL) + YY_BREAK +case 25: +YY_RULE_SETUP #line 85 "flex_lexer.l" - TOKEN(PREPARE) - YY_BREAK - case 26: - YY_RULE_SETUP +TOKEN(PREPARE) + YY_BREAK +case 26: +YY_RULE_SETUP #line 86 "flex_lexer.l" - TOKEN(PRIMARY) - YY_BREAK - case 27: - YY_RULE_SETUP +TOKEN(PRIMARY) + YY_BREAK +case 27: +YY_RULE_SETUP #line 87 "flex_lexer.l" - TOKEN(SCHEMAS) - YY_BREAK - case 28: - YY_RULE_SETUP +TOKEN(SCHEMAS) + YY_BREAK +case 28: +YY_RULE_SETUP #line 88 "flex_lexer.l" - TOKEN(SPATIAL) - YY_BREAK - case 29: - YY_RULE_SETUP +TOKEN(SPATIAL) + YY_BREAK +case 29: +YY_RULE_SETUP #line 89 "flex_lexer.l" - TOKEN(VARCHAR) - YY_BREAK - case 30: - YY_RULE_SETUP +TOKEN(VARCHAR) + YY_BREAK +case 30: +YY_RULE_SETUP #line 90 "flex_lexer.l" - TOKEN(CHARACTER) - YY_BREAK - case 31: - YY_RULE_SETUP +TOKEN(TIME) + YY_BREAK +case 31: +YY_RULE_SETUP #line 91 "flex_lexer.l" - TOKEN(VARYING) - YY_BREAK - case 32: - YY_RULE_SETUP +TOKEN(DECIMAL) + YY_BREAK +case 32: +YY_RULE_SETUP #line 92 "flex_lexer.l" - TOKEN(TIME) - YY_BREAK - case 33: - YY_RULE_SETUP +TOKEN(REAL) + YY_BREAK +case 33: +YY_RULE_SETUP #line 93 "flex_lexer.l" - TOKEN(DECIMAL) - YY_BREAK - case 34: - YY_RULE_SETUP +TOKEN(SMALLINT) + YY_BREAK +case 34: +YY_RULE_SETUP #line 94 "flex_lexer.l" - TOKEN(REAL) - YY_BREAK - case 35: - YY_RULE_SETUP +TOKEN(VIRTUAL) + YY_BREAK +case 35: +YY_RULE_SETUP #line 95 "flex_lexer.l" - TOKEN(SMALLINT) - YY_BREAK - case 36: - YY_RULE_SETUP +TOKEN(BEFORE) + YY_BREAK +case 36: +YY_RULE_SETUP #line 96 "flex_lexer.l" - TOKEN(VIRTUAL) - YY_BREAK - case 37: - YY_RULE_SETUP +TOKEN(COLUMN) + YY_BREAK +case 37: +YY_RULE_SETUP #line 97 "flex_lexer.l" - TOKEN(BEFORE) - YY_BREAK - case 38: - YY_RULE_SETUP +TOKEN(CREATE) + YY_BREAK +case 38: +YY_RULE_SETUP #line 98 "flex_lexer.l" - TOKEN(COLUMN) - YY_BREAK - case 39: - YY_RULE_SETUP +TOKEN(DELETE) + YY_BREAK +case 39: +YY_RULE_SETUP #line 99 "flex_lexer.l" - TOKEN(CREATE) - YY_BREAK - case 40: - YY_RULE_SETUP +TOKEN(DIRECT) + YY_BREAK +case 40: +YY_RULE_SETUP #line 100 "flex_lexer.l" - TOKEN(DELETE) - YY_BREAK - case 41: - YY_RULE_SETUP +TOKEN(DOUBLE) + YY_BREAK +case 41: +YY_RULE_SETUP #line 101 "flex_lexer.l" - TOKEN(DIRECT) - YY_BREAK - case 42: - YY_RULE_SETUP +TOKEN(ESCAPE) + YY_BREAK +case 42: +YY_RULE_SETUP #line 102 "flex_lexer.l" - TOKEN(DOUBLE) - YY_BREAK - case 43: - YY_RULE_SETUP +TOKEN(EXCEPT) + YY_BREAK +case 43: +YY_RULE_SETUP #line 103 "flex_lexer.l" - TOKEN(ESCAPE) - YY_BREAK - case 44: - YY_RULE_SETUP +TOKEN(EXISTS) + YY_BREAK +case 44: +YY_RULE_SETUP #line 104 "flex_lexer.l" - TOKEN(EXCEPT) - YY_BREAK - case 45: - YY_RULE_SETUP +TOKEN(EXTRACT) + YY_BREAK +case 45: +YY_RULE_SETUP #line 105 "flex_lexer.l" - TOKEN(EXISTS) - YY_BREAK - case 46: - YY_RULE_SETUP +TOKEN(CAST) + YY_BREAK +case 46: +YY_RULE_SETUP #line 106 "flex_lexer.l" - TOKEN(EXTRACT) - YY_BREAK - case 47: - YY_RULE_SETUP +TOKEN(FORMAT) + YY_BREAK +case 47: +YY_RULE_SETUP #line 107 "flex_lexer.l" - TOKEN(CAST) - YY_BREAK - case 48: - YY_RULE_SETUP +TOKEN(GLOBAL) + YY_BREAK +case 48: +YY_RULE_SETUP #line 108 "flex_lexer.l" - TOKEN(FORMAT) - YY_BREAK - case 49: - YY_RULE_SETUP +TOKEN(HAVING) + YY_BREAK +case 49: +YY_RULE_SETUP #line 109 "flex_lexer.l" - TOKEN(GLOBAL) - YY_BREAK - case 50: - YY_RULE_SETUP +TOKEN(IMPORT) + YY_BREAK +case 50: +YY_RULE_SETUP #line 110 "flex_lexer.l" - TOKEN(HAVING) - YY_BREAK - case 51: - YY_RULE_SETUP +TOKEN(INSERT) + YY_BREAK +case 51: +YY_RULE_SETUP #line 111 "flex_lexer.l" - TOKEN(IMPORT) - YY_BREAK - case 52: - YY_RULE_SETUP +TOKEN(ISNULL) + YY_BREAK +case 52: +YY_RULE_SETUP #line 112 "flex_lexer.l" - TOKEN(INSERT) - YY_BREAK - case 53: - YY_RULE_SETUP +TOKEN(OFFSET) + YY_BREAK +case 53: +YY_RULE_SETUP #line 113 "flex_lexer.l" - TOKEN(ISNULL) - YY_BREAK - case 54: - YY_RULE_SETUP +TOKEN(RENAME) + YY_BREAK +case 54: +YY_RULE_SETUP #line 114 "flex_lexer.l" - TOKEN(OFFSET) - YY_BREAK - case 55: - YY_RULE_SETUP +TOKEN(SCHEMA) + YY_BREAK +case 55: +YY_RULE_SETUP #line 115 "flex_lexer.l" - TOKEN(RENAME) - YY_BREAK - case 56: - YY_RULE_SETUP +TOKEN(SELECT) + YY_BREAK +case 56: +YY_RULE_SETUP #line 116 "flex_lexer.l" - TOKEN(SCHEMA) - YY_BREAK - case 57: - YY_RULE_SETUP +TOKEN(SORTED) + YY_BREAK +case 57: +YY_RULE_SETUP #line 117 "flex_lexer.l" - TOKEN(SELECT) - YY_BREAK - case 58: - YY_RULE_SETUP +TOKEN(TABLES) + YY_BREAK +case 58: +YY_RULE_SETUP #line 118 "flex_lexer.l" - TOKEN(SORTED) - YY_BREAK - case 59: - YY_RULE_SETUP +TOKEN(UNIQUE) + YY_BREAK +case 59: +YY_RULE_SETUP #line 119 "flex_lexer.l" - TOKEN(TABLES) - YY_BREAK - case 60: - YY_RULE_SETUP +TOKEN(UNLOAD) + YY_BREAK +case 60: +YY_RULE_SETUP #line 120 "flex_lexer.l" - TOKEN(UNIQUE) - YY_BREAK - case 61: - YY_RULE_SETUP +TOKEN(UPDATE) + YY_BREAK +case 61: +YY_RULE_SETUP #line 121 "flex_lexer.l" - TOKEN(UNLOAD) - YY_BREAK - case 62: - YY_RULE_SETUP +TOKEN(VALUES) + YY_BREAK +case 62: +YY_RULE_SETUP #line 122 "flex_lexer.l" - TOKEN(UPDATE) - YY_BREAK - case 63: - YY_RULE_SETUP +TOKEN(AFTER) + YY_BREAK +case 63: +YY_RULE_SETUP #line 123 "flex_lexer.l" - TOKEN(VALUES) - YY_BREAK - case 64: - YY_RULE_SETUP +TOKEN(ALTER) + YY_BREAK +case 64: +YY_RULE_SETUP #line 124 "flex_lexer.l" - TOKEN(AFTER) - YY_BREAK - case 65: - YY_RULE_SETUP +TOKEN(ARRAY) + YY_BREAK +case 65: +YY_RULE_SETUP #line 125 "flex_lexer.l" - TOKEN(ALTER) - YY_BREAK - case 66: - YY_RULE_SETUP +TOKEN(CROSS) + YY_BREAK +case 66: +YY_RULE_SETUP #line 126 "flex_lexer.l" - TOKEN(ARRAY) - YY_BREAK - case 67: - YY_RULE_SETUP +TOKEN(DELTA) + YY_BREAK +case 67: +YY_RULE_SETUP #line 127 "flex_lexer.l" - TOKEN(CROSS) - YY_BREAK - case 68: - YY_RULE_SETUP +TOKEN(FLOAT) + YY_BREAK +case 68: +YY_RULE_SETUP #line 128 "flex_lexer.l" - TOKEN(DELTA) - YY_BREAK - case 69: - YY_RULE_SETUP +TOKEN(GROUP) + YY_BREAK +case 69: +YY_RULE_SETUP #line 129 "flex_lexer.l" - TOKEN(FLOAT) - YY_BREAK - case 70: - YY_RULE_SETUP +TOKEN(INDEX) + YY_BREAK +case 70: +YY_RULE_SETUP #line 130 "flex_lexer.l" - TOKEN(GROUP) - YY_BREAK - case 71: - YY_RULE_SETUP +TOKEN(INNER) + YY_BREAK +case 71: +YY_RULE_SETUP #line 131 "flex_lexer.l" - TOKEN(INDEX) - YY_BREAK - case 72: - YY_RULE_SETUP +TOKEN(LIMIT) + YY_BREAK +case 72: +YY_RULE_SETUP #line 132 "flex_lexer.l" - TOKEN(INNER) - YY_BREAK - case 73: - YY_RULE_SETUP +TOKEN(LOCAL) + YY_BREAK +case 73: +YY_RULE_SETUP #line 133 "flex_lexer.l" - TOKEN(LIMIT) - YY_BREAK - case 74: - YY_RULE_SETUP +TOKEN(MERGE) + YY_BREAK +case 74: +YY_RULE_SETUP #line 134 "flex_lexer.l" - TOKEN(LOCAL) - YY_BREAK - case 75: - YY_RULE_SETUP +TOKEN(MINUS) + YY_BREAK +case 75: +YY_RULE_SETUP #line 135 "flex_lexer.l" - TOKEN(MERGE) - YY_BREAK - case 76: - YY_RULE_SETUP +TOKEN(ORDER) + YY_BREAK +case 76: +YY_RULE_SETUP #line 136 "flex_lexer.l" - TOKEN(MINUS) - YY_BREAK - case 77: - YY_RULE_SETUP +TOKEN(OUTER) + YY_BREAK +case 77: +YY_RULE_SETUP #line 137 "flex_lexer.l" - TOKEN(ORDER) - YY_BREAK - case 78: - YY_RULE_SETUP +TOKEN(RIGHT) + YY_BREAK +case 78: +YY_RULE_SETUP #line 138 "flex_lexer.l" - TOKEN(OUTER) - YY_BREAK - case 79: - YY_RULE_SETUP +TOKEN(TABLE) + YY_BREAK +case 79: +YY_RULE_SETUP #line 139 "flex_lexer.l" - TOKEN(RIGHT) - YY_BREAK - case 80: - YY_RULE_SETUP +TOKEN(UNION) + YY_BREAK +case 80: +YY_RULE_SETUP #line 140 "flex_lexer.l" - TOKEN(TABLE) - YY_BREAK - case 81: - YY_RULE_SETUP +TOKEN(USING) + YY_BREAK +case 81: +YY_RULE_SETUP #line 141 "flex_lexer.l" - TOKEN(UNION) - YY_BREAK - case 82: - YY_RULE_SETUP +TOKEN(WHERE) + YY_BREAK +case 82: +YY_RULE_SETUP #line 142 "flex_lexer.l" - TOKEN(USING) - YY_BREAK - case 83: - YY_RULE_SETUP +TOKEN(CALL) + YY_BREAK +case 83: +YY_RULE_SETUP #line 143 "flex_lexer.l" - TOKEN(WHERE) - YY_BREAK - case 84: - YY_RULE_SETUP +TOKEN(CASE) + YY_BREAK +case 84: +YY_RULE_SETUP #line 144 "flex_lexer.l" - TOKEN(CALL) - YY_BREAK - case 85: - YY_RULE_SETUP +TOKEN(CHAR) + YY_BREAK +case 85: +YY_RULE_SETUP #line 145 "flex_lexer.l" - TOKEN(CASE) - YY_BREAK - case 86: - YY_RULE_SETUP +TOKEN(COPY) + YY_BREAK +case 86: +YY_RULE_SETUP #line 146 "flex_lexer.l" - TOKEN(CHAR) - YY_BREAK - case 87: - YY_RULE_SETUP +TOKEN(DATE) + YY_BREAK +case 87: +YY_RULE_SETUP #line 147 "flex_lexer.l" - TOKEN(COPY) - YY_BREAK - case 88: - YY_RULE_SETUP +TOKEN(DATETIME) + YY_BREAK +case 88: +YY_RULE_SETUP #line 148 "flex_lexer.l" - TOKEN(DATE) - YY_BREAK - case 89: - YY_RULE_SETUP +TOKEN(DESC) + YY_BREAK +case 89: +YY_RULE_SETUP #line 149 "flex_lexer.l" - TOKEN(DATETIME) - YY_BREAK - case 90: - YY_RULE_SETUP +TOKEN(DROP) + YY_BREAK +case 90: +YY_RULE_SETUP #line 150 "flex_lexer.l" - TOKEN(DESC) - YY_BREAK - case 91: - YY_RULE_SETUP +TOKEN(ELSE) + YY_BREAK +case 91: +YY_RULE_SETUP #line 151 "flex_lexer.l" - TOKEN(DROP) - YY_BREAK - case 92: - YY_RULE_SETUP +TOKEN(FILE) + YY_BREAK +case 92: +YY_RULE_SETUP #line 152 "flex_lexer.l" - TOKEN(ELSE) - YY_BREAK - case 93: - YY_RULE_SETUP +TOKEN(FROM) + YY_BREAK +case 93: +YY_RULE_SETUP #line 153 "flex_lexer.l" - TOKEN(FILE) - YY_BREAK - case 94: - YY_RULE_SETUP +TOKEN(FULL) + YY_BREAK +case 94: +YY_RULE_SETUP #line 154 "flex_lexer.l" - TOKEN(FROM) - YY_BREAK - case 95: - YY_RULE_SETUP +TOKEN(HASH) + YY_BREAK +case 95: +YY_RULE_SETUP #line 155 "flex_lexer.l" - TOKEN(FULL) - YY_BREAK - case 96: - YY_RULE_SETUP +TOKEN(HINT) + YY_BREAK +case 96: +YY_RULE_SETUP #line 156 "flex_lexer.l" - TOKEN(HASH) - YY_BREAK - case 97: - YY_RULE_SETUP +TOKEN(INTO) + YY_BREAK +case 97: +YY_RULE_SETUP #line 157 "flex_lexer.l" - TOKEN(HINT) - YY_BREAK - case 98: - YY_RULE_SETUP +TOKEN(JOIN) + YY_BREAK +case 98: +YY_RULE_SETUP #line 158 "flex_lexer.l" - TOKEN(INTO) - YY_BREAK - case 99: - YY_RULE_SETUP +TOKEN(LEFT) + YY_BREAK +case 99: +YY_RULE_SETUP #line 159 "flex_lexer.l" - TOKEN(JOIN) - YY_BREAK - case 100: - YY_RULE_SETUP +TOKEN(LIKE) + YY_BREAK +case 100: +YY_RULE_SETUP #line 160 "flex_lexer.l" - TOKEN(LEFT) - YY_BREAK - case 101: - YY_RULE_SETUP +TOKEN(ILIKE) + YY_BREAK +case 101: +YY_RULE_SETUP #line 161 "flex_lexer.l" - TOKEN(LIKE) - YY_BREAK - case 102: - YY_RULE_SETUP +TOKEN(LOAD) + YY_BREAK +case 102: +YY_RULE_SETUP #line 162 "flex_lexer.l" - TOKEN(ILIKE) - YY_BREAK - case 103: - YY_RULE_SETUP +TOKEN(LONG) + YY_BREAK +case 103: +YY_RULE_SETUP #line 163 "flex_lexer.l" - TOKEN(LOAD) - YY_BREAK - case 104: - YY_RULE_SETUP +TOKEN(NULL) + YY_BREAK +case 104: +YY_RULE_SETUP #line 164 "flex_lexer.l" - TOKEN(LONG) - YY_BREAK - case 105: - YY_RULE_SETUP +TOKEN(PLAN) + YY_BREAK +case 105: +YY_RULE_SETUP #line 165 "flex_lexer.l" - TOKEN(NULL) - YY_BREAK - case 106: - YY_RULE_SETUP +TOKEN(SHOW) + YY_BREAK +case 106: +YY_RULE_SETUP #line 166 "flex_lexer.l" - TOKEN(PLAN) - YY_BREAK - case 107: - YY_RULE_SETUP +TOKEN(TEXT) + YY_BREAK +case 107: +YY_RULE_SETUP #line 167 "flex_lexer.l" - TOKEN(SHOW) - YY_BREAK - case 108: - YY_RULE_SETUP +TOKEN(THEN) + YY_BREAK +case 108: +YY_RULE_SETUP #line 168 "flex_lexer.l" - TOKEN(TEXT) - YY_BREAK - case 109: - YY_RULE_SETUP +TOKEN(VIEW) + YY_BREAK +case 109: +YY_RULE_SETUP #line 169 "flex_lexer.l" - TOKEN(THEN) - YY_BREAK - case 110: - YY_RULE_SETUP +TOKEN(WHEN) + YY_BREAK +case 110: +YY_RULE_SETUP #line 170 "flex_lexer.l" - TOKEN(VIEW) - YY_BREAK - case 111: - YY_RULE_SETUP +TOKEN(WITH) + YY_BREAK +case 111: +YY_RULE_SETUP #line 171 "flex_lexer.l" - TOKEN(WHEN) - YY_BREAK - case 112: - YY_RULE_SETUP +TOKEN(ADD) + YY_BREAK +case 112: +YY_RULE_SETUP #line 172 "flex_lexer.l" - TOKEN(WITH) - YY_BREAK - case 113: - YY_RULE_SETUP +TOKEN(ALL) + YY_BREAK +case 113: +YY_RULE_SETUP #line 173 "flex_lexer.l" - TOKEN(ADD) - YY_BREAK - case 114: - YY_RULE_SETUP +TOKEN(AND) + YY_BREAK +case 114: +YY_RULE_SETUP #line 174 "flex_lexer.l" - TOKEN(ALL) - YY_BREAK - case 115: - YY_RULE_SETUP +TOKEN(ASC) + YY_BREAK +case 115: +YY_RULE_SETUP #line 175 "flex_lexer.l" - TOKEN(AND) - YY_BREAK - case 116: - YY_RULE_SETUP +TOKEN(END) + YY_BREAK +case 116: +YY_RULE_SETUP #line 176 "flex_lexer.l" - TOKEN(ASC) - YY_BREAK - case 117: - YY_RULE_SETUP +TOKEN(FOR) + YY_BREAK +case 117: +YY_RULE_SETUP #line 177 "flex_lexer.l" - TOKEN(END) - YY_BREAK - case 118: - YY_RULE_SETUP +TOKEN(INT) + YY_BREAK +case 118: +YY_RULE_SETUP #line 178 "flex_lexer.l" - TOKEN(FOR) - YY_BREAK - case 119: - YY_RULE_SETUP +TOKEN(KEY) + YY_BREAK +case 119: +YY_RULE_SETUP #line 179 "flex_lexer.l" - TOKEN(INT) - YY_BREAK - case 120: - YY_RULE_SETUP +TOKEN(NOT) + YY_BREAK +case 120: +YY_RULE_SETUP #line 180 "flex_lexer.l" - TOKEN(KEY) - YY_BREAK - case 121: - YY_RULE_SETUP +TOKEN(OFF) + YY_BREAK +case 121: +YY_RULE_SETUP #line 181 "flex_lexer.l" - TOKEN(NOT) - YY_BREAK - case 122: - YY_RULE_SETUP +TOKEN(SET) + YY_BREAK +case 122: +YY_RULE_SETUP #line 182 "flex_lexer.l" - TOKEN(OFF) - YY_BREAK - case 123: - YY_RULE_SETUP +TOKEN(TOP) + YY_BREAK +case 123: +YY_RULE_SETUP #line 183 "flex_lexer.l" - TOKEN(SET) - YY_BREAK - case 124: - YY_RULE_SETUP +TOKEN(AS) + YY_BREAK +case 124: +YY_RULE_SETUP #line 184 "flex_lexer.l" - TOKEN(TOP) - YY_BREAK - case 125: - YY_RULE_SETUP +TOKEN(BY) + YY_BREAK +case 125: +YY_RULE_SETUP #line 185 "flex_lexer.l" - TOKEN(AS) - YY_BREAK - case 126: - YY_RULE_SETUP +TOKEN(IF) + YY_BREAK +case 126: +YY_RULE_SETUP #line 186 "flex_lexer.l" - TOKEN(BY) - YY_BREAK - case 127: - YY_RULE_SETUP +TOKEN(IN) + YY_BREAK +case 127: +YY_RULE_SETUP #line 187 "flex_lexer.l" - TOKEN(IF) - YY_BREAK - case 128: - YY_RULE_SETUP +TOKEN(IS) + YY_BREAK +case 128: +YY_RULE_SETUP #line 188 "flex_lexer.l" - TOKEN(IN) - YY_BREAK - case 129: - YY_RULE_SETUP +TOKEN(OF) + YY_BREAK +case 129: +YY_RULE_SETUP #line 189 "flex_lexer.l" - TOKEN(IS) - YY_BREAK - case 130: - YY_RULE_SETUP +TOKEN(ON) + YY_BREAK +case 130: +YY_RULE_SETUP #line 190 "flex_lexer.l" - TOKEN(OF) - YY_BREAK - case 131: - YY_RULE_SETUP +TOKEN(OR) + YY_BREAK +case 131: +YY_RULE_SETUP #line 191 "flex_lexer.l" - TOKEN(ON) - YY_BREAK - case 132: - YY_RULE_SETUP +TOKEN(TO) + YY_BREAK +case 132: +YY_RULE_SETUP #line 192 "flex_lexer.l" - TOKEN(OR) - YY_BREAK - case 133: - YY_RULE_SETUP +TOKEN(SECOND) + YY_BREAK +case 133: +YY_RULE_SETUP #line 193 "flex_lexer.l" - TOKEN(TO) - YY_BREAK - case 134: - YY_RULE_SETUP +TOKEN(MINUTE) + YY_BREAK +case 134: +YY_RULE_SETUP #line 194 "flex_lexer.l" - TOKEN(SECOND) - YY_BREAK - case 135: - YY_RULE_SETUP +TOKEN(HOUR) + YY_BREAK +case 135: +YY_RULE_SETUP #line 195 "flex_lexer.l" - TOKEN(MINUTE) - YY_BREAK - case 136: - YY_RULE_SETUP +TOKEN(DAY) + YY_BREAK +case 136: +YY_RULE_SETUP #line 196 "flex_lexer.l" - TOKEN(HOUR) - YY_BREAK - case 137: - YY_RULE_SETUP +TOKEN(MONTH) + YY_BREAK +case 137: +YY_RULE_SETUP #line 197 "flex_lexer.l" - TOKEN(DAY) - YY_BREAK - case 138: - YY_RULE_SETUP +TOKEN(YEAR) + YY_BREAK +case 138: +YY_RULE_SETUP #line 198 "flex_lexer.l" - TOKEN(MONTH) - YY_BREAK - case 139: - YY_RULE_SETUP +TOKEN(SECONDS) + YY_BREAK +case 139: +YY_RULE_SETUP #line 199 "flex_lexer.l" - TOKEN(YEAR) - YY_BREAK - case 140: - YY_RULE_SETUP +TOKEN(MINUTES) + YY_BREAK +case 140: +YY_RULE_SETUP #line 200 "flex_lexer.l" - TOKEN(SECONDS) - YY_BREAK - case 141: - YY_RULE_SETUP +TOKEN(HOURS) + YY_BREAK +case 141: +YY_RULE_SETUP #line 201 "flex_lexer.l" - TOKEN(MINUTES) - YY_BREAK - case 142: - YY_RULE_SETUP +TOKEN(DAYS) + YY_BREAK +case 142: +YY_RULE_SETUP #line 202 "flex_lexer.l" - TOKEN(HOURS) - YY_BREAK - case 143: - YY_RULE_SETUP +TOKEN(MONTHS) + YY_BREAK +case 143: +YY_RULE_SETUP #line 203 "flex_lexer.l" - TOKEN(DAYS) - YY_BREAK - case 144: - YY_RULE_SETUP +TOKEN(YEARS) + YY_BREAK +case 144: +YY_RULE_SETUP #line 204 "flex_lexer.l" - TOKEN(MONTHS) - YY_BREAK - case 145: - YY_RULE_SETUP +TOKEN(TRUE) + YY_BREAK +case 145: +YY_RULE_SETUP #line 205 "flex_lexer.l" - TOKEN(YEARS) - YY_BREAK - case 146: - YY_RULE_SETUP +TOKEN(FALSE) + YY_BREAK +case 146: +YY_RULE_SETUP #line 206 "flex_lexer.l" - TOKEN(TRUE) - YY_BREAK - case 147: - YY_RULE_SETUP +TOKEN(TRANSACTION) + YY_BREAK +case 147: +YY_RULE_SETUP #line 207 "flex_lexer.l" - TOKEN(FALSE) - YY_BREAK - case 148: - YY_RULE_SETUP +TOKEN(BEGIN) + YY_BREAK +case 148: +YY_RULE_SETUP #line 208 "flex_lexer.l" - TOKEN(TRANSACTION) - YY_BREAK - case 149: - YY_RULE_SETUP +TOKEN(ROLLBACK) + YY_BREAK +case 149: +YY_RULE_SETUP #line 209 "flex_lexer.l" - TOKEN(BEGIN) - YY_BREAK - case 150: - YY_RULE_SETUP +TOKEN(COMMIT) + YY_BREAK +case 150: +YY_RULE_SETUP #line 210 "flex_lexer.l" - TOKEN(ROLLBACK) - YY_BREAK - case 151: - YY_RULE_SETUP -#line 211 "flex_lexer.l" - TOKEN(COMMIT) - YY_BREAK - case 152: - YY_RULE_SETUP +TOKEN(INTERVAL) + YY_BREAK +case 151: +YY_RULE_SETUP #line 212 "flex_lexer.l" - TOKEN(INTERVAL) - YY_BREAK - /* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ - case 153: - YY_RULE_SETUP +TOKEN(CHARACTER_VARYING) + YY_BREAK +/* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ +case 152: +YY_RULE_SETUP #line 215 "flex_lexer.l" - TOKEN(EQUALS) - YY_BREAK - case 154: - YY_RULE_SETUP +TOKEN(EQUALS) + YY_BREAK +case 153: +YY_RULE_SETUP #line 216 "flex_lexer.l" - TOKEN(NOTEQUALS) - YY_BREAK - case 155: - YY_RULE_SETUP +TOKEN(NOTEQUALS) + YY_BREAK +case 154: +YY_RULE_SETUP #line 217 "flex_lexer.l" - TOKEN(NOTEQUALS) - YY_BREAK - case 156: - YY_RULE_SETUP +TOKEN(NOTEQUALS) + YY_BREAK +case 155: +YY_RULE_SETUP #line 218 "flex_lexer.l" - TOKEN(LESSEQ) - YY_BREAK - case 157: - YY_RULE_SETUP +TOKEN(LESSEQ) + YY_BREAK +case 156: +YY_RULE_SETUP #line 219 "flex_lexer.l" - TOKEN(GREATEREQ) - YY_BREAK - case 158: - YY_RULE_SETUP +TOKEN(GREATEREQ) + YY_BREAK +case 157: +YY_RULE_SETUP #line 220 "flex_lexer.l" - TOKEN(CONCAT) - YY_BREAK - case 159: - YY_RULE_SETUP +TOKEN(CONCAT) + YY_BREAK +case 158: +YY_RULE_SETUP #line 222 "flex_lexer.l" - { - return yytext[0]; - } - YY_BREAK - case 160: +{ return yytext[0]; } + YY_BREAK +case 159: #line 225 "flex_lexer.l" - case 161: - YY_RULE_SETUP +case 160: +YY_RULE_SETUP #line 225 "flex_lexer.l" - { - yylval->fval = atof(yytext); - return SQL_FLOATVAL; - } - YY_BREAK - /* +{ + yylval->fval = atof(yytext); + return SQL_FLOATVAL; +} + YY_BREAK +/* * Regularly, negative literals are treated as . This does not work for LLONG_MIN, as it has no * positive equivalent. We thus match for LLONG_MIN specifically. This is not an issue for floats, where * numeric_limits::lowest() == -numeric_limits::max(); */ - case 162: - YY_RULE_SETUP +case 161: +YY_RULE_SETUP #line 235 "flex_lexer.l" - { - yylval->ival = LLONG_MIN; - return SQL_INTVAL; - } - YY_BREAK - case 163: - YY_RULE_SETUP +{ + yylval->ival = LLONG_MIN; + return SQL_INTVAL; +} + YY_BREAK +case 162: +YY_RULE_SETUP #line 240 "flex_lexer.l" - { - errno = 0; - yylval->ival = strtoll(yytext, nullptr, 0); - if (errno) { - return fprintf(stderr, "[SQL-Lexer-Error] Integer cannot be parsed - is it out of range?"); - return 0; - } - return SQL_INTVAL; - } - YY_BREAK - case 164: - YY_RULE_SETUP +{ + errno = 0; + yylval->ival = strtoll(yytext, nullptr, 0); + if (errno) { + return fprintf(stderr, "[SQL-Lexer-Error] Integer cannot be parsed - is it out of range?"); + return 0; + } + return SQL_INTVAL; +} + YY_BREAK +case 163: +YY_RULE_SETUP #line 250 "flex_lexer.l" - { - // Crop the leading and trailing quote char - yylval->sval = hsql::substr(yytext, 1, strlen(yytext) - 1); - return SQL_IDENTIFIER; - } - YY_BREAK - case 165: - YY_RULE_SETUP +{ + // Crop the leading and trailing quote char + yylval->sval = hsql::substr(yytext, 1, strlen(yytext)-1); + return SQL_IDENTIFIER; +} + YY_BREAK +case 164: +YY_RULE_SETUP #line 256 "flex_lexer.l" - { - yylval->sval = strdup(yytext); - return SQL_IDENTIFIER; - } - YY_BREAK - case 166: - YY_RULE_SETUP +{ + yylval->sval = strdup(yytext); + return SQL_IDENTIFIER; +} + YY_BREAK +case 165: +YY_RULE_SETUP #line 261 "flex_lexer.l" - { - BEGIN singlequotedstring; - strbuf.clear(); - strbuf.str(""); - } // Clear strbuf manually, see #170 - YY_BREAK - case 167: - YY_RULE_SETUP +{ BEGIN singlequotedstring; strbuf.clear(); strbuf.str(""); } // Clear strbuf manually, see #170 + YY_BREAK +case 166: +YY_RULE_SETUP #line 262 "flex_lexer.l" - { - strbuf << '\''; - } - YY_BREAK - case 168: - /* rule 168 can match eol */ - YY_RULE_SETUP +{ strbuf << '\''; } + YY_BREAK +case 167: +/* rule 167 can match eol */ +YY_RULE_SETUP #line 263 "flex_lexer.l" - { - strbuf << yytext; - } - YY_BREAK - case 169: - YY_RULE_SETUP +{ strbuf << yytext; } + YY_BREAK +case 168: +YY_RULE_SETUP #line 264 "flex_lexer.l" - { - BEGIN 0; - yylval->sval = strdup(strbuf.str().c_str()); - return SQL_STRING; - } - YY_BREAK - case YY_STATE_EOF(singlequotedstring): +{ BEGIN 0; yylval->sval = strdup(strbuf.str().c_str()); return SQL_STRING; } + YY_BREAK +case YY_STATE_EOF(singlequotedstring): #line 265 "flex_lexer.l" - { - fprintf(stderr, "[SQL-Lexer-Error] Unterminated string\n"); - return 0; - } - YY_BREAK - case 170: - YY_RULE_SETUP +{ fprintf(stderr, "[SQL-Lexer-Error] Unterminated string\n"); return 0; } + YY_BREAK +case 169: +YY_RULE_SETUP #line 267 "flex_lexer.l" - { - fprintf(stderr, "[SQL-Lexer-Error] Unknown Character: %c\n", yytext[0]); - return 0; - } - YY_BREAK - case 171: - YY_RULE_SETUP +{ fprintf(stderr, "[SQL-Lexer-Error] Unknown Character: %c\n", yytext[0]); return 0; } + YY_BREAK +case 170: +YY_RULE_SETUP #line 269 "flex_lexer.l" - ECHO; - YY_BREAK -#line 3369 "flex_lexer.cpp" - case YY_STATE_EOF(INITIAL): - case YY_STATE_EOF(COMMENT): - yyterminate(); - - case YY_END_OF_BUFFER: { - /* Amount of text matched not including the EOB char. */ - int yy_amount_of_matched_text = (int)(yy_cp - yyg->yytext_ptr) - 1; - - /* Undo the effects of YY_DO_BEFORE_ACTION. */ - *yy_cp = yyg->yy_hold_char; - YY_RESTORE_YY_MORE_OFFSET - - if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW) { - /* We're scanning a new file or input source. It's +ECHO; + YY_BREAK +#line 3368 "flex_lexer.cpp" +case YY_STATE_EOF(INITIAL): +case YY_STATE_EOF(COMMENT): + yyterminate(); + + case YY_END_OF_BUFFER: + { + /* Amount of text matched not including the EOB char. */ + int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; + + /* Undo the effects of YY_DO_BEFORE_ACTION. */ + *yy_cp = yyg->yy_hold_char; + YY_RESTORE_YY_MORE_OFFSET + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) + { + /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure @@ -2799,26 +3390,27 @@ YY_DECL { * this is the first action (other than possibly a * back-up) that will match for the new input source. */ - yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; - YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; - YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; - } + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; + } - /* Note that here we test for yy_c_buf_p "<=" to the position + /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ - if (yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]) { /* This was really a NUL. */ - yy_state_type yy_next_state; + if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + { /* This was really a NUL. */ + yy_state_type yy_next_state; - yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; + yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state(yyscanner); + yy_current_state = yy_get_previous_state( yyscanner ); - /* Okay, we're now positioned to make the NUL + /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal @@ -2827,31 +3419,35 @@ YY_DECL { * will run more slowly). */ - yy_next_state = yy_try_NUL_trans(yy_current_state, yyscanner); - - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - - if (yy_next_state) { - /* Consume the NUL. */ - yy_cp = ++yyg->yy_c_buf_p; - yy_current_state = yy_next_state; - goto yy_match; - } - - else { - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - goto yy_find_action; - } - } - - else - switch (yy_get_next_buffer(yyscanner)) { - case EOB_ACT_END_OF_FILE: { - yyg->yy_did_buffer_switch_on_eof = 0; - - if (yywrap(yyscanner)) { - /* Note: because we've taken care in + yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); + + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + + if ( yy_next_state ) + { + /* Consume the NUL. */ + yy_cp = ++yyg->yy_c_buf_p; + yy_current_state = yy_next_state; + goto yy_match; + } + + else + { + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + } + } + + else switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_END_OF_FILE: + { + yyg->yy_did_buffer_switch_on_eof = 0; + + if ( yywrap( yyscanner ) ) + { + /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total @@ -2860,44 +3456,49 @@ YY_DECL { * YY_NULL, it'll still work - another * YY_NULL will get returned. */ - yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; - - yy_act = YY_STATE_EOF(YY_START); - goto do_action; - } - - else { - if (!yyg->yy_did_buffer_switch_on_eof) YY_NEW_FILE; - } - break; - } - - case EOB_ACT_CONTINUE_SCAN: - yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; - - yy_current_state = yy_get_previous_state(yyscanner); - - yy_cp = yyg->yy_c_buf_p; - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - goto yy_match; - - case EOB_ACT_LAST_MATCH: - yyg->yy_c_buf_p = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; - - yy_current_state = yy_get_previous_state(yyscanner); - - yy_cp = yyg->yy_c_buf_p; - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - goto yy_find_action; - } - break; - } - - default: - YY_FATAL_ERROR("fatal flex scanner internal error--no action found"); - } /* end of action switch */ - } /* end of scanning one token */ - } /* end of user's declarations */ + yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; + + yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else + { + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = + yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_match; + + case EOB_ACT_LAST_MATCH: + yyg->yy_c_buf_p = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR( + "fatal flex scanner internal error--no action found" ); + } /* end of action switch */ + } /* end of scanning one token */ + } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer @@ -2907,142 +3508,171 @@ YY_DECL { * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ -static int yy_get_next_buffer(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - char* dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; - char* source = yyg->yytext_ptr; - int number_to_move, i; - int ret_val; - - if (yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1]) - YY_FATAL_ERROR("fatal flex scanner internal error--end of buffer missed"); - - if (YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0) { /* Don't try to fill the buffer, so this is an EOF. */ - if (yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1) { - /* We matched a single character, the EOB, so +static int yy_get_next_buffer (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char *source = yyg->yytext_ptr; + int number_to_move, i; + int ret_val; + + if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) + YY_FATAL_ERROR( + "fatal flex scanner internal error--end of buffer missed" ); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) + { /* Don't try to fill the buffer, so this is an EOF. */ + if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) + { + /* We matched a single character, the EOB, so * treat this as a final EOF. */ - return EOB_ACT_END_OF_FILE; - } + return EOB_ACT_END_OF_FILE; + } - else { - /* We matched some text prior to the EOB, first + else + { + /* We matched some text prior to the EOB, first * process it. */ - return EOB_ACT_LAST_MATCH; - } - } + return EOB_ACT_LAST_MATCH; + } + } - /* Try to read more data. */ + /* Try to read more data. */ - /* First move last chars to start of buffer. */ - number_to_move = (int)(yyg->yy_c_buf_p - yyg->yytext_ptr - 1); + /* First move last chars to start of buffer. */ + number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1); - for (i = 0; i < number_to_move; ++i) *(dest++) = *(source++); + for ( i = 0; i < number_to_move; ++i ) + *(dest++) = *(source++); - if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING) - /* don't do the read, it's not guaranteed to return an EOF, + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) + /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; - - else { - int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; - - while (num_to_read <= 0) { /* Not enough room in the buffer - grow it. */ - - /* just a shorter name for the current buffer */ - YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; - - int yy_c_buf_p_offset = (int)(yyg->yy_c_buf_p - b->yy_ch_buf); - - if (b->yy_is_our_buffer) { - int new_size = b->yy_buf_size * 2; - - if (new_size <= 0) - b->yy_buf_size += b->yy_buf_size / 8; - else - b->yy_buf_size *= 2; - - b->yy_ch_buf = (char*) - /* Include room in for 2 EOB chars. */ - yyrealloc((void*)b->yy_ch_buf, (yy_size_t)(b->yy_buf_size + 2), yyscanner); - } else - /* Can't grow it, we don't own it. */ - b->yy_ch_buf = NULL; - - if (!b->yy_ch_buf) YY_FATAL_ERROR("fatal error - scanner input buffer overflow"); - - yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; - - num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; - } - - if (num_to_read > YY_READ_BUF_SIZE) num_to_read = YY_READ_BUF_SIZE; - - /* Read in more data. */ - YY_INPUT((&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), yyg->yy_n_chars, num_to_read); - - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - if (yyg->yy_n_chars == 0) { - if (number_to_move == YY_MORE_ADJ) { - ret_val = EOB_ACT_END_OF_FILE; - yyrestart(yyin, yyscanner); - } - - else { - ret_val = EOB_ACT_LAST_MATCH; - YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; - } - } - - else - ret_val = EOB_ACT_CONTINUE_SCAN; - - if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { - /* Extend the array by 50%, plus the number we really need. */ - int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = - (char*)yyrealloc((void*)YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t)new_size, yyscanner); - if (!YY_CURRENT_BUFFER_LVALUE->yy_ch_buf) YY_FATAL_ERROR("out of dynamic memory in yy_get_next_buffer()"); - /* "- 2" to take care of EOB's */ - YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int)(new_size - 2); - } - - yyg->yy_n_chars += number_to_move; - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; - - yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; - - return ret_val; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; + + else + { + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + + while ( num_to_read <= 0 ) + { /* Not enough room in the buffer - grow it. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; + + int yy_c_buf_p_offset = + (int) (yyg->yy_c_buf_p - b->yy_ch_buf); + + if ( b->yy_is_our_buffer ) + { + int new_size = b->yy_buf_size * 2; + + if ( new_size <= 0 ) + b->yy_buf_size += b->yy_buf_size / 8; + else + b->yy_buf_size *= 2; + + b->yy_ch_buf = (char *) + /* Include room in for 2 EOB chars. */ + yyrealloc( (void *) b->yy_ch_buf, + (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); + } + else + /* Can't grow it, we don't own it. */ + b->yy_ch_buf = NULL; + + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( + "fatal error - scanner input buffer overflow" ); + + yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - + number_to_move - 1; + + } + + if ( num_to_read > YY_READ_BUF_SIZE ) + num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + yyg->yy_n_chars, num_to_read ); + + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + if ( yyg->yy_n_chars == 0 ) + { + if ( number_to_move == YY_MORE_ADJ ) + { + ret_val = EOB_ACT_END_OF_FILE; + yyrestart( yyin , yyscanner); + } + + else + { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = + YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( + (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + /* "- 2" to take care of EOB's */ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); + } + + yyg->yy_n_chars += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + + yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; + + return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ -static yy_state_type yy_get_previous_state(yyscan_t yyscanner) { - yy_state_type yy_current_state; - char* yy_cp; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - yy_current_state = yyg->yy_start; - - for (yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp) { - YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); - if (yy_accept[yy_current_state]) { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { - yy_current_state = (int)yy_def[yy_current_state]; - if (yy_current_state >= 1184) yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - } - - return yy_current_state; + static yy_state_type yy_get_previous_state (yyscan_t yyscanner) +{ + yy_state_type yy_current_state; + char *yy_cp; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yy_current_state = yyg->yy_start; + + for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) + { + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1192 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + } + + return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character @@ -3050,25 +3680,29 @@ static yy_state_type yy_get_previous_state(yyscan_t yyscanner) { * synopsis * next_state = yy_try_NUL_trans( current_state ); */ -static yy_state_type yy_try_NUL_trans(yy_state_type yy_current_state, yyscan_t yyscanner) { - int yy_is_jam; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ - char* yy_cp = yyg->yy_c_buf_p; - - YY_CHAR yy_c = 1; - if (yy_accept[yy_current_state]) { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { - yy_current_state = (int)yy_def[yy_current_state]; - if (yy_current_state >= 1184) yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - yy_is_jam = (yy_current_state == 1183); - - (void)yyg; - return yy_is_jam ? 0 : yy_current_state; + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) +{ + int yy_is_jam; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ + char *yy_cp = yyg->yy_c_buf_p; + + YY_CHAR yy_c = 1; + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1192 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_is_jam = (yy_current_state == 1191); + + (void)yyg; + return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT @@ -3077,32 +3711,36 @@ static yy_state_type yy_try_NUL_trans(yy_state_type yy_current_state, yyscan_t y #ifndef YY_NO_INPUT #ifdef __cplusplus -static int yyinput(yyscan_t yyscanner) + static int yyinput (yyscan_t yyscanner) #else -static int input(yyscan_t yyscanner) + static int input (yyscan_t yyscanner) #endif { - int c; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + int c; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - *yyg->yy_c_buf_p = yyg->yy_hold_char; + *yyg->yy_c_buf_p = yyg->yy_hold_char; - if (*yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR) { - /* yy_c_buf_p now points to the character we want to return. + if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) + { + /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ - if (yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]) /* This was really a NUL. */ - *yyg->yy_c_buf_p = '\0'; - - else { /* need more input */ - int offset = (int)(yyg->yy_c_buf_p - yyg->yytext_ptr); - ++yyg->yy_c_buf_p; - - switch (yy_get_next_buffer(yyscanner)) { - case EOB_ACT_LAST_MATCH: - /* This happens because yy_g_n_b() + if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + /* This was really a NUL. */ + *yyg->yy_c_buf_p = '\0'; + + else + { /* need more input */ + int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr); + ++yyg->yy_c_buf_p; + + switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_LAST_MATCH: + /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before @@ -3112,93 +3750,102 @@ static int input(yyscan_t yyscanner) * to EOB_ACT_END_OF_FILE. */ - /* Reset buffer status. */ - yyrestart(yyin, yyscanner); + /* Reset buffer status. */ + yyrestart( yyin , yyscanner); - /*FALLTHROUGH*/ + /*FALLTHROUGH*/ - case EOB_ACT_END_OF_FILE: { - if (yywrap(yyscanner)) return 0; + case EOB_ACT_END_OF_FILE: + { + if ( yywrap( yyscanner ) ) + return 0; - if (!yyg->yy_did_buffer_switch_on_eof) YY_NEW_FILE; + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; #ifdef __cplusplus - return yyinput(yyscanner); + return yyinput(yyscanner); #else - return input(yyscanner); + return input(yyscanner); #endif - } + } - case EOB_ACT_CONTINUE_SCAN: - yyg->yy_c_buf_p = yyg->yytext_ptr + offset; - break; - } - } - } + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = yyg->yytext_ptr + offset; + break; + } + } + } - c = *(unsigned char*)yyg->yy_c_buf_p; /* cast for 8-bit char's */ - *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ - yyg->yy_hold_char = *++yyg->yy_c_buf_p; + c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ + *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ + yyg->yy_hold_char = *++yyg->yy_c_buf_p; - return c; + return c; } -#endif /* ifndef YY_NO_INPUT */ +#endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ -void yyrestart(FILE* input_file, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + void yyrestart (FILE * input_file , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if (!YY_CURRENT_BUFFER) { - yyensure_buffer_stack(yyscanner); - YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); - } + if ( ! YY_CURRENT_BUFFER ){ + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } - yy_init_buffer(YY_CURRENT_BUFFER, input_file, yyscanner); - yy_load_buffer_state(yyscanner); + yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); + yy_load_buffer_state( yyscanner ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ -void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - /* TODO. We should be able to replace this entire function body + /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ - yyensure_buffer_stack(yyscanner); - if (YY_CURRENT_BUFFER == new_buffer) return; - - if (YY_CURRENT_BUFFER) { - /* Flush out information for old buffer. */ - *yyg->yy_c_buf_p = yyg->yy_hold_char; - YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - YY_CURRENT_BUFFER_LVALUE = new_buffer; - yy_load_buffer_state(yyscanner); - - /* We don't actually know whether we did this switch during + yyensure_buffer_stack (yyscanner); + if ( YY_CURRENT_BUFFER == new_buffer ) + return; + + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state( yyscanner ); + + /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ - yyg->yy_did_buffer_switch_on_eof = 1; + yyg->yy_did_buffer_switch_on_eof = 1; } -static void yy_load_buffer_state(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; - yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; - yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; - yyg->yy_hold_char = *yyg->yy_c_buf_p; +static void yy_load_buffer_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; + yyg->yy_hold_char = *yyg->yy_c_buf_p; } /** Allocate and initialize an input buffer state. @@ -3207,96 +3854,105 @@ static void yy_load_buffer_state(yyscan_t yyscanner) { * @param yyscanner The scanner object. * @return the allocated buffer state. */ -YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner) { - YY_BUFFER_STATE b; - - b = (YY_BUFFER_STATE)yyalloc(sizeof(struct yy_buffer_state), yyscanner); - if (!b) YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()"); + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); - b->yy_buf_size = size; + b->yy_buf_size = size; - /* yy_ch_buf has to be 2 characters longer than the size given because + /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ - b->yy_ch_buf = (char*)yyalloc((yy_size_t)(b->yy_buf_size + 2), yyscanner); - if (!b->yy_ch_buf) YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()"); + b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); - b->yy_is_our_buffer = 1; + b->yy_is_our_buffer = 1; - yy_init_buffer(b, file, yyscanner); + yy_init_buffer( b, file , yyscanner); - return b; + return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * @param yyscanner The scanner object. */ -void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if (!b) return; + if ( ! b ) + return; - if (b == YY_CURRENT_BUFFER) /* Not sure if we should pop here. */ - YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE)0; + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; - if (b->yy_is_our_buffer) yyfree((void*)b->yy_ch_buf, yyscanner); + if ( b->yy_is_our_buffer ) + yyfree( (void *) b->yy_ch_buf , yyscanner ); - yyfree((void*)b, yyscanner); + yyfree( (void *) b , yyscanner ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ -static void yy_init_buffer(YY_BUFFER_STATE b, FILE* file, yyscan_t yyscanner) + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) { - int oerrno = errno; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + int oerrno = errno; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yy_flush_buffer(b, yyscanner); + yy_flush_buffer( b , yyscanner); - b->yy_input_file = file; - b->yy_fill_buffer = 1; + b->yy_input_file = file; + b->yy_fill_buffer = 1; - /* If b is the current buffer, then yy_init_buffer was _probably_ + /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ - if (b != YY_CURRENT_BUFFER) { - b->yy_bs_lineno = 1; - b->yy_bs_column = 0; - } - - b->yy_is_interactive = 0; + if (b != YY_CURRENT_BUFFER){ + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } - errno = oerrno; + b->yy_is_interactive = 0; + + errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * @param yyscanner The scanner object. */ -void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if (!b) return; + void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if ( ! b ) + return; - b->yy_n_chars = 0; + b->yy_n_chars = 0; - /* We always need two end-of-buffer characters. The first causes + /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ - b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; - b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; - b->yy_buf_pos = &b->yy_ch_buf[0]; + b->yy_buf_pos = &b->yy_ch_buf[0]; - b->yy_at_bol = 1; - b->yy_buffer_status = YY_BUFFER_NEW; + b->yy_at_bol = 1; + b->yy_buffer_status = YY_BUFFER_NEW; - if (b == YY_CURRENT_BUFFER) yy_load_buffer_state(yyscanner); + if ( b == YY_CURRENT_BUFFER ) + yy_load_buffer_state( yyscanner ); } /** Pushes the new state onto the stack. The new state becomes @@ -3305,83 +3961,99 @@ void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner) { * @param new_buffer The new state. * @param yyscanner The scanner object. */ -void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if (new_buffer == NULL) return; - - yyensure_buffer_stack(yyscanner); - - /* This block is copied from yy_switch_to_buffer. */ - if (YY_CURRENT_BUFFER) { - /* Flush out information for old buffer. */ - *yyg->yy_c_buf_p = yyg->yy_hold_char; - YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - /* Only push if top exists. Otherwise, replace top. */ - if (YY_CURRENT_BUFFER) yyg->yy_buffer_stack_top++; - YY_CURRENT_BUFFER_LVALUE = new_buffer; - - /* copied from yy_switch_to_buffer. */ - yy_load_buffer_state(yyscanner); - yyg->yy_did_buffer_switch_on_eof = 1; +void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (new_buffer == NULL) + return; + + yyensure_buffer_stack(yyscanner); + + /* This block is copied from yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + yyg->yy_buffer_stack_top++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * @param yyscanner The scanner object. */ -void yypop_buffer_state(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if (!YY_CURRENT_BUFFER) return; - - yy_delete_buffer(YY_CURRENT_BUFFER, yyscanner); - YY_CURRENT_BUFFER_LVALUE = NULL; - if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; - - if (YY_CURRENT_BUFFER) { - yy_load_buffer_state(yyscanner); - yyg->yy_did_buffer_switch_on_eof = 1; - } +void yypop_buffer_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (!YY_CURRENT_BUFFER) + return; + + yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + if (yyg->yy_buffer_stack_top > 0) + --yyg->yy_buffer_stack_top; + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; + } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ -static void yyensure_buffer_stack(yyscan_t yyscanner) { - yy_size_t num_to_alloc; - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; +static void yyensure_buffer_stack (yyscan_t yyscanner) +{ + yy_size_t num_to_alloc; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if (!yyg->yy_buffer_stack) { - /* First allocation is just for 2 elements, since we don't know if this + if (!yyg->yy_buffer_stack) { + + /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ - num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ - yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc(num_to_alloc * sizeof(struct yy_buffer_state*), yyscanner); - if (!yyg->yy_buffer_stack) YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()"); - - memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); - - yyg->yy_buffer_stack_max = num_to_alloc; - yyg->yy_buffer_stack_top = 0; - return; - } - - if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1) { - /* Increase the buffer to prepare for a possible push. */ - yy_size_t grow_size = 8 /* arbitrary grow size */; - - num_to_alloc = yyg->yy_buffer_stack_max + grow_size; - yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc( - yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*), yyscanner); - if (!yyg->yy_buffer_stack) YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()"); - - /* zero only the new slots.*/ - memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); - yyg->yy_buffer_stack_max = num_to_alloc; - } + num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + yyg->yy_buffer_stack_max = num_to_alloc; + yyg->yy_buffer_stack_top = 0; + return; + } + + if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + yy_size_t grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = yyg->yy_buffer_stack_max + grow_size; + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc + (yyg->yy_buffer_stack, + num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); + yyg->yy_buffer_stack_max = num_to_alloc; + } } /** Setup the input buffer state to scan directly from a user-specified character buffer. @@ -3390,29 +4062,33 @@ static void yyensure_buffer_stack(yyscan_t yyscanner) { * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner) { - YY_BUFFER_STATE b; - - if (size < 2 || base[size - 2] != YY_END_OF_BUFFER_CHAR || base[size - 1] != YY_END_OF_BUFFER_CHAR) - /* They forgot to leave room for the EOB's. */ - return NULL; - - b = (YY_BUFFER_STATE)yyalloc(sizeof(struct yy_buffer_state), yyscanner); - if (!b) YY_FATAL_ERROR("out of dynamic memory in yy_scan_buffer()"); - - b->yy_buf_size = (int)(size - 2); /* "- 2" to take care of EOB's */ - b->yy_buf_pos = b->yy_ch_buf = base; - b->yy_is_our_buffer = 0; - b->yy_input_file = NULL; - b->yy_n_chars = b->yy_buf_size; - b->yy_is_interactive = 0; - b->yy_at_bol = 1; - b->yy_fill_buffer = 0; - b->yy_buffer_status = YY_BUFFER_NEW; - - yy_switch_to_buffer(b, yyscanner); - - return b; +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + + if ( size < 2 || + base[size-2] != YY_END_OF_BUFFER_CHAR || + base[size-1] != YY_END_OF_BUFFER_CHAR ) + /* They forgot to leave room for the EOB's. */ + return NULL; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); + + b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_pos = b->yy_ch_buf = base; + b->yy_is_our_buffer = 0; + b->yy_input_file = NULL; + b->yy_n_chars = b->yy_buf_size; + b->yy_is_interactive = 0; + b->yy_at_bol = 1; + b->yy_fill_buffer = 0; + b->yy_buffer_status = YY_BUFFER_NEW; + + yy_switch_to_buffer( b , yyscanner ); + + return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will @@ -3423,8 +4099,10 @@ YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner) { * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ -YY_BUFFER_STATE yy_scan_string(const char* yystr, yyscan_t yyscanner) { - return yy_scan_bytes(yystr, (int)strlen(yystr), yyscanner); +YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) +{ + + return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will @@ -3434,156 +4112,177 @@ YY_BUFFER_STATE yy_scan_string(const char* yystr, yyscan_t yyscanner) { * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE yy_scan_bytes(const char* yybytes, int _yybytes_len, yyscan_t yyscanner) { - YY_BUFFER_STATE b; - char* buf; - yy_size_t n; - int i; - - /* Get memory for full buffer, including space for trailing EOB's. */ - n = (yy_size_t)(_yybytes_len + 2); - buf = (char*)yyalloc(n, yyscanner); - if (!buf) YY_FATAL_ERROR("out of dynamic memory in yy_scan_bytes()"); - - for (i = 0; i < _yybytes_len; ++i) buf[i] = yybytes[i]; - - buf[_yybytes_len] = buf[_yybytes_len + 1] = YY_END_OF_BUFFER_CHAR; - - b = yy_scan_buffer(buf, n, yyscanner); - if (!b) YY_FATAL_ERROR("bad buffer in yy_scan_bytes()"); - - /* It's okay to grow etc. this buffer, and we should throw it +YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + char *buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = (yy_size_t) (_yybytes_len + 2); + buf = (char *) yyalloc( n , yyscanner ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); + + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; + + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; + + b = yy_scan_buffer( buf, n , yyscanner); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); + + /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ - b->yy_is_our_buffer = 1; + b->yy_is_our_buffer = 1; - return b; + return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif -static void yynoreturn yy_fatal_error(const char* msg, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - fprintf(stderr, "%s\n", msg); - exit(YY_EXIT_FAILURE); +static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless -#define yyless(n) \ - do { \ - /* Undo effects of setting up yytext. */ \ - int yyless_macro_arg = (n); \ - YY_LESS_LINENO(yyless_macro_arg); \ - yytext[yyleng] = yyg->yy_hold_char; \ - yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ - yyg->yy_hold_char = *yyg->yy_c_buf_p; \ - *yyg->yy_c_buf_p = '\0'; \ - yyleng = yyless_macro_arg; \ - } while (0) +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + yytext[yyleng] = yyg->yy_hold_char; \ + yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ + yyg->yy_hold_char = *yyg->yy_c_buf_p; \ + *yyg->yy_c_buf_p = '\0'; \ + yyleng = yyless_macro_arg; \ + } \ + while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ -YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yyextra; +YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyextra; } /** Get the current line number. * @param yyscanner The scanner object. */ -int yyget_lineno(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - if (!YY_CURRENT_BUFFER) return 0; +int yyget_lineno (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yylineno; + if (! YY_CURRENT_BUFFER) + return 0; + + return yylineno; } /** Get the current column number. * @param yyscanner The scanner object. */ -int yyget_column(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - if (!YY_CURRENT_BUFFER) return 0; +int yyget_column (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yycolumn; + if (! YY_CURRENT_BUFFER) + return 0; + + return yycolumn; } /** Get the input stream. * @param yyscanner The scanner object. */ -FILE* yyget_in(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yyin; +FILE *yyget_in (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyin; } /** Get the output stream. * @param yyscanner The scanner object. */ -FILE* yyget_out(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yyout; +FILE *yyget_out (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyout; } /** Get the length of the current token. * @param yyscanner The scanner object. */ -int yyget_leng(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yyleng; +int yyget_leng (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyleng; } /** Get the current token. * @param yyscanner The scanner object. */ -char* yyget_text(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yytext; +char *yyget_text (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yytext; } /** Set the user-defined data. This data is never touched by the scanner. * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ -void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yyextra = user_defined; +void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyextra = user_defined ; } /** Set the current line number. * @param _line_number line number * @param yyscanner The scanner object. */ -void yyset_lineno(int _line_number, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - /* lineno is only valid if an input buffer exists. */ - if (!YY_CURRENT_BUFFER) YY_FATAL_ERROR("yyset_lineno called with no buffer"); +void yyset_lineno (int _line_number , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yylineno = _line_number; + /* lineno is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); + + yylineno = _line_number; } /** Set the current column. * @param _column_no column number * @param yyscanner The scanner object. */ -void yyset_column(int _column_no, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - /* column is only valid if an input buffer exists. */ - if (!YY_CURRENT_BUFFER) YY_FATAL_ERROR("yyset_column called with no buffer"); +void yyset_column (int _column_no , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yycolumn = _column_no; + /* column is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_column called with no buffer" ); + + yycolumn = _column_no; } /** Set the input stream. This does not discard the current @@ -3592,71 +4291,80 @@ void yyset_column(int _column_no, yyscan_t yyscanner) { * @param yyscanner The scanner object. * @see yy_switch_to_buffer */ -void yyset_in(FILE* _in_str, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yyin = _in_str; +void yyset_in (FILE * _in_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyin = _in_str ; } -void yyset_out(FILE* _out_str, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yyout = _out_str; +void yyset_out (FILE * _out_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyout = _out_str ; } -int yyget_debug(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yy_flex_debug; +int yyget_debug (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yy_flex_debug; } -void yyset_debug(int _bdebug, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yy_flex_debug = _bdebug; +void yyset_debug (int _bdebug , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yy_flex_debug = _bdebug ; } /* Accessor methods for yylval and yylloc */ -YYSTYPE* yyget_lval(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yylval; +YYSTYPE * yyget_lval (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yylval; } -void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yylval = yylval_param; +void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yylval = yylval_param; } -YYLTYPE* yyget_lloc(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - return yylloc; +YYLTYPE *yyget_lloc (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yylloc; } - -void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yylloc = yylloc_param; + +void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yylloc = yylloc_param; } - + /* User-visible API */ /* yylex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ -int yylex_init(yyscan_t* ptr_yy_globals) { - if (ptr_yy_globals == NULL) { - errno = EINVAL; - return 1; - } +int yylex_init(yyscan_t* ptr_yy_globals) +{ + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } - *ptr_yy_globals = (yyscan_t)yyalloc(sizeof(struct yyguts_t), NULL); + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); - if (*ptr_yy_globals == NULL) { - errno = ENOMEM; - return 1; - } + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } - /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ - memset(*ptr_yy_globals, 0x00, sizeof(struct yyguts_t)); + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); - return yy_init_globals(*ptr_yy_globals); + return yy_init_globals ( *ptr_yy_globals ); } /* yylex_init_extra has the same functionality as yylex_init, but follows the @@ -3666,91 +4374,94 @@ int yylex_init(yyscan_t* ptr_yy_globals) { * The user defined value in the first argument will be available to yyalloc in * the yyextra field. */ -int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals) { - struct yyguts_t dummy_yyguts; +int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals ) +{ + struct yyguts_t dummy_yyguts; - yyset_extra(yy_user_defined, &dummy_yyguts); + yyset_extra (yy_user_defined, &dummy_yyguts); - if (ptr_yy_globals == NULL) { - errno = EINVAL; - return 1; - } + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } - *ptr_yy_globals = (yyscan_t)yyalloc(sizeof(struct yyguts_t), &dummy_yyguts); + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); - if (*ptr_yy_globals == NULL) { - errno = ENOMEM; - return 1; - } + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } - /* By setting to 0xAA, we expose bugs in + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ - memset(*ptr_yy_globals, 0x00, sizeof(struct yyguts_t)); + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); - yyset_extra(yy_user_defined, *ptr_yy_globals); + yyset_extra (yy_user_defined, *ptr_yy_globals); - return yy_init_globals(*ptr_yy_globals); + return yy_init_globals ( *ptr_yy_globals ); } -static int yy_init_globals(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - /* Initialization is the same as for the non-reentrant scanner. +static int yy_init_globals (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ - yyg->yy_buffer_stack = NULL; - yyg->yy_buffer_stack_top = 0; - yyg->yy_buffer_stack_max = 0; - yyg->yy_c_buf_p = NULL; - yyg->yy_init = 0; - yyg->yy_start = 0; + yyg->yy_buffer_stack = NULL; + yyg->yy_buffer_stack_top = 0; + yyg->yy_buffer_stack_max = 0; + yyg->yy_c_buf_p = NULL; + yyg->yy_init = 0; + yyg->yy_start = 0; - yyg->yy_start_stack_ptr = 0; - yyg->yy_start_stack_depth = 0; - yyg->yy_start_stack = NULL; + yyg->yy_start_stack_ptr = 0; + yyg->yy_start_stack_depth = 0; + yyg->yy_start_stack = NULL; /* Defined in main.c */ #ifdef YY_STDINIT - yyin = stdin; - yyout = stdout; + yyin = stdin; + yyout = stdout; #else - yyin = NULL; - yyout = NULL; + yyin = NULL; + yyout = NULL; #endif - /* For future reference: Set errno on error, since we are called by + /* For future reference: Set errno on error, since we are called by * yylex_init() */ - return 0; + return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ -int yylex_destroy(yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - - /* Pop the buffer stack, destroying each element. */ - while (YY_CURRENT_BUFFER) { - yy_delete_buffer(YY_CURRENT_BUFFER, yyscanner); - YY_CURRENT_BUFFER_LVALUE = NULL; - yypop_buffer_state(yyscanner); - } +int yylex_destroy (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(yyscanner); + } - /* Destroy the stack itself. */ - yyfree(yyg->yy_buffer_stack, yyscanner); - yyg->yy_buffer_stack = NULL; + /* Destroy the stack itself. */ + yyfree(yyg->yy_buffer_stack , yyscanner); + yyg->yy_buffer_stack = NULL; - /* Destroy the start condition stack. */ - yyfree(yyg->yy_start_stack, yyscanner); - yyg->yy_start_stack = NULL; + /* Destroy the start condition stack. */ + yyfree( yyg->yy_start_stack , yyscanner ); + yyg->yy_start_stack = NULL; - /* Reset the globals. This is important in a non-reentrant scanner so the next time + /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ - yy_init_globals(yyscanner); + yy_init_globals( yyscanner); - /* Destroy the main struct (reentrant only). */ - yyfree(yyscanner, yyscanner); - yyscanner = NULL; - return 0; + /* Destroy the main struct (reentrant only). */ + yyfree ( yyscanner , yyscanner ); + yyscanner = NULL; + return 0; } /* @@ -3758,49 +4469,55 @@ int yylex_destroy(yyscan_t yyscanner) { */ #ifndef yytext_ptr -static void yy_flex_strncpy(char* s1, const char* s2, int n, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - (void)yyg; +static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; - int i; - for (i = 0; i < n; ++i) s1[i] = s2[i]; + int i; + for ( i = 0; i < n; ++i ) + s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen(const char* s, yyscan_t yyscanner) { - int n; - for (n = 0; s[n]; ++n) - ; +static int yy_flex_strlen (const char * s , yyscan_t yyscanner) +{ + int n; + for ( n = 0; s[n]; ++n ) + ; - return n; + return n; } #endif -void* yyalloc(yy_size_t size, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - return malloc(size); +void *yyalloc (yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + return malloc(size); } -void* yyrealloc(void* ptr, yy_size_t size, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - (void)yyg; +void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; - /* The cast to (char *) in the following accommodates both + /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ - return realloc(ptr, size); + return realloc(ptr, size); } -void yyfree(void* ptr, yyscan_t yyscanner) { - struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - free((char*)ptr); /* see yyrealloc() for (char *) cast */ +void yyfree (void * ptr , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" @@ -3811,7 +4528,7 @@ void yyfree(void* ptr, yyscan_t yyscanner) { ** Section 3: User code ***************************/ -int yyerror(const char* msg) { - fprintf(stderr, "[SQL-Lexer-Error] %s\n", msg); - return 0; +int yyerror(const char *msg) { + fprintf(stderr, "[SQL-Lexer-Error] %s\n",msg); return 0; } + diff --git a/src/parser/flex_lexer.h b/src/parser/flex_lexer.h index a8f8345e..16f05f26 100644 --- a/src/parser/flex_lexer.h +++ b/src/parser/flex_lexer.h @@ -6,7 +6,7 @@ #line 7 "flex_lexer.h" -#define YY_INT_ALIGNED short int +#define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ @@ -255,10 +255,10 @@ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ -#include #include -#include #include +#include +#include /* end standard C headers. */ @@ -269,7 +269,7 @@ /* C99 systems have . Non-C99 systems may or may not. */ -#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. @@ -289,41 +289,41 @@ typedef uint32_t flex_uint32_t; typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; -typedef unsigned char flex_uint8_t; +typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN -#define INT8_MIN (-128) +#define INT8_MIN (-128) #endif #ifndef INT16_MIN -#define INT16_MIN (-32767 - 1) +#define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN -#define INT32_MIN (-2147483647 - 1) +#define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX -#define INT8_MAX (127) +#define INT8_MAX (127) #endif #ifndef INT16_MAX -#define INT16_MAX (32767) +#define INT16_MAX (32767) #endif #ifndef INT32_MAX -#define INT32_MAX (2147483647) +#define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX -#define UINT8_MAX (255U) +#define UINT8_MAX (255U) #endif #ifndef UINT16_MAX -#define UINT16_MAX (65535U) +#define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX -#define UINT32_MAX (4294967295U) +#define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX -#define SIZE_MAX (~(size_t)0) +#define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ @@ -373,7 +373,7 @@ typedef void* yyscan_t; #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE -typedef struct yy_buffer_state* YY_BUFFER_STATE; +typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T @@ -383,72 +383,74 @@ typedef size_t yy_size_t; #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE -struct yy_buffer_state { - FILE* yy_input_file; +struct yy_buffer_state + { + FILE *yy_input_file; - char* yy_ch_buf; /* input buffer */ - char* yy_buf_pos; /* current position in input buffer */ + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ - /* Size of input buffer in bytes, not including room for EOB + /* Size of input buffer in bytes, not including room for EOB * characters. */ - int yy_buf_size; + int yy_buf_size; - /* Number of characters read into yy_ch_buf, not including EOB + /* Number of characters read into yy_ch_buf, not including EOB * characters. */ - int yy_n_chars; + int yy_n_chars; - /* Whether we "own" the buffer - i.e., we know we created it, + /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ - int yy_is_our_buffer; + int yy_is_our_buffer; - /* Whether this is an "interactive" input source; if so, and + /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ - int yy_is_interactive; + int yy_is_interactive; - /* Whether we're considered to be at the beginning of a line. + /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ - int yy_at_bol; + int yy_at_bol; - int yy_bs_lineno; /**< The line count. */ - int yy_bs_column; /**< The column count. */ + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ - /* Whether to try to fill the input buffer when we reach the + /* Whether to try to fill the input buffer when we reach the * end of it. */ - int yy_fill_buffer; + int yy_fill_buffer; - int yy_buffer_status; -}; + int yy_buffer_status; + + }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ -void yyrestart(FILE* input_file, yyscan_t yyscanner); -void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); -YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner); -void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); -void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); -void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); -void yypop_buffer_state(yyscan_t yyscanner); +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); -YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner); -YY_BUFFER_STATE yy_scan_string(const char* yy_str, yyscan_t yyscanner); -YY_BUFFER_STATE yy_scan_bytes(const char* bytes, int len, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); -void* yyalloc(yy_size_t, yyscan_t yyscanner); -void* yyrealloc(void*, yy_size_t, yyscan_t yyscanner); -void yyfree(void*, yyscan_t yyscanner); +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); /* Begin user sect3 */ -#define hsql_wrap(yyscanner) (/*CONSTCOND*/ 1) +#define hsql_wrap(yyscanner) (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP #define yytext_ptr yytext_r @@ -469,72 +471,72 @@ void yyfree(void*, yyscan_t yyscanner); #endif #ifndef YY_EXTRA_TYPE -#define YY_EXTRA_TYPE void* +#define YY_EXTRA_TYPE void * #endif -int yylex_init(yyscan_t* scanner); +int yylex_init (yyscan_t* scanner); -int yylex_init_extra(YY_EXTRA_TYPE user_defined, yyscan_t* scanner); +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int yylex_destroy(yyscan_t yyscanner); - -int yyget_debug(yyscan_t yyscanner); +int yylex_destroy ( yyscan_t yyscanner ); -void yyset_debug(int debug_flag, yyscan_t yyscanner); +int yyget_debug ( yyscan_t yyscanner ); -YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner); +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); -void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner); +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); -FILE* yyget_in(yyscan_t yyscanner); +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); -void yyset_in(FILE* _in_str, yyscan_t yyscanner); +FILE *yyget_in ( yyscan_t yyscanner ); -FILE* yyget_out(yyscan_t yyscanner); +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); -void yyset_out(FILE* _out_str, yyscan_t yyscanner); +FILE *yyget_out ( yyscan_t yyscanner ); -int yyget_leng(yyscan_t yyscanner); +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); -char* yyget_text(yyscan_t yyscanner); + int yyget_leng ( yyscan_t yyscanner ); -int yyget_lineno(yyscan_t yyscanner); +char *yyget_text ( yyscan_t yyscanner ); -void yyset_lineno(int _line_number, yyscan_t yyscanner); +int yyget_lineno ( yyscan_t yyscanner ); -int yyget_column(yyscan_t yyscanner); +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); -void yyset_column(int _column_no, yyscan_t yyscanner); +int yyget_column ( yyscan_t yyscanner ); -YYSTYPE* yyget_lval(yyscan_t yyscanner); +void yyset_column ( int _column_no , yyscan_t yyscanner ); -void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner); +YYSTYPE * yyget_lval ( yyscan_t yyscanner ); -YYLTYPE* yyget_lloc(yyscan_t yyscanner); - -void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner); +void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner ); + YYLTYPE *yyget_lloc ( yyscan_t yyscanner ); + + void yyset_lloc ( YYLTYPE * yylloc_param , yyscan_t yyscanner ); + /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap(yyscan_t yyscanner); +extern "C" int yywrap ( yyscan_t yyscanner ); #else -extern int yywrap(yyscan_t yyscanner); +extern int yywrap ( yyscan_t yyscanner ); #endif #endif #ifndef yytext_ptr -static void yy_flex_strncpy(char*, const char*, int, yyscan_t yyscanner); +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen(const char*, yyscan_t yyscanner); +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT @@ -562,9 +564,11 @@ static int yy_flex_strlen(const char*, yyscan_t yyscanner); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner); +extern int yylex \ + (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner); -#define YY_DECL int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner) +#define YY_DECL int yylex \ + (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) #endif /* !YY_DECL */ /* yy_get_previous_state - get the state just before the EOB char was reached */ @@ -728,6 +732,7 @@ extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanne #line 269 "flex_lexer.l" + #line 736 "flex_lexer.h" #undef hsql_IN_HEADER #endif /* hsql_HEADER_H */ diff --git a/src/parser/flex_lexer.l b/src/parser/flex_lexer.l index e0d0187e..5eda8a86 100644 --- a/src/parser/flex_lexer.l +++ b/src/parser/flex_lexer.l @@ -87,8 +87,6 @@ PRIMARY TOKEN(PRIMARY) SCHEMAS TOKEN(SCHEMAS) SPATIAL TOKEN(SPATIAL) VARCHAR TOKEN(VARCHAR) -CHARACTER TOKEN(CHARACTER) -VARYING TOKEN(VARYING) TIME TOKEN(TIME) DECIMAL TOKEN(DECIMAL) REAL TOKEN(REAL) @@ -211,6 +209,8 @@ ROLLBACK TOKEN(ROLLBACK) COMMIT TOKEN(COMMIT) INTERVAL TOKEN(INTERVAL) +CHARACTER[ \t]+VARYING TOKEN(CHARACTER_VARYING) + /* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ "==" TOKEN(EQUALS) "!=" TOKEN(NOTEQUALS) diff --git a/test/queries/queries-good.sql b/test/queries/queries-good.sql index 85674d13..c960e27e 100755 --- a/test/queries/queries-good.sql +++ b/test/queries/queries-good.sql @@ -29,6 +29,7 @@ CREATE TABLE students (name TEXT, student_number INTEGER, city TEXT, grade DOUBL CREATE TABLE students (name TEXT, student_number INTEGER NOT NULL, city TEXT, grade DOUBLE PRIMARY KEY UNIQUE) CREATE TABLE teachers (name VARCHAR(30), student_number LONG, city CHAR(10), grade FLOAT) CREATE TABLE teachers (name VARCHAR(30), student_number LONG, PRIMARY KEY (name, student_number), city CHAR(10), grade FLOAT) +CREATE TABLE teachers (name CHARACTER VARYING(30)); CREATE TABLE students_2 AS SELECT * FROM students CREATE TABLE students_3 AS SELECT city, grade FROM students WHERE grade > 3.0 # Multiple statements @@ -84,3 +85,4 @@ SELECT * FROM t WHERE a = DATE '2000-01-01' + INTERVAL '30 DAYS'; SELECT * FROM t WHERE a = DATE '2000-01-01' + INTERVAL '10' DAY; SELECT * FROM t WHERE a BETWEEN '2000-01-01' AND DATE '2000-01-01' - 1 MONTH; SELECT (CAST('2002-5-01' as DATE) + INTERVAL '60 days'); +SELECT student.id AS character FROM student; From 3e0bbfcb8143b1e50c7bff4d61e96b624000f7eb Mon Sep 17 00:00:00 2001 From: mweisgut Date: Sat, 15 Jan 2022 09:56:13 +0100 Subject: [PATCH 2/5] trigger ci From 34399db27f5f1eed4e7f6ab2b94026d6b6f11cd1 Mon Sep 17 00:00:00 2001 From: Marcel Weisgut Date: Sun, 16 Jan 2022 00:42:59 +0100 Subject: [PATCH 3/5] Update queries-good.sql --- test/queries/queries-good.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/queries/queries-good.sql b/test/queries/queries-good.sql index c960e27e..f5e4fbc7 100755 --- a/test/queries/queries-good.sql +++ b/test/queries/queries-good.sql @@ -85,4 +85,4 @@ SELECT * FROM t WHERE a = DATE '2000-01-01' + INTERVAL '30 DAYS'; SELECT * FROM t WHERE a = DATE '2000-01-01' + INTERVAL '10' DAY; SELECT * FROM t WHERE a BETWEEN '2000-01-01' AND DATE '2000-01-01' - 1 MONTH; SELECT (CAST('2002-5-01' as DATE) + INTERVAL '60 days'); -SELECT student.id AS character FROM student; +SELECT student.name AS character FROM student; From 63054f60eabfc6de455255d48babe733eb45ad1b Mon Sep 17 00:00:00 2001 From: mweisgut Date: Mon, 17 Jan 2022 11:25:08 +0100 Subject: [PATCH 4/5] formatting --- src/parser/bison_parser.cpp | 40 +- src/parser/bison_parser.h | 386 ++- src/parser/flex_lexer.cpp | 5844 +++++++++++++++-------------------- src/parser/flex_lexer.h | 165 +- 4 files changed, 2853 insertions(+), 3582 deletions(-) diff --git a/src/parser/bison_parser.cpp b/src/parser/bison_parser.cpp index afe15540..442f6af6 100644 --- a/src/parser/bison_parser.cpp +++ b/src/parser/bison_parser.cpp @@ -64,20 +64,20 @@ #define YYPULL 1 /* Substitute the type names. */ -#define YYSTYPE HSQL_STYPE -#define YYLTYPE HSQL_LTYPE +#define YYSTYPE HSQL_STYPE +#define YYLTYPE HSQL_LTYPE /* Substitute the variable and function names. */ -#define yyparse hsql_parse -#define yylex hsql_lex -#define yyerror hsql_error -#define yydebug hsql_debug -#define yynerrs hsql_nerrs +#define yyparse hsql_parse +#define yylex hsql_lex +#define yyerror hsql_error +#define yydebug hsql_debug +#define yynerrs hsql_nerrs /* First part of user prologue. */ #line 2 "bison_parser.y" - // clang-format on - /** +// clang-format on +/** * bison_parser.y * defines bison_parser.h * outputs bison_parser.c @@ -85,7 +85,7 @@ * Grammar File Spec: http://dinosaur.compilertools.net/bison/bison_6.html * */ - /********************************* +/********************************* ** Section 1: C Declarations *********************************/ @@ -95,14 +95,14 @@ #include #include - using namespace hsql; +using namespace hsql; - int yyerror(YYLTYPE * llocp, SQLParserResult * result, yyscan_t scanner, const char* msg) { - result->setIsValid(false); - result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column); - return 0; - } - // clang-format off +int yyerror(YYLTYPE* llocp, SQLParserResult* result, yyscan_t scanner, const char* msg) { + result->setIsValid(false); + result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column); + return 0; +} +// clang-format off #line 108 "bison_parser.cpp" @@ -5346,9 +5346,9 @@ YYLTYPE yylloc = yyloc_default; #line 1205 "bison_parser.y" - // clang-format on - /********************************* +// clang-format on +/********************************* ** Section 4: Additional C code *********************************/ - /* empty */ +/* empty */ diff --git a/src/parser/bison_parser.h b/src/parser/bison_parser.h index 10b50d67..c6be1f95 100644 --- a/src/parser/bison_parser.h +++ b/src/parser/bison_parser.h @@ -36,27 +36,27 @@ private implementation details that can be changed or removed. */ #ifndef YY_HSQL_BISON_PARSER_H_INCLUDED -# define YY_HSQL_BISON_PARSER_H_INCLUDED +#define YY_HSQL_BISON_PARSER_H_INCLUDED /* Debug traces. */ #ifndef HSQL_DEBUG -# if defined YYDEBUG +#if defined YYDEBUG #if YYDEBUG -# define HSQL_DEBUG 1 -# else -# define HSQL_DEBUG 0 -# endif -# else /* ! defined YYDEBUG */ -# define HSQL_DEBUG 0 -# endif /* ! defined YYDEBUG */ -#endif /* ! defined HSQL_DEBUG */ +#define HSQL_DEBUG 1 +#else +#define HSQL_DEBUG 0 +#endif +#else /* ! defined YYDEBUG */ +#define HSQL_DEBUG 0 +#endif /* ! defined YYDEBUG */ +#endif /* ! defined HSQL_DEBUG */ #if HSQL_DEBUG extern int hsql_debug; #endif /* "%code requires" blocks. */ #line 38 "bison_parser.y" - // clang-format on - // %code requires block +// clang-format on +// %code requires block #include "../SQLParserResult.h" #include "../sql/statements.h" @@ -81,181 +81,179 @@ extern int hsql_debug; /* Token kinds. */ #ifndef HSQL_TOKENTYPE -# define HSQL_TOKENTYPE - enum hsql_tokentype - { - SQL_HSQL_EMPTY = -2, - SQL_YYEOF = 0, /* "end of file" */ - SQL_HSQL_error = 256, /* error */ - SQL_HSQL_UNDEF = 257, /* "invalid token" */ - SQL_IDENTIFIER = 258, /* IDENTIFIER */ - SQL_STRING = 259, /* STRING */ - SQL_FLOATVAL = 260, /* FLOATVAL */ - SQL_INTVAL = 261, /* INTVAL */ - SQL_DEALLOCATE = 262, /* DEALLOCATE */ - SQL_PARAMETERS = 263, /* PARAMETERS */ - SQL_INTERSECT = 264, /* INTERSECT */ - SQL_TEMPORARY = 265, /* TEMPORARY */ - SQL_TIMESTAMP = 266, /* TIMESTAMP */ - SQL_DISTINCT = 267, /* DISTINCT */ - SQL_NVARCHAR = 268, /* NVARCHAR */ - SQL_RESTRICT = 269, /* RESTRICT */ - SQL_TRUNCATE = 270, /* TRUNCATE */ - SQL_ANALYZE = 271, /* ANALYZE */ - SQL_BETWEEN = 272, /* BETWEEN */ - SQL_CASCADE = 273, /* CASCADE */ - SQL_COLUMNS = 274, /* COLUMNS */ - SQL_CONTROL = 275, /* CONTROL */ - SQL_DEFAULT = 276, /* DEFAULT */ - SQL_EXECUTE = 277, /* EXECUTE */ - SQL_EXPLAIN = 278, /* EXPLAIN */ - SQL_INTEGER = 279, /* INTEGER */ - SQL_NATURAL = 280, /* NATURAL */ - SQL_PREPARE = 281, /* PREPARE */ - SQL_PRIMARY = 282, /* PRIMARY */ - SQL_SCHEMAS = 283, /* SCHEMAS */ - SQL_CHARACTER_VARYING = 284, /* CHARACTER_VARYING */ - SQL_REAL = 285, /* REAL */ - SQL_DECIMAL = 286, /* DECIMAL */ - SQL_SMALLINT = 287, /* SMALLINT */ - SQL_SPATIAL = 288, /* SPATIAL */ - SQL_VARCHAR = 289, /* VARCHAR */ - SQL_VIRTUAL = 290, /* VIRTUAL */ - SQL_DESCRIBE = 291, /* DESCRIBE */ - SQL_BEFORE = 292, /* BEFORE */ - SQL_COLUMN = 293, /* COLUMN */ - SQL_CREATE = 294, /* CREATE */ - SQL_DELETE = 295, /* DELETE */ - SQL_DIRECT = 296, /* DIRECT */ - SQL_DOUBLE = 297, /* DOUBLE */ - SQL_ESCAPE = 298, /* ESCAPE */ - SQL_EXCEPT = 299, /* EXCEPT */ - SQL_EXISTS = 300, /* EXISTS */ - SQL_EXTRACT = 301, /* EXTRACT */ - SQL_CAST = 302, /* CAST */ - SQL_FORMAT = 303, /* FORMAT */ - SQL_GLOBAL = 304, /* GLOBAL */ - SQL_HAVING = 305, /* HAVING */ - SQL_IMPORT = 306, /* IMPORT */ - SQL_INSERT = 307, /* INSERT */ - SQL_ISNULL = 308, /* ISNULL */ - SQL_OFFSET = 309, /* OFFSET */ - SQL_RENAME = 310, /* RENAME */ - SQL_SCHEMA = 311, /* SCHEMA */ - SQL_SELECT = 312, /* SELECT */ - SQL_SORTED = 313, /* SORTED */ - SQL_TABLES = 314, /* TABLES */ - SQL_UNIQUE = 315, /* UNIQUE */ - SQL_UNLOAD = 316, /* UNLOAD */ - SQL_UPDATE = 317, /* UPDATE */ - SQL_VALUES = 318, /* VALUES */ - SQL_AFTER = 319, /* AFTER */ - SQL_ALTER = 320, /* ALTER */ - SQL_CROSS = 321, /* CROSS */ - SQL_DELTA = 322, /* DELTA */ - SQL_FLOAT = 323, /* FLOAT */ - SQL_GROUP = 324, /* GROUP */ - SQL_INDEX = 325, /* INDEX */ - SQL_INNER = 326, /* INNER */ - SQL_LIMIT = 327, /* LIMIT */ - SQL_LOCAL = 328, /* LOCAL */ - SQL_MERGE = 329, /* MERGE */ - SQL_MINUS = 330, /* MINUS */ - SQL_ORDER = 331, /* ORDER */ - SQL_OUTER = 332, /* OUTER */ - SQL_RIGHT = 333, /* RIGHT */ - SQL_TABLE = 334, /* TABLE */ - SQL_UNION = 335, /* UNION */ - SQL_USING = 336, /* USING */ - SQL_WHERE = 337, /* WHERE */ - SQL_CALL = 338, /* CALL */ - SQL_CASE = 339, /* CASE */ - SQL_CHAR = 340, /* CHAR */ - SQL_COPY = 341, /* COPY */ - SQL_DATE = 342, /* DATE */ - SQL_DATETIME = 343, /* DATETIME */ - SQL_DESC = 344, /* DESC */ - SQL_DROP = 345, /* DROP */ - SQL_ELSE = 346, /* ELSE */ - SQL_FILE = 347, /* FILE */ - SQL_FROM = 348, /* FROM */ - SQL_FULL = 349, /* FULL */ - SQL_HASH = 350, /* HASH */ - SQL_HINT = 351, /* HINT */ - SQL_INTO = 352, /* INTO */ - SQL_JOIN = 353, /* JOIN */ - SQL_LEFT = 354, /* LEFT */ - SQL_LIKE = 355, /* LIKE */ - SQL_LOAD = 356, /* LOAD */ - SQL_LONG = 357, /* LONG */ - SQL_NULL = 358, /* NULL */ - SQL_PLAN = 359, /* PLAN */ - SQL_SHOW = 360, /* SHOW */ - SQL_TEXT = 361, /* TEXT */ - SQL_THEN = 362, /* THEN */ - SQL_TIME = 363, /* TIME */ - SQL_VIEW = 364, /* VIEW */ - SQL_WHEN = 365, /* WHEN */ - SQL_WITH = 366, /* WITH */ - SQL_ADD = 367, /* ADD */ - SQL_ALL = 368, /* ALL */ - SQL_AND = 369, /* AND */ - SQL_ASC = 370, /* ASC */ - SQL_END = 371, /* END */ - SQL_FOR = 372, /* FOR */ - SQL_INT = 373, /* INT */ - SQL_KEY = 374, /* KEY */ - SQL_NOT = 375, /* NOT */ - SQL_OFF = 376, /* OFF */ - SQL_SET = 377, /* SET */ - SQL_TOP = 378, /* TOP */ - SQL_AS = 379, /* AS */ - SQL_BY = 380, /* BY */ - SQL_IF = 381, /* IF */ - SQL_IN = 382, /* IN */ - SQL_IS = 383, /* IS */ - SQL_OF = 384, /* OF */ - SQL_ON = 385, /* ON */ - SQL_OR = 386, /* OR */ - SQL_TO = 387, /* TO */ - SQL_ARRAY = 388, /* ARRAY */ - SQL_CONCAT = 389, /* CONCAT */ - SQL_ILIKE = 390, /* ILIKE */ - SQL_SECOND = 391, /* SECOND */ - SQL_MINUTE = 392, /* MINUTE */ - SQL_HOUR = 393, /* HOUR */ - SQL_DAY = 394, /* DAY */ - SQL_MONTH = 395, /* MONTH */ - SQL_YEAR = 396, /* YEAR */ - SQL_SECONDS = 397, /* SECONDS */ - SQL_MINUTES = 398, /* MINUTES */ - SQL_HOURS = 399, /* HOURS */ - SQL_DAYS = 400, /* DAYS */ - SQL_MONTHS = 401, /* MONTHS */ - SQL_YEARS = 402, /* YEARS */ - SQL_INTERVAL = 403, /* INTERVAL */ - SQL_TRUE = 404, /* TRUE */ - SQL_FALSE = 405, /* FALSE */ - SQL_TRANSACTION = 406, /* TRANSACTION */ - SQL_BEGIN = 407, /* BEGIN */ - SQL_COMMIT = 408, /* COMMIT */ - SQL_ROLLBACK = 409, /* ROLLBACK */ - SQL_EQUALS = 410, /* EQUALS */ - SQL_NOTEQUALS = 411, /* NOTEQUALS */ - SQL_LESS = 412, /* LESS */ - SQL_GREATER = 413, /* GREATER */ - SQL_LESSEQ = 414, /* LESSEQ */ - SQL_GREATEREQ = 415, /* GREATEREQ */ - SQL_NOTNULL = 416, /* NOTNULL */ - SQL_UMINUS = 417 /* UMINUS */ - }; - typedef enum hsql_tokentype hsql_token_kind_t; +#define HSQL_TOKENTYPE +enum hsql_tokentype { + SQL_HSQL_EMPTY = -2, + SQL_YYEOF = 0, /* "end of file" */ + SQL_HSQL_error = 256, /* error */ + SQL_HSQL_UNDEF = 257, /* "invalid token" */ + SQL_IDENTIFIER = 258, /* IDENTIFIER */ + SQL_STRING = 259, /* STRING */ + SQL_FLOATVAL = 260, /* FLOATVAL */ + SQL_INTVAL = 261, /* INTVAL */ + SQL_DEALLOCATE = 262, /* DEALLOCATE */ + SQL_PARAMETERS = 263, /* PARAMETERS */ + SQL_INTERSECT = 264, /* INTERSECT */ + SQL_TEMPORARY = 265, /* TEMPORARY */ + SQL_TIMESTAMP = 266, /* TIMESTAMP */ + SQL_DISTINCT = 267, /* DISTINCT */ + SQL_NVARCHAR = 268, /* NVARCHAR */ + SQL_RESTRICT = 269, /* RESTRICT */ + SQL_TRUNCATE = 270, /* TRUNCATE */ + SQL_ANALYZE = 271, /* ANALYZE */ + SQL_BETWEEN = 272, /* BETWEEN */ + SQL_CASCADE = 273, /* CASCADE */ + SQL_COLUMNS = 274, /* COLUMNS */ + SQL_CONTROL = 275, /* CONTROL */ + SQL_DEFAULT = 276, /* DEFAULT */ + SQL_EXECUTE = 277, /* EXECUTE */ + SQL_EXPLAIN = 278, /* EXPLAIN */ + SQL_INTEGER = 279, /* INTEGER */ + SQL_NATURAL = 280, /* NATURAL */ + SQL_PREPARE = 281, /* PREPARE */ + SQL_PRIMARY = 282, /* PRIMARY */ + SQL_SCHEMAS = 283, /* SCHEMAS */ + SQL_CHARACTER_VARYING = 284, /* CHARACTER_VARYING */ + SQL_REAL = 285, /* REAL */ + SQL_DECIMAL = 286, /* DECIMAL */ + SQL_SMALLINT = 287, /* SMALLINT */ + SQL_SPATIAL = 288, /* SPATIAL */ + SQL_VARCHAR = 289, /* VARCHAR */ + SQL_VIRTUAL = 290, /* VIRTUAL */ + SQL_DESCRIBE = 291, /* DESCRIBE */ + SQL_BEFORE = 292, /* BEFORE */ + SQL_COLUMN = 293, /* COLUMN */ + SQL_CREATE = 294, /* CREATE */ + SQL_DELETE = 295, /* DELETE */ + SQL_DIRECT = 296, /* DIRECT */ + SQL_DOUBLE = 297, /* DOUBLE */ + SQL_ESCAPE = 298, /* ESCAPE */ + SQL_EXCEPT = 299, /* EXCEPT */ + SQL_EXISTS = 300, /* EXISTS */ + SQL_EXTRACT = 301, /* EXTRACT */ + SQL_CAST = 302, /* CAST */ + SQL_FORMAT = 303, /* FORMAT */ + SQL_GLOBAL = 304, /* GLOBAL */ + SQL_HAVING = 305, /* HAVING */ + SQL_IMPORT = 306, /* IMPORT */ + SQL_INSERT = 307, /* INSERT */ + SQL_ISNULL = 308, /* ISNULL */ + SQL_OFFSET = 309, /* OFFSET */ + SQL_RENAME = 310, /* RENAME */ + SQL_SCHEMA = 311, /* SCHEMA */ + SQL_SELECT = 312, /* SELECT */ + SQL_SORTED = 313, /* SORTED */ + SQL_TABLES = 314, /* TABLES */ + SQL_UNIQUE = 315, /* UNIQUE */ + SQL_UNLOAD = 316, /* UNLOAD */ + SQL_UPDATE = 317, /* UPDATE */ + SQL_VALUES = 318, /* VALUES */ + SQL_AFTER = 319, /* AFTER */ + SQL_ALTER = 320, /* ALTER */ + SQL_CROSS = 321, /* CROSS */ + SQL_DELTA = 322, /* DELTA */ + SQL_FLOAT = 323, /* FLOAT */ + SQL_GROUP = 324, /* GROUP */ + SQL_INDEX = 325, /* INDEX */ + SQL_INNER = 326, /* INNER */ + SQL_LIMIT = 327, /* LIMIT */ + SQL_LOCAL = 328, /* LOCAL */ + SQL_MERGE = 329, /* MERGE */ + SQL_MINUS = 330, /* MINUS */ + SQL_ORDER = 331, /* ORDER */ + SQL_OUTER = 332, /* OUTER */ + SQL_RIGHT = 333, /* RIGHT */ + SQL_TABLE = 334, /* TABLE */ + SQL_UNION = 335, /* UNION */ + SQL_USING = 336, /* USING */ + SQL_WHERE = 337, /* WHERE */ + SQL_CALL = 338, /* CALL */ + SQL_CASE = 339, /* CASE */ + SQL_CHAR = 340, /* CHAR */ + SQL_COPY = 341, /* COPY */ + SQL_DATE = 342, /* DATE */ + SQL_DATETIME = 343, /* DATETIME */ + SQL_DESC = 344, /* DESC */ + SQL_DROP = 345, /* DROP */ + SQL_ELSE = 346, /* ELSE */ + SQL_FILE = 347, /* FILE */ + SQL_FROM = 348, /* FROM */ + SQL_FULL = 349, /* FULL */ + SQL_HASH = 350, /* HASH */ + SQL_HINT = 351, /* HINT */ + SQL_INTO = 352, /* INTO */ + SQL_JOIN = 353, /* JOIN */ + SQL_LEFT = 354, /* LEFT */ + SQL_LIKE = 355, /* LIKE */ + SQL_LOAD = 356, /* LOAD */ + SQL_LONG = 357, /* LONG */ + SQL_NULL = 358, /* NULL */ + SQL_PLAN = 359, /* PLAN */ + SQL_SHOW = 360, /* SHOW */ + SQL_TEXT = 361, /* TEXT */ + SQL_THEN = 362, /* THEN */ + SQL_TIME = 363, /* TIME */ + SQL_VIEW = 364, /* VIEW */ + SQL_WHEN = 365, /* WHEN */ + SQL_WITH = 366, /* WITH */ + SQL_ADD = 367, /* ADD */ + SQL_ALL = 368, /* ALL */ + SQL_AND = 369, /* AND */ + SQL_ASC = 370, /* ASC */ + SQL_END = 371, /* END */ + SQL_FOR = 372, /* FOR */ + SQL_INT = 373, /* INT */ + SQL_KEY = 374, /* KEY */ + SQL_NOT = 375, /* NOT */ + SQL_OFF = 376, /* OFF */ + SQL_SET = 377, /* SET */ + SQL_TOP = 378, /* TOP */ + SQL_AS = 379, /* AS */ + SQL_BY = 380, /* BY */ + SQL_IF = 381, /* IF */ + SQL_IN = 382, /* IN */ + SQL_IS = 383, /* IS */ + SQL_OF = 384, /* OF */ + SQL_ON = 385, /* ON */ + SQL_OR = 386, /* OR */ + SQL_TO = 387, /* TO */ + SQL_ARRAY = 388, /* ARRAY */ + SQL_CONCAT = 389, /* CONCAT */ + SQL_ILIKE = 390, /* ILIKE */ + SQL_SECOND = 391, /* SECOND */ + SQL_MINUTE = 392, /* MINUTE */ + SQL_HOUR = 393, /* HOUR */ + SQL_DAY = 394, /* DAY */ + SQL_MONTH = 395, /* MONTH */ + SQL_YEAR = 396, /* YEAR */ + SQL_SECONDS = 397, /* SECONDS */ + SQL_MINUTES = 398, /* MINUTES */ + SQL_HOURS = 399, /* HOURS */ + SQL_DAYS = 400, /* DAYS */ + SQL_MONTHS = 401, /* MONTHS */ + SQL_YEARS = 402, /* YEARS */ + SQL_INTERVAL = 403, /* INTERVAL */ + SQL_TRUE = 404, /* TRUE */ + SQL_FALSE = 405, /* FALSE */ + SQL_TRANSACTION = 406, /* TRANSACTION */ + SQL_BEGIN = 407, /* BEGIN */ + SQL_COMMIT = 408, /* COMMIT */ + SQL_ROLLBACK = 409, /* ROLLBACK */ + SQL_EQUALS = 410, /* EQUALS */ + SQL_NOTEQUALS = 411, /* NOTEQUALS */ + SQL_LESS = 412, /* LESS */ + SQL_GREATER = 413, /* GREATER */ + SQL_LESSEQ = 414, /* LESSEQ */ + SQL_GREATEREQ = 415, /* GREATEREQ */ + SQL_NOTNULL = 416, /* NOTNULL */ + SQL_UMINUS = 417 /* UMINUS */ +}; +typedef enum hsql_tokentype hsql_token_kind_t; #endif /* Value type. */ -#if ! defined HSQL_STYPE && ! defined HSQL_STYPE_IS_DECLARED -union HSQL_STYPE -{ +#if !defined HSQL_STYPE && !defined HSQL_STYPE_IS_DECLARED +union HSQL_STYPE { #line 98 "bison_parser.y" // clang-format on @@ -316,31 +314,25 @@ union HSQL_STYPE std::pair* ival_pair; #line 319 "bison_parser.h" - }; typedef union HSQL_STYPE HSQL_STYPE; -# define HSQL_STYPE_IS_TRIVIAL 1 -# define HSQL_STYPE_IS_DECLARED 1 +#define HSQL_STYPE_IS_TRIVIAL 1 +#define HSQL_STYPE_IS_DECLARED 1 #endif /* Location type. */ -#if ! defined HSQL_LTYPE && ! defined HSQL_LTYPE_IS_DECLARED +#if !defined HSQL_LTYPE && !defined HSQL_LTYPE_IS_DECLARED typedef struct HSQL_LTYPE HSQL_LTYPE; -struct HSQL_LTYPE -{ +struct HSQL_LTYPE { int first_line; int first_column; int last_line; int last_column; }; -# define HSQL_LTYPE_IS_DECLARED 1 -# define HSQL_LTYPE_IS_TRIVIAL 1 +#define HSQL_LTYPE_IS_DECLARED 1 +#define HSQL_LTYPE_IS_TRIVIAL 1 #endif - - - -int hsql_parse (hsql::SQLParserResult* result, yyscan_t scanner); - +int hsql_parse(hsql::SQLParserResult* result, yyscan_t scanner); #endif /* !YY_HSQL_BISON_PARSER_H_INCLUDED */ diff --git a/src/parser/flex_lexer.cpp b/src/parser/flex_lexer.cpp index ae858840..ff716c32 100644 --- a/src/parser/flex_lexer.cpp +++ b/src/parser/flex_lexer.cpp @@ -2,7 +2,7 @@ #line 3 "flex_lexer.cpp" -#define YY_INT_ALIGNED short int +#define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ @@ -251,10 +251,10 @@ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ -#include -#include #include +#include #include +#include /* end standard C headers. */ @@ -265,7 +265,7 @@ /* C99 systems have . Non-C99 systems may or may not. */ -#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. @@ -285,41 +285,41 @@ typedef uint32_t flex_uint32_t; typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; -typedef unsigned char flex_uint8_t; +typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN -#define INT8_MIN (-128) +#define INT8_MIN (-128) #endif #ifndef INT16_MIN -#define INT16_MIN (-32767-1) +#define INT16_MIN (-32767 - 1) #endif #ifndef INT32_MIN -#define INT32_MIN (-2147483647-1) +#define INT32_MIN (-2147483647 - 1) #endif #ifndef INT8_MAX -#define INT8_MAX (127) +#define INT8_MAX (127) #endif #ifndef INT16_MAX -#define INT16_MAX (32767) +#define INT16_MAX (32767) #endif #ifndef INT32_MAX -#define INT32_MAX (2147483647) +#define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX -#define UINT8_MAX (255U) +#define UINT8_MAX (255U) #endif #ifndef UINT16_MAX -#define UINT16_MAX (65535U) +#define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX -#define UINT32_MAX (4294967295U) +#define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX -#define SIZE_MAX (~(size_t)0) +#define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ @@ -343,7 +343,7 @@ typedef unsigned int flex_uint32_t; /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ -#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) +#define YY_SC_TO_UI(c) ((YY_CHAR)(c)) /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T @@ -376,7 +376,7 @@ typedef void* yyscan_t; /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ -#define YY_NEW_FILE yyrestart( yyin , yyscanner ) +#define YY_NEW_FILE yyrestart(yyin, yyscanner) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ @@ -394,11 +394,11 @@ typedef void* yyscan_t; /* The state buf must be large enough to hold one state per character in the main buffer. */ -#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE -typedef struct yy_buffer_state *YY_BUFFER_STATE; +typedef struct yy_buffer_state* YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T @@ -409,76 +409,73 @@ typedef size_t yy_size_t; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 - - #define YY_LESS_LINENO(n) - #define YY_LINENO_REWIND_TO(ptr) - + +#define YY_LESS_LINENO(n) +#define YY_LINENO_REWIND_TO(ptr) + /* Return all but the first "n" matched characters back to the input stream. */ -#define yyless(n) \ - do \ - { \ - /* Undo effects of setting up yytext. */ \ - int yyless_macro_arg = (n); \ - YY_LESS_LINENO(yyless_macro_arg);\ - *yy_cp = yyg->yy_hold_char; \ - YY_RESTORE_YY_MORE_OFFSET \ - yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ - YY_DO_BEFORE_ACTION; /* set up yytext again */ \ - } \ - while ( 0 ) -#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) +#define yyless(n) \ + do { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg); \ + *yy_cp = yyg->yy_hold_char; \ + YY_RESTORE_YY_MORE_OFFSET \ + yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ + YY_DO_BEFORE_ACTION; /* set up yytext again */ \ + } while (0) +#define unput(c) yyunput(c, yyg->yytext_ptr, yyscanner) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE -struct yy_buffer_state - { - FILE *yy_input_file; +struct yy_buffer_state { + FILE* yy_input_file; - char *yy_ch_buf; /* input buffer */ - char *yy_buf_pos; /* current position in input buffer */ + char* yy_ch_buf; /* input buffer */ + char* yy_buf_pos; /* current position in input buffer */ - /* Size of input buffer in bytes, not including room for EOB + /* Size of input buffer in bytes, not including room for EOB * characters. */ - int yy_buf_size; + int yy_buf_size; - /* Number of characters read into yy_ch_buf, not including EOB + /* Number of characters read into yy_ch_buf, not including EOB * characters. */ - int yy_n_chars; + int yy_n_chars; - /* Whether we "own" the buffer - i.e., we know we created it, + /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ - int yy_is_our_buffer; + int yy_is_our_buffer; - /* Whether this is an "interactive" input source; if so, and + /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ - int yy_is_interactive; + int yy_is_interactive; - /* Whether we're considered to be at the beginning of a line. + /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ - int yy_at_bol; + int yy_at_bol; - int yy_bs_lineno; /**< The line count. */ - int yy_bs_column; /**< The column count. */ + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ - /* Whether to try to fill the input buffer when we reach the + /* Whether to try to fill the input buffer when we reach the * end of it. */ - int yy_fill_buffer; + int yy_fill_buffer; - int yy_buffer_status; + int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 - /* When an EOF's been seen but there's still some text to process + /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of @@ -489,8 +486,7 @@ struct yy_buffer_state * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 - - }; +}; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* We provide macros for accessing buffer states in case in the @@ -499,59 +495,55 @@ struct yy_buffer_state * * Returns the top of the stack, or NULL. */ -#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ - ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ - : NULL) +#define YY_CURRENT_BUFFER (yyg->yy_buffer_stack ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] -void yyrestart ( FILE *input_file , yyscan_t yyscanner ); -void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); -void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); -void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); -void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); -void yypop_buffer_state ( yyscan_t yyscanner ); +void yyrestart(FILE* input_file, yyscan_t yyscanner); +void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); +YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner); +void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); +void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); +void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); +void yypop_buffer_state(yyscan_t yyscanner); -static void yyensure_buffer_stack ( yyscan_t yyscanner ); -static void yy_load_buffer_state ( yyscan_t yyscanner ); -static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner ); -#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner) +static void yyensure_buffer_stack(yyscan_t yyscanner); +static void yy_load_buffer_state(yyscan_t yyscanner); +static void yy_init_buffer(YY_BUFFER_STATE b, FILE* file, yyscan_t yyscanner); +#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER, yyscanner) -YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_string(const char* yy_str, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_bytes(const char* bytes, int len, yyscan_t yyscanner); -void *yyalloc ( yy_size_t , yyscan_t yyscanner ); -void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); -void yyfree ( void * , yyscan_t yyscanner ); +void* yyalloc(yy_size_t, yyscan_t yyscanner); +void* yyrealloc(void*, yy_size_t, yyscan_t yyscanner); +void yyfree(void*, yyscan_t yyscanner); #define yy_new_buffer yy_create_buffer -#define yy_set_interactive(is_interactive) \ - { \ - if ( ! YY_CURRENT_BUFFER ){ \ - yyensure_buffer_stack (yyscanner); \ - YY_CURRENT_BUFFER_LVALUE = \ - yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ - } \ - YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ - } -#define yy_set_bol(at_bol) \ - { \ - if ( ! YY_CURRENT_BUFFER ){\ - yyensure_buffer_stack (yyscanner); \ - YY_CURRENT_BUFFER_LVALUE = \ - yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ - } \ - YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ - } +#define yy_set_interactive(is_interactive) \ + { \ + if (!YY_CURRENT_BUFFER) { \ + yyensure_buffer_stack(yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ + } +#define yy_set_bol(at_bol) \ + { \ + if (!YY_CURRENT_BUFFER) { \ + yyensure_buffer_stack(yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ + } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ -#define hsql_wrap(yyscanner) (/*CONSTCOND*/1) +#define hsql_wrap(yyscanner) (/*CONSTCOND*/ 1) #define YY_SKIP_YYWRAP typedef flex_uint8_t YY_CHAR; @@ -559,1548 +551,971 @@ typedef int yy_state_type; #define yytext_ptr yytext_r -static yy_state_type yy_get_previous_state ( yyscan_t yyscanner ); -static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner); -static int yy_get_next_buffer ( yyscan_t yyscanner ); -static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner ); +static yy_state_type yy_get_previous_state(yyscan_t yyscanner); +static yy_state_type yy_try_NUL_trans(yy_state_type current_state, yyscan_t yyscanner); +static int yy_get_next_buffer(yyscan_t yyscanner); +static void yynoreturn yy_fatal_error(const char* msg, yyscan_t yyscanner); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ -#define YY_DO_BEFORE_ACTION \ - yyg->yytext_ptr = yy_bp; \ - yyleng = (int) (yy_cp - yy_bp); \ - yyg->yy_hold_char = *yy_cp; \ - *yy_cp = '\0'; \ - yyg->yy_c_buf_p = yy_cp; +#define YY_DO_BEFORE_ACTION \ + yyg->yytext_ptr = yy_bp; \ + yyleng = (int)(yy_cp - yy_bp); \ + yyg->yy_hold_char = *yy_cp; \ + *yy_cp = '\0'; \ + yyg->yy_c_buf_p = yy_cp; #define YY_NUM_RULES 170 #define YY_END_OF_BUFFER 171 /* This struct is not used in this scanner, but its presence is necessary. */ -struct yy_trans_info - { - flex_int32_t yy_verify; - flex_int32_t yy_nxt; - }; -static const flex_int16_t yy_accept[1192] = - { 0, - 0, 0, 167, 167, 2, 2, 171, 169, 4, 4, - 169, 169, 158, 165, 158, 158, 162, 158, 158, 158, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 158, 167, 168, 2, 2, 3, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 4, 153, 0, 1, 0, - 160, 159, 162, 155, 154, 152, 156, 164, 164, 164, - - 164, 164, 164, 123, 164, 124, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 125, 164, 164, 126, 127, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 128, 129, 130, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 131, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 157, 167, 166, - 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 163, 0, 159, 111, 164, 112, - 164, 164, 113, 164, 114, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 135, 164, - - 164, 164, 164, 164, 164, 164, 164, 164, 164, 115, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 116, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 117, 164, 164, 118, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 119, 164, 164, - 120, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 121, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 122, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 0, 164, 164, 164, 164, 164, - 164, 164, 82, 164, 83, 45, 84, 164, 164, 164, - 85, 164, 164, 86, 141, 164, 164, 164, 164, 164, - 88, 164, 164, 164, 89, 90, 164, 164, 164, 164, - 164, 164, 164, 91, 164, 164, 92, 93, 164, 164, - 94, 164, 95, 134, 164, 164, 164, 164, 164, 164, - 96, 164, 97, 98, 99, 164, 101, 164, 102, 164, - 164, 164, 164, 103, 164, 164, 164, 164, 164, 104, - 164, 164, 32, 164, 164, 164, 164, 164, 164, 164, - 105, 164, 164, 164, 164, 164, 106, 107, 30, 164, - - 144, 164, 164, 164, 164, 164, 164, 164, 164, 108, - 164, 109, 164, 110, 137, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 0, 62, 63, 164, - 64, 164, 147, 164, 164, 164, 164, 164, 164, 164, - 65, 164, 164, 164, 164, 164, 66, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 145, 67, 164, - 164, 68, 164, 140, 100, 164, 69, 70, 164, 164, - 164, 164, 71, 72, 73, 74, 164, 136, 164, 164, - 164, 75, 76, 164, 164, 164, 164, 164, 77, 164, - 164, 164, 164, 164, 164, 164, 78, 164, 164, 164, - - 164, 79, 164, 164, 164, 80, 164, 164, 164, 81, - 143, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 0, 164, 35, 164, - - 164, 164, 36, 149, 164, 37, 164, 164, 164, 164, - 38, 164, 39, 164, 40, 41, 42, 164, 43, 164, - 164, 46, 47, 48, 49, 50, 164, 164, 164, 51, - 133, 142, 164, 164, 52, 164, 164, 164, 53, 164, - 164, 54, 132, 55, 164, 56, 164, 57, 164, 164, - 164, 164, 58, 59, 60, 61, 164, 164, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 0, 15, 16, 17, 164, 18, 19, 164, 164, 31, - 20, 164, 164, 21, 22, 44, 23, 164, 164, 139, - 24, 164, 164, 25, 26, 164, 164, 27, 138, 164, - 28, 164, 164, 164, 164, 29, 34, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 0, 164, 87, 164, 10, 11, - - 164, 150, 12, 164, 13, 148, 33, 164, 164, 164, - 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 0, 164, - 164, 7, 164, 8, 9, 164, 2, 2, 2, 2, - 2, 2, 2, 2, 0, 0, 5, 6, 164, 2, - 2, 2, 2, 2, 0, 0, 146, 2, 2, 2, - 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, - 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, - 0, 151, 2, 2, 0, 2, 0, 2, 161, 2, - 0 - - } ; - -static const YY_CHAR yy_ec[256] = - { 0, - 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 4, 5, 1, 1, 6, 1, 7, 6, - 6, 6, 6, 6, 8, 9, 6, 10, 11, 12, - 13, 14, 15, 16, 17, 18, 19, 6, 6, 20, - 21, 22, 6, 1, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - 6, 1, 6, 6, 49, 1, 50, 51, 52, 53, - - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - 74, 75, 6, 76, 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, 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, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1 - } ; - -static const YY_CHAR yy_meta[77] = - { 0, - 1, 1, 2, 1, 3, 1, 4, 1, 1, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, - 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 1 - } ; - -static const flex_int16_t yy_base[1199] = - { 0, - 0, 0, 581, 574, 76, 0, 573, 4737, 151, 153, - 547, 0, 4737, 4737, 149, 148, 160, 159, 535, 532, - 156, 156, 164, 162, 172, 223, 198, 211, 215, 151, - 168, 210, 255, 257, 263, 262, 0, 277, 317, 360, - 296, 221, 258, 171, 476, 0, 530, 0, 295, 308, - 515, 516, 0, 0, 317, 418, 429, 317, 499, 496, - 448, 524, 578, 630, 678, 730, 338, 436, 778, 330, - 319, 349, 444, 830, 878, 500, 321, 511, 928, 980, - 556, 512, 533, 431, 437, 347, 4737, 507, 4737, 485, - 1045, 1055, 1066, 4737, 4737, 4737, 4737, 0, 174, 253, - - 438, 469, 284, 318, 567, 0, 538, 339, 578, 361, - 591, 621, 607, 417, 429, 436, 453, 489, 641, 515, - 521, 520, 537, 556, 568, 590, 594, 659, 601, 608, - 0, 628, 625, 675, 633, 650, 644, 674, 674, 697, - 673, 679, 685, 681, 689, 701, 722, 726, 0, 729, - 714, 719, 740, 738, 766, 737, 734, 741, 776, 739, - 776, 768, 786, 787, 785, 788, 782, 783, 800, 793, - 796, 824, 822, 832, 833, 819, 840, 4737, 0, 4737, - 0, 399, 0, 491, 0, 453, 1076, 1086, 1097, 0, - 0, 0, 0, 838, 849, 866, 882, 923, 890, 934, - - 967, 868, 971, 1094, 1142, 952, 977, 1194, 1091, 1092, - 1093, 1096, 1107, 1146, 1244, 1152, 1184, 1196, 1185, 1200, - 1229, 1230, 1252, 1270, 1265, 1278, 880, 1296, 1136, 1345, - 1293, 1304, 1128, 1306, 1322, 1341, 1226, 1347, 1370, 1268, - 1358, 1375, 1384, 1398, 1234, 1413, 1401, 1410, 1424, 1415, - 1456, 1434, 1466, 1455, 1489, 1464, 1498, 1495, 1510, 1520, - 1519, 1528, 1541, 1532, 1562, 1573, 1564, 1583, 1595, 1586, - 1574, 1597, 1596, 0, 4737, 452, 1662, 0, 837, 0, - 844, 877, 0, 924, 0, 923, 970, 968, 981, 1640, - 1082, 1081, 1090, 1084, 1082, 1164, 1147, 1170, 1168, 1217, - - 1305, 1323, 1641, 1364, 1376, 1399, 1435, 1442, 1472, 0, - 1482, 1507, 1526, 1512, 1522, 1558, 1617, 1632, 1638, 1628, - 1629, 1650, 1663, 1646, 1663, 1665, 1655, 1658, 1666, 1663, - 1674, 1675, 1676, 1678, 1661, 1670, 0, 1665, 1681, 1681, - 1687, 1694, 1689, 1690, 1678, 1680, 1693, 0, 1703, 1698, - 1700, 1716, 1720, 1727, 1715, 1714, 1718, 1720, 1732, 1714, - 1727, 1724, 1732, 1723, 1734, 0, 1717, 1732, 1725, 1727, - 1737, 1734, 1731, 1739, 1749, 0, 1754, 1765, 1758, 1754, - 1781, 1769, 1763, 1782, 1763, 1767, 1774, 1781, 1772, 0, - 450, 1832, 1813, 1825, 1826, 1827, 1828, 1829, 1838, 1830, - - 1859, 1863, 1864, 1880, 1897, 1888, 1903, 1905, 1851, 1916, - 1933, 1931, 1921, 1947, 1942, 1955, 1970, 1964, 1983, 1965, - 1998, 1999, 2004, 1987, 2000, 2009, 2001, 2035, 2038, 2037, - 2041, 2039, 2043, 2073, 2067, 2083, 2092, 2077, 2089, 2095, - 2107, 2108, 2131, 2137, 2146, 2113, 2121, 2145, 2149, 2147, - 2179, 2162, 2180, 2177, 2181, 2203, 2191, 2217, 2231, 2205, - 2220, 2239, 2216, 2234, 2256, 2257, 2245, 2253, 2274, 2279, - 2291, 2285, 2307, 2313, 2308, 2319, 2310, 2325, 2343, 2331, - 2342, 2347, 2361, 2356, 2364, 2393, 2385, 2382, 2401, 2387, - 2399, 2416, 2422, 2435, 2441, 2457, 2456, 2444, 2475, 2479, - - 2439, 2485, 2490, 2496, 448, 1828, 1830, 1879, 1975, 2036, - 2280, 2348, 0, 2363, 0, 0, 2381, 2493, 2503, 2495, - 0, 2496, 2499, 2499, 0, 2508, 2510, 2503, 2512, 2533, - 2517, 2533, 2529, 2532, 0, 0, 2533, 2536, 2532, 2534, - 2554, 2555, 2552, 0, 2538, 2559, 0, 0, 2563, 2550, - 0, 2553, 0, 2549, 2564, 2552, 2548, 2555, 2556, 2568, - 0, 2565, 0, 0, 0, 2558, 0, 2576, 0, 2584, - 2587, 2582, 2574, 0, 2595, 2598, 2590, 2591, 2597, 0, - 2610, 2611, 0, 2601, 2600, 2600, 2619, 2609, 2609, 2621, - 0, 2614, 2622, 2619, 2624, 2616, 0, 0, 2613, 2621, - - 0, 2639, 2629, 2623, 2645, 2632, 2650, 2655, 2653, 0, - 2641, 0, 2658, 0, 2645, 438, 2660, 2675, 2669, 2670, - 2678, 2672, 2693, 2694, 2710, 2704, 2709, 2727, 2726, 2728, - 2745, 2742, 2763, 2766, 2764, 2767, 2781, 2796, 2782, 2797, - 2799, 2820, 2832, 2834, 2835, 2821, 2836, 2853, 2866, 2858, - 2872, 2875, 2888, 2870, 2876, 2906, 2916, 2907, 2910, 2924, - 2918, 2932, 2940, 2941, 2950, 2942, 2972, 2955, 2973, 2983, - 3004, 2978, 3007, 2995, 3008, 3009, 3032, 3018, 3043, 3026, - 3037, 3061, 3066, 3058, 3040, 3091, 3072, 3094, 3097, 3112, - 3095, 3129, 3130, 3128, 3143, 3145, 3146, 3167, 3154, 3186, - - 3182, 3183, 3197, 3196, 3208, 3198, 3226, 3200, 3221, 3237, - 3238, 3234, 3242, 3250, 3256, 3275, 3290, 3280, 3274, 3288, - 3292, 3304, 3296, 3306, 3314, 3328, 413, 0, 0, 2655, - 0, 2711, 0, 2712, 2744, 2746, 2740, 2785, 2808, 2931, - 0, 2980, 2984, 3086, 3093, 3104, 0, 3102, 3169, 3196, - 3260, 3266, 3296, 3298, 3311, 3325, 3332, 0, 0, 3321, - 3337, 0, 3343, 0, 0, 3331, 0, 0, 3334, 3350, - 3345, 3347, 0, 0, 0, 0, 3358, 3346, 3368, 3362, - 3351, 0, 0, 3367, 3355, 3357, 3374, 3374, 0, 3383, - 3384, 3383, 3368, 3380, 3389, 3394, 3382, 3385, 3384, 3404, - - 3406, 0, 3403, 3405, 3408, 0, 3398, 3417, 3418, 0, - 0, 409, 3416, 3418, 3428, 3424, 3432, 3433, 3434, 3447, - 3458, 3457, 3472, 3486, 3442, 3468, 3497, 3498, 3507, 3502, - 3511, 3512, 3537, 3540, 3542, 3526, 3543, 3556, 3565, 3552, - 3577, 3596, 3575, 3586, 3600, 3610, 3591, 3626, 3605, 3609, - 3634, 3631, 3639, 3645, 3648, 3650, 3662, 3663, 3679, 3680, - 3684, 3685, 3688, 3717, 3698, 3719, 3703, 3716, 3721, 3738, - 3742, 3733, 3752, 3747, 3775, 3777, 3787, 3776, 3788, 3806, - 3816, 3811, 3817, 3827, 3845, 3850, 3801, 3829, 3860, 3851, - 3855, 3879, 3885, 3894, 3883, 3884, 404, 3437, 0, 3511, - - 3521, 3546, 3560, 0, 3607, 0, 3685, 3724, 3747, 3742, - 0, 3796, 0, 3842, 0, 0, 0, 3861, 0, 3853, - 3876, 0, 0, 0, 0, 0, 3882, 3896, 3904, 0, - 3887, 0, 3902, 3917, 0, 3900, 3916, 3899, 0, 3926, - 3927, 3915, 3919, 0, 3925, 0, 3928, 0, 3941, 3942, - 3941, 3929, 0, 0, 0, 0, 3932, 3940, 403, 3948, - 3949, 3950, 3953, 3963, 3967, 3979, 3982, 3984, 3993, 4017, - 4012, 4003, 4007, 4036, 4021, 4049, 4035, 4038, 4051, 4052, - 4053, 4057, 4075, 4061, 4067, 4086, 4089, 4091, 4092, 4101, - 4107, 4115, 4123, 4120, 4124, 4129, 4126, 4145, 4141, 4155, - - 4157, 4180, 4181, 4169, 4195, 4166, 4194, 4191, 4212, 4197, - 4229, 4235, 4245, 4233, 4220, 4234, 4237, 4251, 4266, 4283, - 407, 0, 0, 0, 3958, 0, 0, 3998, 4047, 0, - 0, 4163, 4184, 0, 0, 0, 0, 4225, 4261, 0, - 0, 4256, 4273, 0, 0, 4259, 4271, 0, 0, 4270, - 0, 4274, 4280, 4274, 4291, 0, 0, 404, 4299, 4302, - 4305, 4307, 4308, 4311, 4320, 4337, 4321, 4323, 4324, 4359, - 4336, 4342, 4345, 4353, 4377, 4378, 4361, 4376, 4394, 4390, - 4391, 4393, 4415, 4416, 4399, 4427, 4433, 4431, 4432, 4456, - 4450, 4461, 4466, 4467, 401, 4326, 0, 4367, 0, 0, - - 4413, 0, 0, 4431, 0, 0, 0, 4448, 4458, 4469, - 0, 399, 4485, 4482, 4484, 4490, 4501, 4507, 4515, 4516, - 4520, 4518, 4519, 4524, 4530, 4541, 4555, 4553, 395, 404, - 4556, 0, 4544, 0, 0, 4554, 350, 4594, 4570, 4572, - 4581, 4576, 4578, 4606, 344, 4612, 0, 0, 4575, 342, - 4614, 4593, 4607, 4615, 338, 4613, 0, 335, 4614, 4612, - 330, 4605, 325, 4617, 306, 4618, 303, 4624, 288, 4642, - 255, 4643, 250, 4639, 245, 4640, 243, 4648, 240, 4650, - 235, 4737, 221, 0, 226, 197, 187, 173, 4737, 0, - 4737, 4706, 4711, 181, 4716, 4721, 4726, 4731 - - } ; - -static const flex_int16_t yy_def[1199] = - { 0, - 1191, 1, 1192, 1192, 1191, 5, 1191, 1191, 1191, 1191, - 1191, 1193, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1191, 1195, 1191, 1196, 1196, 1191, - 1196, 1197, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, - 1198, 1198, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 1196, 1191, 1191, 1193, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1191, 1195, 1191, - 1196, 1196, 1196, 1197, 1196, 1196, 1196, 1196, 1196, 1196, - 1196, 1196, 1196, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 1196, 1191, 1191, 1191, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, - 1196, 1196, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, - - 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, - 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, - 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, - 62, 62, 62, 62, 1191, 1191, 1194, 1194, 1194, 1196, - 1196, 62, 62, 62, 1191, 1191, 1194, 1196, 1196, 62, - 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, - 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, - 1191, 1191, 1196, 1196, 1191, 1196, 1191, 1196, 1191, 1196, - 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191 - - } ; - -static const flex_int16_t yy_nxt[4814] = - { 0, - 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, - 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 37, 44, 37, 8, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 37, 44, 37, 45, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 57, 57, 57, 57, - 57, 57, 57, 57, 57, 58, 59, 60, 61, 62, - - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 77, 84, 77, 48, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 83, 77, 84, - 77, 85, 86, 86, 86, 86, 89, 91, 91, 91, - 91, 91, 91, 91, 91, 91, 91, 90, 92, 93, - 93, 93, 93, 93, 93, 93, 93, 93, 93, 94, - 95, 99, 105, 100, 111, 98, 107, 136, 112, 101, - 1190, 102, 113, 108, 137, 103, 104, 177, 114, 278, - - 109, 115, 106, 110, 1189, 116, 1188, 117, 99, 105, - 100, 111, 118, 107, 136, 112, 101, 119, 102, 113, - 108, 137, 103, 104, 177, 114, 278, 109, 115, 106, - 110, 126, 116, 128, 117, 1187, 138, 127, 1186, 118, - 139, 129, 131, 173, 119, 120, 140, 130, 132, 133, - 134, 174, 1185, 121, 1183, 135, 122, 1181, 126, 123, - 128, 1179, 124, 138, 127, 125, 1177, 139, 129, 131, - 173, 1175, 120, 140, 130, 132, 133, 134, 174, 144, - 121, 141, 135, 122, 152, 142, 123, 175, 176, 124, - 148, 143, 125, 145, 279, 153, 182, 86, 149, 146, - - 147, 154, 150, 155, 1173, 151, 144, 156, 141, 86, - 86, 152, 142, 157, 175, 176, 1171, 148, 143, 1169, - 145, 279, 153, 284, 185, 149, 146, 147, 154, 150, - 155, 170, 151, 171, 156, 186, 172, 190, 191, 1167, - 157, 158, 285, 159, 1165, 233, 160, 194, 86, 86, - 284, 161, 1163, 162, 163, 1161, 194, 1158, 170, 1155, - 171, 291, 1150, 172, 194, 194, 232, 194, 158, 285, - 159, 222, 233, 160, 194, 234, 194, 223, 161, 235, - 162, 163, 164, 194, 194, 236, 165, 296, 291, 166, - 167, 194, 194, 232, 194, 194, 168, 297, 222, 169, - - 182, 86, 234, 194, 223, 1146, 235, 1145, 1137, 164, - 1129, 194, 236, 165, 296, 1112, 166, 167, 1095, 1058, - 1021, 959, 194, 168, 297, 897, 169, 187, 187, 187, - 187, 187, 187, 187, 187, 187, 187, 188, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 181, 181, - 812, 181, 181, 181, 181, 181, 181, 273, 224, 307, - 727, 616, 194, 505, 391, 308, 225, 181, 181, 181, - 237, 280, 226, 195, 238, 196, 309, 194, 310, 281, - 239, 197, 194, 198, 273, 224, 307, 199, 200, 194, - 194, 282, 308, 225, 283, 390, 276, 237, 280, 226, - - 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, - 198, 275, 274, 311, 199, 200, 193, 194, 282, 192, - 181, 283, 248, 181, 181, 181, 194, 181, 181, 181, - 181, 181, 181, 249, 269, 183, 180, 251, 194, 250, - 311, 252, 270, 181, 181, 181, 194, 253, 317, 248, - 201, 178, 97, 194, 318, 96, 319, 194, 194, 194, - 249, 269, 271, 272, 251, 194, 250, 87, 252, 270, - 202, 289, 1191, 194, 253, 317, 320, 201, 290, 194, - 47, 318, 194, 319, 194, 194, 194, 47, 1191, 271, - 272, 266, 321, 267, 286, 287, 268, 202, 289, 181, - - 203, 322, 194, 320, 194, 290, 194, 204, 288, 194, - 1191, 292, 293, 294, 205, 295, 1191, 206, 266, 321, - 267, 286, 287, 268, 194, 1191, 323, 203, 322, 194, - 324, 194, 298, 1191, 204, 288, 327, 299, 292, 293, - 294, 205, 295, 300, 206, 301, 305, 306, 302, 1191, - 328, 194, 207, 323, 303, 1191, 208, 324, 329, 298, - 209, 304, 330, 327, 299, 312, 210, 313, 335, 211, - 300, 314, 301, 305, 306, 302, 194, 328, 315, 207, - 336, 303, 316, 208, 1191, 329, 1191, 209, 304, 330, - 337, 1191, 312, 210, 313, 335, 211, 1191, 314, 325, - - 331, 338, 326, 194, 194, 315, 339, 336, 340, 316, - 332, 212, 344, 213, 345, 333, 334, 337, 214, 341, - 346, 342, 347, 215, 194, 1191, 325, 331, 338, 326, - 348, 194, 343, 339, 349, 340, 1191, 332, 212, 344, - 213, 345, 333, 334, 350, 214, 341, 346, 342, 347, - 215, 194, 216, 351, 352, 353, 194, 348, 354, 343, - 217, 349, 355, 218, 356, 361, 219, 362, 357, 220, - 363, 350, 221, 1191, 1191, 367, 194, 1191, 1191, 216, - 351, 352, 353, 194, 1191, 354, 1191, 217, 358, 355, - 218, 356, 361, 219, 362, 357, 220, 363, 368, 221, - - 364, 359, 367, 194, 194, 227, 360, 369, 370, 365, - 371, 228, 229, 230, 374, 358, 375, 366, 231, 372, - 376, 381, 377, 379, 194, 368, 380, 364, 359, 1191, - 373, 194, 227, 360, 369, 370, 365, 371, 228, 229, - 230, 374, 378, 375, 366, 231, 372, 376, 381, 377, - 379, 194, 240, 380, 382, 383, 194, 373, 385, 387, - 388, 384, 389, 506, 194, 1191, 241, 1191, 1191, 378, - 507, 386, 242, 243, 393, 194, 194, 1191, 1191, 240, - 1191, 382, 383, 194, 194, 385, 387, 388, 384, 389, - 506, 194, 194, 241, 194, 194, 1191, 507, 386, 242, - - 243, 393, 194, 194, 194, 244, 194, 394, 194, 1191, - 508, 194, 194, 245, 194, 395, 194, 246, 1191, 194, - 247, 194, 194, 396, 194, 1191, 194, 1191, 194, 399, - 1191, 194, 244, 194, 394, 194, 194, 508, 1191, 194, - 245, 194, 395, 194, 246, 397, 509, 247, 398, 194, - 396, 194, 254, 194, 255, 194, 399, 256, 400, 510, - 194, 1191, 257, 194, 258, 259, 1191, 1191, 1191, 194, - 1191, 1191, 397, 509, 194, 398, 194, 1191, 411, 254, - 194, 255, 1191, 1191, 256, 400, 510, 194, 412, 257, - 1191, 258, 259, 194, 401, 402, 194, 194, 194, 1191, - - 511, 194, 260, 194, 404, 411, 261, 194, 403, 262, - 263, 405, 512, 194, 513, 412, 264, 194, 413, 265, - 194, 401, 402, 414, 194, 194, 194, 511, 1191, 260, - 194, 404, 1191, 261, 1191, 403, 262, 263, 405, 512, - 194, 513, 1191, 264, 194, 413, 265, 1191, 1191, 1191, - 414, 1191, 1191, 194, 91, 91, 91, 91, 91, 91, - 91, 91, 91, 91, 277, 277, 277, 277, 277, 277, - 277, 277, 277, 277, 92, 93, 93, 93, 93, 93, - 93, 93, 93, 93, 93, 187, 187, 187, 187, 187, - 187, 187, 187, 187, 187, 392, 392, 392, 392, 392, - - 392, 392, 392, 392, 392, 188, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 406, 194, 194, 194, - 194, 517, 194, 518, 519, 520, 1191, 1191, 521, 423, - 420, 421, 425, 194, 422, 1191, 424, 194, 194, 194, - 194, 1191, 194, 406, 194, 194, 194, 194, 517, 194, - 518, 519, 520, 194, 194, 521, 423, 420, 421, 425, - 194, 422, 194, 424, 194, 194, 194, 194, 194, 194, - 426, 1191, 194, 445, 452, 407, 408, 409, 194, 410, - 194, 194, 194, 1191, 1191, 432, 522, 523, 194, 194, - 1191, 1191, 194, 1191, 1191, 194, 524, 426, 194, 194, - - 445, 452, 407, 408, 409, 194, 410, 1191, 525, 194, - 194, 194, 432, 522, 523, 194, 415, 433, 416, 194, - 194, 417, 194, 524, 435, 194, 194, 418, 1191, 1191, - 194, 194, 434, 1191, 419, 525, 436, 194, 194, 1191, - 194, 1191, 194, 415, 433, 416, 194, 194, 417, 194, - 526, 435, 194, 194, 418, 194, 194, 194, 194, 434, - 194, 419, 437, 436, 1191, 459, 438, 194, 427, 194, - 428, 1191, 194, 194, 429, 194, 194, 526, 194, 194, - 194, 430, 194, 194, 1191, 431, 1191, 194, 439, 437, - 194, 194, 459, 438, 194, 427, 194, 428, 194, 194, - - 442, 429, 194, 194, 194, 194, 1191, 194, 430, 462, - 440, 194, 431, 441, 194, 439, 194, 194, 194, 194, - 443, 194, 194, 194, 194, 194, 444, 442, 450, 1191, - 194, 194, 194, 453, 451, 527, 462, 440, 194, 194, - 441, 194, 194, 194, 1191, 528, 194, 443, 194, 194, - 194, 194, 194, 444, 454, 450, 455, 194, 1191, 194, - 453, 451, 527, 456, 1191, 457, 194, 194, 194, 194, - 446, 194, 528, 194, 1191, 194, 458, 194, 1191, 194, - 447, 454, 460, 455, 194, 448, 449, 194, 531, 1191, - 456, 194, 457, 194, 194, 194, 194, 446, 194, 463, - - 194, 194, 532, 458, 194, 461, 465, 447, 464, 460, - 194, 194, 448, 449, 194, 531, 194, 1191, 194, 1191, - 194, 194, 1191, 194, 194, 466, 463, 194, 194, 532, - 194, 194, 461, 465, 1191, 464, 194, 194, 467, 194, - 533, 471, 468, 194, 194, 472, 470, 194, 194, 469, - 194, 194, 466, 1191, 194, 1191, 194, 194, 534, 194, - 194, 194, 476, 194, 1191, 467, 194, 533, 471, 468, - 194, 194, 472, 470, 194, 1191, 469, 194, 473, 535, - 194, 194, 194, 194, 478, 534, 194, 194, 194, 476, - 194, 474, 194, 1191, 1191, 1191, 475, 194, 536, 477, - - 482, 194, 194, 1191, 537, 473, 535, 194, 194, 194, - 194, 478, 194, 479, 1191, 194, 1191, 194, 474, 194, - 483, 194, 480, 475, 194, 536, 477, 482, 194, 194, - 481, 537, 485, 538, 484, 194, 194, 194, 1191, 194, - 479, 194, 194, 486, 194, 194, 194, 483, 194, 480, - 539, 194, 540, 487, 489, 541, 194, 481, 194, 485, - 538, 484, 194, 194, 488, 194, 194, 194, 194, 491, - 486, 194, 194, 194, 194, 490, 1191, 539, 194, 540, - 487, 489, 541, 194, 492, 194, 1191, 194, 194, 496, - 194, 488, 194, 194, 194, 1191, 491, 542, 1191, 194, - - 502, 194, 490, 494, 493, 194, 495, 1191, 194, 194, - 194, 492, 500, 497, 194, 194, 496, 194, 504, 194, - 194, 194, 194, 194, 542, 501, 194, 502, 498, 194, - 494, 493, 194, 495, 499, 194, 194, 194, 503, 500, - 497, 194, 194, 194, 1191, 504, 194, 194, 194, 194, - 194, 1191, 501, 1191, 1191, 498, 194, 543, 544, 194, - 545, 499, 546, 547, 514, 503, 515, 529, 194, 194, - 194, 277, 277, 277, 277, 277, 277, 277, 277, 277, - 277, 516, 530, 548, 543, 544, 549, 545, 550, 546, - 547, 514, 551, 515, 529, 552, 553, 554, 555, 556, - - 557, 558, 559, 562, 560, 563, 564, 565, 516, 530, - 548, 566, 567, 549, 561, 550, 568, 569, 570, 551, - 571, 572, 552, 553, 554, 555, 556, 557, 558, 559, - 562, 560, 563, 564, 565, 573, 574, 575, 566, 567, - 576, 561, 577, 568, 569, 570, 578, 571, 572, 579, - 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, - 590, 591, 573, 574, 575, 592, 593, 576, 594, 577, - 595, 596, 597, 578, 598, 599, 579, 580, 581, 582, - 583, 584, 585, 586, 587, 588, 589, 590, 591, 600, - 605, 601, 592, 593, 603, 594, 604, 595, 596, 597, - - 602, 598, 599, 606, 607, 608, 609, 610, 611, 612, - 614, 615, 1191, 613, 1191, 1191, 600, 605, 601, 1191, - 1191, 603, 1191, 604, 1191, 1191, 1191, 602, 1191, 1191, - 606, 607, 608, 609, 610, 611, 612, 614, 615, 194, - 613, 392, 392, 392, 392, 392, 392, 392, 392, 392, - 392, 617, 194, 618, 194, 194, 194, 1191, 1191, 194, - 620, 619, 1191, 1191, 194, 1191, 194, 728, 1191, 729, - 1191, 194, 194, 194, 194, 194, 194, 194, 617, 194, - 618, 194, 194, 194, 194, 194, 194, 620, 619, 194, - 194, 194, 631, 622, 728, 621, 729, 194, 194, 194, - - 194, 194, 194, 194, 194, 194, 194, 1191, 623, 194, - 194, 194, 194, 624, 194, 1191, 194, 194, 1191, 631, - 622, 625, 621, 626, 194, 730, 194, 628, 1191, 194, - 1191, 194, 194, 194, 194, 623, 194, 194, 627, 630, - 624, 194, 194, 194, 1191, 629, 1191, 635, 625, 194, - 626, 194, 730, 194, 628, 633, 194, 194, 194, 194, - 1191, 194, 632, 1191, 1191, 627, 630, 194, 194, 194, - 194, 634, 629, 194, 635, 637, 194, 194, 194, 194, - 1191, 194, 633, 1191, 194, 638, 194, 636, 194, 632, - 640, 643, 639, 194, 194, 194, 194, 1191, 634, 1191, - - 194, 194, 637, 1191, 194, 641, 194, 642, 194, 194, - 194, 194, 638, 647, 636, 194, 194, 640, 643, 639, - 194, 731, 645, 194, 194, 194, 194, 649, 194, 194, - 194, 648, 641, 194, 642, 194, 194, 194, 194, 644, - 647, 646, 1191, 194, 194, 194, 194, 194, 731, 645, - 194, 194, 194, 194, 649, 194, 194, 194, 648, 650, - 194, 194, 194, 194, 194, 194, 644, 194, 646, 655, - 652, 194, 194, 194, 194, 732, 1191, 194, 651, 654, - 653, 194, 194, 194, 194, 194, 650, 194, 194, 194, - 194, 194, 194, 194, 194, 656, 655, 652, 1191, 194, - - 660, 657, 732, 194, 1191, 651, 654, 653, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 658, 194, 194, - 194, 194, 656, 194, 662, 659, 194, 660, 657, 194, - 194, 661, 1191, 194, 194, 194, 194, 663, 194, 668, - 194, 194, 194, 1191, 658, 194, 194, 669, 194, 664, - 194, 662, 659, 194, 194, 1191, 194, 194, 661, 194, - 194, 194, 194, 194, 663, 194, 668, 194, 194, 666, - 665, 670, 194, 194, 669, 671, 664, 194, 1191, 1191, - 194, 194, 667, 194, 194, 672, 194, 1191, 194, 673, - 194, 194, 194, 194, 194, 194, 666, 665, 670, 194, - - 194, 1191, 671, 676, 194, 194, 194, 194, 194, 667, - 194, 677, 672, 679, 674, 194, 673, 194, 194, 194, - 194, 675, 194, 194, 1191, 194, 194, 194, 678, 194, - 676, 194, 194, 194, 194, 194, 1191, 194, 677, 1191, - 679, 674, 194, 194, 194, 680, 194, 682, 675, 194, - 194, 194, 194, 194, 194, 678, 194, 194, 194, 681, - 194, 683, 194, 194, 194, 194, 194, 685, 1191, 194, - 194, 688, 680, 194, 682, 1191, 194, 194, 194, 689, - 194, 684, 194, 194, 194, 194, 681, 194, 683, 194, - 194, 194, 194, 194, 685, 686, 690, 687, 688, 194, - - 194, 1191, 194, 194, 194, 194, 689, 194, 684, 194, - 194, 194, 194, 1191, 691, 733, 1191, 194, 194, 693, - 194, 1191, 686, 690, 687, 194, 194, 194, 692, 194, - 194, 194, 194, 194, 194, 695, 194, 194, 194, 194, - 694, 691, 733, 698, 194, 194, 693, 194, 697, 696, - 1191, 699, 194, 194, 194, 692, 194, 701, 194, 194, - 194, 194, 695, 194, 194, 194, 194, 694, 194, 194, - 698, 194, 194, 194, 734, 697, 696, 194, 699, 700, - 194, 194, 194, 194, 701, 735, 194, 194, 194, 194, - 194, 702, 194, 194, 703, 194, 194, 704, 194, 1191, - - 194, 734, 194, 736, 194, 705, 700, 194, 194, 194, - 194, 194, 735, 710, 194, 194, 194, 194, 702, 194, - 194, 703, 707, 708, 704, 194, 706, 194, 194, 194, - 736, 194, 705, 194, 194, 194, 709, 194, 194, 194, - 710, 1191, 194, 1191, 1191, 194, 194, 194, 712, 707, - 708, 711, 194, 706, 194, 194, 1191, 713, 194, 1191, - 194, 194, 194, 709, 1191, 194, 194, 194, 194, 194, - 194, 714, 194, 715, 194, 712, 1191, 716, 711, 717, - 722, 194, 194, 194, 713, 194, 719, 194, 194, 194, - 194, 718, 194, 1191, 194, 194, 1191, 194, 714, 720, - - 715, 194, 194, 194, 716, 194, 717, 722, 194, 194, - 194, 194, 194, 719, 194, 1191, 194, 194, 718, 725, - 723, 194, 194, 721, 724, 194, 720, 737, 194, 194, - 194, 194, 194, 738, 739, 726, 194, 740, 194, 741, - 742, 743, 194, 194, 744, 745, 725, 723, 194, 194, - 721, 724, 194, 746, 737, 747, 748, 749, 194, 750, - 738, 739, 726, 194, 740, 751, 741, 742, 743, 194, - 752, 744, 745, 753, 754, 755, 756, 757, 758, 759, - 746, 760, 747, 748, 749, 761, 750, 762, 763, 764, - 765, 766, 751, 767, 768, 769, 770, 752, 772, 773, - - 753, 754, 755, 756, 757, 758, 759, 771, 760, 774, - 775, 778, 761, 779, 762, 763, 764, 765, 766, 780, - 767, 768, 769, 770, 781, 772, 773, 776, 777, 782, - 783, 784, 785, 786, 771, 787, 774, 775, 778, 788, - 779, 789, 790, 791, 792, 793, 780, 794, 795, 796, - 797, 781, 798, 799, 776, 777, 782, 783, 784, 785, - 786, 800, 787, 801, 802, 803, 788, 804, 789, 790, - 791, 792, 793, 805, 794, 795, 796, 797, 806, 798, - 799, 807, 808, 809, 810, 811, 194, 1191, 800, 1191, - 801, 802, 803, 1191, 804, 194, 194, 1191, 194, 813, - - 805, 194, 898, 1191, 194, 806, 194, 818, 807, 808, - 809, 810, 811, 194, 814, 815, 816, 817, 194, 819, - 194, 194, 194, 194, 194, 194, 813, 1191, 194, 898, - 194, 194, 820, 194, 818, 194, 194, 899, 900, 194, - 194, 814, 815, 816, 817, 194, 819, 194, 194, 821, - 194, 194, 194, 194, 194, 194, 194, 194, 823, 820, - 822, 1191, 194, 194, 899, 900, 194, 194, 194, 901, - 902, 194, 194, 194, 194, 903, 821, 194, 1191, 194, - 194, 194, 194, 194, 824, 823, 1191, 822, 194, 194, - 194, 194, 194, 194, 1191, 194, 901, 902, 194, 194, - - 194, 194, 903, 1191, 825, 827, 826, 194, 194, 194, - 194, 824, 194, 194, 828, 194, 194, 194, 194, 194, - 194, 832, 194, 194, 830, 194, 904, 194, 194, 1191, - 829, 825, 827, 826, 194, 194, 194, 194, 831, 194, - 194, 828, 194, 194, 905, 194, 194, 194, 832, 194, - 194, 830, 194, 904, 194, 194, 834, 829, 194, 833, - 194, 194, 194, 1191, 835, 831, 194, 194, 836, 194, - 194, 905, 194, 194, 194, 1191, 1191, 1191, 194, 194, - 194, 194, 194, 834, 194, 194, 833, 194, 194, 194, - 837, 835, 194, 194, 194, 836, 843, 841, 194, 194, - - 839, 194, 194, 838, 194, 194, 194, 194, 194, 194, - 842, 194, 194, 840, 194, 1191, 194, 837, 194, 194, - 1191, 194, 194, 843, 841, 194, 194, 839, 194, 194, - 838, 194, 194, 194, 194, 1191, 194, 842, 845, 194, - 840, 194, 194, 194, 194, 194, 846, 844, 194, 194, - 194, 1191, 194, 194, 1191, 847, 194, 906, 194, 194, - 194, 194, 194, 194, 194, 845, 194, 194, 850, 194, - 194, 194, 1191, 846, 844, 848, 194, 194, 194, 194, - 194, 194, 847, 194, 906, 194, 194, 194, 194, 194, - 849, 194, 1191, 194, 194, 850, 194, 194, 194, 194, - - 852, 194, 848, 194, 194, 194, 1191, 1191, 194, 194, - 907, 851, 853, 194, 194, 194, 1191, 849, 194, 194, - 908, 194, 854, 194, 194, 194, 194, 852, 194, 194, - 194, 194, 855, 194, 194, 194, 194, 907, 851, 853, - 857, 194, 1191, 856, 194, 194, 194, 908, 194, 854, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 855, - 194, 194, 194, 860, 194, 1191, 194, 857, 194, 194, - 856, 194, 194, 858, 1191, 1191, 859, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 1191, 194, - 860, 194, 194, 194, 1191, 863, 194, 864, 866, 194, - - 858, 861, 862, 859, 194, 194, 1191, 194, 909, 1191, - 194, 194, 194, 194, 194, 865, 194, 194, 194, 194, - 194, 194, 863, 194, 864, 866, 910, 1191, 861, 862, - 911, 194, 912, 867, 194, 909, 868, 194, 194, 194, - 194, 194, 865, 194, 194, 194, 869, 194, 194, 1191, - 194, 870, 871, 910, 194, 194, 194, 911, 194, 912, - 867, 1191, 1191, 868, 194, 194, 1191, 194, 194, 194, - 194, 194, 194, 869, 194, 194, 194, 872, 870, 871, - 194, 194, 194, 194, 873, 194, 1191, 874, 876, 194, - 875, 194, 194, 194, 1191, 1191, 194, 1191, 194, 194, - - 194, 194, 194, 194, 872, 1191, 878, 194, 194, 194, - 913, 873, 194, 194, 874, 876, 194, 875, 194, 194, - 194, 877, 880, 194, 882, 1191, 194, 194, 194, 194, - 879, 914, 194, 878, 194, 194, 194, 913, 881, 194, - 194, 1191, 194, 194, 194, 1191, 194, 194, 877, 880, - 194, 882, 194, 194, 194, 194, 194, 879, 914, 194, - 194, 194, 883, 194, 194, 881, 886, 194, 194, 194, - 194, 194, 194, 194, 194, 1191, 194, 884, 885, 194, - 194, 194, 194, 194, 194, 887, 915, 194, 194, 883, - 194, 194, 916, 886, 194, 194, 194, 889, 888, 194, - - 892, 194, 194, 194, 884, 885, 194, 194, 891, 194, - 194, 194, 887, 915, 194, 194, 194, 893, 194, 916, - 194, 194, 194, 194, 889, 888, 194, 892, 194, 194, - 194, 890, 895, 194, 194, 891, 194, 917, 194, 918, - 194, 194, 194, 194, 893, 194, 894, 194, 194, 194, - 194, 919, 194, 194, 194, 920, 921, 194, 890, 895, - 194, 194, 922, 194, 917, 194, 918, 194, 896, 194, - 923, 924, 925, 894, 194, 926, 927, 194, 919, 194, - 930, 194, 920, 921, 931, 928, 932, 194, 929, 922, - 933, 934, 935, 936, 937, 896, 938, 923, 924, 925, - - 939, 194, 926, 927, 940, 941, 942, 930, 943, 944, - 945, 931, 928, 932, 946, 929, 947, 933, 934, 935, - 936, 937, 948, 938, 949, 950, 951, 939, 952, 953, - 954, 940, 941, 942, 955, 943, 944, 945, 956, 957, - 958, 946, 194, 947, 194, 1191, 1191, 1191, 1191, 948, - 194, 949, 950, 951, 194, 952, 953, 954, 961, 194, - 962, 955, 194, 1022, 194, 956, 957, 958, 968, 194, - 194, 194, 963, 194, 194, 960, 1191, 194, 194, 194, - 194, 194, 964, 194, 194, 961, 194, 962, 194, 194, - 1022, 194, 965, 194, 194, 968, 1191, 194, 194, 963, - - 194, 194, 960, 194, 194, 194, 194, 194, 1191, 964, - 194, 194, 194, 966, 194, 194, 1191, 1191, 194, 965, - 194, 194, 967, 194, 194, 194, 1191, 969, 194, 971, - 194, 194, 194, 194, 970, 972, 1191, 973, 194, 194, - 966, 194, 1191, 194, 194, 194, 1023, 1024, 194, 967, - 194, 194, 977, 194, 969, 194, 971, 194, 194, 194, - 194, 970, 972, 194, 973, 194, 194, 974, 194, 978, - 194, 194, 194, 1023, 1024, 194, 1191, 976, 194, 977, - 194, 975, 194, 194, 194, 194, 194, 1025, 194, 194, - 194, 194, 981, 194, 974, 194, 978, 979, 194, 194, - - 1026, 194, 194, 194, 976, 194, 980, 982, 975, 194, - 194, 194, 194, 194, 1025, 194, 194, 194, 194, 981, - 983, 194, 194, 194, 979, 194, 194, 1026, 194, 194, - 194, 194, 194, 980, 982, 194, 194, 194, 194, 194, - 1027, 984, 194, 985, 194, 1191, 194, 983, 194, 194, - 194, 194, 194, 194, 986, 194, 194, 194, 194, 194, - 194, 1191, 194, 194, 194, 194, 1191, 1027, 984, 194, - 985, 194, 194, 194, 989, 987, 194, 194, 194, 194, - 194, 986, 194, 194, 194, 194, 988, 194, 194, 194, - 990, 194, 194, 991, 194, 992, 194, 1191, 194, 194, - - 1191, 989, 987, 194, 194, 194, 194, 194, 194, 194, - 194, 993, 194, 988, 194, 194, 194, 990, 194, 1028, - 991, 194, 992, 194, 194, 194, 194, 996, 994, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 993, 995, - 1191, 194, 194, 194, 194, 194, 1028, 998, 1029, 194, - 1191, 194, 194, 194, 996, 994, 194, 194, 194, 1001, - 997, 194, 194, 194, 194, 194, 995, 194, 194, 194, - 194, 194, 194, 194, 998, 1029, 194, 999, 194, 194, - 1030, 1000, 1002, 1031, 194, 1191, 1001, 997, 194, 194, - 194, 194, 194, 194, 194, 194, 1191, 1003, 194, 1004, - - 194, 194, 194, 194, 999, 194, 194, 1030, 1000, 1002, - 1031, 194, 1005, 194, 194, 194, 1191, 1006, 1007, 1032, - 194, 194, 194, 194, 1003, 194, 1004, 194, 194, 194, - 194, 1008, 194, 194, 194, 1191, 1191, 194, 1009, 1005, - 194, 194, 194, 194, 1006, 1007, 1032, 194, 194, 194, - 194, 1010, 194, 194, 194, 1015, 1011, 194, 1008, 194, - 194, 194, 194, 194, 194, 1009, 1033, 1013, 1012, 194, - 194, 194, 1014, 194, 194, 194, 194, 1017, 1010, 194, - 194, 194, 1015, 1011, 194, 1016, 194, 1034, 1035, 194, - 194, 194, 1191, 1033, 1013, 1012, 194, 194, 194, 1014, - - 194, 194, 194, 194, 1017, 194, 194, 1019, 194, 194, - 194, 194, 1016, 194, 1034, 1035, 1020, 1036, 194, 1018, - 194, 1037, 1038, 194, 194, 194, 1039, 1040, 194, 194, - 194, 194, 194, 194, 1019, 1041, 194, 194, 194, 1042, - 194, 1043, 1044, 1020, 1036, 1045, 1018, 194, 1037, 1038, - 1046, 1047, 194, 1039, 1040, 1048, 194, 194, 194, 1049, - 1050, 1051, 1041, 1052, 1053, 1054, 1042, 194, 1043, 1044, - 1055, 1056, 1045, 1057, 1059, 194, 194, 1046, 1047, 1061, - 1191, 1191, 1048, 1191, 1096, 1060, 1049, 1050, 1051, 194, - 1052, 1053, 1054, 194, 194, 194, 194, 1055, 1056, 194, - - 1057, 1059, 194, 194, 1062, 194, 1061, 1063, 194, 194, - 194, 1096, 1060, 194, 1191, 1064, 194, 1191, 1191, 194, - 194, 194, 194, 194, 1097, 194, 194, 1065, 194, 194, - 194, 1062, 194, 194, 1063, 194, 194, 194, 194, 194, - 194, 1066, 1064, 194, 1068, 1067, 194, 194, 1191, 194, - 1191, 1097, 194, 194, 1065, 194, 194, 194, 194, 1069, - 194, 194, 194, 194, 194, 194, 194, 194, 1066, 1098, - 194, 1068, 1067, 1070, 194, 194, 194, 194, 1071, 194, - 194, 194, 194, 194, 194, 194, 1069, 194, 194, 194, - 194, 194, 1072, 194, 194, 194, 1098, 194, 194, 194, - - 1070, 194, 194, 194, 194, 1071, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 1073, 194, 194, 1072, - 194, 194, 194, 1191, 194, 194, 194, 1075, 194, 1076, - 194, 1074, 194, 194, 194, 194, 1191, 194, 194, 194, - 194, 194, 194, 1073, 194, 194, 194, 194, 194, 194, - 194, 1079, 194, 194, 1075, 194, 1076, 1078, 1074, 194, - 194, 194, 194, 1077, 194, 194, 194, 1081, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 1079, 194, - 194, 194, 194, 194, 1078, 1191, 1080, 194, 194, 1099, - 1077, 194, 194, 194, 1081, 194, 194, 194, 194, 194, - - 1191, 1082, 194, 194, 1083, 1084, 194, 194, 194, 1085, - 194, 1191, 194, 1080, 194, 194, 1099, 194, 194, 194, - 194, 194, 194, 194, 1191, 1100, 194, 194, 1082, 1087, - 194, 1083, 1084, 194, 194, 1086, 1085, 194, 194, 194, - 194, 194, 194, 194, 194, 1088, 194, 194, 194, 1101, - 194, 1089, 1100, 194, 194, 194, 1087, 1090, 194, 194, - 194, 194, 1086, 194, 194, 194, 194, 194, 194, 1091, - 194, 194, 1088, 194, 1092, 194, 1101, 194, 1089, 194, - 194, 194, 194, 194, 1090, 194, 194, 194, 194, 1191, - 194, 194, 194, 194, 1102, 1103, 1091, 194, 194, 1104, - - 1105, 1092, 194, 1106, 194, 1093, 194, 194, 194, 194, - 194, 1107, 194, 1108, 1109, 1110, 1094, 1111, 194, 194, - 1191, 1102, 1103, 1191, 194, 194, 1104, 1105, 194, 194, - 1106, 194, 1093, 1113, 194, 1191, 194, 194, 1107, 194, - 1108, 1109, 1110, 1094, 1111, 194, 1114, 194, 194, 194, - 1116, 194, 194, 194, 194, 194, 194, 194, 194, 1115, - 1113, 194, 194, 194, 194, 1130, 194, 194, 194, 194, - 194, 194, 194, 1114, 194, 194, 194, 1116, 194, 194, - 194, 194, 194, 194, 194, 194, 1115, 194, 194, 194, - 194, 194, 1130, 194, 194, 194, 194, 194, 194, 194, - - 1117, 1118, 194, 194, 194, 194, 194, 194, 1131, 194, - 194, 1119, 194, 1191, 194, 194, 1121, 194, 194, 194, - 194, 1191, 194, 194, 194, 194, 194, 1117, 1118, 194, - 194, 194, 194, 1120, 194, 1131, 194, 194, 1119, 194, - 194, 194, 194, 1121, 194, 194, 194, 194, 1123, 194, - 194, 194, 194, 194, 1132, 1191, 1122, 194, 194, 194, - 1120, 194, 194, 194, 194, 1191, 194, 194, 194, 194, - 1133, 1125, 194, 194, 1124, 1123, 194, 194, 194, 194, - 194, 1132, 194, 1122, 194, 194, 194, 1128, 194, 194, - 1126, 1127, 194, 194, 1134, 1135, 194, 1133, 1125, 1136, - - 194, 1124, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 1128, 1191, 194, 1126, 1127, 194, - 194, 1134, 1135, 194, 1138, 1139, 1136, 194, 194, 194, - 194, 194, 1191, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 1140, 1191, - 194, 1138, 1139, 194, 194, 194, 194, 194, 194, 1141, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 1140, 1142, 194, 1143, 194, - 194, 194, 1147, 194, 1148, 1144, 1141, 194, 194, 194, - 1149, 194, 194, 194, 194, 1151, 1152, 194, 194, 194, - - 1191, 194, 194, 1142, 194, 1143, 194, 194, 194, 1147, - 1157, 1148, 1144, 1146, 194, 1151, 194, 1149, 194, 194, - 194, 1153, 194, 1152, 194, 194, 194, 194, 194, 194, - 1191, 194, 194, 194, 194, 1162, 1164, 1157, 194, 194, - 194, 194, 1154, 194, 1166, 194, 194, 194, 1153, 194, - 1160, 194, 194, 194, 194, 1156, 1168, 1159, 194, 194, - 194, 194, 1162, 1164, 1170, 194, 194, 194, 194, 1154, - 1172, 1166, 1174, 1176, 1178, 1180, 1182, 1160, 1184, 194, - 194, 1191, 1156, 1168, 1159, 194, 1191, 1191, 194, 1191, - 1191, 1170, 1191, 1191, 1191, 1191, 1191, 1172, 1191, 1174, - - 1176, 1178, 1180, 1182, 1191, 1184, 46, 46, 46, 46, - 46, 88, 1191, 1191, 88, 88, 179, 179, 179, 1191, - 179, 181, 1191, 181, 181, 181, 184, 1191, 184, 184, - 184, 194, 1191, 194, 194, 194, 7, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191 - } ; - -static const flex_int16_t yy_chk[4814] = - { 0, - 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, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 9, 9, 10, 10, 15, 16, 16, 16, - 16, 16, 16, 16, 16, 16, 16, 15, 17, 17, - 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, - 18, 21, 22, 21, 24, 1194, 23, 30, 24, 21, - 1188, 21, 24, 23, 31, 21, 21, 44, 24, 99, - - 23, 24, 22, 23, 1187, 25, 1186, 25, 21, 22, - 21, 24, 25, 23, 30, 24, 21, 25, 21, 24, - 23, 31, 21, 21, 44, 24, 99, 23, 24, 22, - 23, 27, 25, 28, 25, 1185, 32, 27, 1183, 25, - 32, 28, 29, 42, 25, 26, 32, 28, 29, 29, - 29, 42, 1181, 26, 1179, 29, 26, 1177, 27, 26, - 28, 1175, 26, 32, 27, 26, 1173, 32, 28, 29, - 42, 1171, 26, 32, 28, 29, 29, 29, 42, 34, - 26, 33, 29, 26, 36, 33, 26, 43, 43, 26, - 35, 33, 26, 34, 100, 36, 49, 49, 35, 34, - - 34, 36, 35, 38, 1169, 35, 34, 38, 33, 50, - 50, 36, 33, 38, 43, 43, 1167, 35, 33, 1165, - 34, 100, 36, 103, 55, 35, 34, 34, 36, 35, - 38, 41, 35, 41, 38, 55, 41, 58, 58, 1163, - 38, 39, 104, 39, 1161, 71, 39, 77, 86, 86, - 103, 39, 1158, 39, 39, 1155, 70, 1150, 41, 1145, - 41, 108, 1137, 41, 67, 71, 70, 77, 39, 104, - 39, 67, 71, 39, 77, 72, 70, 67, 39, 72, - 39, 39, 40, 70, 67, 72, 40, 110, 108, 40, - 40, 67, 71, 70, 77, 72, 40, 110, 67, 40, - - 182, 182, 72, 70, 67, 1130, 72, 1129, 1112, 40, - 1095, 67, 72, 40, 110, 1058, 40, 40, 1021, 959, - 897, 812, 72, 40, 110, 727, 40, 56, 56, 56, - 56, 56, 56, 56, 56, 56, 56, 57, 57, 57, - 57, 57, 57, 57, 57, 57, 57, 57, 61, 61, - 616, 61, 61, 61, 61, 61, 61, 84, 68, 114, - 505, 391, 68, 276, 186, 115, 68, 61, 61, 61, - 73, 101, 68, 61, 73, 61, 116, 84, 117, 101, - 73, 61, 68, 61, 84, 68, 114, 61, 61, 68, - 73, 102, 115, 68, 102, 184, 90, 73, 101, 68, - - 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, - 61, 88, 85, 118, 61, 61, 60, 73, 102, 59, - 52, 102, 76, 61, 62, 62, 76, 62, 62, 62, - 62, 62, 62, 76, 82, 51, 47, 78, 82, 76, - 118, 78, 82, 62, 62, 62, 76, 78, 120, 76, - 62, 45, 20, 76, 121, 19, 122, 78, 82, 83, - 76, 82, 83, 83, 78, 82, 76, 11, 78, 82, - 62, 107, 7, 76, 78, 120, 123, 62, 107, 83, - 4, 121, 81, 122, 78, 82, 83, 3, 0, 83, - 83, 81, 124, 81, 105, 105, 81, 62, 107, 62, - - 63, 125, 81, 123, 63, 107, 83, 63, 105, 81, - 0, 109, 109, 109, 63, 109, 0, 63, 81, 124, - 81, 105, 105, 81, 63, 0, 126, 63, 125, 81, - 127, 63, 111, 0, 63, 105, 129, 111, 109, 109, - 109, 63, 109, 112, 63, 112, 113, 113, 112, 0, - 130, 63, 64, 126, 112, 0, 64, 127, 132, 111, - 64, 112, 133, 129, 111, 119, 64, 119, 135, 64, - 112, 119, 112, 113, 113, 112, 64, 130, 119, 64, - 136, 112, 119, 64, 0, 132, 0, 64, 112, 133, - 137, 0, 119, 64, 119, 135, 64, 0, 119, 128, - - 134, 138, 128, 64, 65, 119, 139, 136, 139, 119, - 134, 65, 141, 65, 142, 134, 134, 137, 65, 140, - 143, 140, 144, 65, 65, 0, 128, 134, 138, 128, - 145, 65, 140, 139, 146, 139, 0, 134, 65, 141, - 65, 142, 134, 134, 147, 65, 140, 143, 140, 144, - 65, 65, 66, 148, 150, 151, 66, 145, 152, 140, - 66, 146, 153, 66, 154, 156, 66, 157, 154, 66, - 158, 147, 66, 0, 0, 160, 66, 0, 0, 66, - 148, 150, 151, 66, 0, 152, 0, 66, 155, 153, - 66, 154, 156, 66, 157, 154, 66, 158, 161, 66, - - 159, 155, 160, 66, 69, 69, 155, 162, 163, 159, - 164, 69, 69, 69, 166, 155, 167, 159, 69, 165, - 168, 171, 169, 170, 69, 161, 170, 159, 155, 0, - 165, 69, 69, 155, 162, 163, 159, 164, 69, 69, - 69, 166, 169, 167, 159, 69, 165, 168, 171, 169, - 170, 69, 74, 170, 172, 173, 74, 165, 174, 175, - 176, 173, 177, 279, 194, 0, 74, 0, 0, 169, - 281, 174, 74, 74, 195, 195, 74, 0, 0, 74, - 0, 172, 173, 74, 194, 174, 175, 176, 173, 177, - 279, 194, 196, 74, 202, 195, 0, 281, 174, 74, - - 74, 195, 195, 74, 75, 75, 227, 196, 197, 0, - 282, 194, 196, 75, 202, 197, 199, 75, 0, 196, - 75, 202, 195, 197, 75, 0, 227, 0, 197, 199, - 0, 75, 75, 227, 196, 197, 199, 282, 0, 196, - 75, 202, 197, 199, 75, 198, 284, 75, 198, 198, - 197, 75, 79, 227, 79, 197, 199, 79, 200, 286, - 200, 0, 79, 199, 79, 79, 0, 0, 0, 198, - 0, 0, 198, 284, 79, 198, 198, 0, 206, 79, - 200, 79, 0, 0, 79, 200, 286, 200, 206, 79, - 0, 79, 79, 201, 201, 201, 198, 203, 206, 0, - - 287, 79, 80, 207, 203, 206, 80, 200, 201, 80, - 80, 203, 288, 201, 289, 206, 80, 203, 207, 80, - 201, 201, 201, 207, 203, 206, 80, 287, 0, 80, - 207, 203, 0, 80, 0, 201, 80, 80, 203, 288, - 201, 289, 0, 80, 203, 207, 80, 0, 0, 0, - 207, 0, 0, 80, 91, 91, 91, 91, 91, 91, - 91, 91, 91, 91, 92, 92, 92, 92, 92, 92, - 92, 92, 92, 92, 93, 93, 93, 93, 93, 93, - 93, 93, 93, 93, 93, 187, 187, 187, 187, 187, - 187, 187, 187, 187, 187, 188, 188, 188, 188, 188, - - 188, 188, 188, 188, 188, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 204, 209, 210, 211, - 204, 291, 212, 292, 293, 294, 0, 0, 295, 211, - 209, 209, 213, 213, 210, 0, 212, 209, 210, 211, - 204, 0, 212, 204, 209, 210, 211, 204, 291, 212, - 292, 293, 294, 213, 233, 295, 211, 209, 209, 213, - 213, 210, 229, 212, 209, 210, 211, 204, 205, 212, - 214, 0, 214, 229, 233, 205, 205, 205, 216, 205, - 213, 233, 229, 0, 0, 216, 296, 297, 205, 229, - 0, 0, 214, 0, 0, 205, 298, 214, 216, 214, - - 229, 233, 205, 205, 205, 216, 205, 0, 299, 229, - 217, 219, 216, 296, 297, 205, 208, 217, 208, 214, - 208, 208, 218, 298, 219, 216, 220, 208, 0, 0, - 217, 219, 218, 0, 208, 299, 220, 217, 219, 0, - 208, 0, 218, 208, 217, 208, 220, 208, 208, 218, - 300, 219, 237, 220, 208, 221, 222, 217, 219, 218, - 245, 208, 221, 220, 0, 237, 222, 208, 215, 218, - 215, 0, 237, 220, 215, 221, 222, 300, 223, 237, - 245, 215, 221, 222, 0, 215, 0, 245, 223, 221, - 215, 225, 237, 222, 240, 215, 224, 215, 223, 237, - - 225, 215, 221, 222, 226, 223, 0, 245, 215, 240, - 224, 225, 215, 224, 240, 223, 224, 215, 225, 231, - 226, 240, 228, 224, 226, 223, 228, 225, 231, 0, - 232, 226, 234, 234, 232, 301, 240, 224, 225, 231, - 224, 240, 228, 224, 0, 302, 231, 226, 235, 228, - 232, 226, 234, 228, 235, 231, 235, 232, 0, 234, - 234, 232, 301, 236, 0, 236, 231, 236, 235, 228, - 230, 230, 302, 238, 0, 235, 236, 232, 0, 234, - 230, 235, 238, 235, 241, 230, 230, 236, 304, 0, - 236, 230, 236, 238, 236, 235, 239, 230, 230, 241, - - 238, 242, 305, 236, 241, 239, 243, 230, 242, 238, - 243, 241, 230, 230, 236, 304, 239, 0, 230, 0, - 238, 242, 0, 239, 244, 244, 241, 247, 242, 305, - 243, 241, 239, 243, 0, 242, 248, 243, 246, 246, - 306, 250, 247, 239, 244, 250, 249, 247, 242, 248, - 249, 244, 244, 0, 247, 0, 248, 243, 307, 246, - 252, 250, 252, 248, 0, 246, 246, 306, 250, 247, - 249, 244, 250, 249, 247, 0, 248, 249, 251, 308, - 252, 254, 251, 248, 254, 307, 246, 252, 250, 252, - 256, 251, 253, 0, 0, 0, 251, 249, 309, 253, - - 256, 254, 251, 0, 311, 251, 308, 252, 254, 251, - 256, 254, 253, 255, 0, 255, 0, 256, 251, 253, - 257, 258, 255, 251, 257, 309, 253, 256, 254, 251, - 255, 311, 259, 312, 258, 255, 259, 256, 0, 253, - 255, 258, 255, 260, 257, 261, 260, 257, 258, 255, - 313, 257, 314, 261, 262, 315, 259, 255, 264, 259, - 312, 258, 255, 259, 261, 261, 260, 263, 258, 264, - 260, 257, 261, 260, 262, 263, 0, 313, 264, 314, - 261, 262, 315, 259, 265, 264, 0, 263, 265, 267, - 267, 261, 261, 260, 263, 0, 264, 316, 0, 266, - - 271, 262, 263, 266, 265, 264, 266, 0, 265, 268, - 267, 265, 270, 268, 263, 265, 267, 267, 273, 266, - 271, 269, 273, 272, 316, 270, 266, 271, 269, 268, - 266, 265, 270, 266, 269, 265, 268, 267, 272, 270, - 268, 269, 273, 272, 0, 273, 266, 271, 269, 273, - 272, 0, 270, 0, 0, 269, 268, 317, 318, 270, - 319, 269, 320, 321, 290, 272, 290, 303, 269, 273, - 272, 277, 277, 277, 277, 277, 277, 277, 277, 277, - 277, 290, 303, 322, 317, 318, 323, 319, 324, 320, - 321, 290, 325, 290, 303, 326, 327, 328, 329, 330, - - 331, 332, 333, 335, 334, 336, 338, 339, 290, 303, - 322, 340, 341, 323, 334, 324, 342, 343, 344, 325, - 345, 346, 326, 327, 328, 329, 330, 331, 332, 333, - 335, 334, 336, 338, 339, 347, 349, 350, 340, 341, - 351, 334, 352, 342, 343, 344, 353, 345, 346, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 367, 347, 349, 350, 368, 369, 351, 370, 352, - 371, 372, 373, 353, 374, 375, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 367, 377, - 380, 378, 368, 369, 379, 370, 379, 371, 372, 373, - - 378, 374, 375, 381, 382, 383, 384, 385, 386, 387, - 388, 389, 0, 387, 0, 0, 377, 380, 378, 0, - 0, 379, 0, 379, 0, 0, 0, 378, 0, 0, - 381, 382, 383, 384, 385, 386, 387, 388, 389, 393, - 387, 392, 392, 392, 392, 392, 392, 392, 392, 392, - 392, 394, 395, 396, 397, 398, 400, 0, 0, 393, - 399, 397, 0, 0, 399, 0, 393, 506, 0, 507, - 0, 394, 395, 396, 397, 398, 400, 409, 394, 395, - 396, 397, 398, 400, 399, 401, 393, 399, 397, 402, - 403, 399, 409, 402, 506, 401, 507, 409, 394, 395, - - 396, 397, 398, 400, 409, 401, 404, 0, 403, 402, - 403, 399, 401, 404, 406, 0, 402, 403, 0, 409, - 402, 405, 401, 405, 409, 508, 404, 406, 0, 407, - 0, 408, 401, 404, 406, 403, 402, 403, 405, 408, - 404, 406, 410, 405, 0, 407, 0, 413, 405, 407, - 405, 408, 508, 404, 406, 411, 407, 412, 408, 411, - 0, 406, 410, 0, 0, 405, 408, 413, 415, 410, - 405, 412, 407, 414, 413, 415, 407, 412, 408, 411, - 0, 416, 411, 0, 412, 416, 411, 414, 415, 410, - 418, 420, 417, 414, 413, 415, 417, 0, 412, 0, - - 414, 416, 415, 0, 412, 418, 411, 419, 416, 419, - 418, 420, 416, 424, 414, 415, 417, 418, 420, 417, - 414, 509, 422, 417, 421, 422, 425, 427, 416, 419, - 423, 426, 418, 424, 419, 426, 419, 418, 420, 421, - 424, 423, 0, 417, 421, 422, 425, 427, 509, 422, - 423, 421, 422, 425, 427, 426, 419, 423, 426, 428, - 424, 428, 426, 430, 429, 432, 421, 431, 423, 433, - 430, 421, 422, 425, 427, 510, 0, 423, 429, 432, - 431, 428, 426, 430, 429, 432, 428, 431, 428, 433, - 430, 429, 432, 435, 431, 434, 433, 430, 0, 434, - - 438, 435, 510, 438, 0, 429, 432, 431, 428, 436, - 430, 429, 432, 435, 431, 439, 433, 436, 437, 434, - 435, 440, 434, 438, 440, 437, 434, 438, 435, 436, - 438, 439, 0, 441, 442, 439, 436, 441, 437, 446, - 435, 440, 439, 0, 436, 437, 434, 447, 440, 442, - 438, 440, 437, 441, 442, 0, 436, 443, 439, 446, - 441, 442, 439, 444, 441, 437, 446, 447, 440, 444, - 443, 448, 445, 450, 447, 449, 442, 443, 0, 0, - 441, 442, 445, 444, 443, 449, 446, 0, 452, 450, - 444, 448, 445, 450, 447, 449, 444, 443, 448, 445, - - 450, 0, 449, 454, 443, 451, 453, 455, 452, 445, - 444, 455, 449, 457, 451, 452, 450, 457, 448, 445, - 450, 453, 449, 454, 0, 451, 453, 455, 456, 456, - 454, 460, 451, 453, 455, 452, 0, 457, 455, 0, - 457, 451, 463, 458, 457, 458, 461, 460, 453, 456, - 454, 460, 451, 453, 455, 456, 456, 459, 460, 459, - 464, 461, 463, 458, 457, 462, 461, 464, 0, 463, - 458, 467, 458, 461, 460, 0, 456, 459, 460, 468, - 464, 462, 465, 466, 459, 462, 459, 464, 461, 463, - 458, 467, 462, 461, 464, 465, 469, 466, 467, 468, - - 469, 0, 465, 466, 459, 470, 468, 464, 462, 465, - 466, 472, 462, 0, 470, 511, 0, 471, 467, 472, - 469, 0, 465, 469, 466, 470, 468, 469, 471, 465, - 466, 472, 470, 473, 475, 474, 477, 471, 472, 474, - 473, 470, 511, 477, 471, 476, 472, 469, 476, 475, - 0, 478, 470, 473, 475, 471, 477, 480, 472, 474, - 473, 475, 474, 477, 471, 476, 474, 473, 481, 479, - 477, 478, 476, 482, 512, 476, 475, 480, 478, 479, - 473, 475, 484, 477, 480, 514, 474, 483, 481, 479, - 485, 482, 476, 482, 483, 481, 479, 484, 478, 0, - - 482, 512, 484, 517, 480, 485, 479, 483, 488, 484, - 485, 487, 514, 490, 483, 481, 479, 485, 482, 486, - 482, 483, 487, 488, 484, 491, 486, 489, 488, 484, - 517, 487, 485, 490, 483, 488, 489, 485, 487, 486, - 490, 0, 492, 0, 0, 491, 486, 489, 493, 487, - 488, 492, 491, 486, 489, 488, 0, 493, 487, 0, - 490, 494, 492, 489, 0, 501, 486, 495, 493, 492, - 498, 494, 491, 494, 489, 493, 0, 495, 492, 496, - 501, 494, 497, 496, 493, 501, 498, 495, 494, 492, - 498, 497, 501, 0, 495, 493, 0, 498, 494, 499, - - 494, 499, 497, 496, 495, 500, 496, 501, 494, 497, - 496, 502, 501, 498, 495, 0, 503, 498, 497, 503, - 502, 499, 504, 500, 502, 500, 499, 518, 499, 497, - 496, 502, 500, 519, 520, 504, 503, 522, 502, 523, - 524, 526, 504, 503, 527, 528, 503, 502, 499, 504, - 500, 502, 500, 529, 518, 530, 531, 532, 502, 533, - 519, 520, 504, 503, 522, 534, 523, 524, 526, 504, - 537, 527, 528, 538, 539, 540, 541, 542, 543, 545, - 529, 546, 530, 531, 532, 549, 533, 550, 552, 554, - 555, 556, 534, 557, 558, 559, 560, 537, 562, 566, - - 538, 539, 540, 541, 542, 543, 545, 560, 546, 568, - 570, 572, 549, 573, 550, 552, 554, 555, 556, 575, - 557, 558, 559, 560, 576, 562, 566, 571, 571, 577, - 578, 579, 581, 582, 560, 584, 568, 570, 572, 585, - 573, 586, 587, 588, 589, 590, 575, 592, 593, 594, - 595, 576, 596, 599, 571, 571, 577, 578, 579, 581, - 582, 600, 584, 602, 603, 604, 585, 605, 586, 587, - 588, 589, 590, 606, 592, 593, 594, 595, 607, 596, - 599, 608, 609, 611, 613, 615, 617, 0, 600, 0, - 602, 603, 604, 0, 605, 619, 620, 0, 622, 617, - - 606, 618, 730, 0, 621, 607, 617, 622, 608, 609, - 611, 613, 615, 617, 618, 619, 620, 621, 622, 623, - 624, 618, 619, 620, 621, 622, 617, 0, 618, 730, - 626, 621, 625, 617, 622, 627, 625, 732, 734, 623, - 624, 618, 619, 620, 621, 622, 623, 624, 618, 628, - 626, 621, 629, 628, 630, 627, 625, 626, 630, 625, - 629, 0, 627, 625, 732, 734, 623, 624, 632, 735, - 736, 631, 629, 628, 630, 737, 628, 626, 0, 629, - 628, 630, 627, 625, 631, 630, 0, 629, 632, 633, - 635, 631, 634, 636, 0, 632, 735, 736, 631, 629, - - 628, 630, 737, 0, 633, 635, 634, 637, 639, 633, - 635, 631, 634, 636, 637, 632, 633, 635, 631, 634, - 636, 641, 638, 640, 639, 641, 738, 637, 639, 0, - 638, 633, 635, 634, 637, 639, 633, 635, 640, 634, - 636, 637, 638, 640, 739, 641, 642, 646, 641, 638, - 640, 639, 641, 738, 637, 639, 643, 638, 643, 642, - 644, 645, 647, 0, 644, 640, 642, 646, 645, 638, - 640, 739, 641, 642, 646, 0, 0, 0, 643, 648, - 644, 645, 647, 643, 650, 643, 642, 644, 645, 647, - 648, 644, 649, 642, 646, 645, 654, 652, 651, 648, - - 650, 652, 655, 649, 650, 643, 648, 644, 645, 647, - 653, 650, 649, 651, 653, 0, 654, 648, 651, 649, - 0, 652, 655, 654, 652, 651, 648, 650, 652, 655, - 649, 650, 656, 658, 653, 0, 659, 653, 657, 649, - 651, 653, 657, 654, 661, 651, 660, 656, 652, 655, - 660, 0, 656, 658, 0, 661, 659, 740, 662, 656, - 658, 653, 657, 659, 661, 657, 663, 664, 666, 657, - 660, 661, 0, 660, 656, 663, 665, 660, 662, 656, - 658, 668, 661, 659, 740, 662, 663, 664, 666, 657, - 665, 661, 0, 663, 664, 666, 665, 660, 667, 669, - - 668, 668, 663, 665, 672, 662, 0, 0, 668, 670, - 742, 667, 669, 663, 664, 666, 0, 665, 667, 669, - 743, 674, 670, 665, 672, 667, 669, 668, 668, 670, - 671, 672, 671, 673, 675, 676, 670, 742, 667, 669, - 673, 674, 0, 671, 678, 667, 669, 743, 674, 670, - 671, 672, 680, 673, 675, 676, 670, 671, 677, 671, - 673, 675, 676, 681, 678, 0, 685, 673, 674, 679, - 671, 678, 680, 677, 0, 0, 679, 671, 677, 680, - 673, 675, 676, 681, 684, 677, 685, 682, 0, 679, - 681, 678, 683, 685, 0, 683, 679, 684, 687, 680, - - 677, 682, 682, 679, 684, 677, 0, 682, 744, 0, - 681, 684, 683, 685, 682, 686, 679, 686, 687, 683, - 688, 691, 683, 689, 684, 687, 745, 0, 682, 682, - 746, 684, 748, 688, 682, 744, 689, 686, 690, 683, - 688, 691, 686, 689, 686, 687, 690, 688, 691, 0, - 689, 692, 693, 745, 694, 692, 693, 746, 690, 748, - 688, 0, 0, 689, 686, 690, 0, 688, 691, 695, - 689, 696, 697, 690, 694, 692, 693, 695, 692, 693, - 699, 694, 692, 693, 696, 690, 0, 697, 699, 695, - 698, 696, 697, 698, 0, 0, 695, 0, 696, 697, - - 699, 694, 692, 693, 695, 0, 701, 699, 701, 702, - 749, 696, 700, 698, 697, 699, 695, 698, 696, 697, - 698, 700, 704, 703, 706, 0, 708, 699, 701, 702, - 703, 750, 700, 701, 705, 701, 702, 749, 705, 700, - 698, 0, 704, 703, 706, 0, 708, 709, 700, 704, - 703, 706, 707, 708, 705, 701, 702, 703, 750, 700, - 712, 705, 707, 710, 711, 705, 713, 709, 713, 704, - 703, 706, 707, 708, 709, 0, 714, 710, 711, 707, - 712, 705, 715, 710, 711, 714, 751, 712, 713, 707, - 710, 711, 752, 713, 709, 713, 714, 716, 715, 707, - - 719, 716, 715, 714, 710, 711, 718, 712, 718, 715, - 710, 711, 714, 751, 720, 713, 717, 720, 721, 752, - 719, 716, 723, 714, 716, 715, 718, 719, 716, 715, - 722, 717, 724, 718, 720, 718, 717, 753, 721, 754, - 725, 720, 723, 717, 720, 721, 722, 719, 716, 723, - 722, 755, 724, 718, 726, 756, 757, 722, 717, 724, - 725, 720, 760, 717, 753, 721, 754, 725, 726, 723, - 761, 763, 766, 722, 726, 769, 770, 722, 755, 724, - 772, 726, 756, 757, 777, 771, 778, 725, 771, 760, - 779, 780, 781, 784, 785, 726, 786, 761, 763, 766, - - 787, 726, 769, 770, 788, 790, 791, 772, 792, 793, - 794, 777, 771, 778, 795, 771, 796, 779, 780, 781, - 784, 785, 797, 786, 798, 799, 800, 787, 801, 803, - 804, 788, 790, 791, 805, 792, 793, 794, 807, 808, - 809, 795, 813, 796, 814, 0, 0, 0, 0, 797, - 816, 798, 799, 800, 815, 801, 803, 804, 817, 818, - 819, 805, 813, 898, 814, 807, 808, 809, 825, 813, - 816, 814, 820, 820, 815, 815, 0, 816, 817, 818, - 819, 815, 821, 822, 821, 817, 818, 819, 825, 813, - 898, 814, 822, 820, 826, 825, 0, 816, 823, 820, - - 820, 815, 815, 822, 821, 817, 818, 819, 0, 821, - 822, 821, 824, 823, 826, 825, 0, 0, 823, 822, - 820, 826, 824, 827, 828, 823, 0, 827, 830, 829, - 822, 821, 824, 829, 828, 830, 0, 831, 832, 824, - 823, 826, 0, 827, 828, 823, 900, 901, 830, 824, - 827, 828, 836, 829, 827, 830, 829, 831, 832, 824, - 829, 828, 830, 833, 831, 832, 834, 833, 835, 837, - 827, 828, 836, 900, 901, 830, 0, 835, 840, 836, - 829, 834, 838, 833, 831, 832, 834, 902, 835, 837, - 833, 839, 840, 834, 833, 835, 837, 838, 840, 836, - - 903, 843, 838, 841, 835, 840, 839, 841, 834, 838, - 833, 839, 844, 834, 902, 835, 837, 847, 839, 840, - 842, 843, 842, 841, 838, 840, 845, 903, 843, 838, - 841, 849, 844, 839, 841, 850, 846, 847, 839, 844, - 905, 845, 842, 846, 847, 0, 845, 842, 843, 842, - 841, 849, 848, 845, 848, 850, 846, 852, 849, 844, - 851, 0, 850, 846, 847, 853, 0, 905, 845, 842, - 846, 854, 848, 845, 855, 851, 856, 852, 849, 848, - 851, 848, 850, 846, 852, 853, 854, 851, 857, 858, - 856, 854, 853, 856, 855, 857, 856, 0, 854, 848, - - 0, 855, 851, 856, 852, 859, 860, 851, 857, 858, - 861, 862, 853, 854, 863, 857, 858, 856, 854, 907, - 856, 855, 857, 856, 865, 859, 860, 865, 863, 867, - 861, 862, 859, 860, 863, 857, 858, 861, 862, 864, - 0, 863, 868, 864, 865, 866, 907, 869, 908, 867, - 0, 865, 859, 860, 865, 863, 867, 861, 862, 872, - 866, 863, 868, 864, 870, 866, 864, 869, 871, 868, - 864, 865, 866, 874, 869, 908, 867, 870, 873, 872, - 909, 871, 873, 910, 870, 0, 872, 866, 871, 868, - 864, 870, 866, 874, 869, 871, 0, 875, 873, 876, - - 874, 875, 878, 876, 870, 873, 872, 909, 871, 873, - 910, 870, 877, 877, 879, 871, 0, 878, 879, 912, - 874, 875, 878, 876, 875, 873, 876, 887, 875, 878, - 876, 880, 880, 877, 879, 0, 0, 882, 881, 877, - 877, 879, 881, 883, 878, 879, 912, 887, 875, 878, - 876, 882, 880, 884, 887, 888, 883, 882, 880, 880, - 877, 879, 881, 883, 882, 881, 914, 885, 884, 881, - 883, 885, 886, 884, 887, 888, 886, 890, 882, 880, - 884, 891, 888, 883, 882, 889, 889, 918, 920, 881, - 883, 885, 0, 914, 885, 884, 886, 890, 885, 886, - - 884, 891, 888, 886, 890, 892, 889, 893, 891, 895, - 896, 893, 889, 889, 918, 920, 894, 921, 885, 892, - 894, 927, 928, 886, 890, 892, 929, 931, 891, 895, - 896, 893, 892, 889, 893, 933, 895, 896, 893, 934, - 894, 936, 937, 894, 921, 938, 892, 894, 927, 928, - 940, 941, 892, 929, 931, 942, 895, 896, 893, 943, - 945, 947, 933, 949, 950, 951, 934, 894, 936, 937, - 952, 957, 938, 958, 960, 961, 962, 940, 941, 963, - 0, 0, 942, 0, 1025, 962, 943, 945, 947, 964, - 949, 950, 951, 965, 960, 961, 962, 952, 957, 963, - - 958, 960, 961, 962, 964, 966, 963, 965, 967, 964, - 968, 1025, 962, 965, 0, 967, 964, 0, 0, 969, - 965, 960, 961, 962, 1028, 966, 963, 969, 967, 972, - 968, 964, 966, 973, 965, 967, 964, 968, 971, 969, - 965, 970, 967, 970, 972, 971, 969, 975, 0, 972, - 0, 1028, 966, 973, 969, 967, 972, 968, 971, 974, - 973, 977, 974, 970, 978, 971, 969, 975, 970, 1029, - 970, 972, 971, 976, 975, 976, 972, 979, 980, 981, - 973, 977, 974, 982, 978, 971, 974, 984, 977, 974, - 970, 978, 982, 985, 975, 976, 1029, 979, 980, 981, - - 976, 983, 976, 982, 979, 980, 981, 984, 977, 974, - 982, 978, 986, 985, 984, 987, 983, 988, 989, 982, - 985, 983, 976, 0, 979, 980, 981, 990, 983, 991, - 982, 989, 986, 991, 984, 987, 0, 988, 989, 986, - 985, 992, 987, 983, 988, 989, 994, 990, 983, 993, - 995, 996, 997, 991, 990, 996, 991, 995, 989, 986, - 991, 992, 987, 993, 988, 989, 994, 999, 992, 993, - 995, 998, 997, 994, 990, 996, 993, 995, 996, 997, - 991, 1000, 996, 1001, 995, 0, 998, 999, 992, 1032, - 993, 998, 1006, 994, 999, 1004, 993, 995, 998, 997, - - 0, 1000, 996, 1001, 1002, 1003, 1002, 1003, 1000, 1004, - 1001, 0, 1006, 998, 999, 1004, 1032, 1008, 998, 1006, - 1007, 1005, 1004, 1010, 0, 1033, 1002, 1003, 1000, 1007, - 1001, 1002, 1003, 1002, 1003, 1005, 1004, 1008, 1009, 1006, - 1007, 1005, 1004, 1010, 1008, 1009, 1015, 1007, 1005, 1038, - 1010, 1011, 1033, 1002, 1003, 1011, 1007, 1012, 1009, 1014, - 1016, 1012, 1005, 1017, 1008, 1009, 1015, 1007, 1005, 1013, - 1010, 1013, 1009, 1015, 1014, 1011, 1038, 1018, 1011, 1014, - 1016, 1012, 1011, 1017, 1012, 1009, 1014, 1016, 1012, 0, - 1017, 1013, 1019, 1015, 1039, 1042, 1013, 1018, 1013, 1043, - - 1046, 1014, 1011, 1047, 1018, 1019, 1014, 1016, 1012, 1020, - 1017, 1050, 1019, 1052, 1053, 1054, 1020, 1055, 1013, 1019, - 0, 1039, 1042, 0, 1018, 1059, 1043, 1046, 1060, 1020, - 1047, 1061, 1019, 1062, 1063, 0, 1020, 1064, 1050, 1019, - 1052, 1053, 1054, 1020, 1055, 1059, 1065, 1067, 1060, 1068, - 1069, 1061, 1059, 1062, 1063, 1060, 1020, 1064, 1061, 1066, - 1062, 1063, 1071, 1066, 1064, 1096, 1065, 1067, 1072, 1068, - 1069, 1073, 1059, 1065, 1067, 1060, 1068, 1069, 1061, 1074, - 1062, 1063, 1071, 1066, 1064, 1070, 1066, 1077, 1072, 1071, - 1066, 1073, 1096, 1065, 1067, 1072, 1068, 1069, 1073, 1074, - - 1070, 1075, 1078, 1075, 1076, 1070, 1074, 1077, 1098, 1071, - 1066, 1076, 1070, 0, 1077, 1072, 1080, 1081, 1073, 1082, - 1079, 0, 1078, 1075, 1076, 1085, 1074, 1070, 1075, 1078, - 1075, 1076, 1070, 1079, 1077, 1098, 1080, 1081, 1076, 1082, - 1079, 1083, 1084, 1080, 1081, 1085, 1082, 1079, 1084, 1078, - 1075, 1076, 1085, 1086, 1101, 0, 1083, 1088, 1089, 1087, - 1079, 1083, 1084, 1080, 1081, 0, 1082, 1079, 1083, 1084, - 1104, 1089, 1085, 1086, 1087, 1084, 1091, 1088, 1089, 1087, - 1086, 1101, 1090, 1083, 1088, 1089, 1087, 1092, 1083, 1084, - 1090, 1091, 1093, 1094, 1108, 1109, 1091, 1104, 1089, 1110, - - 1086, 1087, 1090, 1091, 1088, 1089, 1087, 1092, 1114, 1090, - 1115, 1113, 1093, 1094, 1092, 0, 1116, 1090, 1091, 1093, - 1094, 1108, 1109, 1091, 1113, 1115, 1110, 1117, 1114, 1090, - 1115, 1113, 0, 1118, 1092, 1114, 1116, 1115, 1113, 1093, - 1094, 1119, 1120, 1116, 1122, 1123, 1121, 1117, 1118, 0, - 1124, 1113, 1115, 1118, 1117, 1114, 1125, 1115, 1113, 1121, - 1118, 1119, 1120, 1116, 1122, 1123, 1121, 1126, 1119, 1120, - 1124, 1122, 1123, 1121, 1117, 1118, 1125, 1124, 1126, 1128, - 1118, 1127, 1131, 1125, 1133, 1127, 1121, 1126, 1119, 1120, - 1136, 1122, 1123, 1121, 1126, 1138, 1139, 1124, 1140, 1128, - - 0, 1127, 1142, 1125, 1143, 1126, 1128, 1141, 1127, 1131, - 1149, 1133, 1127, 1146, 1126, 1151, 1139, 1136, 1140, 1152, - 1138, 1141, 1142, 1139, 1143, 1140, 1128, 1141, 1127, 1142, - 0, 1143, 1144, 1153, 1141, 1156, 1159, 1149, 1160, 1152, - 1138, 1154, 1144, 1139, 1162, 1140, 1152, 1138, 1141, 1142, - 1154, 1143, 1144, 1153, 1141, 1146, 1164, 1151, 1160, 1144, - 1153, 1154, 1156, 1159, 1166, 1160, 1152, 1138, 1154, 1144, - 1168, 1162, 1170, 1172, 1174, 1176, 1178, 1154, 1180, 1144, - 1153, 0, 1146, 1164, 1151, 1160, 0, 0, 1154, 0, - 0, 1166, 0, 0, 0, 0, 0, 1168, 0, 1170, - - 1172, 1174, 1176, 1178, 0, 1180, 1192, 1192, 1192, 1192, - 1192, 1193, 0, 0, 1193, 1193, 1195, 1195, 1195, 0, - 1195, 1196, 0, 1196, 1196, 1196, 1197, 0, 1197, 1197, - 1197, 1198, 0, 1198, 1198, 1198, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - - 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, - 1191, 1191, 1191 - } ; +struct yy_trans_info { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; +}; +static const flex_int16_t yy_accept[1192] = { + 0, 0, 0, 167, 167, 2, 2, 171, 169, 4, 4, 169, 169, 158, 165, 158, 158, 162, 158, 158, 158, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 158, + 167, 168, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 153, 0, 1, 0, 160, + 159, 162, 155, 154, 152, 156, 164, 164, 164, + + 164, 164, 164, 123, 164, 124, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 125, 164, 164, 126, 127, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 128, 129, 130, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 131, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 157, 167, 166, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 163, 0, 159, 111, 164, 112, 164, 164, 113, 164, 114, 164, 164, 164, 164, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 135, 164, + + 164, 164, 164, 164, 164, 164, 164, 164, 164, 115, 164, 164, 164, 164, 164, 164, 164, 164, 164, 116, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 117, 164, 164, 118, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 164, 119, 164, 164, 120, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 121, 164, 164, 164, + 164, 164, 164, 164, 164, 164, 122, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 0, 164, 164, 164, 164, 164, 164, 164, 82, 164, 83, 45, 84, 164, 164, 164, 85, 164, 164, + 86, 141, 164, 164, 164, 164, 164, 88, 164, 164, 164, 89, 90, 164, 164, 164, 164, 164, 164, 164, 91, 164, 164, + 92, 93, 164, 164, 94, 164, 95, 134, 164, 164, 164, 164, 164, 164, 96, 164, 97, 98, 99, 164, 101, 164, 102, + 164, 164, 164, 164, 103, 164, 164, 164, 164, 164, 104, 164, 164, 32, 164, 164, 164, 164, 164, 164, 164, 105, 164, + 164, 164, 164, 164, 106, 107, 30, 164, + + 144, 164, 164, 164, 164, 164, 164, 164, 164, 108, 164, 109, 164, 110, 137, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 0, 62, 63, 164, 64, 164, 147, 164, 164, 164, 164, 164, 164, 164, 65, 164, 164, 164, 164, 164, + 66, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 145, 67, 164, 164, 68, 164, 140, 100, 164, 69, 70, 164, + 164, 164, 164, 71, 72, 73, 74, 164, 136, 164, 164, 164, 75, 76, 164, 164, 164, 164, 164, 77, 164, 164, 164, + 164, 164, 164, 164, 78, 164, 164, 164, + + 164, 79, 164, 164, 164, 80, 164, 164, 164, 81, 143, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 0, 164, 35, 164, + + 164, 164, 36, 149, 164, 37, 164, 164, 164, 164, 38, 164, 39, 164, 40, 41, 42, 164, 43, 164, 164, 46, 47, + 48, 49, 50, 164, 164, 164, 51, 133, 142, 164, 164, 52, 164, 164, 164, 53, 164, 164, 54, 132, 55, 164, 56, + 164, 57, 164, 164, 164, 164, 58, 59, 60, 61, 164, 164, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, + + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 15, 16, + 17, 164, 18, 19, 164, 164, 31, 20, 164, 164, 21, 22, 44, 23, 164, 164, 139, 24, 164, 164, 25, 26, 164, + 164, 27, 138, 164, 28, 164, 164, 164, 164, 29, 34, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 0, 164, 87, 164, 10, 11, + + 164, 150, 12, 164, 13, 148, 33, 164, 164, 164, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 0, 164, 164, 7, 164, 8, 9, 164, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, + 5, 6, 164, 2, 2, 2, 2, 2, 0, 0, 146, 2, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, + 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 151, 2, 2, 0, 2, 0, 2, 161, 2, 0 + +}; + +static const YY_CHAR yy_ec[256] = { + 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 2, 4, 5, 1, 1, 6, 1, 7, 6, 6, 6, 6, 6, 8, 9, 6, 10, 11, 12, 13, 14, 15, 16, 17, + 18, 19, 6, 6, 20, 21, 22, 6, 1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, 6, 1, 6, 6, 49, 1, 50, 51, 52, 53, + + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 6, 76, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; + +static const YY_CHAR yy_meta[77] = {0, 1, 1, 2, 1, 3, 1, 4, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1}; + +static const flex_int16_t yy_base[1199] = { + 0, 0, 0, 581, 574, 76, 0, 573, 4737, 151, 153, 547, 0, 4737, 4737, 149, 148, + 160, 159, 535, 532, 156, 156, 164, 162, 172, 223, 198, 211, 215, 151, 168, 210, 255, + 257, 263, 262, 0, 277, 317, 360, 296, 221, 258, 171, 476, 0, 530, 0, 295, 308, + 515, 516, 0, 0, 317, 418, 429, 317, 499, 496, 448, 524, 578, 630, 678, 730, 338, + 436, 778, 330, 319, 349, 444, 830, 878, 500, 321, 511, 928, 980, 556, 512, 533, 431, + 437, 347, 4737, 507, 4737, 485, 1045, 1055, 1066, 4737, 4737, 4737, 4737, 0, 174, 253, + + 438, 469, 284, 318, 567, 0, 538, 339, 578, 361, 591, 621, 607, 417, 429, 436, 453, + 489, 641, 515, 521, 520, 537, 556, 568, 590, 594, 659, 601, 608, 0, 628, 625, 675, + 633, 650, 644, 674, 674, 697, 673, 679, 685, 681, 689, 701, 722, 726, 0, 729, 714, + 719, 740, 738, 766, 737, 734, 741, 776, 739, 776, 768, 786, 787, 785, 788, 782, 783, + 800, 793, 796, 824, 822, 832, 833, 819, 840, 4737, 0, 4737, 0, 399, 0, 491, 0, + 453, 1076, 1086, 1097, 0, 0, 0, 0, 838, 849, 866, 882, 923, 890, 934, + + 967, 868, 971, 1094, 1142, 952, 977, 1194, 1091, 1092, 1093, 1096, 1107, 1146, 1244, 1152, 1184, + 1196, 1185, 1200, 1229, 1230, 1252, 1270, 1265, 1278, 880, 1296, 1136, 1345, 1293, 1304, 1128, 1306, + 1322, 1341, 1226, 1347, 1370, 1268, 1358, 1375, 1384, 1398, 1234, 1413, 1401, 1410, 1424, 1415, 1456, + 1434, 1466, 1455, 1489, 1464, 1498, 1495, 1510, 1520, 1519, 1528, 1541, 1532, 1562, 1573, 1564, 1583, + 1595, 1586, 1574, 1597, 1596, 0, 4737, 452, 1662, 0, 837, 0, 844, 877, 0, 924, 0, + 923, 970, 968, 981, 1640, 1082, 1081, 1090, 1084, 1082, 1164, 1147, 1170, 1168, 1217, + + 1305, 1323, 1641, 1364, 1376, 1399, 1435, 1442, 1472, 0, 1482, 1507, 1526, 1512, 1522, 1558, 1617, + 1632, 1638, 1628, 1629, 1650, 1663, 1646, 1663, 1665, 1655, 1658, 1666, 1663, 1674, 1675, 1676, 1678, + 1661, 1670, 0, 1665, 1681, 1681, 1687, 1694, 1689, 1690, 1678, 1680, 1693, 0, 1703, 1698, 1700, + 1716, 1720, 1727, 1715, 1714, 1718, 1720, 1732, 1714, 1727, 1724, 1732, 1723, 1734, 0, 1717, 1732, + 1725, 1727, 1737, 1734, 1731, 1739, 1749, 0, 1754, 1765, 1758, 1754, 1781, 1769, 1763, 1782, 1763, + 1767, 1774, 1781, 1772, 0, 450, 1832, 1813, 1825, 1826, 1827, 1828, 1829, 1838, 1830, + + 1859, 1863, 1864, 1880, 1897, 1888, 1903, 1905, 1851, 1916, 1933, 1931, 1921, 1947, 1942, 1955, 1970, + 1964, 1983, 1965, 1998, 1999, 2004, 1987, 2000, 2009, 2001, 2035, 2038, 2037, 2041, 2039, 2043, 2073, + 2067, 2083, 2092, 2077, 2089, 2095, 2107, 2108, 2131, 2137, 2146, 2113, 2121, 2145, 2149, 2147, 2179, + 2162, 2180, 2177, 2181, 2203, 2191, 2217, 2231, 2205, 2220, 2239, 2216, 2234, 2256, 2257, 2245, 2253, + 2274, 2279, 2291, 2285, 2307, 2313, 2308, 2319, 2310, 2325, 2343, 2331, 2342, 2347, 2361, 2356, 2364, + 2393, 2385, 2382, 2401, 2387, 2399, 2416, 2422, 2435, 2441, 2457, 2456, 2444, 2475, 2479, + + 2439, 2485, 2490, 2496, 448, 1828, 1830, 1879, 1975, 2036, 2280, 2348, 0, 2363, 0, 0, 2381, + 2493, 2503, 2495, 0, 2496, 2499, 2499, 0, 2508, 2510, 2503, 2512, 2533, 2517, 2533, 2529, 2532, + 0, 0, 2533, 2536, 2532, 2534, 2554, 2555, 2552, 0, 2538, 2559, 0, 0, 2563, 2550, 0, + 2553, 0, 2549, 2564, 2552, 2548, 2555, 2556, 2568, 0, 2565, 0, 0, 0, 2558, 0, 2576, + 0, 2584, 2587, 2582, 2574, 0, 2595, 2598, 2590, 2591, 2597, 0, 2610, 2611, 0, 2601, 2600, + 2600, 2619, 2609, 2609, 2621, 0, 2614, 2622, 2619, 2624, 2616, 0, 0, 2613, 2621, + + 0, 2639, 2629, 2623, 2645, 2632, 2650, 2655, 2653, 0, 2641, 0, 2658, 0, 2645, 438, 2660, + 2675, 2669, 2670, 2678, 2672, 2693, 2694, 2710, 2704, 2709, 2727, 2726, 2728, 2745, 2742, 2763, 2766, + 2764, 2767, 2781, 2796, 2782, 2797, 2799, 2820, 2832, 2834, 2835, 2821, 2836, 2853, 2866, 2858, 2872, + 2875, 2888, 2870, 2876, 2906, 2916, 2907, 2910, 2924, 2918, 2932, 2940, 2941, 2950, 2942, 2972, 2955, + 2973, 2983, 3004, 2978, 3007, 2995, 3008, 3009, 3032, 3018, 3043, 3026, 3037, 3061, 3066, 3058, 3040, + 3091, 3072, 3094, 3097, 3112, 3095, 3129, 3130, 3128, 3143, 3145, 3146, 3167, 3154, 3186, + + 3182, 3183, 3197, 3196, 3208, 3198, 3226, 3200, 3221, 3237, 3238, 3234, 3242, 3250, 3256, 3275, 3290, + 3280, 3274, 3288, 3292, 3304, 3296, 3306, 3314, 3328, 413, 0, 0, 2655, 0, 2711, 0, 2712, + 2744, 2746, 2740, 2785, 2808, 2931, 0, 2980, 2984, 3086, 3093, 3104, 0, 3102, 3169, 3196, 3260, + 3266, 3296, 3298, 3311, 3325, 3332, 0, 0, 3321, 3337, 0, 3343, 0, 0, 3331, 0, 0, + 3334, 3350, 3345, 3347, 0, 0, 0, 0, 3358, 3346, 3368, 3362, 3351, 0, 0, 3367, 3355, + 3357, 3374, 3374, 0, 3383, 3384, 3383, 3368, 3380, 3389, 3394, 3382, 3385, 3384, 3404, + + 3406, 0, 3403, 3405, 3408, 0, 3398, 3417, 3418, 0, 0, 409, 3416, 3418, 3428, 3424, 3432, + 3433, 3434, 3447, 3458, 3457, 3472, 3486, 3442, 3468, 3497, 3498, 3507, 3502, 3511, 3512, 3537, 3540, + 3542, 3526, 3543, 3556, 3565, 3552, 3577, 3596, 3575, 3586, 3600, 3610, 3591, 3626, 3605, 3609, 3634, + 3631, 3639, 3645, 3648, 3650, 3662, 3663, 3679, 3680, 3684, 3685, 3688, 3717, 3698, 3719, 3703, 3716, + 3721, 3738, 3742, 3733, 3752, 3747, 3775, 3777, 3787, 3776, 3788, 3806, 3816, 3811, 3817, 3827, 3845, + 3850, 3801, 3829, 3860, 3851, 3855, 3879, 3885, 3894, 3883, 3884, 404, 3437, 0, 3511, + + 3521, 3546, 3560, 0, 3607, 0, 3685, 3724, 3747, 3742, 0, 3796, 0, 3842, 0, 0, 0, + 3861, 0, 3853, 3876, 0, 0, 0, 0, 0, 3882, 3896, 3904, 0, 3887, 0, 3902, 3917, + 0, 3900, 3916, 3899, 0, 3926, 3927, 3915, 3919, 0, 3925, 0, 3928, 0, 3941, 3942, 3941, + 3929, 0, 0, 0, 0, 3932, 3940, 403, 3948, 3949, 3950, 3953, 3963, 3967, 3979, 3982, 3984, + 3993, 4017, 4012, 4003, 4007, 4036, 4021, 4049, 4035, 4038, 4051, 4052, 4053, 4057, 4075, 4061, 4067, + 4086, 4089, 4091, 4092, 4101, 4107, 4115, 4123, 4120, 4124, 4129, 4126, 4145, 4141, 4155, + + 4157, 4180, 4181, 4169, 4195, 4166, 4194, 4191, 4212, 4197, 4229, 4235, 4245, 4233, 4220, 4234, 4237, + 4251, 4266, 4283, 407, 0, 0, 0, 3958, 0, 0, 3998, 4047, 0, 0, 4163, 4184, 0, + 0, 0, 0, 4225, 4261, 0, 0, 4256, 4273, 0, 0, 4259, 4271, 0, 0, 4270, 0, + 4274, 4280, 4274, 4291, 0, 0, 404, 4299, 4302, 4305, 4307, 4308, 4311, 4320, 4337, 4321, 4323, + 4324, 4359, 4336, 4342, 4345, 4353, 4377, 4378, 4361, 4376, 4394, 4390, 4391, 4393, 4415, 4416, 4399, + 4427, 4433, 4431, 4432, 4456, 4450, 4461, 4466, 4467, 401, 4326, 0, 4367, 0, 0, + + 4413, 0, 0, 4431, 0, 0, 0, 4448, 4458, 4469, 0, 399, 4485, 4482, 4484, 4490, 4501, + 4507, 4515, 4516, 4520, 4518, 4519, 4524, 4530, 4541, 4555, 4553, 395, 404, 4556, 0, 4544, 0, + 0, 4554, 350, 4594, 4570, 4572, 4581, 4576, 4578, 4606, 344, 4612, 0, 0, 4575, 342, 4614, + 4593, 4607, 4615, 338, 4613, 0, 335, 4614, 4612, 330, 4605, 325, 4617, 306, 4618, 303, 4624, + 288, 4642, 255, 4643, 250, 4639, 245, 4640, 243, 4648, 240, 4650, 235, 4737, 221, 0, 226, + 197, 187, 173, 4737, 0, 4737, 4706, 4711, 181, 4716, 4721, 4726, 4731 + +}; + +static const flex_int16_t yy_def[1199] = { + 0, 1191, 1, 1192, 1192, 1191, 5, 1191, 1191, 1191, 1191, 1191, 1193, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1191, 1195, 1191, 1196, 1196, 1191, + 1196, 1197, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1198, 1198, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 1196, 1191, 1191, 1193, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1191, 1195, 1191, 1196, 1196, 1196, 1197, 1196, + 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 1196, 1191, 1191, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1196, 1196, 1196, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, + + 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1196, 62, 62, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 1191, 1194, 1194, 1194, 1194, 1194, + 1194, 1194, 1196, 62, 62, 62, 62, 62, 62, 62, 1191, 1191, 1194, 1194, 1194, 1196, 1196, + 62, 62, 62, 1191, 1191, 1194, 1196, 1196, 62, 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, + 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, 1191, 1191, 1196, 1196, 1191, + 1196, 1191, 1196, 1191, 1196, 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191 + +}; + +static const flex_int16_t yy_nxt[4814] = { + 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 37, 44, 37, 8, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 37, 44, 37, 45, 48, 49, 50, 51, 52, 53, 54, 55, + 56, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 58, 59, 60, 61, 62, + + 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 77, 84, 77, 48, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 77, 84, 77, + 85, 86, 86, 86, 86, 89, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 90, + 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 94, 95, 99, 105, 100, 111, + 98, 107, 136, 112, 101, 1190, 102, 113, 108, 137, 103, 104, 177, 114, 278, + + 109, 115, 106, 110, 1189, 116, 1188, 117, 99, 105, 100, 111, 118, 107, 136, 112, 101, + 119, 102, 113, 108, 137, 103, 104, 177, 114, 278, 109, 115, 106, 110, 126, 116, 128, + 117, 1187, 138, 127, 1186, 118, 139, 129, 131, 173, 119, 120, 140, 130, 132, 133, 134, + 174, 1185, 121, 1183, 135, 122, 1181, 126, 123, 128, 1179, 124, 138, 127, 125, 1177, 139, + 129, 131, 173, 1175, 120, 140, 130, 132, 133, 134, 174, 144, 121, 141, 135, 122, 152, + 142, 123, 175, 176, 124, 148, 143, 125, 145, 279, 153, 182, 86, 149, 146, + + 147, 154, 150, 155, 1173, 151, 144, 156, 141, 86, 86, 152, 142, 157, 175, 176, 1171, + 148, 143, 1169, 145, 279, 153, 284, 185, 149, 146, 147, 154, 150, 155, 170, 151, 171, + 156, 186, 172, 190, 191, 1167, 157, 158, 285, 159, 1165, 233, 160, 194, 86, 86, 284, + 161, 1163, 162, 163, 1161, 194, 1158, 170, 1155, 171, 291, 1150, 172, 194, 194, 232, 194, + 158, 285, 159, 222, 233, 160, 194, 234, 194, 223, 161, 235, 162, 163, 164, 194, 194, + 236, 165, 296, 291, 166, 167, 194, 194, 232, 194, 194, 168, 297, 222, 169, + + 182, 86, 234, 194, 223, 1146, 235, 1145, 1137, 164, 1129, 194, 236, 165, 296, 1112, 166, + 167, 1095, 1058, 1021, 959, 194, 168, 297, 897, 169, 187, 187, 187, 187, 187, 187, 187, + 187, 187, 187, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 181, 181, 812, + 181, 181, 181, 181, 181, 181, 273, 224, 307, 727, 616, 194, 505, 391, 308, 225, 181, + 181, 181, 237, 280, 226, 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, 198, 273, + 224, 307, 199, 200, 194, 194, 282, 308, 225, 283, 390, 276, 237, 280, 226, + + 195, 238, 196, 309, 194, 310, 281, 239, 197, 194, 198, 275, 274, 311, 199, 200, 193, + 194, 282, 192, 181, 283, 248, 181, 181, 181, 194, 181, 181, 181, 181, 181, 181, 249, + 269, 183, 180, 251, 194, 250, 311, 252, 270, 181, 181, 181, 194, 253, 317, 248, 201, + 178, 97, 194, 318, 96, 319, 194, 194, 194, 249, 269, 271, 272, 251, 194, 250, 87, + 252, 270, 202, 289, 1191, 194, 253, 317, 320, 201, 290, 194, 47, 318, 194, 319, 194, + 194, 194, 47, 1191, 271, 272, 266, 321, 267, 286, 287, 268, 202, 289, 181, + + 203, 322, 194, 320, 194, 290, 194, 204, 288, 194, 1191, 292, 293, 294, 205, 295, 1191, + 206, 266, 321, 267, 286, 287, 268, 194, 1191, 323, 203, 322, 194, 324, 194, 298, 1191, + 204, 288, 327, 299, 292, 293, 294, 205, 295, 300, 206, 301, 305, 306, 302, 1191, 328, + 194, 207, 323, 303, 1191, 208, 324, 329, 298, 209, 304, 330, 327, 299, 312, 210, 313, + 335, 211, 300, 314, 301, 305, 306, 302, 194, 328, 315, 207, 336, 303, 316, 208, 1191, + 329, 1191, 209, 304, 330, 337, 1191, 312, 210, 313, 335, 211, 1191, 314, 325, + + 331, 338, 326, 194, 194, 315, 339, 336, 340, 316, 332, 212, 344, 213, 345, 333, 334, + 337, 214, 341, 346, 342, 347, 215, 194, 1191, 325, 331, 338, 326, 348, 194, 343, 339, + 349, 340, 1191, 332, 212, 344, 213, 345, 333, 334, 350, 214, 341, 346, 342, 347, 215, + 194, 216, 351, 352, 353, 194, 348, 354, 343, 217, 349, 355, 218, 356, 361, 219, 362, + 357, 220, 363, 350, 221, 1191, 1191, 367, 194, 1191, 1191, 216, 351, 352, 353, 194, 1191, + 354, 1191, 217, 358, 355, 218, 356, 361, 219, 362, 357, 220, 363, 368, 221, + + 364, 359, 367, 194, 194, 227, 360, 369, 370, 365, 371, 228, 229, 230, 374, 358, 375, + 366, 231, 372, 376, 381, 377, 379, 194, 368, 380, 364, 359, 1191, 373, 194, 227, 360, + 369, 370, 365, 371, 228, 229, 230, 374, 378, 375, 366, 231, 372, 376, 381, 377, 379, + 194, 240, 380, 382, 383, 194, 373, 385, 387, 388, 384, 389, 506, 194, 1191, 241, 1191, + 1191, 378, 507, 386, 242, 243, 393, 194, 194, 1191, 1191, 240, 1191, 382, 383, 194, 194, + 385, 387, 388, 384, 389, 506, 194, 194, 241, 194, 194, 1191, 507, 386, 242, + + 243, 393, 194, 194, 194, 244, 194, 394, 194, 1191, 508, 194, 194, 245, 194, 395, 194, + 246, 1191, 194, 247, 194, 194, 396, 194, 1191, 194, 1191, 194, 399, 1191, 194, 244, 194, + 394, 194, 194, 508, 1191, 194, 245, 194, 395, 194, 246, 397, 509, 247, 398, 194, 396, + 194, 254, 194, 255, 194, 399, 256, 400, 510, 194, 1191, 257, 194, 258, 259, 1191, 1191, + 1191, 194, 1191, 1191, 397, 509, 194, 398, 194, 1191, 411, 254, 194, 255, 1191, 1191, 256, + 400, 510, 194, 412, 257, 1191, 258, 259, 194, 401, 402, 194, 194, 194, 1191, + + 511, 194, 260, 194, 404, 411, 261, 194, 403, 262, 263, 405, 512, 194, 513, 412, 264, + 194, 413, 265, 194, 401, 402, 414, 194, 194, 194, 511, 1191, 260, 194, 404, 1191, 261, + 1191, 403, 262, 263, 405, 512, 194, 513, 1191, 264, 194, 413, 265, 1191, 1191, 1191, 414, + 1191, 1191, 194, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 277, 277, 277, 277, + 277, 277, 277, 277, 277, 277, 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 392, 392, 392, 392, 392, + + 392, 392, 392, 392, 392, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 406, + 194, 194, 194, 194, 517, 194, 518, 519, 520, 1191, 1191, 521, 423, 420, 421, 425, 194, + 422, 1191, 424, 194, 194, 194, 194, 1191, 194, 406, 194, 194, 194, 194, 517, 194, 518, + 519, 520, 194, 194, 521, 423, 420, 421, 425, 194, 422, 194, 424, 194, 194, 194, 194, + 194, 194, 426, 1191, 194, 445, 452, 407, 408, 409, 194, 410, 194, 194, 194, 1191, 1191, + 432, 522, 523, 194, 194, 1191, 1191, 194, 1191, 1191, 194, 524, 426, 194, 194, + + 445, 452, 407, 408, 409, 194, 410, 1191, 525, 194, 194, 194, 432, 522, 523, 194, 415, + 433, 416, 194, 194, 417, 194, 524, 435, 194, 194, 418, 1191, 1191, 194, 194, 434, 1191, + 419, 525, 436, 194, 194, 1191, 194, 1191, 194, 415, 433, 416, 194, 194, 417, 194, 526, + 435, 194, 194, 418, 194, 194, 194, 194, 434, 194, 419, 437, 436, 1191, 459, 438, 194, + 427, 194, 428, 1191, 194, 194, 429, 194, 194, 526, 194, 194, 194, 430, 194, 194, 1191, + 431, 1191, 194, 439, 437, 194, 194, 459, 438, 194, 427, 194, 428, 194, 194, + + 442, 429, 194, 194, 194, 194, 1191, 194, 430, 462, 440, 194, 431, 441, 194, 439, 194, + 194, 194, 194, 443, 194, 194, 194, 194, 194, 444, 442, 450, 1191, 194, 194, 194, 453, + 451, 527, 462, 440, 194, 194, 441, 194, 194, 194, 1191, 528, 194, 443, 194, 194, 194, + 194, 194, 444, 454, 450, 455, 194, 1191, 194, 453, 451, 527, 456, 1191, 457, 194, 194, + 194, 194, 446, 194, 528, 194, 1191, 194, 458, 194, 1191, 194, 447, 454, 460, 455, 194, + 448, 449, 194, 531, 1191, 456, 194, 457, 194, 194, 194, 194, 446, 194, 463, + + 194, 194, 532, 458, 194, 461, 465, 447, 464, 460, 194, 194, 448, 449, 194, 531, 194, + 1191, 194, 1191, 194, 194, 1191, 194, 194, 466, 463, 194, 194, 532, 194, 194, 461, 465, + 1191, 464, 194, 194, 467, 194, 533, 471, 468, 194, 194, 472, 470, 194, 194, 469, 194, + 194, 466, 1191, 194, 1191, 194, 194, 534, 194, 194, 194, 476, 194, 1191, 467, 194, 533, + 471, 468, 194, 194, 472, 470, 194, 1191, 469, 194, 473, 535, 194, 194, 194, 194, 478, + 534, 194, 194, 194, 476, 194, 474, 194, 1191, 1191, 1191, 475, 194, 536, 477, + + 482, 194, 194, 1191, 537, 473, 535, 194, 194, 194, 194, 478, 194, 479, 1191, 194, 1191, + 194, 474, 194, 483, 194, 480, 475, 194, 536, 477, 482, 194, 194, 481, 537, 485, 538, + 484, 194, 194, 194, 1191, 194, 479, 194, 194, 486, 194, 194, 194, 483, 194, 480, 539, + 194, 540, 487, 489, 541, 194, 481, 194, 485, 538, 484, 194, 194, 488, 194, 194, 194, + 194, 491, 486, 194, 194, 194, 194, 490, 1191, 539, 194, 540, 487, 489, 541, 194, 492, + 194, 1191, 194, 194, 496, 194, 488, 194, 194, 194, 1191, 491, 542, 1191, 194, + + 502, 194, 490, 494, 493, 194, 495, 1191, 194, 194, 194, 492, 500, 497, 194, 194, 496, + 194, 504, 194, 194, 194, 194, 194, 542, 501, 194, 502, 498, 194, 494, 493, 194, 495, + 499, 194, 194, 194, 503, 500, 497, 194, 194, 194, 1191, 504, 194, 194, 194, 194, 194, + 1191, 501, 1191, 1191, 498, 194, 543, 544, 194, 545, 499, 546, 547, 514, 503, 515, 529, + 194, 194, 194, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 516, 530, 548, 543, + 544, 549, 545, 550, 546, 547, 514, 551, 515, 529, 552, 553, 554, 555, 556, + + 557, 558, 559, 562, 560, 563, 564, 565, 516, 530, 548, 566, 567, 549, 561, 550, 568, + 569, 570, 551, 571, 572, 552, 553, 554, 555, 556, 557, 558, 559, 562, 560, 563, 564, + 565, 573, 574, 575, 566, 567, 576, 561, 577, 568, 569, 570, 578, 571, 572, 579, 580, + 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 573, 574, 575, 592, 593, 576, + 594, 577, 595, 596, 597, 578, 598, 599, 579, 580, 581, 582, 583, 584, 585, 586, 587, + 588, 589, 590, 591, 600, 605, 601, 592, 593, 603, 594, 604, 595, 596, 597, + + 602, 598, 599, 606, 607, 608, 609, 610, 611, 612, 614, 615, 1191, 613, 1191, 1191, 600, + 605, 601, 1191, 1191, 603, 1191, 604, 1191, 1191, 1191, 602, 1191, 1191, 606, 607, 608, 609, + 610, 611, 612, 614, 615, 194, 613, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 617, 194, 618, 194, 194, 194, 1191, 1191, 194, 620, 619, 1191, 1191, 194, 1191, 194, 728, + 1191, 729, 1191, 194, 194, 194, 194, 194, 194, 194, 617, 194, 618, 194, 194, 194, 194, + 194, 194, 620, 619, 194, 194, 194, 631, 622, 728, 621, 729, 194, 194, 194, + + 194, 194, 194, 194, 194, 194, 194, 1191, 623, 194, 194, 194, 194, 624, 194, 1191, 194, + 194, 1191, 631, 622, 625, 621, 626, 194, 730, 194, 628, 1191, 194, 1191, 194, 194, 194, + 194, 623, 194, 194, 627, 630, 624, 194, 194, 194, 1191, 629, 1191, 635, 625, 194, 626, + 194, 730, 194, 628, 633, 194, 194, 194, 194, 1191, 194, 632, 1191, 1191, 627, 630, 194, + 194, 194, 194, 634, 629, 194, 635, 637, 194, 194, 194, 194, 1191, 194, 633, 1191, 194, + 638, 194, 636, 194, 632, 640, 643, 639, 194, 194, 194, 194, 1191, 634, 1191, + + 194, 194, 637, 1191, 194, 641, 194, 642, 194, 194, 194, 194, 638, 647, 636, 194, 194, + 640, 643, 639, 194, 731, 645, 194, 194, 194, 194, 649, 194, 194, 194, 648, 641, 194, + 642, 194, 194, 194, 194, 644, 647, 646, 1191, 194, 194, 194, 194, 194, 731, 645, 194, + 194, 194, 194, 649, 194, 194, 194, 648, 650, 194, 194, 194, 194, 194, 194, 644, 194, + 646, 655, 652, 194, 194, 194, 194, 732, 1191, 194, 651, 654, 653, 194, 194, 194, 194, + 194, 650, 194, 194, 194, 194, 194, 194, 194, 194, 656, 655, 652, 1191, 194, + + 660, 657, 732, 194, 1191, 651, 654, 653, 194, 194, 194, 194, 194, 194, 194, 194, 194, + 658, 194, 194, 194, 194, 656, 194, 662, 659, 194, 660, 657, 194, 194, 661, 1191, 194, + 194, 194, 194, 663, 194, 668, 194, 194, 194, 1191, 658, 194, 194, 669, 194, 664, 194, + 662, 659, 194, 194, 1191, 194, 194, 661, 194, 194, 194, 194, 194, 663, 194, 668, 194, + 194, 666, 665, 670, 194, 194, 669, 671, 664, 194, 1191, 1191, 194, 194, 667, 194, 194, + 672, 194, 1191, 194, 673, 194, 194, 194, 194, 194, 194, 666, 665, 670, 194, + + 194, 1191, 671, 676, 194, 194, 194, 194, 194, 667, 194, 677, 672, 679, 674, 194, 673, + 194, 194, 194, 194, 675, 194, 194, 1191, 194, 194, 194, 678, 194, 676, 194, 194, 194, + 194, 194, 1191, 194, 677, 1191, 679, 674, 194, 194, 194, 680, 194, 682, 675, 194, 194, + 194, 194, 194, 194, 678, 194, 194, 194, 681, 194, 683, 194, 194, 194, 194, 194, 685, + 1191, 194, 194, 688, 680, 194, 682, 1191, 194, 194, 194, 689, 194, 684, 194, 194, 194, + 194, 681, 194, 683, 194, 194, 194, 194, 194, 685, 686, 690, 687, 688, 194, + + 194, 1191, 194, 194, 194, 194, 689, 194, 684, 194, 194, 194, 194, 1191, 691, 733, 1191, + 194, 194, 693, 194, 1191, 686, 690, 687, 194, 194, 194, 692, 194, 194, 194, 194, 194, + 194, 695, 194, 194, 194, 194, 694, 691, 733, 698, 194, 194, 693, 194, 697, 696, 1191, + 699, 194, 194, 194, 692, 194, 701, 194, 194, 194, 194, 695, 194, 194, 194, 194, 694, + 194, 194, 698, 194, 194, 194, 734, 697, 696, 194, 699, 700, 194, 194, 194, 194, 701, + 735, 194, 194, 194, 194, 194, 702, 194, 194, 703, 194, 194, 704, 194, 1191, + + 194, 734, 194, 736, 194, 705, 700, 194, 194, 194, 194, 194, 735, 710, 194, 194, 194, + 194, 702, 194, 194, 703, 707, 708, 704, 194, 706, 194, 194, 194, 736, 194, 705, 194, + 194, 194, 709, 194, 194, 194, 710, 1191, 194, 1191, 1191, 194, 194, 194, 712, 707, 708, + 711, 194, 706, 194, 194, 1191, 713, 194, 1191, 194, 194, 194, 709, 1191, 194, 194, 194, + 194, 194, 194, 714, 194, 715, 194, 712, 1191, 716, 711, 717, 722, 194, 194, 194, 713, + 194, 719, 194, 194, 194, 194, 718, 194, 1191, 194, 194, 1191, 194, 714, 720, + + 715, 194, 194, 194, 716, 194, 717, 722, 194, 194, 194, 194, 194, 719, 194, 1191, 194, + 194, 718, 725, 723, 194, 194, 721, 724, 194, 720, 737, 194, 194, 194, 194, 194, 738, + 739, 726, 194, 740, 194, 741, 742, 743, 194, 194, 744, 745, 725, 723, 194, 194, 721, + 724, 194, 746, 737, 747, 748, 749, 194, 750, 738, 739, 726, 194, 740, 751, 741, 742, + 743, 194, 752, 744, 745, 753, 754, 755, 756, 757, 758, 759, 746, 760, 747, 748, 749, + 761, 750, 762, 763, 764, 765, 766, 751, 767, 768, 769, 770, 752, 772, 773, + + 753, 754, 755, 756, 757, 758, 759, 771, 760, 774, 775, 778, 761, 779, 762, 763, 764, + 765, 766, 780, 767, 768, 769, 770, 781, 772, 773, 776, 777, 782, 783, 784, 785, 786, + 771, 787, 774, 775, 778, 788, 779, 789, 790, 791, 792, 793, 780, 794, 795, 796, 797, + 781, 798, 799, 776, 777, 782, 783, 784, 785, 786, 800, 787, 801, 802, 803, 788, 804, + 789, 790, 791, 792, 793, 805, 794, 795, 796, 797, 806, 798, 799, 807, 808, 809, 810, + 811, 194, 1191, 800, 1191, 801, 802, 803, 1191, 804, 194, 194, 1191, 194, 813, + + 805, 194, 898, 1191, 194, 806, 194, 818, 807, 808, 809, 810, 811, 194, 814, 815, 816, + 817, 194, 819, 194, 194, 194, 194, 194, 194, 813, 1191, 194, 898, 194, 194, 820, 194, + 818, 194, 194, 899, 900, 194, 194, 814, 815, 816, 817, 194, 819, 194, 194, 821, 194, + 194, 194, 194, 194, 194, 194, 194, 823, 820, 822, 1191, 194, 194, 899, 900, 194, 194, + 194, 901, 902, 194, 194, 194, 194, 903, 821, 194, 1191, 194, 194, 194, 194, 194, 824, + 823, 1191, 822, 194, 194, 194, 194, 194, 194, 1191, 194, 901, 902, 194, 194, + + 194, 194, 903, 1191, 825, 827, 826, 194, 194, 194, 194, 824, 194, 194, 828, 194, 194, + 194, 194, 194, 194, 832, 194, 194, 830, 194, 904, 194, 194, 1191, 829, 825, 827, 826, + 194, 194, 194, 194, 831, 194, 194, 828, 194, 194, 905, 194, 194, 194, 832, 194, 194, + 830, 194, 904, 194, 194, 834, 829, 194, 833, 194, 194, 194, 1191, 835, 831, 194, 194, + 836, 194, 194, 905, 194, 194, 194, 1191, 1191, 1191, 194, 194, 194, 194, 194, 834, 194, + 194, 833, 194, 194, 194, 837, 835, 194, 194, 194, 836, 843, 841, 194, 194, + + 839, 194, 194, 838, 194, 194, 194, 194, 194, 194, 842, 194, 194, 840, 194, 1191, 194, + 837, 194, 194, 1191, 194, 194, 843, 841, 194, 194, 839, 194, 194, 838, 194, 194, 194, + 194, 1191, 194, 842, 845, 194, 840, 194, 194, 194, 194, 194, 846, 844, 194, 194, 194, + 1191, 194, 194, 1191, 847, 194, 906, 194, 194, 194, 194, 194, 194, 194, 845, 194, 194, + 850, 194, 194, 194, 1191, 846, 844, 848, 194, 194, 194, 194, 194, 194, 847, 194, 906, + 194, 194, 194, 194, 194, 849, 194, 1191, 194, 194, 850, 194, 194, 194, 194, + + 852, 194, 848, 194, 194, 194, 1191, 1191, 194, 194, 907, 851, 853, 194, 194, 194, 1191, + 849, 194, 194, 908, 194, 854, 194, 194, 194, 194, 852, 194, 194, 194, 194, 855, 194, + 194, 194, 194, 907, 851, 853, 857, 194, 1191, 856, 194, 194, 194, 908, 194, 854, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 855, 194, 194, 194, 860, 194, 1191, 194, 857, + 194, 194, 856, 194, 194, 858, 1191, 1191, 859, 194, 194, 194, 194, 194, 194, 194, 194, + 194, 194, 194, 1191, 194, 860, 194, 194, 194, 1191, 863, 194, 864, 866, 194, + + 858, 861, 862, 859, 194, 194, 1191, 194, 909, 1191, 194, 194, 194, 194, 194, 865, 194, + 194, 194, 194, 194, 194, 863, 194, 864, 866, 910, 1191, 861, 862, 911, 194, 912, 867, + 194, 909, 868, 194, 194, 194, 194, 194, 865, 194, 194, 194, 869, 194, 194, 1191, 194, + 870, 871, 910, 194, 194, 194, 911, 194, 912, 867, 1191, 1191, 868, 194, 194, 1191, 194, + 194, 194, 194, 194, 194, 869, 194, 194, 194, 872, 870, 871, 194, 194, 194, 194, 873, + 194, 1191, 874, 876, 194, 875, 194, 194, 194, 1191, 1191, 194, 1191, 194, 194, + + 194, 194, 194, 194, 872, 1191, 878, 194, 194, 194, 913, 873, 194, 194, 874, 876, 194, + 875, 194, 194, 194, 877, 880, 194, 882, 1191, 194, 194, 194, 194, 879, 914, 194, 878, + 194, 194, 194, 913, 881, 194, 194, 1191, 194, 194, 194, 1191, 194, 194, 877, 880, 194, + 882, 194, 194, 194, 194, 194, 879, 914, 194, 194, 194, 883, 194, 194, 881, 886, 194, + 194, 194, 194, 194, 194, 194, 194, 1191, 194, 884, 885, 194, 194, 194, 194, 194, 194, + 887, 915, 194, 194, 883, 194, 194, 916, 886, 194, 194, 194, 889, 888, 194, + + 892, 194, 194, 194, 884, 885, 194, 194, 891, 194, 194, 194, 887, 915, 194, 194, 194, + 893, 194, 916, 194, 194, 194, 194, 889, 888, 194, 892, 194, 194, 194, 890, 895, 194, + 194, 891, 194, 917, 194, 918, 194, 194, 194, 194, 893, 194, 894, 194, 194, 194, 194, + 919, 194, 194, 194, 920, 921, 194, 890, 895, 194, 194, 922, 194, 917, 194, 918, 194, + 896, 194, 923, 924, 925, 894, 194, 926, 927, 194, 919, 194, 930, 194, 920, 921, 931, + 928, 932, 194, 929, 922, 933, 934, 935, 936, 937, 896, 938, 923, 924, 925, + + 939, 194, 926, 927, 940, 941, 942, 930, 943, 944, 945, 931, 928, 932, 946, 929, 947, + 933, 934, 935, 936, 937, 948, 938, 949, 950, 951, 939, 952, 953, 954, 940, 941, 942, + 955, 943, 944, 945, 956, 957, 958, 946, 194, 947, 194, 1191, 1191, 1191, 1191, 948, 194, + 949, 950, 951, 194, 952, 953, 954, 961, 194, 962, 955, 194, 1022, 194, 956, 957, 958, + 968, 194, 194, 194, 963, 194, 194, 960, 1191, 194, 194, 194, 194, 194, 964, 194, 194, + 961, 194, 962, 194, 194, 1022, 194, 965, 194, 194, 968, 1191, 194, 194, 963, + + 194, 194, 960, 194, 194, 194, 194, 194, 1191, 964, 194, 194, 194, 966, 194, 194, 1191, + 1191, 194, 965, 194, 194, 967, 194, 194, 194, 1191, 969, 194, 971, 194, 194, 194, 194, + 970, 972, 1191, 973, 194, 194, 966, 194, 1191, 194, 194, 194, 1023, 1024, 194, 967, 194, + 194, 977, 194, 969, 194, 971, 194, 194, 194, 194, 970, 972, 194, 973, 194, 194, 974, + 194, 978, 194, 194, 194, 1023, 1024, 194, 1191, 976, 194, 977, 194, 975, 194, 194, 194, + 194, 194, 1025, 194, 194, 194, 194, 981, 194, 974, 194, 978, 979, 194, 194, + + 1026, 194, 194, 194, 976, 194, 980, 982, 975, 194, 194, 194, 194, 194, 1025, 194, 194, + 194, 194, 981, 983, 194, 194, 194, 979, 194, 194, 1026, 194, 194, 194, 194, 194, 980, + 982, 194, 194, 194, 194, 194, 1027, 984, 194, 985, 194, 1191, 194, 983, 194, 194, 194, + 194, 194, 194, 986, 194, 194, 194, 194, 194, 194, 1191, 194, 194, 194, 194, 1191, 1027, + 984, 194, 985, 194, 194, 194, 989, 987, 194, 194, 194, 194, 194, 986, 194, 194, 194, + 194, 988, 194, 194, 194, 990, 194, 194, 991, 194, 992, 194, 1191, 194, 194, + + 1191, 989, 987, 194, 194, 194, 194, 194, 194, 194, 194, 993, 194, 988, 194, 194, 194, + 990, 194, 1028, 991, 194, 992, 194, 194, 194, 194, 996, 994, 194, 194, 194, 194, 194, + 194, 194, 194, 194, 993, 995, 1191, 194, 194, 194, 194, 194, 1028, 998, 1029, 194, 1191, + 194, 194, 194, 996, 994, 194, 194, 194, 1001, 997, 194, 194, 194, 194, 194, 995, 194, + 194, 194, 194, 194, 194, 194, 998, 1029, 194, 999, 194, 194, 1030, 1000, 1002, 1031, 194, + 1191, 1001, 997, 194, 194, 194, 194, 194, 194, 194, 194, 1191, 1003, 194, 1004, + + 194, 194, 194, 194, 999, 194, 194, 1030, 1000, 1002, 1031, 194, 1005, 194, 194, 194, 1191, + 1006, 1007, 1032, 194, 194, 194, 194, 1003, 194, 1004, 194, 194, 194, 194, 1008, 194, 194, + 194, 1191, 1191, 194, 1009, 1005, 194, 194, 194, 194, 1006, 1007, 1032, 194, 194, 194, 194, + 1010, 194, 194, 194, 1015, 1011, 194, 1008, 194, 194, 194, 194, 194, 194, 1009, 1033, 1013, + 1012, 194, 194, 194, 1014, 194, 194, 194, 194, 1017, 1010, 194, 194, 194, 1015, 1011, 194, + 1016, 194, 1034, 1035, 194, 194, 194, 1191, 1033, 1013, 1012, 194, 194, 194, 1014, + + 194, 194, 194, 194, 1017, 194, 194, 1019, 194, 194, 194, 194, 1016, 194, 1034, 1035, 1020, + 1036, 194, 1018, 194, 1037, 1038, 194, 194, 194, 1039, 1040, 194, 194, 194, 194, 194, 194, + 1019, 1041, 194, 194, 194, 1042, 194, 1043, 1044, 1020, 1036, 1045, 1018, 194, 1037, 1038, 1046, + 1047, 194, 1039, 1040, 1048, 194, 194, 194, 1049, 1050, 1051, 1041, 1052, 1053, 1054, 1042, 194, + 1043, 1044, 1055, 1056, 1045, 1057, 1059, 194, 194, 1046, 1047, 1061, 1191, 1191, 1048, 1191, 1096, + 1060, 1049, 1050, 1051, 194, 1052, 1053, 1054, 194, 194, 194, 194, 1055, 1056, 194, + + 1057, 1059, 194, 194, 1062, 194, 1061, 1063, 194, 194, 194, 1096, 1060, 194, 1191, 1064, 194, + 1191, 1191, 194, 194, 194, 194, 194, 1097, 194, 194, 1065, 194, 194, 194, 1062, 194, 194, + 1063, 194, 194, 194, 194, 194, 194, 1066, 1064, 194, 1068, 1067, 194, 194, 1191, 194, 1191, + 1097, 194, 194, 1065, 194, 194, 194, 194, 1069, 194, 194, 194, 194, 194, 194, 194, 194, + 1066, 1098, 194, 1068, 1067, 1070, 194, 194, 194, 194, 1071, 194, 194, 194, 194, 194, 194, + 194, 1069, 194, 194, 194, 194, 194, 1072, 194, 194, 194, 1098, 194, 194, 194, + + 1070, 194, 194, 194, 194, 1071, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1073, + 194, 194, 1072, 194, 194, 194, 1191, 194, 194, 194, 1075, 194, 1076, 194, 1074, 194, 194, + 194, 194, 1191, 194, 194, 194, 194, 194, 194, 1073, 194, 194, 194, 194, 194, 194, 194, + 1079, 194, 194, 1075, 194, 1076, 1078, 1074, 194, 194, 194, 194, 1077, 194, 194, 194, 1081, + 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1079, 194, 194, 194, 194, 194, 1078, + 1191, 1080, 194, 194, 1099, 1077, 194, 194, 194, 1081, 194, 194, 194, 194, 194, + + 1191, 1082, 194, 194, 1083, 1084, 194, 194, 194, 1085, 194, 1191, 194, 1080, 194, 194, 1099, + 194, 194, 194, 194, 194, 194, 194, 1191, 1100, 194, 194, 1082, 1087, 194, 1083, 1084, 194, + 194, 1086, 1085, 194, 194, 194, 194, 194, 194, 194, 194, 1088, 194, 194, 194, 1101, 194, + 1089, 1100, 194, 194, 194, 1087, 1090, 194, 194, 194, 194, 1086, 194, 194, 194, 194, 194, + 194, 1091, 194, 194, 1088, 194, 1092, 194, 1101, 194, 1089, 194, 194, 194, 194, 194, 1090, + 194, 194, 194, 194, 1191, 194, 194, 194, 194, 1102, 1103, 1091, 194, 194, 1104, + + 1105, 1092, 194, 1106, 194, 1093, 194, 194, 194, 194, 194, 1107, 194, 1108, 1109, 1110, 1094, + 1111, 194, 194, 1191, 1102, 1103, 1191, 194, 194, 1104, 1105, 194, 194, 1106, 194, 1093, 1113, + 194, 1191, 194, 194, 1107, 194, 1108, 1109, 1110, 1094, 1111, 194, 1114, 194, 194, 194, 1116, + 194, 194, 194, 194, 194, 194, 194, 194, 1115, 1113, 194, 194, 194, 194, 1130, 194, 194, + 194, 194, 194, 194, 194, 1114, 194, 194, 194, 1116, 194, 194, 194, 194, 194, 194, 194, + 194, 1115, 194, 194, 194, 194, 194, 1130, 194, 194, 194, 194, 194, 194, 194, + + 1117, 1118, 194, 194, 194, 194, 194, 194, 1131, 194, 194, 1119, 194, 1191, 194, 194, 1121, + 194, 194, 194, 194, 1191, 194, 194, 194, 194, 194, 1117, 1118, 194, 194, 194, 194, 1120, + 194, 1131, 194, 194, 1119, 194, 194, 194, 194, 1121, 194, 194, 194, 194, 1123, 194, 194, + 194, 194, 194, 1132, 1191, 1122, 194, 194, 194, 1120, 194, 194, 194, 194, 1191, 194, 194, + 194, 194, 1133, 1125, 194, 194, 1124, 1123, 194, 194, 194, 194, 194, 1132, 194, 1122, 194, + 194, 194, 1128, 194, 194, 1126, 1127, 194, 194, 1134, 1135, 194, 1133, 1125, 1136, + + 194, 1124, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1128, 1191, 194, + 1126, 1127, 194, 194, 1134, 1135, 194, 1138, 1139, 1136, 194, 194, 194, 194, 194, 1191, 194, + 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 1140, 1191, 194, + 1138, 1139, 194, 194, 194, 194, 194, 194, 1141, 194, 194, 194, 194, 194, 194, 194, 194, + 194, 194, 194, 194, 194, 194, 194, 1140, 1142, 194, 1143, 194, 194, 194, 1147, 194, 1148, + 1144, 1141, 194, 194, 194, 1149, 194, 194, 194, 194, 1151, 1152, 194, 194, 194, + + 1191, 194, 194, 1142, 194, 1143, 194, 194, 194, 1147, 1157, 1148, 1144, 1146, 194, 1151, 194, + 1149, 194, 194, 194, 1153, 194, 1152, 194, 194, 194, 194, 194, 194, 1191, 194, 194, 194, + 194, 1162, 1164, 1157, 194, 194, 194, 194, 1154, 194, 1166, 194, 194, 194, 1153, 194, 1160, + 194, 194, 194, 194, 1156, 1168, 1159, 194, 194, 194, 194, 1162, 1164, 1170, 194, 194, 194, + 194, 1154, 1172, 1166, 1174, 1176, 1178, 1180, 1182, 1160, 1184, 194, 194, 1191, 1156, 1168, 1159, + 194, 1191, 1191, 194, 1191, 1191, 1170, 1191, 1191, 1191, 1191, 1191, 1172, 1191, 1174, + + 1176, 1178, 1180, 1182, 1191, 1184, 46, 46, 46, 46, 46, 88, 1191, 1191, 88, 88, 179, + 179, 179, 1191, 179, 181, 1191, 181, 181, 181, 184, 1191, 184, 184, 184, 194, 1191, 194, + 194, 194, 7, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191}; + +static const flex_int16_t yy_chk[4814] = { + 0, 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, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 9, 9, 10, 10, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 21, 22, 21, 24, + 1194, 23, 30, 24, 21, 1188, 21, 24, 23, 31, 21, 21, 44, 24, 99, + + 23, 24, 22, 23, 1187, 25, 1186, 25, 21, 22, 21, 24, 25, 23, 30, 24, 21, + 25, 21, 24, 23, 31, 21, 21, 44, 24, 99, 23, 24, 22, 23, 27, 25, 28, + 25, 1185, 32, 27, 1183, 25, 32, 28, 29, 42, 25, 26, 32, 28, 29, 29, 29, + 42, 1181, 26, 1179, 29, 26, 1177, 27, 26, 28, 1175, 26, 32, 27, 26, 1173, 32, + 28, 29, 42, 1171, 26, 32, 28, 29, 29, 29, 42, 34, 26, 33, 29, 26, 36, + 33, 26, 43, 43, 26, 35, 33, 26, 34, 100, 36, 49, 49, 35, 34, + + 34, 36, 35, 38, 1169, 35, 34, 38, 33, 50, 50, 36, 33, 38, 43, 43, 1167, + 35, 33, 1165, 34, 100, 36, 103, 55, 35, 34, 34, 36, 35, 38, 41, 35, 41, + 38, 55, 41, 58, 58, 1163, 38, 39, 104, 39, 1161, 71, 39, 77, 86, 86, 103, + 39, 1158, 39, 39, 1155, 70, 1150, 41, 1145, 41, 108, 1137, 41, 67, 71, 70, 77, + 39, 104, 39, 67, 71, 39, 77, 72, 70, 67, 39, 72, 39, 39, 40, 70, 67, + 72, 40, 110, 108, 40, 40, 67, 71, 70, 77, 72, 40, 110, 67, 40, + + 182, 182, 72, 70, 67, 1130, 72, 1129, 1112, 40, 1095, 67, 72, 40, 110, 1058, 40, + 40, 1021, 959, 897, 812, 72, 40, 110, 727, 40, 56, 56, 56, 56, 56, 56, 56, + 56, 56, 56, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 61, 61, 616, + 61, 61, 61, 61, 61, 61, 84, 68, 114, 505, 391, 68, 276, 186, 115, 68, 61, + 61, 61, 73, 101, 68, 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, 61, 84, + 68, 114, 61, 61, 68, 73, 102, 115, 68, 102, 184, 90, 73, 101, 68, + + 61, 73, 61, 116, 84, 117, 101, 73, 61, 68, 61, 88, 85, 118, 61, 61, 60, + 73, 102, 59, 52, 102, 76, 61, 62, 62, 76, 62, 62, 62, 62, 62, 62, 76, + 82, 51, 47, 78, 82, 76, 118, 78, 82, 62, 62, 62, 76, 78, 120, 76, 62, + 45, 20, 76, 121, 19, 122, 78, 82, 83, 76, 82, 83, 83, 78, 82, 76, 11, + 78, 82, 62, 107, 7, 76, 78, 120, 123, 62, 107, 83, 4, 121, 81, 122, 78, + 82, 83, 3, 0, 83, 83, 81, 124, 81, 105, 105, 81, 62, 107, 62, + + 63, 125, 81, 123, 63, 107, 83, 63, 105, 81, 0, 109, 109, 109, 63, 109, 0, + 63, 81, 124, 81, 105, 105, 81, 63, 0, 126, 63, 125, 81, 127, 63, 111, 0, + 63, 105, 129, 111, 109, 109, 109, 63, 109, 112, 63, 112, 113, 113, 112, 0, 130, + 63, 64, 126, 112, 0, 64, 127, 132, 111, 64, 112, 133, 129, 111, 119, 64, 119, + 135, 64, 112, 119, 112, 113, 113, 112, 64, 130, 119, 64, 136, 112, 119, 64, 0, + 132, 0, 64, 112, 133, 137, 0, 119, 64, 119, 135, 64, 0, 119, 128, + + 134, 138, 128, 64, 65, 119, 139, 136, 139, 119, 134, 65, 141, 65, 142, 134, 134, + 137, 65, 140, 143, 140, 144, 65, 65, 0, 128, 134, 138, 128, 145, 65, 140, 139, + 146, 139, 0, 134, 65, 141, 65, 142, 134, 134, 147, 65, 140, 143, 140, 144, 65, + 65, 66, 148, 150, 151, 66, 145, 152, 140, 66, 146, 153, 66, 154, 156, 66, 157, + 154, 66, 158, 147, 66, 0, 0, 160, 66, 0, 0, 66, 148, 150, 151, 66, 0, + 152, 0, 66, 155, 153, 66, 154, 156, 66, 157, 154, 66, 158, 161, 66, + + 159, 155, 160, 66, 69, 69, 155, 162, 163, 159, 164, 69, 69, 69, 166, 155, 167, + 159, 69, 165, 168, 171, 169, 170, 69, 161, 170, 159, 155, 0, 165, 69, 69, 155, + 162, 163, 159, 164, 69, 69, 69, 166, 169, 167, 159, 69, 165, 168, 171, 169, 170, + 69, 74, 170, 172, 173, 74, 165, 174, 175, 176, 173, 177, 279, 194, 0, 74, 0, + 0, 169, 281, 174, 74, 74, 195, 195, 74, 0, 0, 74, 0, 172, 173, 74, 194, + 174, 175, 176, 173, 177, 279, 194, 196, 74, 202, 195, 0, 281, 174, 74, + + 74, 195, 195, 74, 75, 75, 227, 196, 197, 0, 282, 194, 196, 75, 202, 197, 199, + 75, 0, 196, 75, 202, 195, 197, 75, 0, 227, 0, 197, 199, 0, 75, 75, 227, + 196, 197, 199, 282, 0, 196, 75, 202, 197, 199, 75, 198, 284, 75, 198, 198, 197, + 75, 79, 227, 79, 197, 199, 79, 200, 286, 200, 0, 79, 199, 79, 79, 0, 0, + 0, 198, 0, 0, 198, 284, 79, 198, 198, 0, 206, 79, 200, 79, 0, 0, 79, + 200, 286, 200, 206, 79, 0, 79, 79, 201, 201, 201, 198, 203, 206, 0, + + 287, 79, 80, 207, 203, 206, 80, 200, 201, 80, 80, 203, 288, 201, 289, 206, 80, + 203, 207, 80, 201, 201, 201, 207, 203, 206, 80, 287, 0, 80, 207, 203, 0, 80, + 0, 201, 80, 80, 203, 288, 201, 289, 0, 80, 203, 207, 80, 0, 0, 0, 207, + 0, 0, 80, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 92, 92, 92, 92, + 92, 92, 92, 92, 92, 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 188, 188, 188, 188, 188, + + 188, 188, 188, 188, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 204, + 209, 210, 211, 204, 291, 212, 292, 293, 294, 0, 0, 295, 211, 209, 209, 213, 213, + 210, 0, 212, 209, 210, 211, 204, 0, 212, 204, 209, 210, 211, 204, 291, 212, 292, + 293, 294, 213, 233, 295, 211, 209, 209, 213, 213, 210, 229, 212, 209, 210, 211, 204, + 205, 212, 214, 0, 214, 229, 233, 205, 205, 205, 216, 205, 213, 233, 229, 0, 0, + 216, 296, 297, 205, 229, 0, 0, 214, 0, 0, 205, 298, 214, 216, 214, + + 229, 233, 205, 205, 205, 216, 205, 0, 299, 229, 217, 219, 216, 296, 297, 205, 208, + 217, 208, 214, 208, 208, 218, 298, 219, 216, 220, 208, 0, 0, 217, 219, 218, 0, + 208, 299, 220, 217, 219, 0, 208, 0, 218, 208, 217, 208, 220, 208, 208, 218, 300, + 219, 237, 220, 208, 221, 222, 217, 219, 218, 245, 208, 221, 220, 0, 237, 222, 208, + 215, 218, 215, 0, 237, 220, 215, 221, 222, 300, 223, 237, 245, 215, 221, 222, 0, + 215, 0, 245, 223, 221, 215, 225, 237, 222, 240, 215, 224, 215, 223, 237, + + 225, 215, 221, 222, 226, 223, 0, 245, 215, 240, 224, 225, 215, 224, 240, 223, 224, + 215, 225, 231, 226, 240, 228, 224, 226, 223, 228, 225, 231, 0, 232, 226, 234, 234, + 232, 301, 240, 224, 225, 231, 224, 240, 228, 224, 0, 302, 231, 226, 235, 228, 232, + 226, 234, 228, 235, 231, 235, 232, 0, 234, 234, 232, 301, 236, 0, 236, 231, 236, + 235, 228, 230, 230, 302, 238, 0, 235, 236, 232, 0, 234, 230, 235, 238, 235, 241, + 230, 230, 236, 304, 0, 236, 230, 236, 238, 236, 235, 239, 230, 230, 241, + + 238, 242, 305, 236, 241, 239, 243, 230, 242, 238, 243, 241, 230, 230, 236, 304, 239, + 0, 230, 0, 238, 242, 0, 239, 244, 244, 241, 247, 242, 305, 243, 241, 239, 243, + 0, 242, 248, 243, 246, 246, 306, 250, 247, 239, 244, 250, 249, 247, 242, 248, 249, + 244, 244, 0, 247, 0, 248, 243, 307, 246, 252, 250, 252, 248, 0, 246, 246, 306, + 250, 247, 249, 244, 250, 249, 247, 0, 248, 249, 251, 308, 252, 254, 251, 248, 254, + 307, 246, 252, 250, 252, 256, 251, 253, 0, 0, 0, 251, 249, 309, 253, + + 256, 254, 251, 0, 311, 251, 308, 252, 254, 251, 256, 254, 253, 255, 0, 255, 0, + 256, 251, 253, 257, 258, 255, 251, 257, 309, 253, 256, 254, 251, 255, 311, 259, 312, + 258, 255, 259, 256, 0, 253, 255, 258, 255, 260, 257, 261, 260, 257, 258, 255, 313, + 257, 314, 261, 262, 315, 259, 255, 264, 259, 312, 258, 255, 259, 261, 261, 260, 263, + 258, 264, 260, 257, 261, 260, 262, 263, 0, 313, 264, 314, 261, 262, 315, 259, 265, + 264, 0, 263, 265, 267, 267, 261, 261, 260, 263, 0, 264, 316, 0, 266, + + 271, 262, 263, 266, 265, 264, 266, 0, 265, 268, 267, 265, 270, 268, 263, 265, 267, + 267, 273, 266, 271, 269, 273, 272, 316, 270, 266, 271, 269, 268, 266, 265, 270, 266, + 269, 265, 268, 267, 272, 270, 268, 269, 273, 272, 0, 273, 266, 271, 269, 273, 272, + 0, 270, 0, 0, 269, 268, 317, 318, 270, 319, 269, 320, 321, 290, 272, 290, 303, + 269, 273, 272, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 290, 303, 322, 317, + 318, 323, 319, 324, 320, 321, 290, 325, 290, 303, 326, 327, 328, 329, 330, + + 331, 332, 333, 335, 334, 336, 338, 339, 290, 303, 322, 340, 341, 323, 334, 324, 342, + 343, 344, 325, 345, 346, 326, 327, 328, 329, 330, 331, 332, 333, 335, 334, 336, 338, + 339, 347, 349, 350, 340, 341, 351, 334, 352, 342, 343, 344, 353, 345, 346, 354, 355, + 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 347, 349, 350, 368, 369, 351, + 370, 352, 371, 372, 373, 353, 374, 375, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 367, 377, 380, 378, 368, 369, 379, 370, 379, 371, 372, 373, + + 378, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 0, 387, 0, 0, 377, + 380, 378, 0, 0, 379, 0, 379, 0, 0, 0, 378, 0, 0, 381, 382, 383, 384, + 385, 386, 387, 388, 389, 393, 387, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, + 394, 395, 396, 397, 398, 400, 0, 0, 393, 399, 397, 0, 0, 399, 0, 393, 506, + 0, 507, 0, 394, 395, 396, 397, 398, 400, 409, 394, 395, 396, 397, 398, 400, 399, + 401, 393, 399, 397, 402, 403, 399, 409, 402, 506, 401, 507, 409, 394, 395, + + 396, 397, 398, 400, 409, 401, 404, 0, 403, 402, 403, 399, 401, 404, 406, 0, 402, + 403, 0, 409, 402, 405, 401, 405, 409, 508, 404, 406, 0, 407, 0, 408, 401, 404, + 406, 403, 402, 403, 405, 408, 404, 406, 410, 405, 0, 407, 0, 413, 405, 407, 405, + 408, 508, 404, 406, 411, 407, 412, 408, 411, 0, 406, 410, 0, 0, 405, 408, 413, + 415, 410, 405, 412, 407, 414, 413, 415, 407, 412, 408, 411, 0, 416, 411, 0, 412, + 416, 411, 414, 415, 410, 418, 420, 417, 414, 413, 415, 417, 0, 412, 0, + + 414, 416, 415, 0, 412, 418, 411, 419, 416, 419, 418, 420, 416, 424, 414, 415, 417, + 418, 420, 417, 414, 509, 422, 417, 421, 422, 425, 427, 416, 419, 423, 426, 418, 424, + 419, 426, 419, 418, 420, 421, 424, 423, 0, 417, 421, 422, 425, 427, 509, 422, 423, + 421, 422, 425, 427, 426, 419, 423, 426, 428, 424, 428, 426, 430, 429, 432, 421, 431, + 423, 433, 430, 421, 422, 425, 427, 510, 0, 423, 429, 432, 431, 428, 426, 430, 429, + 432, 428, 431, 428, 433, 430, 429, 432, 435, 431, 434, 433, 430, 0, 434, + + 438, 435, 510, 438, 0, 429, 432, 431, 428, 436, 430, 429, 432, 435, 431, 439, 433, + 436, 437, 434, 435, 440, 434, 438, 440, 437, 434, 438, 435, 436, 438, 439, 0, 441, + 442, 439, 436, 441, 437, 446, 435, 440, 439, 0, 436, 437, 434, 447, 440, 442, 438, + 440, 437, 441, 442, 0, 436, 443, 439, 446, 441, 442, 439, 444, 441, 437, 446, 447, + 440, 444, 443, 448, 445, 450, 447, 449, 442, 443, 0, 0, 441, 442, 445, 444, 443, + 449, 446, 0, 452, 450, 444, 448, 445, 450, 447, 449, 444, 443, 448, 445, + + 450, 0, 449, 454, 443, 451, 453, 455, 452, 445, 444, 455, 449, 457, 451, 452, 450, + 457, 448, 445, 450, 453, 449, 454, 0, 451, 453, 455, 456, 456, 454, 460, 451, 453, + 455, 452, 0, 457, 455, 0, 457, 451, 463, 458, 457, 458, 461, 460, 453, 456, 454, + 460, 451, 453, 455, 456, 456, 459, 460, 459, 464, 461, 463, 458, 457, 462, 461, 464, + 0, 463, 458, 467, 458, 461, 460, 0, 456, 459, 460, 468, 464, 462, 465, 466, 459, + 462, 459, 464, 461, 463, 458, 467, 462, 461, 464, 465, 469, 466, 467, 468, + + 469, 0, 465, 466, 459, 470, 468, 464, 462, 465, 466, 472, 462, 0, 470, 511, 0, + 471, 467, 472, 469, 0, 465, 469, 466, 470, 468, 469, 471, 465, 466, 472, 470, 473, + 475, 474, 477, 471, 472, 474, 473, 470, 511, 477, 471, 476, 472, 469, 476, 475, 0, + 478, 470, 473, 475, 471, 477, 480, 472, 474, 473, 475, 474, 477, 471, 476, 474, 473, + 481, 479, 477, 478, 476, 482, 512, 476, 475, 480, 478, 479, 473, 475, 484, 477, 480, + 514, 474, 483, 481, 479, 485, 482, 476, 482, 483, 481, 479, 484, 478, 0, + + 482, 512, 484, 517, 480, 485, 479, 483, 488, 484, 485, 487, 514, 490, 483, 481, 479, + 485, 482, 486, 482, 483, 487, 488, 484, 491, 486, 489, 488, 484, 517, 487, 485, 490, + 483, 488, 489, 485, 487, 486, 490, 0, 492, 0, 0, 491, 486, 489, 493, 487, 488, + 492, 491, 486, 489, 488, 0, 493, 487, 0, 490, 494, 492, 489, 0, 501, 486, 495, + 493, 492, 498, 494, 491, 494, 489, 493, 0, 495, 492, 496, 501, 494, 497, 496, 493, + 501, 498, 495, 494, 492, 498, 497, 501, 0, 495, 493, 0, 498, 494, 499, + + 494, 499, 497, 496, 495, 500, 496, 501, 494, 497, 496, 502, 501, 498, 495, 0, 503, + 498, 497, 503, 502, 499, 504, 500, 502, 500, 499, 518, 499, 497, 496, 502, 500, 519, + 520, 504, 503, 522, 502, 523, 524, 526, 504, 503, 527, 528, 503, 502, 499, 504, 500, + 502, 500, 529, 518, 530, 531, 532, 502, 533, 519, 520, 504, 503, 522, 534, 523, 524, + 526, 504, 537, 527, 528, 538, 539, 540, 541, 542, 543, 545, 529, 546, 530, 531, 532, + 549, 533, 550, 552, 554, 555, 556, 534, 557, 558, 559, 560, 537, 562, 566, + + 538, 539, 540, 541, 542, 543, 545, 560, 546, 568, 570, 572, 549, 573, 550, 552, 554, + 555, 556, 575, 557, 558, 559, 560, 576, 562, 566, 571, 571, 577, 578, 579, 581, 582, + 560, 584, 568, 570, 572, 585, 573, 586, 587, 588, 589, 590, 575, 592, 593, 594, 595, + 576, 596, 599, 571, 571, 577, 578, 579, 581, 582, 600, 584, 602, 603, 604, 585, 605, + 586, 587, 588, 589, 590, 606, 592, 593, 594, 595, 607, 596, 599, 608, 609, 611, 613, + 615, 617, 0, 600, 0, 602, 603, 604, 0, 605, 619, 620, 0, 622, 617, + + 606, 618, 730, 0, 621, 607, 617, 622, 608, 609, 611, 613, 615, 617, 618, 619, 620, + 621, 622, 623, 624, 618, 619, 620, 621, 622, 617, 0, 618, 730, 626, 621, 625, 617, + 622, 627, 625, 732, 734, 623, 624, 618, 619, 620, 621, 622, 623, 624, 618, 628, 626, + 621, 629, 628, 630, 627, 625, 626, 630, 625, 629, 0, 627, 625, 732, 734, 623, 624, + 632, 735, 736, 631, 629, 628, 630, 737, 628, 626, 0, 629, 628, 630, 627, 625, 631, + 630, 0, 629, 632, 633, 635, 631, 634, 636, 0, 632, 735, 736, 631, 629, + + 628, 630, 737, 0, 633, 635, 634, 637, 639, 633, 635, 631, 634, 636, 637, 632, 633, + 635, 631, 634, 636, 641, 638, 640, 639, 641, 738, 637, 639, 0, 638, 633, 635, 634, + 637, 639, 633, 635, 640, 634, 636, 637, 638, 640, 739, 641, 642, 646, 641, 638, 640, + 639, 641, 738, 637, 639, 643, 638, 643, 642, 644, 645, 647, 0, 644, 640, 642, 646, + 645, 638, 640, 739, 641, 642, 646, 0, 0, 0, 643, 648, 644, 645, 647, 643, 650, + 643, 642, 644, 645, 647, 648, 644, 649, 642, 646, 645, 654, 652, 651, 648, + + 650, 652, 655, 649, 650, 643, 648, 644, 645, 647, 653, 650, 649, 651, 653, 0, 654, + 648, 651, 649, 0, 652, 655, 654, 652, 651, 648, 650, 652, 655, 649, 650, 656, 658, + 653, 0, 659, 653, 657, 649, 651, 653, 657, 654, 661, 651, 660, 656, 652, 655, 660, + 0, 656, 658, 0, 661, 659, 740, 662, 656, 658, 653, 657, 659, 661, 657, 663, 664, + 666, 657, 660, 661, 0, 660, 656, 663, 665, 660, 662, 656, 658, 668, 661, 659, 740, + 662, 663, 664, 666, 657, 665, 661, 0, 663, 664, 666, 665, 660, 667, 669, + + 668, 668, 663, 665, 672, 662, 0, 0, 668, 670, 742, 667, 669, 663, 664, 666, 0, + 665, 667, 669, 743, 674, 670, 665, 672, 667, 669, 668, 668, 670, 671, 672, 671, 673, + 675, 676, 670, 742, 667, 669, 673, 674, 0, 671, 678, 667, 669, 743, 674, 670, 671, + 672, 680, 673, 675, 676, 670, 671, 677, 671, 673, 675, 676, 681, 678, 0, 685, 673, + 674, 679, 671, 678, 680, 677, 0, 0, 679, 671, 677, 680, 673, 675, 676, 681, 684, + 677, 685, 682, 0, 679, 681, 678, 683, 685, 0, 683, 679, 684, 687, 680, + + 677, 682, 682, 679, 684, 677, 0, 682, 744, 0, 681, 684, 683, 685, 682, 686, 679, + 686, 687, 683, 688, 691, 683, 689, 684, 687, 745, 0, 682, 682, 746, 684, 748, 688, + 682, 744, 689, 686, 690, 683, 688, 691, 686, 689, 686, 687, 690, 688, 691, 0, 689, + 692, 693, 745, 694, 692, 693, 746, 690, 748, 688, 0, 0, 689, 686, 690, 0, 688, + 691, 695, 689, 696, 697, 690, 694, 692, 693, 695, 692, 693, 699, 694, 692, 693, 696, + 690, 0, 697, 699, 695, 698, 696, 697, 698, 0, 0, 695, 0, 696, 697, + + 699, 694, 692, 693, 695, 0, 701, 699, 701, 702, 749, 696, 700, 698, 697, 699, 695, + 698, 696, 697, 698, 700, 704, 703, 706, 0, 708, 699, 701, 702, 703, 750, 700, 701, + 705, 701, 702, 749, 705, 700, 698, 0, 704, 703, 706, 0, 708, 709, 700, 704, 703, + 706, 707, 708, 705, 701, 702, 703, 750, 700, 712, 705, 707, 710, 711, 705, 713, 709, + 713, 704, 703, 706, 707, 708, 709, 0, 714, 710, 711, 707, 712, 705, 715, 710, 711, + 714, 751, 712, 713, 707, 710, 711, 752, 713, 709, 713, 714, 716, 715, 707, + + 719, 716, 715, 714, 710, 711, 718, 712, 718, 715, 710, 711, 714, 751, 720, 713, 717, + 720, 721, 752, 719, 716, 723, 714, 716, 715, 718, 719, 716, 715, 722, 717, 724, 718, + 720, 718, 717, 753, 721, 754, 725, 720, 723, 717, 720, 721, 722, 719, 716, 723, 722, + 755, 724, 718, 726, 756, 757, 722, 717, 724, 725, 720, 760, 717, 753, 721, 754, 725, + 726, 723, 761, 763, 766, 722, 726, 769, 770, 722, 755, 724, 772, 726, 756, 757, 777, + 771, 778, 725, 771, 760, 779, 780, 781, 784, 785, 726, 786, 761, 763, 766, + + 787, 726, 769, 770, 788, 790, 791, 772, 792, 793, 794, 777, 771, 778, 795, 771, 796, + 779, 780, 781, 784, 785, 797, 786, 798, 799, 800, 787, 801, 803, 804, 788, 790, 791, + 805, 792, 793, 794, 807, 808, 809, 795, 813, 796, 814, 0, 0, 0, 0, 797, 816, + 798, 799, 800, 815, 801, 803, 804, 817, 818, 819, 805, 813, 898, 814, 807, 808, 809, + 825, 813, 816, 814, 820, 820, 815, 815, 0, 816, 817, 818, 819, 815, 821, 822, 821, + 817, 818, 819, 825, 813, 898, 814, 822, 820, 826, 825, 0, 816, 823, 820, + + 820, 815, 815, 822, 821, 817, 818, 819, 0, 821, 822, 821, 824, 823, 826, 825, 0, + 0, 823, 822, 820, 826, 824, 827, 828, 823, 0, 827, 830, 829, 822, 821, 824, 829, + 828, 830, 0, 831, 832, 824, 823, 826, 0, 827, 828, 823, 900, 901, 830, 824, 827, + 828, 836, 829, 827, 830, 829, 831, 832, 824, 829, 828, 830, 833, 831, 832, 834, 833, + 835, 837, 827, 828, 836, 900, 901, 830, 0, 835, 840, 836, 829, 834, 838, 833, 831, + 832, 834, 902, 835, 837, 833, 839, 840, 834, 833, 835, 837, 838, 840, 836, + + 903, 843, 838, 841, 835, 840, 839, 841, 834, 838, 833, 839, 844, 834, 902, 835, 837, + 847, 839, 840, 842, 843, 842, 841, 838, 840, 845, 903, 843, 838, 841, 849, 844, 839, + 841, 850, 846, 847, 839, 844, 905, 845, 842, 846, 847, 0, 845, 842, 843, 842, 841, + 849, 848, 845, 848, 850, 846, 852, 849, 844, 851, 0, 850, 846, 847, 853, 0, 905, + 845, 842, 846, 854, 848, 845, 855, 851, 856, 852, 849, 848, 851, 848, 850, 846, 852, + 853, 854, 851, 857, 858, 856, 854, 853, 856, 855, 857, 856, 0, 854, 848, + + 0, 855, 851, 856, 852, 859, 860, 851, 857, 858, 861, 862, 853, 854, 863, 857, 858, + 856, 854, 907, 856, 855, 857, 856, 865, 859, 860, 865, 863, 867, 861, 862, 859, 860, + 863, 857, 858, 861, 862, 864, 0, 863, 868, 864, 865, 866, 907, 869, 908, 867, 0, + 865, 859, 860, 865, 863, 867, 861, 862, 872, 866, 863, 868, 864, 870, 866, 864, 869, + 871, 868, 864, 865, 866, 874, 869, 908, 867, 870, 873, 872, 909, 871, 873, 910, 870, + 0, 872, 866, 871, 868, 864, 870, 866, 874, 869, 871, 0, 875, 873, 876, + + 874, 875, 878, 876, 870, 873, 872, 909, 871, 873, 910, 870, 877, 877, 879, 871, 0, + 878, 879, 912, 874, 875, 878, 876, 875, 873, 876, 887, 875, 878, 876, 880, 880, 877, + 879, 0, 0, 882, 881, 877, 877, 879, 881, 883, 878, 879, 912, 887, 875, 878, 876, + 882, 880, 884, 887, 888, 883, 882, 880, 880, 877, 879, 881, 883, 882, 881, 914, 885, + 884, 881, 883, 885, 886, 884, 887, 888, 886, 890, 882, 880, 884, 891, 888, 883, 882, + 889, 889, 918, 920, 881, 883, 885, 0, 914, 885, 884, 886, 890, 885, 886, + + 884, 891, 888, 886, 890, 892, 889, 893, 891, 895, 896, 893, 889, 889, 918, 920, 894, + 921, 885, 892, 894, 927, 928, 886, 890, 892, 929, 931, 891, 895, 896, 893, 892, 889, + 893, 933, 895, 896, 893, 934, 894, 936, 937, 894, 921, 938, 892, 894, 927, 928, 940, + 941, 892, 929, 931, 942, 895, 896, 893, 943, 945, 947, 933, 949, 950, 951, 934, 894, + 936, 937, 952, 957, 938, 958, 960, 961, 962, 940, 941, 963, 0, 0, 942, 0, 1025, + 962, 943, 945, 947, 964, 949, 950, 951, 965, 960, 961, 962, 952, 957, 963, + + 958, 960, 961, 962, 964, 966, 963, 965, 967, 964, 968, 1025, 962, 965, 0, 967, 964, + 0, 0, 969, 965, 960, 961, 962, 1028, 966, 963, 969, 967, 972, 968, 964, 966, 973, + 965, 967, 964, 968, 971, 969, 965, 970, 967, 970, 972, 971, 969, 975, 0, 972, 0, + 1028, 966, 973, 969, 967, 972, 968, 971, 974, 973, 977, 974, 970, 978, 971, 969, 975, + 970, 1029, 970, 972, 971, 976, 975, 976, 972, 979, 980, 981, 973, 977, 974, 982, 978, + 971, 974, 984, 977, 974, 970, 978, 982, 985, 975, 976, 1029, 979, 980, 981, + + 976, 983, 976, 982, 979, 980, 981, 984, 977, 974, 982, 978, 986, 985, 984, 987, 983, + 988, 989, 982, 985, 983, 976, 0, 979, 980, 981, 990, 983, 991, 982, 989, 986, 991, + 984, 987, 0, 988, 989, 986, 985, 992, 987, 983, 988, 989, 994, 990, 983, 993, 995, + 996, 997, 991, 990, 996, 991, 995, 989, 986, 991, 992, 987, 993, 988, 989, 994, 999, + 992, 993, 995, 998, 997, 994, 990, 996, 993, 995, 996, 997, 991, 1000, 996, 1001, 995, + 0, 998, 999, 992, 1032, 993, 998, 1006, 994, 999, 1004, 993, 995, 998, 997, + + 0, 1000, 996, 1001, 1002, 1003, 1002, 1003, 1000, 1004, 1001, 0, 1006, 998, 999, 1004, 1032, + 1008, 998, 1006, 1007, 1005, 1004, 1010, 0, 1033, 1002, 1003, 1000, 1007, 1001, 1002, 1003, 1002, + 1003, 1005, 1004, 1008, 1009, 1006, 1007, 1005, 1004, 1010, 1008, 1009, 1015, 1007, 1005, 1038, 1010, + 1011, 1033, 1002, 1003, 1011, 1007, 1012, 1009, 1014, 1016, 1012, 1005, 1017, 1008, 1009, 1015, 1007, + 1005, 1013, 1010, 1013, 1009, 1015, 1014, 1011, 1038, 1018, 1011, 1014, 1016, 1012, 1011, 1017, 1012, + 1009, 1014, 1016, 1012, 0, 1017, 1013, 1019, 1015, 1039, 1042, 1013, 1018, 1013, 1043, + + 1046, 1014, 1011, 1047, 1018, 1019, 1014, 1016, 1012, 1020, 1017, 1050, 1019, 1052, 1053, 1054, 1020, + 1055, 1013, 1019, 0, 1039, 1042, 0, 1018, 1059, 1043, 1046, 1060, 1020, 1047, 1061, 1019, 1062, + 1063, 0, 1020, 1064, 1050, 1019, 1052, 1053, 1054, 1020, 1055, 1059, 1065, 1067, 1060, 1068, 1069, + 1061, 1059, 1062, 1063, 1060, 1020, 1064, 1061, 1066, 1062, 1063, 1071, 1066, 1064, 1096, 1065, 1067, + 1072, 1068, 1069, 1073, 1059, 1065, 1067, 1060, 1068, 1069, 1061, 1074, 1062, 1063, 1071, 1066, 1064, + 1070, 1066, 1077, 1072, 1071, 1066, 1073, 1096, 1065, 1067, 1072, 1068, 1069, 1073, 1074, + + 1070, 1075, 1078, 1075, 1076, 1070, 1074, 1077, 1098, 1071, 1066, 1076, 1070, 0, 1077, 1072, 1080, + 1081, 1073, 1082, 1079, 0, 1078, 1075, 1076, 1085, 1074, 1070, 1075, 1078, 1075, 1076, 1070, 1079, + 1077, 1098, 1080, 1081, 1076, 1082, 1079, 1083, 1084, 1080, 1081, 1085, 1082, 1079, 1084, 1078, 1075, + 1076, 1085, 1086, 1101, 0, 1083, 1088, 1089, 1087, 1079, 1083, 1084, 1080, 1081, 0, 1082, 1079, + 1083, 1084, 1104, 1089, 1085, 1086, 1087, 1084, 1091, 1088, 1089, 1087, 1086, 1101, 1090, 1083, 1088, + 1089, 1087, 1092, 1083, 1084, 1090, 1091, 1093, 1094, 1108, 1109, 1091, 1104, 1089, 1110, + + 1086, 1087, 1090, 1091, 1088, 1089, 1087, 1092, 1114, 1090, 1115, 1113, 1093, 1094, 1092, 0, 1116, + 1090, 1091, 1093, 1094, 1108, 1109, 1091, 1113, 1115, 1110, 1117, 1114, 1090, 1115, 1113, 0, 1118, + 1092, 1114, 1116, 1115, 1113, 1093, 1094, 1119, 1120, 1116, 1122, 1123, 1121, 1117, 1118, 0, 1124, + 1113, 1115, 1118, 1117, 1114, 1125, 1115, 1113, 1121, 1118, 1119, 1120, 1116, 1122, 1123, 1121, 1126, + 1119, 1120, 1124, 1122, 1123, 1121, 1117, 1118, 1125, 1124, 1126, 1128, 1118, 1127, 1131, 1125, 1133, + 1127, 1121, 1126, 1119, 1120, 1136, 1122, 1123, 1121, 1126, 1138, 1139, 1124, 1140, 1128, + + 0, 1127, 1142, 1125, 1143, 1126, 1128, 1141, 1127, 1131, 1149, 1133, 1127, 1146, 1126, 1151, 1139, + 1136, 1140, 1152, 1138, 1141, 1142, 1139, 1143, 1140, 1128, 1141, 1127, 1142, 0, 1143, 1144, 1153, + 1141, 1156, 1159, 1149, 1160, 1152, 1138, 1154, 1144, 1139, 1162, 1140, 1152, 1138, 1141, 1142, 1154, + 1143, 1144, 1153, 1141, 1146, 1164, 1151, 1160, 1144, 1153, 1154, 1156, 1159, 1166, 1160, 1152, 1138, + 1154, 1144, 1168, 1162, 1170, 1172, 1174, 1176, 1178, 1154, 1180, 1144, 1153, 0, 1146, 1164, 1151, + 1160, 0, 0, 1154, 0, 0, 1166, 0, 0, 0, 0, 0, 1168, 0, 1170, + + 1172, 1174, 1176, 1178, 0, 1180, 1192, 1192, 1192, 1192, 1192, 1193, 0, 0, 1193, 1193, 1195, + 1195, 1195, 0, 1195, 1196, 0, 1196, 1196, 1196, 1197, 0, 1197, 1197, 1197, 1198, 0, 1198, + 1198, 1198, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, + + 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191}; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. @@ -2120,13 +1535,14 @@ static const flex_int16_t yy_chk[4814] = ***************************/ #line 12 "flex_lexer.l" -#include "../sql/Expr.h" -#include "bison_parser.h" -#include #include +#include #include +#include "../sql/Expr.h" +#include "bison_parser.h" -#define TOKEN(name) { return SQL_##name; } +#define TOKEN(name) \ + { return SQL_##name; } static thread_local std::stringstream strbuf; @@ -2159,129 +1575,127 @@ static thread_local std::stringstream strbuf; #endif #ifndef YY_EXTRA_TYPE -#define YY_EXTRA_TYPE void * +#define YY_EXTRA_TYPE void* #endif /* Holds the entire state of the reentrant scanner. */ -struct yyguts_t - { - - /* User-defined. Not touched by flex. */ - YY_EXTRA_TYPE yyextra_r; - - /* The rest are the same as the globals declared in the non-reentrant scanner. */ - FILE *yyin_r, *yyout_r; - size_t yy_buffer_stack_top; /**< index of top of stack. */ - size_t yy_buffer_stack_max; /**< capacity of stack. */ - YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ - char yy_hold_char; - int yy_n_chars; - int yyleng_r; - char *yy_c_buf_p; - int yy_init; - int yy_start; - int yy_did_buffer_switch_on_eof; - int yy_start_stack_ptr; - int yy_start_stack_depth; - int *yy_start_stack; - yy_state_type yy_last_accepting_state; - char* yy_last_accepting_cpos; - - int yylineno_r; - int yy_flex_debug_r; - - char *yytext_r; - int yy_more_flag; - int yy_more_len; - - YYSTYPE * yylval_r; - - YYLTYPE * yylloc_r; - - }; /* end struct yyguts_t */ +struct yyguts_t { + /* User-defined. Not touched by flex. */ + YY_EXTRA_TYPE yyextra_r; + + /* The rest are the same as the globals declared in the non-reentrant scanner. */ + FILE *yyin_r, *yyout_r; + size_t yy_buffer_stack_top; /**< index of top of stack. */ + size_t yy_buffer_stack_max; /**< capacity of stack. */ + YY_BUFFER_STATE* yy_buffer_stack; /**< Stack as an array. */ + char yy_hold_char; + int yy_n_chars; + int yyleng_r; + char* yy_c_buf_p; + int yy_init; + int yy_start; + int yy_did_buffer_switch_on_eof; + int yy_start_stack_ptr; + int yy_start_stack_depth; + int* yy_start_stack; + yy_state_type yy_last_accepting_state; + char* yy_last_accepting_cpos; + + int yylineno_r; + int yy_flex_debug_r; + + char* yytext_r; + int yy_more_flag; + int yy_more_len; + + YYSTYPE* yylval_r; + + YYLTYPE* yylloc_r; + +}; /* end struct yyguts_t */ + +static int yy_init_globals(yyscan_t yyscanner); + +/* This must go here because YYSTYPE and YYLTYPE are included + * from bison output in section 1.*/ +#define yylval yyg->yylval_r -static int yy_init_globals ( yyscan_t yyscanner ); +#define yylloc yyg->yylloc_r - /* This must go here because YYSTYPE and YYLTYPE are included - * from bison output in section 1.*/ - # define yylval yyg->yylval_r - - # define yylloc yyg->yylloc_r - -int yylex_init (yyscan_t* scanner); +int yylex_init(yyscan_t* scanner); -int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); +int yylex_init_extra(YY_EXTRA_TYPE user_defined, yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int yylex_destroy ( yyscan_t yyscanner ); +int yylex_destroy(yyscan_t yyscanner); + +int yyget_debug(yyscan_t yyscanner); -int yyget_debug ( yyscan_t yyscanner ); +void yyset_debug(int debug_flag, yyscan_t yyscanner); -void yyset_debug ( int debug_flag , yyscan_t yyscanner ); +YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner); -YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); +void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner); -void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); +FILE* yyget_in(yyscan_t yyscanner); -FILE *yyget_in ( yyscan_t yyscanner ); +void yyset_in(FILE* _in_str, yyscan_t yyscanner); -void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); +FILE* yyget_out(yyscan_t yyscanner); -FILE *yyget_out ( yyscan_t yyscanner ); +void yyset_out(FILE* _out_str, yyscan_t yyscanner); -void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); +int yyget_leng(yyscan_t yyscanner); - int yyget_leng ( yyscan_t yyscanner ); +char* yyget_text(yyscan_t yyscanner); -char *yyget_text ( yyscan_t yyscanner ); +int yyget_lineno(yyscan_t yyscanner); -int yyget_lineno ( yyscan_t yyscanner ); +void yyset_lineno(int _line_number, yyscan_t yyscanner); -void yyset_lineno ( int _line_number , yyscan_t yyscanner ); +int yyget_column(yyscan_t yyscanner); -int yyget_column ( yyscan_t yyscanner ); +void yyset_column(int _column_no, yyscan_t yyscanner); -void yyset_column ( int _column_no , yyscan_t yyscanner ); +YYSTYPE* yyget_lval(yyscan_t yyscanner); -YYSTYPE * yyget_lval ( yyscan_t yyscanner ); +void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner); -void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner ); +YYLTYPE* yyget_lloc(yyscan_t yyscanner); + +void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner); - YYLTYPE *yyget_lloc ( yyscan_t yyscanner ); - - void yyset_lloc ( YYLTYPE * yylloc_param , yyscan_t yyscanner ); - /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap ( yyscan_t yyscanner ); +extern "C" int yywrap(yyscan_t yyscanner); #else -extern int yywrap ( yyscan_t yyscanner ); +extern int yywrap(yyscan_t yyscanner); #endif #endif #ifndef YY_NO_UNPUT - + #endif #ifndef yytext_ptr -static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); +static void yy_flex_strncpy(char*, const char*, int, yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen ( const char * , yyscan_t yyscanner); +static int yy_flex_strlen(const char*, yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus -static int yyinput ( yyscan_t yyscanner ); +static int yyinput(yyscan_t yyscanner); #else -static int input ( yyscan_t yyscanner ); +static int input(yyscan_t yyscanner); #endif #endif @@ -2301,42 +1715,36 @@ static int input ( yyscan_t yyscanner ); /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ -#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) +#define ECHO \ + do { \ + if (fwrite(yytext, (size_t)yyleng, 1, yyout)) { \ + } \ + } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT -#define YY_INPUT(buf,result,max_size) \ - if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ - { \ - int c = '*'; \ - int n; \ - for ( n = 0; n < max_size && \ - (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ - buf[n] = (char) c; \ - if ( c == '\n' ) \ - buf[n++] = (char) c; \ - if ( c == EOF && ferror( yyin ) ) \ - YY_FATAL_ERROR( "input in flex scanner failed" ); \ - result = n; \ - } \ - else \ - { \ - errno=0; \ - while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ - { \ - if( errno != EINTR) \ - { \ - YY_FATAL_ERROR( "input in flex scanner failed" ); \ - break; \ - } \ - errno=0; \ - clearerr(yyin); \ - } \ - }\ -\ +#define YY_INPUT(buf, result, max_size) \ + if (YY_CURRENT_BUFFER_LVALUE->yy_is_interactive) { \ + int c = '*'; \ + int n; \ + for (n = 0; n < max_size && (c = getc(yyin)) != EOF && c != '\n'; ++n) buf[n] = (char)c; \ + if (c == '\n') buf[n++] = (char)c; \ + if (c == EOF && ferror(yyin)) YY_FATAL_ERROR("input in flex scanner failed"); \ + result = n; \ + } else { \ + errno = 0; \ + while ((result = (int)fread(buf, 1, (yy_size_t)max_size, yyin)) == 0 && ferror(yyin)) { \ + if (errno != EINTR) { \ + YY_FATAL_ERROR("input in flex scanner failed"); \ + break; \ + } \ + errno = 0; \ + clearerr(yyin); \ + } \ + } #endif @@ -2355,7 +1763,7 @@ static int input ( yyscan_t yyscanner ); /* Report a fatal error. */ #ifndef YY_FATAL_ERROR -#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) +#define YY_FATAL_ERROR(msg) yy_fatal_error(msg, yyscanner) #endif /* end tables serialization structures and prototypes */ @@ -2366,11 +1774,9 @@ static int input ( yyscan_t yyscanner ); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int yylex \ - (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner); +extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner); -#define YY_DECL int yylex \ - (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) +#define YY_DECL int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng @@ -2382,1006 +1788,1010 @@ extern int yylex \ /* Code executed at the end of each rule. */ #ifndef YY_BREAK -#define YY_BREAK /*LINTED*/break; +#define YY_BREAK /*LINTED*/ break; #endif -#define YY_RULE_SETUP \ - YY_USER_ACTION +#define YY_RULE_SETUP YY_USER_ACTION /** The main scanner function which does all the work. */ -YY_DECL -{ - yy_state_type yy_current_state; - char *yy_cp, *yy_bp; - int yy_act; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +YY_DECL { + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yylval = yylval_param; + yylval = yylval_param; - yylloc = yylloc_param; + yylloc = yylloc_param; - if ( !yyg->yy_init ) - { - yyg->yy_init = 1; + if (!yyg->yy_init) { + yyg->yy_init = 1; #ifdef YY_USER_INIT - YY_USER_INIT; + YY_USER_INIT; #endif - if ( ! yyg->yy_start ) - yyg->yy_start = 1; /* first start state */ + if (!yyg->yy_start) yyg->yy_start = 1; /* first start state */ - if ( ! yyin ) - yyin = stdin; + if (!yyin) yyin = stdin; - if ( ! yyout ) - yyout = stdout; + if (!yyout) yyout = stdout; - if ( ! YY_CURRENT_BUFFER ) { - yyensure_buffer_stack (yyscanner); - YY_CURRENT_BUFFER_LVALUE = - yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); - } + if (!YY_CURRENT_BUFFER) { + yyensure_buffer_stack(yyscanner); + YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); + } - yy_load_buffer_state( yyscanner ); - } + yy_load_buffer_state(yyscanner); + } - { + { #line 57 "flex_lexer.l" - #line 2434 "flex_lexer.cpp" - while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ - { - yy_cp = yyg->yy_c_buf_p; + while (/*CONSTCOND*/ 1) /* loops until end-of-file is reached */ + { + yy_cp = yyg->yy_c_buf_p; - /* Support of yytext. */ - *yy_cp = yyg->yy_hold_char; + /* Support of yytext. */ + *yy_cp = yyg->yy_hold_char; - /* yy_bp points to the position in yy_ch_buf of the start of + /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ - yy_bp = yy_cp; - - yy_current_state = yyg->yy_start; -yy_match: - do - { - YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; - if ( yy_accept[yy_current_state] ) - { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) - { - yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1192 ) - yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - ++yy_cp; - } - while ( yy_current_state != 1191 ); - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - -yy_find_action: - yy_act = yy_accept[yy_current_state]; - - YY_DO_BEFORE_ACTION; - -do_action: /* This label is used only to access EOF actions. */ - - switch ( yy_act ) - { /* beginning of action switch */ - case 0: /* must back up */ - /* undo the effects of YY_DO_BEFORE_ACTION */ - *yy_cp = yyg->yy_hold_char; - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - goto yy_find_action; - -case 1: -YY_RULE_SETUP + yy_bp = yy_cp; + + yy_current_state = yyg->yy_start; + yy_match: + do { + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; + if (yy_accept[yy_current_state]) { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { + yy_current_state = (int)yy_def[yy_current_state]; + if (yy_current_state >= 1192) yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + ++yy_cp; + } while (yy_current_state != 1191); + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + + yy_find_action: + yy_act = yy_accept[yy_current_state]; + + YY_DO_BEFORE_ACTION; + + do_action: /* This label is used only to access EOF actions. */ + + switch (yy_act) { /* beginning of action switch */ + case 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *yy_cp = yyg->yy_hold_char; + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + + case 1: + YY_RULE_SETUP #line 59 "flex_lexer.l" -BEGIN(COMMENT); - YY_BREAK -case 2: -YY_RULE_SETUP + BEGIN(COMMENT); + YY_BREAK + case 2: + YY_RULE_SETUP #line 60 "flex_lexer.l" -/* skipping comment content until a end of line is read */; - YY_BREAK -case 3: -/* rule 3 can match eol */ -YY_RULE_SETUP + /* skipping comment content until a end of line is read */; + YY_BREAK + case 3: + /* rule 3 can match eol */ + YY_RULE_SETUP #line 61 "flex_lexer.l" -BEGIN(INITIAL); - YY_BREAK -case 4: -/* rule 4 can match eol */ -YY_RULE_SETUP + BEGIN(INITIAL); + YY_BREAK + case 4: + /* rule 4 can match eol */ + YY_RULE_SETUP #line 63 "flex_lexer.l" -/* skip whitespace */; - YY_BREAK -case 5: -YY_RULE_SETUP + /* skip whitespace */; + YY_BREAK + case 5: + YY_RULE_SETUP #line 65 "flex_lexer.l" -TOKEN(DEALLOCATE) - YY_BREAK -case 6: -YY_RULE_SETUP + TOKEN(DEALLOCATE) + YY_BREAK + case 6: + YY_RULE_SETUP #line 66 "flex_lexer.l" -TOKEN(PARAMETERS) - YY_BREAK -case 7: -YY_RULE_SETUP + TOKEN(PARAMETERS) + YY_BREAK + case 7: + YY_RULE_SETUP #line 67 "flex_lexer.l" -TOKEN(INTERSECT) - YY_BREAK -case 8: -YY_RULE_SETUP + TOKEN(INTERSECT) + YY_BREAK + case 8: + YY_RULE_SETUP #line 68 "flex_lexer.l" -TOKEN(TEMPORARY) - YY_BREAK -case 9: -YY_RULE_SETUP + TOKEN(TEMPORARY) + YY_BREAK + case 9: + YY_RULE_SETUP #line 69 "flex_lexer.l" -TOKEN(TIMESTAMP) - YY_BREAK -case 10: -YY_RULE_SETUP + TOKEN(TIMESTAMP) + YY_BREAK + case 10: + YY_RULE_SETUP #line 70 "flex_lexer.l" -TOKEN(DESCRIBE) - YY_BREAK -case 11: -YY_RULE_SETUP + TOKEN(DESCRIBE) + YY_BREAK + case 11: + YY_RULE_SETUP #line 71 "flex_lexer.l" -TOKEN(DISTINCT) - YY_BREAK -case 12: -YY_RULE_SETUP + TOKEN(DISTINCT) + YY_BREAK + case 12: + YY_RULE_SETUP #line 72 "flex_lexer.l" -TOKEN(NVARCHAR) - YY_BREAK -case 13: -YY_RULE_SETUP + TOKEN(NVARCHAR) + YY_BREAK + case 13: + YY_RULE_SETUP #line 73 "flex_lexer.l" -TOKEN(RESTRICT) - YY_BREAK -case 14: -YY_RULE_SETUP + TOKEN(RESTRICT) + YY_BREAK + case 14: + YY_RULE_SETUP #line 74 "flex_lexer.l" -TOKEN(TRUNCATE) - YY_BREAK -case 15: -YY_RULE_SETUP + TOKEN(TRUNCATE) + YY_BREAK + case 15: + YY_RULE_SETUP #line 75 "flex_lexer.l" -TOKEN(ANALYZE) - YY_BREAK -case 16: -YY_RULE_SETUP + TOKEN(ANALYZE) + YY_BREAK + case 16: + YY_RULE_SETUP #line 76 "flex_lexer.l" -TOKEN(BETWEEN) - YY_BREAK -case 17: -YY_RULE_SETUP + TOKEN(BETWEEN) + YY_BREAK + case 17: + YY_RULE_SETUP #line 77 "flex_lexer.l" -TOKEN(CASCADE) - YY_BREAK -case 18: -YY_RULE_SETUP + TOKEN(CASCADE) + YY_BREAK + case 18: + YY_RULE_SETUP #line 78 "flex_lexer.l" -TOKEN(COLUMNS) - YY_BREAK -case 19: -YY_RULE_SETUP + TOKEN(COLUMNS) + YY_BREAK + case 19: + YY_RULE_SETUP #line 79 "flex_lexer.l" -TOKEN(CONTROL) - YY_BREAK -case 20: -YY_RULE_SETUP + TOKEN(CONTROL) + YY_BREAK + case 20: + YY_RULE_SETUP #line 80 "flex_lexer.l" -TOKEN(DEFAULT) - YY_BREAK -case 21: -YY_RULE_SETUP + TOKEN(DEFAULT) + YY_BREAK + case 21: + YY_RULE_SETUP #line 81 "flex_lexer.l" -TOKEN(EXECUTE) - YY_BREAK -case 22: -YY_RULE_SETUP + TOKEN(EXECUTE) + YY_BREAK + case 22: + YY_RULE_SETUP #line 82 "flex_lexer.l" -TOKEN(EXPLAIN) - YY_BREAK -case 23: -YY_RULE_SETUP + TOKEN(EXPLAIN) + YY_BREAK + case 23: + YY_RULE_SETUP #line 83 "flex_lexer.l" -TOKEN(INTEGER) - YY_BREAK -case 24: -YY_RULE_SETUP + TOKEN(INTEGER) + YY_BREAK + case 24: + YY_RULE_SETUP #line 84 "flex_lexer.l" -TOKEN(NATURAL) - YY_BREAK -case 25: -YY_RULE_SETUP + TOKEN(NATURAL) + YY_BREAK + case 25: + YY_RULE_SETUP #line 85 "flex_lexer.l" -TOKEN(PREPARE) - YY_BREAK -case 26: -YY_RULE_SETUP + TOKEN(PREPARE) + YY_BREAK + case 26: + YY_RULE_SETUP #line 86 "flex_lexer.l" -TOKEN(PRIMARY) - YY_BREAK -case 27: -YY_RULE_SETUP + TOKEN(PRIMARY) + YY_BREAK + case 27: + YY_RULE_SETUP #line 87 "flex_lexer.l" -TOKEN(SCHEMAS) - YY_BREAK -case 28: -YY_RULE_SETUP + TOKEN(SCHEMAS) + YY_BREAK + case 28: + YY_RULE_SETUP #line 88 "flex_lexer.l" -TOKEN(SPATIAL) - YY_BREAK -case 29: -YY_RULE_SETUP + TOKEN(SPATIAL) + YY_BREAK + case 29: + YY_RULE_SETUP #line 89 "flex_lexer.l" -TOKEN(VARCHAR) - YY_BREAK -case 30: -YY_RULE_SETUP + TOKEN(VARCHAR) + YY_BREAK + case 30: + YY_RULE_SETUP #line 90 "flex_lexer.l" -TOKEN(TIME) - YY_BREAK -case 31: -YY_RULE_SETUP + TOKEN(TIME) + YY_BREAK + case 31: + YY_RULE_SETUP #line 91 "flex_lexer.l" -TOKEN(DECIMAL) - YY_BREAK -case 32: -YY_RULE_SETUP + TOKEN(DECIMAL) + YY_BREAK + case 32: + YY_RULE_SETUP #line 92 "flex_lexer.l" -TOKEN(REAL) - YY_BREAK -case 33: -YY_RULE_SETUP + TOKEN(REAL) + YY_BREAK + case 33: + YY_RULE_SETUP #line 93 "flex_lexer.l" -TOKEN(SMALLINT) - YY_BREAK -case 34: -YY_RULE_SETUP + TOKEN(SMALLINT) + YY_BREAK + case 34: + YY_RULE_SETUP #line 94 "flex_lexer.l" -TOKEN(VIRTUAL) - YY_BREAK -case 35: -YY_RULE_SETUP + TOKEN(VIRTUAL) + YY_BREAK + case 35: + YY_RULE_SETUP #line 95 "flex_lexer.l" -TOKEN(BEFORE) - YY_BREAK -case 36: -YY_RULE_SETUP + TOKEN(BEFORE) + YY_BREAK + case 36: + YY_RULE_SETUP #line 96 "flex_lexer.l" -TOKEN(COLUMN) - YY_BREAK -case 37: -YY_RULE_SETUP + TOKEN(COLUMN) + YY_BREAK + case 37: + YY_RULE_SETUP #line 97 "flex_lexer.l" -TOKEN(CREATE) - YY_BREAK -case 38: -YY_RULE_SETUP + TOKEN(CREATE) + YY_BREAK + case 38: + YY_RULE_SETUP #line 98 "flex_lexer.l" -TOKEN(DELETE) - YY_BREAK -case 39: -YY_RULE_SETUP + TOKEN(DELETE) + YY_BREAK + case 39: + YY_RULE_SETUP #line 99 "flex_lexer.l" -TOKEN(DIRECT) - YY_BREAK -case 40: -YY_RULE_SETUP + TOKEN(DIRECT) + YY_BREAK + case 40: + YY_RULE_SETUP #line 100 "flex_lexer.l" -TOKEN(DOUBLE) - YY_BREAK -case 41: -YY_RULE_SETUP + TOKEN(DOUBLE) + YY_BREAK + case 41: + YY_RULE_SETUP #line 101 "flex_lexer.l" -TOKEN(ESCAPE) - YY_BREAK -case 42: -YY_RULE_SETUP + TOKEN(ESCAPE) + YY_BREAK + case 42: + YY_RULE_SETUP #line 102 "flex_lexer.l" -TOKEN(EXCEPT) - YY_BREAK -case 43: -YY_RULE_SETUP + TOKEN(EXCEPT) + YY_BREAK + case 43: + YY_RULE_SETUP #line 103 "flex_lexer.l" -TOKEN(EXISTS) - YY_BREAK -case 44: -YY_RULE_SETUP + TOKEN(EXISTS) + YY_BREAK + case 44: + YY_RULE_SETUP #line 104 "flex_lexer.l" -TOKEN(EXTRACT) - YY_BREAK -case 45: -YY_RULE_SETUP + TOKEN(EXTRACT) + YY_BREAK + case 45: + YY_RULE_SETUP #line 105 "flex_lexer.l" -TOKEN(CAST) - YY_BREAK -case 46: -YY_RULE_SETUP + TOKEN(CAST) + YY_BREAK + case 46: + YY_RULE_SETUP #line 106 "flex_lexer.l" -TOKEN(FORMAT) - YY_BREAK -case 47: -YY_RULE_SETUP + TOKEN(FORMAT) + YY_BREAK + case 47: + YY_RULE_SETUP #line 107 "flex_lexer.l" -TOKEN(GLOBAL) - YY_BREAK -case 48: -YY_RULE_SETUP + TOKEN(GLOBAL) + YY_BREAK + case 48: + YY_RULE_SETUP #line 108 "flex_lexer.l" -TOKEN(HAVING) - YY_BREAK -case 49: -YY_RULE_SETUP + TOKEN(HAVING) + YY_BREAK + case 49: + YY_RULE_SETUP #line 109 "flex_lexer.l" -TOKEN(IMPORT) - YY_BREAK -case 50: -YY_RULE_SETUP + TOKEN(IMPORT) + YY_BREAK + case 50: + YY_RULE_SETUP #line 110 "flex_lexer.l" -TOKEN(INSERT) - YY_BREAK -case 51: -YY_RULE_SETUP + TOKEN(INSERT) + YY_BREAK + case 51: + YY_RULE_SETUP #line 111 "flex_lexer.l" -TOKEN(ISNULL) - YY_BREAK -case 52: -YY_RULE_SETUP + TOKEN(ISNULL) + YY_BREAK + case 52: + YY_RULE_SETUP #line 112 "flex_lexer.l" -TOKEN(OFFSET) - YY_BREAK -case 53: -YY_RULE_SETUP + TOKEN(OFFSET) + YY_BREAK + case 53: + YY_RULE_SETUP #line 113 "flex_lexer.l" -TOKEN(RENAME) - YY_BREAK -case 54: -YY_RULE_SETUP + TOKEN(RENAME) + YY_BREAK + case 54: + YY_RULE_SETUP #line 114 "flex_lexer.l" -TOKEN(SCHEMA) - YY_BREAK -case 55: -YY_RULE_SETUP + TOKEN(SCHEMA) + YY_BREAK + case 55: + YY_RULE_SETUP #line 115 "flex_lexer.l" -TOKEN(SELECT) - YY_BREAK -case 56: -YY_RULE_SETUP + TOKEN(SELECT) + YY_BREAK + case 56: + YY_RULE_SETUP #line 116 "flex_lexer.l" -TOKEN(SORTED) - YY_BREAK -case 57: -YY_RULE_SETUP + TOKEN(SORTED) + YY_BREAK + case 57: + YY_RULE_SETUP #line 117 "flex_lexer.l" -TOKEN(TABLES) - YY_BREAK -case 58: -YY_RULE_SETUP + TOKEN(TABLES) + YY_BREAK + case 58: + YY_RULE_SETUP #line 118 "flex_lexer.l" -TOKEN(UNIQUE) - YY_BREAK -case 59: -YY_RULE_SETUP + TOKEN(UNIQUE) + YY_BREAK + case 59: + YY_RULE_SETUP #line 119 "flex_lexer.l" -TOKEN(UNLOAD) - YY_BREAK -case 60: -YY_RULE_SETUP + TOKEN(UNLOAD) + YY_BREAK + case 60: + YY_RULE_SETUP #line 120 "flex_lexer.l" -TOKEN(UPDATE) - YY_BREAK -case 61: -YY_RULE_SETUP + TOKEN(UPDATE) + YY_BREAK + case 61: + YY_RULE_SETUP #line 121 "flex_lexer.l" -TOKEN(VALUES) - YY_BREAK -case 62: -YY_RULE_SETUP + TOKEN(VALUES) + YY_BREAK + case 62: + YY_RULE_SETUP #line 122 "flex_lexer.l" -TOKEN(AFTER) - YY_BREAK -case 63: -YY_RULE_SETUP + TOKEN(AFTER) + YY_BREAK + case 63: + YY_RULE_SETUP #line 123 "flex_lexer.l" -TOKEN(ALTER) - YY_BREAK -case 64: -YY_RULE_SETUP + TOKEN(ALTER) + YY_BREAK + case 64: + YY_RULE_SETUP #line 124 "flex_lexer.l" -TOKEN(ARRAY) - YY_BREAK -case 65: -YY_RULE_SETUP + TOKEN(ARRAY) + YY_BREAK + case 65: + YY_RULE_SETUP #line 125 "flex_lexer.l" -TOKEN(CROSS) - YY_BREAK -case 66: -YY_RULE_SETUP + TOKEN(CROSS) + YY_BREAK + case 66: + YY_RULE_SETUP #line 126 "flex_lexer.l" -TOKEN(DELTA) - YY_BREAK -case 67: -YY_RULE_SETUP + TOKEN(DELTA) + YY_BREAK + case 67: + YY_RULE_SETUP #line 127 "flex_lexer.l" -TOKEN(FLOAT) - YY_BREAK -case 68: -YY_RULE_SETUP + TOKEN(FLOAT) + YY_BREAK + case 68: + YY_RULE_SETUP #line 128 "flex_lexer.l" -TOKEN(GROUP) - YY_BREAK -case 69: -YY_RULE_SETUP + TOKEN(GROUP) + YY_BREAK + case 69: + YY_RULE_SETUP #line 129 "flex_lexer.l" -TOKEN(INDEX) - YY_BREAK -case 70: -YY_RULE_SETUP + TOKEN(INDEX) + YY_BREAK + case 70: + YY_RULE_SETUP #line 130 "flex_lexer.l" -TOKEN(INNER) - YY_BREAK -case 71: -YY_RULE_SETUP + TOKEN(INNER) + YY_BREAK + case 71: + YY_RULE_SETUP #line 131 "flex_lexer.l" -TOKEN(LIMIT) - YY_BREAK -case 72: -YY_RULE_SETUP + TOKEN(LIMIT) + YY_BREAK + case 72: + YY_RULE_SETUP #line 132 "flex_lexer.l" -TOKEN(LOCAL) - YY_BREAK -case 73: -YY_RULE_SETUP + TOKEN(LOCAL) + YY_BREAK + case 73: + YY_RULE_SETUP #line 133 "flex_lexer.l" -TOKEN(MERGE) - YY_BREAK -case 74: -YY_RULE_SETUP + TOKEN(MERGE) + YY_BREAK + case 74: + YY_RULE_SETUP #line 134 "flex_lexer.l" -TOKEN(MINUS) - YY_BREAK -case 75: -YY_RULE_SETUP + TOKEN(MINUS) + YY_BREAK + case 75: + YY_RULE_SETUP #line 135 "flex_lexer.l" -TOKEN(ORDER) - YY_BREAK -case 76: -YY_RULE_SETUP + TOKEN(ORDER) + YY_BREAK + case 76: + YY_RULE_SETUP #line 136 "flex_lexer.l" -TOKEN(OUTER) - YY_BREAK -case 77: -YY_RULE_SETUP + TOKEN(OUTER) + YY_BREAK + case 77: + YY_RULE_SETUP #line 137 "flex_lexer.l" -TOKEN(RIGHT) - YY_BREAK -case 78: -YY_RULE_SETUP + TOKEN(RIGHT) + YY_BREAK + case 78: + YY_RULE_SETUP #line 138 "flex_lexer.l" -TOKEN(TABLE) - YY_BREAK -case 79: -YY_RULE_SETUP + TOKEN(TABLE) + YY_BREAK + case 79: + YY_RULE_SETUP #line 139 "flex_lexer.l" -TOKEN(UNION) - YY_BREAK -case 80: -YY_RULE_SETUP + TOKEN(UNION) + YY_BREAK + case 80: + YY_RULE_SETUP #line 140 "flex_lexer.l" -TOKEN(USING) - YY_BREAK -case 81: -YY_RULE_SETUP + TOKEN(USING) + YY_BREAK + case 81: + YY_RULE_SETUP #line 141 "flex_lexer.l" -TOKEN(WHERE) - YY_BREAK -case 82: -YY_RULE_SETUP + TOKEN(WHERE) + YY_BREAK + case 82: + YY_RULE_SETUP #line 142 "flex_lexer.l" -TOKEN(CALL) - YY_BREAK -case 83: -YY_RULE_SETUP + TOKEN(CALL) + YY_BREAK + case 83: + YY_RULE_SETUP #line 143 "flex_lexer.l" -TOKEN(CASE) - YY_BREAK -case 84: -YY_RULE_SETUP + TOKEN(CASE) + YY_BREAK + case 84: + YY_RULE_SETUP #line 144 "flex_lexer.l" -TOKEN(CHAR) - YY_BREAK -case 85: -YY_RULE_SETUP + TOKEN(CHAR) + YY_BREAK + case 85: + YY_RULE_SETUP #line 145 "flex_lexer.l" -TOKEN(COPY) - YY_BREAK -case 86: -YY_RULE_SETUP + TOKEN(COPY) + YY_BREAK + case 86: + YY_RULE_SETUP #line 146 "flex_lexer.l" -TOKEN(DATE) - YY_BREAK -case 87: -YY_RULE_SETUP + TOKEN(DATE) + YY_BREAK + case 87: + YY_RULE_SETUP #line 147 "flex_lexer.l" -TOKEN(DATETIME) - YY_BREAK -case 88: -YY_RULE_SETUP + TOKEN(DATETIME) + YY_BREAK + case 88: + YY_RULE_SETUP #line 148 "flex_lexer.l" -TOKEN(DESC) - YY_BREAK -case 89: -YY_RULE_SETUP + TOKEN(DESC) + YY_BREAK + case 89: + YY_RULE_SETUP #line 149 "flex_lexer.l" -TOKEN(DROP) - YY_BREAK -case 90: -YY_RULE_SETUP + TOKEN(DROP) + YY_BREAK + case 90: + YY_RULE_SETUP #line 150 "flex_lexer.l" -TOKEN(ELSE) - YY_BREAK -case 91: -YY_RULE_SETUP + TOKEN(ELSE) + YY_BREAK + case 91: + YY_RULE_SETUP #line 151 "flex_lexer.l" -TOKEN(FILE) - YY_BREAK -case 92: -YY_RULE_SETUP + TOKEN(FILE) + YY_BREAK + case 92: + YY_RULE_SETUP #line 152 "flex_lexer.l" -TOKEN(FROM) - YY_BREAK -case 93: -YY_RULE_SETUP + TOKEN(FROM) + YY_BREAK + case 93: + YY_RULE_SETUP #line 153 "flex_lexer.l" -TOKEN(FULL) - YY_BREAK -case 94: -YY_RULE_SETUP + TOKEN(FULL) + YY_BREAK + case 94: + YY_RULE_SETUP #line 154 "flex_lexer.l" -TOKEN(HASH) - YY_BREAK -case 95: -YY_RULE_SETUP + TOKEN(HASH) + YY_BREAK + case 95: + YY_RULE_SETUP #line 155 "flex_lexer.l" -TOKEN(HINT) - YY_BREAK -case 96: -YY_RULE_SETUP + TOKEN(HINT) + YY_BREAK + case 96: + YY_RULE_SETUP #line 156 "flex_lexer.l" -TOKEN(INTO) - YY_BREAK -case 97: -YY_RULE_SETUP + TOKEN(INTO) + YY_BREAK + case 97: + YY_RULE_SETUP #line 157 "flex_lexer.l" -TOKEN(JOIN) - YY_BREAK -case 98: -YY_RULE_SETUP + TOKEN(JOIN) + YY_BREAK + case 98: + YY_RULE_SETUP #line 158 "flex_lexer.l" -TOKEN(LEFT) - YY_BREAK -case 99: -YY_RULE_SETUP + TOKEN(LEFT) + YY_BREAK + case 99: + YY_RULE_SETUP #line 159 "flex_lexer.l" -TOKEN(LIKE) - YY_BREAK -case 100: -YY_RULE_SETUP + TOKEN(LIKE) + YY_BREAK + case 100: + YY_RULE_SETUP #line 160 "flex_lexer.l" -TOKEN(ILIKE) - YY_BREAK -case 101: -YY_RULE_SETUP + TOKEN(ILIKE) + YY_BREAK + case 101: + YY_RULE_SETUP #line 161 "flex_lexer.l" -TOKEN(LOAD) - YY_BREAK -case 102: -YY_RULE_SETUP + TOKEN(LOAD) + YY_BREAK + case 102: + YY_RULE_SETUP #line 162 "flex_lexer.l" -TOKEN(LONG) - YY_BREAK -case 103: -YY_RULE_SETUP + TOKEN(LONG) + YY_BREAK + case 103: + YY_RULE_SETUP #line 163 "flex_lexer.l" -TOKEN(NULL) - YY_BREAK -case 104: -YY_RULE_SETUP + TOKEN(NULL) + YY_BREAK + case 104: + YY_RULE_SETUP #line 164 "flex_lexer.l" -TOKEN(PLAN) - YY_BREAK -case 105: -YY_RULE_SETUP + TOKEN(PLAN) + YY_BREAK + case 105: + YY_RULE_SETUP #line 165 "flex_lexer.l" -TOKEN(SHOW) - YY_BREAK -case 106: -YY_RULE_SETUP + TOKEN(SHOW) + YY_BREAK + case 106: + YY_RULE_SETUP #line 166 "flex_lexer.l" -TOKEN(TEXT) - YY_BREAK -case 107: -YY_RULE_SETUP + TOKEN(TEXT) + YY_BREAK + case 107: + YY_RULE_SETUP #line 167 "flex_lexer.l" -TOKEN(THEN) - YY_BREAK -case 108: -YY_RULE_SETUP + TOKEN(THEN) + YY_BREAK + case 108: + YY_RULE_SETUP #line 168 "flex_lexer.l" -TOKEN(VIEW) - YY_BREAK -case 109: -YY_RULE_SETUP + TOKEN(VIEW) + YY_BREAK + case 109: + YY_RULE_SETUP #line 169 "flex_lexer.l" -TOKEN(WHEN) - YY_BREAK -case 110: -YY_RULE_SETUP + TOKEN(WHEN) + YY_BREAK + case 110: + YY_RULE_SETUP #line 170 "flex_lexer.l" -TOKEN(WITH) - YY_BREAK -case 111: -YY_RULE_SETUP + TOKEN(WITH) + YY_BREAK + case 111: + YY_RULE_SETUP #line 171 "flex_lexer.l" -TOKEN(ADD) - YY_BREAK -case 112: -YY_RULE_SETUP + TOKEN(ADD) + YY_BREAK + case 112: + YY_RULE_SETUP #line 172 "flex_lexer.l" -TOKEN(ALL) - YY_BREAK -case 113: -YY_RULE_SETUP + TOKEN(ALL) + YY_BREAK + case 113: + YY_RULE_SETUP #line 173 "flex_lexer.l" -TOKEN(AND) - YY_BREAK -case 114: -YY_RULE_SETUP + TOKEN(AND) + YY_BREAK + case 114: + YY_RULE_SETUP #line 174 "flex_lexer.l" -TOKEN(ASC) - YY_BREAK -case 115: -YY_RULE_SETUP + TOKEN(ASC) + YY_BREAK + case 115: + YY_RULE_SETUP #line 175 "flex_lexer.l" -TOKEN(END) - YY_BREAK -case 116: -YY_RULE_SETUP + TOKEN(END) + YY_BREAK + case 116: + YY_RULE_SETUP #line 176 "flex_lexer.l" -TOKEN(FOR) - YY_BREAK -case 117: -YY_RULE_SETUP + TOKEN(FOR) + YY_BREAK + case 117: + YY_RULE_SETUP #line 177 "flex_lexer.l" -TOKEN(INT) - YY_BREAK -case 118: -YY_RULE_SETUP + TOKEN(INT) + YY_BREAK + case 118: + YY_RULE_SETUP #line 178 "flex_lexer.l" -TOKEN(KEY) - YY_BREAK -case 119: -YY_RULE_SETUP + TOKEN(KEY) + YY_BREAK + case 119: + YY_RULE_SETUP #line 179 "flex_lexer.l" -TOKEN(NOT) - YY_BREAK -case 120: -YY_RULE_SETUP + TOKEN(NOT) + YY_BREAK + case 120: + YY_RULE_SETUP #line 180 "flex_lexer.l" -TOKEN(OFF) - YY_BREAK -case 121: -YY_RULE_SETUP + TOKEN(OFF) + YY_BREAK + case 121: + YY_RULE_SETUP #line 181 "flex_lexer.l" -TOKEN(SET) - YY_BREAK -case 122: -YY_RULE_SETUP + TOKEN(SET) + YY_BREAK + case 122: + YY_RULE_SETUP #line 182 "flex_lexer.l" -TOKEN(TOP) - YY_BREAK -case 123: -YY_RULE_SETUP + TOKEN(TOP) + YY_BREAK + case 123: + YY_RULE_SETUP #line 183 "flex_lexer.l" -TOKEN(AS) - YY_BREAK -case 124: -YY_RULE_SETUP + TOKEN(AS) + YY_BREAK + case 124: + YY_RULE_SETUP #line 184 "flex_lexer.l" -TOKEN(BY) - YY_BREAK -case 125: -YY_RULE_SETUP + TOKEN(BY) + YY_BREAK + case 125: + YY_RULE_SETUP #line 185 "flex_lexer.l" -TOKEN(IF) - YY_BREAK -case 126: -YY_RULE_SETUP + TOKEN(IF) + YY_BREAK + case 126: + YY_RULE_SETUP #line 186 "flex_lexer.l" -TOKEN(IN) - YY_BREAK -case 127: -YY_RULE_SETUP + TOKEN(IN) + YY_BREAK + case 127: + YY_RULE_SETUP #line 187 "flex_lexer.l" -TOKEN(IS) - YY_BREAK -case 128: -YY_RULE_SETUP + TOKEN(IS) + YY_BREAK + case 128: + YY_RULE_SETUP #line 188 "flex_lexer.l" -TOKEN(OF) - YY_BREAK -case 129: -YY_RULE_SETUP + TOKEN(OF) + YY_BREAK + case 129: + YY_RULE_SETUP #line 189 "flex_lexer.l" -TOKEN(ON) - YY_BREAK -case 130: -YY_RULE_SETUP + TOKEN(ON) + YY_BREAK + case 130: + YY_RULE_SETUP #line 190 "flex_lexer.l" -TOKEN(OR) - YY_BREAK -case 131: -YY_RULE_SETUP + TOKEN(OR) + YY_BREAK + case 131: + YY_RULE_SETUP #line 191 "flex_lexer.l" -TOKEN(TO) - YY_BREAK -case 132: -YY_RULE_SETUP + TOKEN(TO) + YY_BREAK + case 132: + YY_RULE_SETUP #line 192 "flex_lexer.l" -TOKEN(SECOND) - YY_BREAK -case 133: -YY_RULE_SETUP + TOKEN(SECOND) + YY_BREAK + case 133: + YY_RULE_SETUP #line 193 "flex_lexer.l" -TOKEN(MINUTE) - YY_BREAK -case 134: -YY_RULE_SETUP + TOKEN(MINUTE) + YY_BREAK + case 134: + YY_RULE_SETUP #line 194 "flex_lexer.l" -TOKEN(HOUR) - YY_BREAK -case 135: -YY_RULE_SETUP + TOKEN(HOUR) + YY_BREAK + case 135: + YY_RULE_SETUP #line 195 "flex_lexer.l" -TOKEN(DAY) - YY_BREAK -case 136: -YY_RULE_SETUP + TOKEN(DAY) + YY_BREAK + case 136: + YY_RULE_SETUP #line 196 "flex_lexer.l" -TOKEN(MONTH) - YY_BREAK -case 137: -YY_RULE_SETUP + TOKEN(MONTH) + YY_BREAK + case 137: + YY_RULE_SETUP #line 197 "flex_lexer.l" -TOKEN(YEAR) - YY_BREAK -case 138: -YY_RULE_SETUP + TOKEN(YEAR) + YY_BREAK + case 138: + YY_RULE_SETUP #line 198 "flex_lexer.l" -TOKEN(SECONDS) - YY_BREAK -case 139: -YY_RULE_SETUP + TOKEN(SECONDS) + YY_BREAK + case 139: + YY_RULE_SETUP #line 199 "flex_lexer.l" -TOKEN(MINUTES) - YY_BREAK -case 140: -YY_RULE_SETUP + TOKEN(MINUTES) + YY_BREAK + case 140: + YY_RULE_SETUP #line 200 "flex_lexer.l" -TOKEN(HOURS) - YY_BREAK -case 141: -YY_RULE_SETUP + TOKEN(HOURS) + YY_BREAK + case 141: + YY_RULE_SETUP #line 201 "flex_lexer.l" -TOKEN(DAYS) - YY_BREAK -case 142: -YY_RULE_SETUP + TOKEN(DAYS) + YY_BREAK + case 142: + YY_RULE_SETUP #line 202 "flex_lexer.l" -TOKEN(MONTHS) - YY_BREAK -case 143: -YY_RULE_SETUP + TOKEN(MONTHS) + YY_BREAK + case 143: + YY_RULE_SETUP #line 203 "flex_lexer.l" -TOKEN(YEARS) - YY_BREAK -case 144: -YY_RULE_SETUP + TOKEN(YEARS) + YY_BREAK + case 144: + YY_RULE_SETUP #line 204 "flex_lexer.l" -TOKEN(TRUE) - YY_BREAK -case 145: -YY_RULE_SETUP + TOKEN(TRUE) + YY_BREAK + case 145: + YY_RULE_SETUP #line 205 "flex_lexer.l" -TOKEN(FALSE) - YY_BREAK -case 146: -YY_RULE_SETUP + TOKEN(FALSE) + YY_BREAK + case 146: + YY_RULE_SETUP #line 206 "flex_lexer.l" -TOKEN(TRANSACTION) - YY_BREAK -case 147: -YY_RULE_SETUP + TOKEN(TRANSACTION) + YY_BREAK + case 147: + YY_RULE_SETUP #line 207 "flex_lexer.l" -TOKEN(BEGIN) - YY_BREAK -case 148: -YY_RULE_SETUP + TOKEN(BEGIN) + YY_BREAK + case 148: + YY_RULE_SETUP #line 208 "flex_lexer.l" -TOKEN(ROLLBACK) - YY_BREAK -case 149: -YY_RULE_SETUP + TOKEN(ROLLBACK) + YY_BREAK + case 149: + YY_RULE_SETUP #line 209 "flex_lexer.l" -TOKEN(COMMIT) - YY_BREAK -case 150: -YY_RULE_SETUP + TOKEN(COMMIT) + YY_BREAK + case 150: + YY_RULE_SETUP #line 210 "flex_lexer.l" -TOKEN(INTERVAL) - YY_BREAK -case 151: -YY_RULE_SETUP + TOKEN(INTERVAL) + YY_BREAK + case 151: + YY_RULE_SETUP #line 212 "flex_lexer.l" -TOKEN(CHARACTER_VARYING) - YY_BREAK -/* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ -case 152: -YY_RULE_SETUP + TOKEN(CHARACTER_VARYING) + YY_BREAK + /* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ + case 152: + YY_RULE_SETUP #line 215 "flex_lexer.l" -TOKEN(EQUALS) - YY_BREAK -case 153: -YY_RULE_SETUP + TOKEN(EQUALS) + YY_BREAK + case 153: + YY_RULE_SETUP #line 216 "flex_lexer.l" -TOKEN(NOTEQUALS) - YY_BREAK -case 154: -YY_RULE_SETUP + TOKEN(NOTEQUALS) + YY_BREAK + case 154: + YY_RULE_SETUP #line 217 "flex_lexer.l" -TOKEN(NOTEQUALS) - YY_BREAK -case 155: -YY_RULE_SETUP + TOKEN(NOTEQUALS) + YY_BREAK + case 155: + YY_RULE_SETUP #line 218 "flex_lexer.l" -TOKEN(LESSEQ) - YY_BREAK -case 156: -YY_RULE_SETUP + TOKEN(LESSEQ) + YY_BREAK + case 156: + YY_RULE_SETUP #line 219 "flex_lexer.l" -TOKEN(GREATEREQ) - YY_BREAK -case 157: -YY_RULE_SETUP + TOKEN(GREATEREQ) + YY_BREAK + case 157: + YY_RULE_SETUP #line 220 "flex_lexer.l" -TOKEN(CONCAT) - YY_BREAK -case 158: -YY_RULE_SETUP + TOKEN(CONCAT) + YY_BREAK + case 158: + YY_RULE_SETUP #line 222 "flex_lexer.l" -{ return yytext[0]; } - YY_BREAK -case 159: + { + return yytext[0]; + } + YY_BREAK + case 159: #line 225 "flex_lexer.l" -case 160: -YY_RULE_SETUP + case 160: + YY_RULE_SETUP #line 225 "flex_lexer.l" -{ - yylval->fval = atof(yytext); - return SQL_FLOATVAL; -} - YY_BREAK -/* + { + yylval->fval = atof(yytext); + return SQL_FLOATVAL; + } + YY_BREAK + /* * Regularly, negative literals are treated as . This does not work for LLONG_MIN, as it has no * positive equivalent. We thus match for LLONG_MIN specifically. This is not an issue for floats, where * numeric_limits::lowest() == -numeric_limits::max(); */ -case 161: -YY_RULE_SETUP + case 161: + YY_RULE_SETUP #line 235 "flex_lexer.l" -{ - yylval->ival = LLONG_MIN; - return SQL_INTVAL; -} - YY_BREAK -case 162: -YY_RULE_SETUP + { + yylval->ival = LLONG_MIN; + return SQL_INTVAL; + } + YY_BREAK + case 162: + YY_RULE_SETUP #line 240 "flex_lexer.l" -{ - errno = 0; - yylval->ival = strtoll(yytext, nullptr, 0); - if (errno) { - return fprintf(stderr, "[SQL-Lexer-Error] Integer cannot be parsed - is it out of range?"); - return 0; - } - return SQL_INTVAL; -} - YY_BREAK -case 163: -YY_RULE_SETUP + { + errno = 0; + yylval->ival = strtoll(yytext, nullptr, 0); + if (errno) { + return fprintf(stderr, "[SQL-Lexer-Error] Integer cannot be parsed - is it out of range?"); + return 0; + } + return SQL_INTVAL; + } + YY_BREAK + case 163: + YY_RULE_SETUP #line 250 "flex_lexer.l" -{ - // Crop the leading and trailing quote char - yylval->sval = hsql::substr(yytext, 1, strlen(yytext)-1); - return SQL_IDENTIFIER; -} - YY_BREAK -case 164: -YY_RULE_SETUP + { + // Crop the leading and trailing quote char + yylval->sval = hsql::substr(yytext, 1, strlen(yytext) - 1); + return SQL_IDENTIFIER; + } + YY_BREAK + case 164: + YY_RULE_SETUP #line 256 "flex_lexer.l" -{ - yylval->sval = strdup(yytext); - return SQL_IDENTIFIER; -} - YY_BREAK -case 165: -YY_RULE_SETUP + { + yylval->sval = strdup(yytext); + return SQL_IDENTIFIER; + } + YY_BREAK + case 165: + YY_RULE_SETUP #line 261 "flex_lexer.l" -{ BEGIN singlequotedstring; strbuf.clear(); strbuf.str(""); } // Clear strbuf manually, see #170 - YY_BREAK -case 166: -YY_RULE_SETUP + { + BEGIN singlequotedstring; + strbuf.clear(); + strbuf.str(""); + } // Clear strbuf manually, see #170 + YY_BREAK + case 166: + YY_RULE_SETUP #line 262 "flex_lexer.l" -{ strbuf << '\''; } - YY_BREAK -case 167: -/* rule 167 can match eol */ -YY_RULE_SETUP + { + strbuf << '\''; + } + YY_BREAK + case 167: + /* rule 167 can match eol */ + YY_RULE_SETUP #line 263 "flex_lexer.l" -{ strbuf << yytext; } - YY_BREAK -case 168: -YY_RULE_SETUP + { + strbuf << yytext; + } + YY_BREAK + case 168: + YY_RULE_SETUP #line 264 "flex_lexer.l" -{ BEGIN 0; yylval->sval = strdup(strbuf.str().c_str()); return SQL_STRING; } - YY_BREAK -case YY_STATE_EOF(singlequotedstring): + { + BEGIN 0; + yylval->sval = strdup(strbuf.str().c_str()); + return SQL_STRING; + } + YY_BREAK + case YY_STATE_EOF(singlequotedstring): #line 265 "flex_lexer.l" -{ fprintf(stderr, "[SQL-Lexer-Error] Unterminated string\n"); return 0; } - YY_BREAK -case 169: -YY_RULE_SETUP + { + fprintf(stderr, "[SQL-Lexer-Error] Unterminated string\n"); + return 0; + } + YY_BREAK + case 169: + YY_RULE_SETUP #line 267 "flex_lexer.l" -{ fprintf(stderr, "[SQL-Lexer-Error] Unknown Character: %c\n", yytext[0]); return 0; } - YY_BREAK -case 170: -YY_RULE_SETUP + { + fprintf(stderr, "[SQL-Lexer-Error] Unknown Character: %c\n", yytext[0]); + return 0; + } + YY_BREAK + case 170: + YY_RULE_SETUP #line 269 "flex_lexer.l" -ECHO; - YY_BREAK + ECHO; + YY_BREAK #line 3368 "flex_lexer.cpp" -case YY_STATE_EOF(INITIAL): -case YY_STATE_EOF(COMMENT): - yyterminate(); - - case YY_END_OF_BUFFER: - { - /* Amount of text matched not including the EOB char. */ - int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; - - /* Undo the effects of YY_DO_BEFORE_ACTION. */ - *yy_cp = yyg->yy_hold_char; - YY_RESTORE_YY_MORE_OFFSET - - if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) - { - /* We're scanning a new file or input source. It's + case YY_STATE_EOF(INITIAL): + case YY_STATE_EOF(COMMENT): + yyterminate(); + + case YY_END_OF_BUFFER: { + /* Amount of text matched not including the EOB char. */ + int yy_amount_of_matched_text = (int)(yy_cp - yyg->yytext_ptr) - 1; + + /* Undo the effects of YY_DO_BEFORE_ACTION. */ + *yy_cp = yyg->yy_hold_char; + YY_RESTORE_YY_MORE_OFFSET + + if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW) { + /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure @@ -3390,27 +2800,26 @@ case YY_STATE_EOF(COMMENT): * this is the first action (other than possibly a * back-up) that will match for the new input source. */ - yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; - YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; - YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; - } + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; + } - /* Note that here we test for yy_c_buf_p "<=" to the position + /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ - if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) - { /* This was really a NUL. */ - yy_state_type yy_next_state; + if (yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]) { /* This was really a NUL. */ + yy_state_type yy_next_state; - yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; + yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state( yyscanner ); + yy_current_state = yy_get_previous_state(yyscanner); - /* Okay, we're now positioned to make the NUL + /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal @@ -3419,35 +2828,31 @@ case YY_STATE_EOF(COMMENT): * will run more slowly). */ - yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); - - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - - if ( yy_next_state ) - { - /* Consume the NUL. */ - yy_cp = ++yyg->yy_c_buf_p; - yy_current_state = yy_next_state; - goto yy_match; - } - - else - { - yy_cp = yyg->yy_last_accepting_cpos; - yy_current_state = yyg->yy_last_accepting_state; - goto yy_find_action; - } - } - - else switch ( yy_get_next_buffer( yyscanner ) ) - { - case EOB_ACT_END_OF_FILE: - { - yyg->yy_did_buffer_switch_on_eof = 0; - - if ( yywrap( yyscanner ) ) - { - /* Note: because we've taken care in + yy_next_state = yy_try_NUL_trans(yy_current_state, yyscanner); + + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + + if (yy_next_state) { + /* Consume the NUL. */ + yy_cp = ++yyg->yy_c_buf_p; + yy_current_state = yy_next_state; + goto yy_match; + } + + else { + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + } + } + + else + switch (yy_get_next_buffer(yyscanner)) { + case EOB_ACT_END_OF_FILE: { + yyg->yy_did_buffer_switch_on_eof = 0; + + if (yywrap(yyscanner)) { + /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total @@ -3456,49 +2861,44 @@ case YY_STATE_EOF(COMMENT): * YY_NULL, it'll still work - another * YY_NULL will get returned. */ - yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; - - yy_act = YY_STATE_EOF(YY_START); - goto do_action; - } - - else - { - if ( ! yyg->yy_did_buffer_switch_on_eof ) - YY_NEW_FILE; - } - break; - } - - case EOB_ACT_CONTINUE_SCAN: - yyg->yy_c_buf_p = - yyg->yytext_ptr + yy_amount_of_matched_text; - - yy_current_state = yy_get_previous_state( yyscanner ); - - yy_cp = yyg->yy_c_buf_p; - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - goto yy_match; - - case EOB_ACT_LAST_MATCH: - yyg->yy_c_buf_p = - &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; - - yy_current_state = yy_get_previous_state( yyscanner ); - - yy_cp = yyg->yy_c_buf_p; - yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; - goto yy_find_action; - } - break; - } - - default: - YY_FATAL_ERROR( - "fatal flex scanner internal error--no action found" ); - } /* end of action switch */ - } /* end of scanning one token */ - } /* end of user's declarations */ + yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; + + yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else { + if (!yyg->yy_did_buffer_switch_on_eof) YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state(yyscanner); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_match; + + case EOB_ACT_LAST_MATCH: + yyg->yy_c_buf_p = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; + + yy_current_state = yy_get_previous_state(yyscanner); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR("fatal flex scanner internal error--no action found"); + } /* end of action switch */ + } /* end of scanning one token */ + } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer @@ -3508,171 +2908,142 @@ case YY_STATE_EOF(COMMENT): * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ -static int yy_get_next_buffer (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; - char *source = yyg->yytext_ptr; - int number_to_move, i; - int ret_val; - - if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) - YY_FATAL_ERROR( - "fatal flex scanner internal error--end of buffer missed" ); - - if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) - { /* Don't try to fill the buffer, so this is an EOF. */ - if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) - { - /* We matched a single character, the EOB, so +static int yy_get_next_buffer(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + char* dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char* source = yyg->yytext_ptr; + int number_to_move, i; + int ret_val; + + if (yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1]) + YY_FATAL_ERROR("fatal flex scanner internal error--end of buffer missed"); + + if (YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0) { /* Don't try to fill the buffer, so this is an EOF. */ + if (yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1) { + /* We matched a single character, the EOB, so * treat this as a final EOF. */ - return EOB_ACT_END_OF_FILE; - } + return EOB_ACT_END_OF_FILE; + } - else - { - /* We matched some text prior to the EOB, first + else { + /* We matched some text prior to the EOB, first * process it. */ - return EOB_ACT_LAST_MATCH; - } - } + return EOB_ACT_LAST_MATCH; + } + } - /* Try to read more data. */ + /* Try to read more data. */ - /* First move last chars to start of buffer. */ - number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1); + /* First move last chars to start of buffer. */ + number_to_move = (int)(yyg->yy_c_buf_p - yyg->yytext_ptr - 1); - for ( i = 0; i < number_to_move; ++i ) - *(dest++) = *(source++); + for (i = 0; i < number_to_move; ++i) *(dest++) = *(source++); - if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) - /* don't do the read, it's not guaranteed to return an EOF, + if (YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING) + /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; - - else - { - int num_to_read = - YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; - - while ( num_to_read <= 0 ) - { /* Not enough room in the buffer - grow it. */ - - /* just a shorter name for the current buffer */ - YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; - - int yy_c_buf_p_offset = - (int) (yyg->yy_c_buf_p - b->yy_ch_buf); - - if ( b->yy_is_our_buffer ) - { - int new_size = b->yy_buf_size * 2; - - if ( new_size <= 0 ) - b->yy_buf_size += b->yy_buf_size / 8; - else - b->yy_buf_size *= 2; - - b->yy_ch_buf = (char *) - /* Include room in for 2 EOB chars. */ - yyrealloc( (void *) b->yy_ch_buf, - (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); - } - else - /* Can't grow it, we don't own it. */ - b->yy_ch_buf = NULL; - - if ( ! b->yy_ch_buf ) - YY_FATAL_ERROR( - "fatal error - scanner input buffer overflow" ); - - yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; - - num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - - number_to_move - 1; - - } - - if ( num_to_read > YY_READ_BUF_SIZE ) - num_to_read = YY_READ_BUF_SIZE; - - /* Read in more data. */ - YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), - yyg->yy_n_chars, num_to_read ); - - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - if ( yyg->yy_n_chars == 0 ) - { - if ( number_to_move == YY_MORE_ADJ ) - { - ret_val = EOB_ACT_END_OF_FILE; - yyrestart( yyin , yyscanner); - } - - else - { - ret_val = EOB_ACT_LAST_MATCH; - YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = - YY_BUFFER_EOF_PENDING; - } - } - - else - ret_val = EOB_ACT_CONTINUE_SCAN; - - if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { - /* Extend the array by 50%, plus the number we really need. */ - int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( - (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); - if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) - YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); - /* "- 2" to take care of EOB's */ - YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); - } - - yyg->yy_n_chars += number_to_move; - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; - - yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; - - return ret_val; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; + + else { + int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + + while (num_to_read <= 0) { /* Not enough room in the buffer - grow it. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; + + int yy_c_buf_p_offset = (int)(yyg->yy_c_buf_p - b->yy_ch_buf); + + if (b->yy_is_our_buffer) { + int new_size = b->yy_buf_size * 2; + + if (new_size <= 0) + b->yy_buf_size += b->yy_buf_size / 8; + else + b->yy_buf_size *= 2; + + b->yy_ch_buf = (char*) + /* Include room in for 2 EOB chars. */ + yyrealloc((void*)b->yy_ch_buf, (yy_size_t)(b->yy_buf_size + 2), yyscanner); + } else + /* Can't grow it, we don't own it. */ + b->yy_ch_buf = NULL; + + if (!b->yy_ch_buf) YY_FATAL_ERROR("fatal error - scanner input buffer overflow"); + + yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + } + + if (num_to_read > YY_READ_BUF_SIZE) num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT((&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), yyg->yy_n_chars, num_to_read); + + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + if (yyg->yy_n_chars == 0) { + if (number_to_move == YY_MORE_ADJ) { + ret_val = EOB_ACT_END_OF_FILE; + yyrestart(yyin, yyscanner); + } + + else { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = + (char*)yyrealloc((void*)YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t)new_size, yyscanner); + if (!YY_CURRENT_BUFFER_LVALUE->yy_ch_buf) YY_FATAL_ERROR("out of dynamic memory in yy_get_next_buffer()"); + /* "- 2" to take care of EOB's */ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int)(new_size - 2); + } + + yyg->yy_n_chars += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + + yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; + + return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ - static yy_state_type yy_get_previous_state (yyscan_t yyscanner) -{ - yy_state_type yy_current_state; - char *yy_cp; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - - yy_current_state = yyg->yy_start; - - for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) - { - YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); - if ( yy_accept[yy_current_state] ) - { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) - { - yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1192 ) - yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - } - - return yy_current_state; +static yy_state_type yy_get_previous_state(yyscan_t yyscanner) { + yy_state_type yy_current_state; + char* yy_cp; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + + yy_current_state = yyg->yy_start; + + for (yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp) { + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + if (yy_accept[yy_current_state]) { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { + yy_current_state = (int)yy_def[yy_current_state]; + if (yy_current_state >= 1192) yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + } + + return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character @@ -3680,29 +3051,25 @@ static int yy_get_next_buffer (yyscan_t yyscanner) * synopsis * next_state = yy_try_NUL_trans( current_state ); */ - static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) -{ - int yy_is_jam; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ - char *yy_cp = yyg->yy_c_buf_p; - - YY_CHAR yy_c = 1; - if ( yy_accept[yy_current_state] ) - { - yyg->yy_last_accepting_state = yy_current_state; - yyg->yy_last_accepting_cpos = yy_cp; - } - while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) - { - yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1192 ) - yy_c = yy_meta[yy_c]; - } - yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - yy_is_jam = (yy_current_state == 1191); - - (void)yyg; - return yy_is_jam ? 0 : yy_current_state; +static yy_state_type yy_try_NUL_trans(yy_state_type yy_current_state, yyscan_t yyscanner) { + int yy_is_jam; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ + char* yy_cp = yyg->yy_c_buf_p; + + YY_CHAR yy_c = 1; + if (yy_accept[yy_current_state]) { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while (yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state) { + yy_current_state = (int)yy_def[yy_current_state]; + if (yy_current_state >= 1192) yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_is_jam = (yy_current_state == 1191); + + (void)yyg; + return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT @@ -3711,36 +3078,32 @@ static int yy_get_next_buffer (yyscan_t yyscanner) #ifndef YY_NO_INPUT #ifdef __cplusplus - static int yyinput (yyscan_t yyscanner) +static int yyinput(yyscan_t yyscanner) #else - static int input (yyscan_t yyscanner) +static int input(yyscan_t yyscanner) #endif { - int c; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + int c; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - *yyg->yy_c_buf_p = yyg->yy_hold_char; + *yyg->yy_c_buf_p = yyg->yy_hold_char; - if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) - { - /* yy_c_buf_p now points to the character we want to return. + if (*yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR) { + /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ - if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) - /* This was really a NUL. */ - *yyg->yy_c_buf_p = '\0'; - - else - { /* need more input */ - int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr); - ++yyg->yy_c_buf_p; - - switch ( yy_get_next_buffer( yyscanner ) ) - { - case EOB_ACT_LAST_MATCH: - /* This happens because yy_g_n_b() + if (yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]) /* This was really a NUL. */ + *yyg->yy_c_buf_p = '\0'; + + else { /* need more input */ + int offset = (int)(yyg->yy_c_buf_p - yyg->yytext_ptr); + ++yyg->yy_c_buf_p; + + switch (yy_get_next_buffer(yyscanner)) { + case EOB_ACT_LAST_MATCH: + /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before @@ -3750,102 +3113,93 @@ static int yy_get_next_buffer (yyscan_t yyscanner) * to EOB_ACT_END_OF_FILE. */ - /* Reset buffer status. */ - yyrestart( yyin , yyscanner); + /* Reset buffer status. */ + yyrestart(yyin, yyscanner); - /*FALLTHROUGH*/ + /*FALLTHROUGH*/ - case EOB_ACT_END_OF_FILE: - { - if ( yywrap( yyscanner ) ) - return 0; + case EOB_ACT_END_OF_FILE: { + if (yywrap(yyscanner)) return 0; - if ( ! yyg->yy_did_buffer_switch_on_eof ) - YY_NEW_FILE; + if (!yyg->yy_did_buffer_switch_on_eof) YY_NEW_FILE; #ifdef __cplusplus - return yyinput(yyscanner); + return yyinput(yyscanner); #else - return input(yyscanner); + return input(yyscanner); #endif - } + } - case EOB_ACT_CONTINUE_SCAN: - yyg->yy_c_buf_p = yyg->yytext_ptr + offset; - break; - } - } - } + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = yyg->yytext_ptr + offset; + break; + } + } + } - c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ - *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ - yyg->yy_hold_char = *++yyg->yy_c_buf_p; + c = *(unsigned char*)yyg->yy_c_buf_p; /* cast for 8-bit char's */ + *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ + yyg->yy_hold_char = *++yyg->yy_c_buf_p; - return c; + return c; } -#endif /* ifndef YY_NO_INPUT */ +#endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ - void yyrestart (FILE * input_file , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +void yyrestart(FILE* input_file, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if ( ! YY_CURRENT_BUFFER ){ - yyensure_buffer_stack (yyscanner); - YY_CURRENT_BUFFER_LVALUE = - yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); - } + if (!YY_CURRENT_BUFFER) { + yyensure_buffer_stack(yyscanner); + YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin, YY_BUF_SIZE, yyscanner); + } - yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); - yy_load_buffer_state( yyscanner ); + yy_init_buffer(YY_CURRENT_BUFFER, input_file, yyscanner); + yy_load_buffer_state(yyscanner); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ - void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - /* TODO. We should be able to replace this entire function body + /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ - yyensure_buffer_stack (yyscanner); - if ( YY_CURRENT_BUFFER == new_buffer ) - return; - - if ( YY_CURRENT_BUFFER ) - { - /* Flush out information for old buffer. */ - *yyg->yy_c_buf_p = yyg->yy_hold_char; - YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - YY_CURRENT_BUFFER_LVALUE = new_buffer; - yy_load_buffer_state( yyscanner ); - - /* We don't actually know whether we did this switch during + yyensure_buffer_stack(yyscanner); + if (YY_CURRENT_BUFFER == new_buffer) return; + + if (YY_CURRENT_BUFFER) { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state(yyscanner); + + /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ - yyg->yy_did_buffer_switch_on_eof = 1; + yyg->yy_did_buffer_switch_on_eof = 1; } -static void yy_load_buffer_state (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; - yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; - yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; - yyg->yy_hold_char = *yyg->yy_c_buf_p; +static void yy_load_buffer_state(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; + yyg->yy_hold_char = *yyg->yy_c_buf_p; } /** Allocate and initialize an input buffer state. @@ -3854,105 +3208,96 @@ static void yy_load_buffer_state (yyscan_t yyscanner) * @param yyscanner The scanner object. * @return the allocated buffer state. */ - YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) -{ - YY_BUFFER_STATE b; - - b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); - if ( ! b ) - YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); +YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner) { + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE)yyalloc(sizeof(struct yy_buffer_state), yyscanner); + if (!b) YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()"); - b->yy_buf_size = size; + b->yy_buf_size = size; - /* yy_ch_buf has to be 2 characters longer than the size given because + /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ - b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); - if ( ! b->yy_ch_buf ) - YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + b->yy_ch_buf = (char*)yyalloc((yy_size_t)(b->yy_buf_size + 2), yyscanner); + if (!b->yy_ch_buf) YY_FATAL_ERROR("out of dynamic memory in yy_create_buffer()"); - b->yy_is_our_buffer = 1; + b->yy_is_our_buffer = 1; - yy_init_buffer( b, file , yyscanner); + yy_init_buffer(b, file, yyscanner); - return b; + return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * @param yyscanner The scanner object. */ - void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if ( ! b ) - return; + if (!b) return; - if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ - YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; + if (b == YY_CURRENT_BUFFER) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE)0; - if ( b->yy_is_our_buffer ) - yyfree( (void *) b->yy_ch_buf , yyscanner ); + if (b->yy_is_our_buffer) yyfree((void*)b->yy_ch_buf, yyscanner); - yyfree( (void *) b , yyscanner ); + yyfree((void*)b, yyscanner); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ - static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) +static void yy_init_buffer(YY_BUFFER_STATE b, FILE* file, yyscan_t yyscanner) { - int oerrno = errno; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + int oerrno = errno; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - yy_flush_buffer( b , yyscanner); + yy_flush_buffer(b, yyscanner); - b->yy_input_file = file; - b->yy_fill_buffer = 1; + b->yy_input_file = file; + b->yy_fill_buffer = 1; - /* If b is the current buffer, then yy_init_buffer was _probably_ + /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ - if (b != YY_CURRENT_BUFFER){ - b->yy_bs_lineno = 1; - b->yy_bs_column = 0; - } + if (b != YY_CURRENT_BUFFER) { + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } - b->yy_is_interactive = 0; - - errno = oerrno; + b->yy_is_interactive = 0; + + errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * @param yyscanner The scanner object. */ - void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if ( ! b ) - return; +void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + if (!b) return; - b->yy_n_chars = 0; + b->yy_n_chars = 0; - /* We always need two end-of-buffer characters. The first causes + /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ - b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; - b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; - b->yy_buf_pos = &b->yy_ch_buf[0]; + b->yy_buf_pos = &b->yy_ch_buf[0]; - b->yy_at_bol = 1; - b->yy_buffer_status = YY_BUFFER_NEW; + b->yy_at_bol = 1; + b->yy_buffer_status = YY_BUFFER_NEW; - if ( b == YY_CURRENT_BUFFER ) - yy_load_buffer_state( yyscanner ); + if (b == YY_CURRENT_BUFFER) yy_load_buffer_state(yyscanner); } /** Pushes the new state onto the stack. The new state becomes @@ -3961,99 +3306,83 @@ static void yy_load_buffer_state (yyscan_t yyscanner) * @param new_buffer The new state. * @param yyscanner The scanner object. */ -void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if (new_buffer == NULL) - return; - - yyensure_buffer_stack(yyscanner); - - /* This block is copied from yy_switch_to_buffer. */ - if ( YY_CURRENT_BUFFER ) - { - /* Flush out information for old buffer. */ - *yyg->yy_c_buf_p = yyg->yy_hold_char; - YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; - YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; - } - - /* Only push if top exists. Otherwise, replace top. */ - if (YY_CURRENT_BUFFER) - yyg->yy_buffer_stack_top++; - YY_CURRENT_BUFFER_LVALUE = new_buffer; - - /* copied from yy_switch_to_buffer. */ - yy_load_buffer_state( yyscanner ); - yyg->yy_did_buffer_switch_on_eof = 1; +void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + if (new_buffer == NULL) return; + + yyensure_buffer_stack(yyscanner); + + /* This block is copied from yy_switch_to_buffer. */ + if (YY_CURRENT_BUFFER) { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) yyg->yy_buffer_stack_top++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state(yyscanner); + yyg->yy_did_buffer_switch_on_eof = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * @param yyscanner The scanner object. */ -void yypop_buffer_state (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - if (!YY_CURRENT_BUFFER) - return; - - yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); - YY_CURRENT_BUFFER_LVALUE = NULL; - if (yyg->yy_buffer_stack_top > 0) - --yyg->yy_buffer_stack_top; - - if (YY_CURRENT_BUFFER) { - yy_load_buffer_state( yyscanner ); - yyg->yy_did_buffer_switch_on_eof = 1; - } +void yypop_buffer_state(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + if (!YY_CURRENT_BUFFER) return; + + yy_delete_buffer(YY_CURRENT_BUFFER, yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state(yyscanner); + yyg->yy_did_buffer_switch_on_eof = 1; + } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ -static void yyensure_buffer_stack (yyscan_t yyscanner) -{ - yy_size_t num_to_alloc; - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - - if (!yyg->yy_buffer_stack) { +static void yyensure_buffer_stack(yyscan_t yyscanner) { + yy_size_t num_to_alloc; + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - /* First allocation is just for 2 elements, since we don't know if this + if (!yyg->yy_buffer_stack) { + /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ - num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ - yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc - (num_to_alloc * sizeof(struct yy_buffer_state*) - , yyscanner); - if ( ! yyg->yy_buffer_stack ) - YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); - - memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); - - yyg->yy_buffer_stack_max = num_to_alloc; - yyg->yy_buffer_stack_top = 0; - return; - } - - if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ - - /* Increase the buffer to prepare for a possible push. */ - yy_size_t grow_size = 8 /* arbitrary grow size */; - - num_to_alloc = yyg->yy_buffer_stack_max + grow_size; - yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc - (yyg->yy_buffer_stack, - num_to_alloc * sizeof(struct yy_buffer_state*) - , yyscanner); - if ( ! yyg->yy_buffer_stack ) - YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); - - /* zero only the new slots.*/ - memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); - yyg->yy_buffer_stack_max = num_to_alloc; - } + num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc(num_to_alloc * sizeof(struct yy_buffer_state*), yyscanner); + if (!yyg->yy_buffer_stack) YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()"); + + memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + yyg->yy_buffer_stack_max = num_to_alloc; + yyg->yy_buffer_stack_top = 0; + return; + } + + if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1) { + /* Increase the buffer to prepare for a possible push. */ + yy_size_t grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = yyg->yy_buffer_stack_max + grow_size; + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc( + yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*), yyscanner); + if (!yyg->yy_buffer_stack) YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()"); + + /* zero only the new slots.*/ + memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); + yyg->yy_buffer_stack_max = num_to_alloc; + } } /** Setup the input buffer state to scan directly from a user-specified character buffer. @@ -4062,33 +3391,29 @@ static void yyensure_buffer_stack (yyscan_t yyscanner) * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) -{ - YY_BUFFER_STATE b; - - if ( size < 2 || - base[size-2] != YY_END_OF_BUFFER_CHAR || - base[size-1] != YY_END_OF_BUFFER_CHAR ) - /* They forgot to leave room for the EOB's. */ - return NULL; - - b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); - if ( ! b ) - YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); - - b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ - b->yy_buf_pos = b->yy_ch_buf = base; - b->yy_is_our_buffer = 0; - b->yy_input_file = NULL; - b->yy_n_chars = b->yy_buf_size; - b->yy_is_interactive = 0; - b->yy_at_bol = 1; - b->yy_fill_buffer = 0; - b->yy_buffer_status = YY_BUFFER_NEW; - - yy_switch_to_buffer( b , yyscanner ); - - return b; +YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner) { + YY_BUFFER_STATE b; + + if (size < 2 || base[size - 2] != YY_END_OF_BUFFER_CHAR || base[size - 1] != YY_END_OF_BUFFER_CHAR) + /* They forgot to leave room for the EOB's. */ + return NULL; + + b = (YY_BUFFER_STATE)yyalloc(sizeof(struct yy_buffer_state), yyscanner); + if (!b) YY_FATAL_ERROR("out of dynamic memory in yy_scan_buffer()"); + + b->yy_buf_size = (int)(size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_pos = b->yy_ch_buf = base; + b->yy_is_our_buffer = 0; + b->yy_input_file = NULL; + b->yy_n_chars = b->yy_buf_size; + b->yy_is_interactive = 0; + b->yy_at_bol = 1; + b->yy_fill_buffer = 0; + b->yy_buffer_status = YY_BUFFER_NEW; + + yy_switch_to_buffer(b, yyscanner); + + return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will @@ -4099,10 +3424,8 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscann * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ -YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) -{ - - return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); +YY_BUFFER_STATE yy_scan_string(const char* yystr, yyscan_t yyscanner) { + return yy_scan_bytes(yystr, (int)strlen(yystr), yyscanner); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will @@ -4112,177 +3435,156 @@ YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) -{ - YY_BUFFER_STATE b; - char *buf; - yy_size_t n; - int i; - - /* Get memory for full buffer, including space for trailing EOB's. */ - n = (yy_size_t) (_yybytes_len + 2); - buf = (char *) yyalloc( n , yyscanner ); - if ( ! buf ) - YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); - - for ( i = 0; i < _yybytes_len; ++i ) - buf[i] = yybytes[i]; - - buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; - - b = yy_scan_buffer( buf, n , yyscanner); - if ( ! b ) - YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); - - /* It's okay to grow etc. this buffer, and we should throw it +YY_BUFFER_STATE yy_scan_bytes(const char* yybytes, int _yybytes_len, yyscan_t yyscanner) { + YY_BUFFER_STATE b; + char* buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = (yy_size_t)(_yybytes_len + 2); + buf = (char*)yyalloc(n, yyscanner); + if (!buf) YY_FATAL_ERROR("out of dynamic memory in yy_scan_bytes()"); + + for (i = 0; i < _yybytes_len; ++i) buf[i] = yybytes[i]; + + buf[_yybytes_len] = buf[_yybytes_len + 1] = YY_END_OF_BUFFER_CHAR; + + b = yy_scan_buffer(buf, n, yyscanner); + if (!b) YY_FATAL_ERROR("bad buffer in yy_scan_bytes()"); + + /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ - b->yy_is_our_buffer = 1; + b->yy_is_our_buffer = 1; - return b; + return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif -static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - fprintf( stderr, "%s\n", msg ); - exit( YY_EXIT_FAILURE ); +static void yynoreturn yy_fatal_error(const char* msg, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + fprintf(stderr, "%s\n", msg); + exit(YY_EXIT_FAILURE); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless -#define yyless(n) \ - do \ - { \ - /* Undo effects of setting up yytext. */ \ - int yyless_macro_arg = (n); \ - YY_LESS_LINENO(yyless_macro_arg);\ - yytext[yyleng] = yyg->yy_hold_char; \ - yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ - yyg->yy_hold_char = *yyg->yy_c_buf_p; \ - *yyg->yy_c_buf_p = '\0'; \ - yyleng = yyless_macro_arg; \ - } \ - while ( 0 ) +#define yyless(n) \ + do { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg); \ + yytext[yyleng] = yyg->yy_hold_char; \ + yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ + yyg->yy_hold_char = *yyg->yy_c_buf_p; \ + *yyg->yy_c_buf_p = '\0'; \ + yyleng = yyless_macro_arg; \ + } while (0) /* Accessor methods (get/set functions) to struct members. */ /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ -YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yyextra; +YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yyextra; } /** Get the current line number. * @param yyscanner The scanner object. */ -int yyget_lineno (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +int yyget_lineno(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if (! YY_CURRENT_BUFFER) - return 0; - - return yylineno; + if (!YY_CURRENT_BUFFER) return 0; + + return yylineno; } /** Get the current column number. * @param yyscanner The scanner object. */ -int yyget_column (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +int yyget_column(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - if (! YY_CURRENT_BUFFER) - return 0; - - return yycolumn; + if (!YY_CURRENT_BUFFER) return 0; + + return yycolumn; } /** Get the input stream. * @param yyscanner The scanner object. */ -FILE *yyget_in (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yyin; +FILE* yyget_in(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yyin; } /** Get the output stream. * @param yyscanner The scanner object. */ -FILE *yyget_out (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yyout; +FILE* yyget_out(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yyout; } /** Get the length of the current token. * @param yyscanner The scanner object. */ -int yyget_leng (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yyleng; +int yyget_leng(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yyleng; } /** Get the current token. * @param yyscanner The scanner object. */ -char *yyget_text (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yytext; +char* yyget_text(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yytext; } /** Set the user-defined data. This data is never touched by the scanner. * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ -void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yyextra = user_defined ; +void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yyextra = user_defined; } /** Set the current line number. * @param _line_number line number * @param yyscanner The scanner object. */ -void yyset_lineno (int _line_number , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +void yyset_lineno(int _line_number, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; - /* lineno is only valid if an input buffer exists. */ - if (! YY_CURRENT_BUFFER ) - YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); - - yylineno = _line_number; + /* lineno is only valid if an input buffer exists. */ + if (!YY_CURRENT_BUFFER) YY_FATAL_ERROR("yyset_lineno called with no buffer"); + + yylineno = _line_number; } /** Set the current column. * @param _column_no column number * @param yyscanner The scanner object. */ -void yyset_column (int _column_no , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; +void yyset_column(int _column_no, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + + /* column is only valid if an input buffer exists. */ + if (!YY_CURRENT_BUFFER) YY_FATAL_ERROR("yyset_column called with no buffer"); - /* column is only valid if an input buffer exists. */ - if (! YY_CURRENT_BUFFER ) - YY_FATAL_ERROR( "yyset_column called with no buffer" ); - - yycolumn = _column_no; + yycolumn = _column_no; } /** Set the input stream. This does not discard the current @@ -4291,80 +3593,71 @@ void yyset_column (int _column_no , yyscan_t yyscanner) * @param yyscanner The scanner object. * @see yy_switch_to_buffer */ -void yyset_in (FILE * _in_str , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yyin = _in_str ; +void yyset_in(FILE* _in_str, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yyin = _in_str; } -void yyset_out (FILE * _out_str , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yyout = _out_str ; +void yyset_out(FILE* _out_str, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yyout = _out_str; } -int yyget_debug (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yy_flex_debug; +int yyget_debug(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yy_flex_debug; } -void yyset_debug (int _bdebug , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yy_flex_debug = _bdebug ; +void yyset_debug(int _bdebug, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yy_flex_debug = _bdebug; } /* Accessor methods for yylval and yylloc */ -YYSTYPE * yyget_lval (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yylval; +YYSTYPE* yyget_lval(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yylval; } -void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yylval = yylval_param; +void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yylval = yylval_param; } -YYLTYPE *yyget_lloc (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - return yylloc; +YYLTYPE* yyget_lloc(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + return yylloc; } - -void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - yylloc = yylloc_param; + +void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + yylloc = yylloc_param; } - + /* User-visible API */ /* yylex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ -int yylex_init(yyscan_t* ptr_yy_globals) -{ - if (ptr_yy_globals == NULL){ - errno = EINVAL; - return 1; - } +int yylex_init(yyscan_t* ptr_yy_globals) { + if (ptr_yy_globals == NULL) { + errno = EINVAL; + return 1; + } - *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); + *ptr_yy_globals = (yyscan_t)yyalloc(sizeof(struct yyguts_t), NULL); - if (*ptr_yy_globals == NULL){ - errno = ENOMEM; - return 1; - } + if (*ptr_yy_globals == NULL) { + errno = ENOMEM; + return 1; + } - /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ - memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals, 0x00, sizeof(struct yyguts_t)); - return yy_init_globals ( *ptr_yy_globals ); + return yy_init_globals(*ptr_yy_globals); } /* yylex_init_extra has the same functionality as yylex_init, but follows the @@ -4374,94 +3667,91 @@ int yylex_init(yyscan_t* ptr_yy_globals) * The user defined value in the first argument will be available to yyalloc in * the yyextra field. */ -int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals ) -{ - struct yyguts_t dummy_yyguts; +int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals) { + struct yyguts_t dummy_yyguts; - yyset_extra (yy_user_defined, &dummy_yyguts); + yyset_extra(yy_user_defined, &dummy_yyguts); - if (ptr_yy_globals == NULL){ - errno = EINVAL; - return 1; - } + if (ptr_yy_globals == NULL) { + errno = EINVAL; + return 1; + } - *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); + *ptr_yy_globals = (yyscan_t)yyalloc(sizeof(struct yyguts_t), &dummy_yyguts); - if (*ptr_yy_globals == NULL){ - errno = ENOMEM; - return 1; - } + if (*ptr_yy_globals == NULL) { + errno = ENOMEM; + return 1; + } - /* By setting to 0xAA, we expose bugs in + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ - memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + memset(*ptr_yy_globals, 0x00, sizeof(struct yyguts_t)); - yyset_extra (yy_user_defined, *ptr_yy_globals); + yyset_extra(yy_user_defined, *ptr_yy_globals); - return yy_init_globals ( *ptr_yy_globals ); + return yy_init_globals(*ptr_yy_globals); } -static int yy_init_globals (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - /* Initialization is the same as for the non-reentrant scanner. +static int yy_init_globals(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ - yyg->yy_buffer_stack = NULL; - yyg->yy_buffer_stack_top = 0; - yyg->yy_buffer_stack_max = 0; - yyg->yy_c_buf_p = NULL; - yyg->yy_init = 0; - yyg->yy_start = 0; + yyg->yy_buffer_stack = NULL; + yyg->yy_buffer_stack_top = 0; + yyg->yy_buffer_stack_max = 0; + yyg->yy_c_buf_p = NULL; + yyg->yy_init = 0; + yyg->yy_start = 0; - yyg->yy_start_stack_ptr = 0; - yyg->yy_start_stack_depth = 0; - yyg->yy_start_stack = NULL; + yyg->yy_start_stack_ptr = 0; + yyg->yy_start_stack_depth = 0; + yyg->yy_start_stack = NULL; /* Defined in main.c */ #ifdef YY_STDINIT - yyin = stdin; - yyout = stdout; + yyin = stdin; + yyout = stdout; #else - yyin = NULL; - yyout = NULL; + yyin = NULL; + yyout = NULL; #endif - /* For future reference: Set errno on error, since we are called by + /* For future reference: Set errno on error, since we are called by * yylex_init() */ - return 0; + return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ -int yylex_destroy (yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - - /* Pop the buffer stack, destroying each element. */ - while(YY_CURRENT_BUFFER){ - yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); - YY_CURRENT_BUFFER_LVALUE = NULL; - yypop_buffer_state(yyscanner); - } +int yylex_destroy(yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + + /* Pop the buffer stack, destroying each element. */ + while (YY_CURRENT_BUFFER) { + yy_delete_buffer(YY_CURRENT_BUFFER, yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(yyscanner); + } - /* Destroy the stack itself. */ - yyfree(yyg->yy_buffer_stack , yyscanner); - yyg->yy_buffer_stack = NULL; + /* Destroy the stack itself. */ + yyfree(yyg->yy_buffer_stack, yyscanner); + yyg->yy_buffer_stack = NULL; - /* Destroy the start condition stack. */ - yyfree( yyg->yy_start_stack , yyscanner ); - yyg->yy_start_stack = NULL; + /* Destroy the start condition stack. */ + yyfree(yyg->yy_start_stack, yyscanner); + yyg->yy_start_stack = NULL; - /* Reset the globals. This is important in a non-reentrant scanner so the next time + /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ - yy_init_globals( yyscanner); + yy_init_globals(yyscanner); - /* Destroy the main struct (reentrant only). */ - yyfree ( yyscanner , yyscanner ); - yyscanner = NULL; - return 0; + /* Destroy the main struct (reentrant only). */ + yyfree(yyscanner, yyscanner); + yyscanner = NULL; + return 0; } /* @@ -4469,55 +3759,49 @@ int yylex_destroy (yyscan_t yyscanner) */ #ifndef yytext_ptr -static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - (void)yyg; +static void yy_flex_strncpy(char* s1, const char* s2, int n, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + (void)yyg; - int i; - for ( i = 0; i < n; ++i ) - s1[i] = s2[i]; + int i; + for (i = 0; i < n; ++i) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen (const char * s , yyscan_t yyscanner) -{ - int n; - for ( n = 0; s[n]; ++n ) - ; +static int yy_flex_strlen(const char* s, yyscan_t yyscanner) { + int n; + for (n = 0; s[n]; ++n) + ; - return n; + return n; } #endif -void *yyalloc (yy_size_t size , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - return malloc(size); +void* yyalloc(yy_size_t size, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + return malloc(size); } -void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - (void)yyg; +void* yyrealloc(void* ptr, yy_size_t size, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + (void)yyg; - /* The cast to (char *) in the following accommodates both + /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ - return realloc(ptr, size); + return realloc(ptr, size); } -void yyfree (void * ptr , yyscan_t yyscanner) -{ - struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - (void)yyg; - free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ +void yyfree(void* ptr, yyscan_t yyscanner) { + struct yyguts_t* yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + free((char*)ptr); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" @@ -4528,7 +3812,7 @@ void yyfree (void * ptr , yyscan_t yyscanner) ** Section 3: User code ***************************/ -int yyerror(const char *msg) { - fprintf(stderr, "[SQL-Lexer-Error] %s\n",msg); return 0; +int yyerror(const char* msg) { + fprintf(stderr, "[SQL-Lexer-Error] %s\n", msg); + return 0; } - diff --git a/src/parser/flex_lexer.h b/src/parser/flex_lexer.h index 16f05f26..a8f8345e 100644 --- a/src/parser/flex_lexer.h +++ b/src/parser/flex_lexer.h @@ -6,7 +6,7 @@ #line 7 "flex_lexer.h" -#define YY_INT_ALIGNED short int +#define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ @@ -255,10 +255,10 @@ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ -#include -#include #include +#include #include +#include /* end standard C headers. */ @@ -269,7 +269,7 @@ /* C99 systems have . Non-C99 systems may or may not. */ -#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. @@ -289,41 +289,41 @@ typedef uint32_t flex_uint32_t; typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; -typedef unsigned char flex_uint8_t; +typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN -#define INT8_MIN (-128) +#define INT8_MIN (-128) #endif #ifndef INT16_MIN -#define INT16_MIN (-32767-1) +#define INT16_MIN (-32767 - 1) #endif #ifndef INT32_MIN -#define INT32_MIN (-2147483647-1) +#define INT32_MIN (-2147483647 - 1) #endif #ifndef INT8_MAX -#define INT8_MAX (127) +#define INT8_MAX (127) #endif #ifndef INT16_MAX -#define INT16_MAX (32767) +#define INT16_MAX (32767) #endif #ifndef INT32_MAX -#define INT32_MAX (2147483647) +#define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX -#define UINT8_MAX (255U) +#define UINT8_MAX (255U) #endif #ifndef UINT16_MAX -#define UINT16_MAX (65535U) +#define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX -#define UINT32_MAX (4294967295U) +#define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX -#define SIZE_MAX (~(size_t)0) +#define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ @@ -373,7 +373,7 @@ typedef void* yyscan_t; #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE -typedef struct yy_buffer_state *YY_BUFFER_STATE; +typedef struct yy_buffer_state* YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T @@ -383,74 +383,72 @@ typedef size_t yy_size_t; #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE -struct yy_buffer_state - { - FILE *yy_input_file; +struct yy_buffer_state { + FILE* yy_input_file; - char *yy_ch_buf; /* input buffer */ - char *yy_buf_pos; /* current position in input buffer */ + char* yy_ch_buf; /* input buffer */ + char* yy_buf_pos; /* current position in input buffer */ - /* Size of input buffer in bytes, not including room for EOB + /* Size of input buffer in bytes, not including room for EOB * characters. */ - int yy_buf_size; + int yy_buf_size; - /* Number of characters read into yy_ch_buf, not including EOB + /* Number of characters read into yy_ch_buf, not including EOB * characters. */ - int yy_n_chars; + int yy_n_chars; - /* Whether we "own" the buffer - i.e., we know we created it, + /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ - int yy_is_our_buffer; + int yy_is_our_buffer; - /* Whether this is an "interactive" input source; if so, and + /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ - int yy_is_interactive; + int yy_is_interactive; - /* Whether we're considered to be at the beginning of a line. + /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ - int yy_at_bol; + int yy_at_bol; - int yy_bs_lineno; /**< The line count. */ - int yy_bs_column; /**< The column count. */ + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ - /* Whether to try to fill the input buffer when we reach the + /* Whether to try to fill the input buffer when we reach the * end of it. */ - int yy_fill_buffer; + int yy_fill_buffer; - int yy_buffer_status; - - }; + int yy_buffer_status; +}; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ -void yyrestart ( FILE *input_file , yyscan_t yyscanner ); -void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); -void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); -void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); -void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); -void yypop_buffer_state ( yyscan_t yyscanner ); +void yyrestart(FILE* input_file, yyscan_t yyscanner); +void yy_switch_to_buffer(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); +YY_BUFFER_STATE yy_create_buffer(FILE* file, int size, yyscan_t yyscanner); +void yy_delete_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); +void yy_flush_buffer(YY_BUFFER_STATE b, yyscan_t yyscanner); +void yypush_buffer_state(YY_BUFFER_STATE new_buffer, yyscan_t yyscanner); +void yypop_buffer_state(yyscan_t yyscanner); -YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); -YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_buffer(char* base, yy_size_t size, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_string(const char* yy_str, yyscan_t yyscanner); +YY_BUFFER_STATE yy_scan_bytes(const char* bytes, int len, yyscan_t yyscanner); -void *yyalloc ( yy_size_t , yyscan_t yyscanner ); -void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); -void yyfree ( void * , yyscan_t yyscanner ); +void* yyalloc(yy_size_t, yyscan_t yyscanner); +void* yyrealloc(void*, yy_size_t, yyscan_t yyscanner); +void yyfree(void*, yyscan_t yyscanner); /* Begin user sect3 */ -#define hsql_wrap(yyscanner) (/*CONSTCOND*/1) +#define hsql_wrap(yyscanner) (/*CONSTCOND*/ 1) #define YY_SKIP_YYWRAP #define yytext_ptr yytext_r @@ -471,72 +469,72 @@ void yyfree ( void * , yyscan_t yyscanner ); #endif #ifndef YY_EXTRA_TYPE -#define YY_EXTRA_TYPE void * +#define YY_EXTRA_TYPE void* #endif -int yylex_init (yyscan_t* scanner); +int yylex_init(yyscan_t* scanner); -int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); +int yylex_init_extra(YY_EXTRA_TYPE user_defined, yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int yylex_destroy ( yyscan_t yyscanner ); +int yylex_destroy(yyscan_t yyscanner); + +int yyget_debug(yyscan_t yyscanner); -int yyget_debug ( yyscan_t yyscanner ); +void yyset_debug(int debug_flag, yyscan_t yyscanner); -void yyset_debug ( int debug_flag , yyscan_t yyscanner ); +YY_EXTRA_TYPE yyget_extra(yyscan_t yyscanner); -YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); +void yyset_extra(YY_EXTRA_TYPE user_defined, yyscan_t yyscanner); -void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); +FILE* yyget_in(yyscan_t yyscanner); -FILE *yyget_in ( yyscan_t yyscanner ); +void yyset_in(FILE* _in_str, yyscan_t yyscanner); -void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); +FILE* yyget_out(yyscan_t yyscanner); -FILE *yyget_out ( yyscan_t yyscanner ); +void yyset_out(FILE* _out_str, yyscan_t yyscanner); -void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); +int yyget_leng(yyscan_t yyscanner); - int yyget_leng ( yyscan_t yyscanner ); +char* yyget_text(yyscan_t yyscanner); -char *yyget_text ( yyscan_t yyscanner ); +int yyget_lineno(yyscan_t yyscanner); -int yyget_lineno ( yyscan_t yyscanner ); +void yyset_lineno(int _line_number, yyscan_t yyscanner); -void yyset_lineno ( int _line_number , yyscan_t yyscanner ); +int yyget_column(yyscan_t yyscanner); -int yyget_column ( yyscan_t yyscanner ); +void yyset_column(int _column_no, yyscan_t yyscanner); -void yyset_column ( int _column_no , yyscan_t yyscanner ); +YYSTYPE* yyget_lval(yyscan_t yyscanner); -YYSTYPE * yyget_lval ( yyscan_t yyscanner ); +void yyset_lval(YYSTYPE* yylval_param, yyscan_t yyscanner); -void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner ); +YYLTYPE* yyget_lloc(yyscan_t yyscanner); + +void yyset_lloc(YYLTYPE* yylloc_param, yyscan_t yyscanner); - YYLTYPE *yyget_lloc ( yyscan_t yyscanner ); - - void yyset_lloc ( YYLTYPE * yylloc_param , yyscan_t yyscanner ); - /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap ( yyscan_t yyscanner ); +extern "C" int yywrap(yyscan_t yyscanner); #else -extern int yywrap ( yyscan_t yyscanner ); +extern int yywrap(yyscan_t yyscanner); #endif #endif #ifndef yytext_ptr -static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); +static void yy_flex_strncpy(char*, const char*, int, yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen ( const char * , yyscan_t yyscanner); +static int yy_flex_strlen(const char*, yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT @@ -564,11 +562,9 @@ static int yy_flex_strlen ( const char * , yyscan_t yyscanner); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int yylex \ - (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner); +extern int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner); -#define YY_DECL int yylex \ - (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) +#define YY_DECL int yylex(YYSTYPE* yylval_param, YYLTYPE* yylloc_param, yyscan_t yyscanner) #endif /* !YY_DECL */ /* yy_get_previous_state - get the state just before the EOB char was reached */ @@ -732,7 +728,6 @@ extern int yylex \ #line 269 "flex_lexer.l" - #line 736 "flex_lexer.h" #undef hsql_IN_HEADER #endif /* hsql_HEADER_H */ From 1c36627627366b39afa1f7d191efa595fd7703f9 Mon Sep 17 00:00:00 2001 From: mweisgut Date: Mon, 17 Jan 2022 17:04:40 +0100 Subject: [PATCH 5/5] allow newline --- src/parser/flex_lexer.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/flex_lexer.l b/src/parser/flex_lexer.l index 5eda8a86..52e29fc4 100644 --- a/src/parser/flex_lexer.l +++ b/src/parser/flex_lexer.l @@ -209,7 +209,7 @@ ROLLBACK TOKEN(ROLLBACK) COMMIT TOKEN(COMMIT) INTERVAL TOKEN(INTERVAL) -CHARACTER[ \t]+VARYING TOKEN(CHARACTER_VARYING) +CHARACTER[ \t\n]+VARYING TOKEN(CHARACTER_VARYING) /* Allow =/== see https://sqlite.org/lang_expr.html#collateop */ "==" TOKEN(EQUALS)