/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" using namespace std; extern DeclarationNode * parseTree; extern LinkageSpec::Spec linkage; extern TypedefTable typedefTable; stack< LinkageSpec::Spec > linkageStack; void appendStr( string *to, string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to->insert( to->length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 100 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 116 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; std::string *str; bool flag; /* Line 293 of yacc.c */ #line 371 "Parser/parser.cc" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 383 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 250 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10888 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 242 /* YYNRULES -- Number of rules. */ #define YYNRULES 754 /* YYNRULES -- Number of states. */ #define YYNSTATES 1558 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ 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, 121, 2, 2, 2, 124, 118, 2, 109, 110, 117, 119, 116, 120, 113, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 130, 132, 125, 131, 126, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 111, 2, 112, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 114, 128, 115, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 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, 44, 45, 46, 47, 48, 49, 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, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 36, 38, 40, 44, 48, 50, 57, 62, 66, 74, 78, 82, 90, 93, 96, 104, 109, 111, 115, 116, 118, 120, 124, 126, 130, 138, 142, 150, 152, 154, 156, 158, 160, 163, 166, 169, 172, 175, 178, 183, 186, 191, 198, 200, 205, 210, 212, 214, 216, 218, 220, 222, 224, 229, 234, 236, 240, 244, 248, 250, 254, 258, 260, 264, 268, 270, 274, 278, 282, 286, 288, 292, 296, 298, 302, 304, 308, 310, 314, 316, 320, 322, 326, 328, 334, 339, 345, 347, 349, 353, 356, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379, 381, 383, 386, 392, 399, 407, 409, 413, 415, 419, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 445, 450, 453, 461, 463, 467, 469, 472, 474, 477, 479, 482, 485, 491, 499, 505, 515, 521, 531, 533, 537, 539, 541, 545, 549, 552, 554, 557, 560, 561, 563, 566, 570, 571, 573, 576, 580, 584, 589, 590, 592, 594, 597, 603, 611, 618, 625, 630, 634, 639, 642, 646, 649, 653, 657, 661, 665, 671, 675, 679, 684, 686, 692, 699, 705, 712, 722, 733, 743, 754, 757, 759, 762, 765, 768, 770, 777, 786, 797, 810, 825, 826, 828, 829, 831, 833, 837, 842, 850, 851, 853, 857, 859, 863, 865, 867, 869, 873, 875, 877, 879, 883, 884, 886, 890, 895, 897, 901, 903, 905, 909, 913, 917, 921, 925, 928, 932, 939, 943, 947, 952, 954, 957, 960, 964, 970, 979, 987, 995, 1001, 1011, 1014, 1017, 1023, 1027, 1033, 1038, 1042, 1047, 1052, 1060, 1064, 1068, 1072, 1076, 1081, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1105, 1107, 1109, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1127, 1133, 1135, 1138, 1142, 1144, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1194, 1197, 1201, 1205, 1207, 1211, 1213, 1216, 1219, 1222, 1227, 1232, 1237, 1242, 1244, 1247, 1250, 1254, 1256, 1259, 1262, 1264, 1267, 1270, 1274, 1276, 1279, 1282, 1284, 1286, 1291, 1294, 1295, 1302, 1310, 1313, 1316, 1319, 1320, 1323, 1326, 1330, 1333, 1337, 1339, 1342, 1346, 1349, 1352, 1357, 1358, 1360, 1363, 1366, 1368, 1369, 1371, 1374, 1377, 1383, 1386, 1387, 1395, 1398, 1403, 1404, 1407, 1408, 1410, 1412, 1414, 1420, 1426, 1432, 1434, 1440, 1446, 1456, 1458, 1464, 1465, 1467, 1469, 1475, 1477, 1479, 1485, 1491, 1493, 1497, 1501, 1506, 1508, 1510, 1512, 1514, 1517, 1519, 1523, 1527, 1529, 1532, 1534, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1563, 1565, 1567, 1569, 1572, 1573, 1576, 1579, 1581, 1586, 1587, 1589, 1592, 1596, 1601, 1604, 1607, 1609, 1612, 1615, 1621, 1627, 1635, 1642, 1644, 1647, 1650, 1654, 1656, 1659, 1662, 1667, 1670, 1675, 1676, 1681, 1684, 1686, 1688, 1690, 1691, 1694, 1700, 1706, 1720, 1722, 1724, 1728, 1732, 1735, 1739, 1743, 1746, 1751, 1753, 1760, 1770, 1771, 1783, 1785, 1789, 1793, 1797, 1799, 1801, 1807, 1810, 1816, 1817, 1819, 1821, 1825, 1826, 1828, 1830, 1832, 1834, 1835, 1842, 1845, 1847, 1850, 1855, 1858, 1862, 1866, 1870, 1875, 1881, 1887, 1893, 1900, 1902, 1904, 1906, 1910, 1911, 1917, 1918, 1920, 1922, 1925, 1932, 1934, 1938, 1939, 1941, 1946, 1948, 1950, 1952, 1954, 1957, 1959, 1962, 1965, 1967, 1971, 1974, 1978, 1982, 1985, 1990, 1995, 1999, 2008, 2012, 2015, 2017, 2020, 2027, 2036, 2040, 2043, 2047, 2051, 2056, 2061, 2065, 2067, 2069, 2071, 2076, 2083, 2087, 2090, 2094, 2098, 2103, 2108, 2112, 2115, 2117, 2120, 2123, 2125, 2129, 2132, 2136, 2140, 2143, 2148, 2153, 2157, 2164, 2173, 2177, 2180, 2182, 2185, 2188, 2191, 2195, 2199, 2202, 2207, 2212, 2216, 2223, 2232, 2236, 2239, 2241, 2244, 2247, 2249, 2251, 2254, 2258, 2262, 2265, 2270, 2277, 2286, 2288, 2291, 2294, 2296, 2299, 2302, 2306, 2310, 2312, 2317, 2322, 2326, 2332, 2341, 2345, 2348, 2352, 2354, 2360, 2366, 2373, 2380, 2382, 2385, 2388, 2390, 2393, 2396, 2400, 2404, 2406, 2411, 2416, 2420, 2426, 2435, 2439, 2441, 2444, 2446, 2449, 2456, 2462, 2469, 2477, 2485, 2487, 2490, 2493, 2495, 2498, 2501, 2505, 2509, 2511, 2516, 2521, 2525, 2534, 2538, 2540, 2542, 2545, 2547, 2549, 2552, 2556, 2559, 2563, 2566, 2570, 2574, 2577, 2582, 2586, 2589, 2593, 2596, 2601, 2605, 2608, 2615, 2622, 2629, 2637, 2639, 2642, 2644, 2646, 2648, 2651, 2655, 2658, 2662, 2665, 2669, 2673, 2678, 2681, 2685, 2690, 2693, 2699, 2705, 2712, 2719, 2720, 2722, 2723 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 303, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 142, -1, 82, -1, 142, 82, -1, 72, -1, 140, -1, 109, 171, 110, -1, 109, 175, 110, -1, 143, -1, 144, 111, 134, 166, 135, 112, -1, 144, 109, 145, 110, -1, 144, 113, 139, -1, 144, 113, 111, 134, 147, 135, 112, -1, 144, 113, 79, -1, 144, 85, 139, -1, 144, 85, 111, 134, 147, 135, 112, -1, 144, 86, -1, 144, 87, -1, 109, 276, 110, 114, 280, 373, 115, -1, 144, 114, 145, 115, -1, 146, -1, 145, 116, 146, -1, -1, 166, -1, 148, -1, 147, 116, 148, -1, 149, -1, 149, 113, 148, -1, 149, 113, 111, 134, 147, 135, 112, -1, 149, 85, 148, -1, 149, 85, 111, 134, 147, 135, 112, -1, 139, -1, 79, -1, 144, -1, 136, -1, 141, -1, 40, 153, -1, 151, 153, -1, 152, 153, -1, 86, 150, -1, 87, 150, -1, 37, 150, -1, 37, 109, 276, 110, -1, 66, 150, -1, 66, 109, 276, 110, -1, 38, 109, 276, 116, 139, 110, -1, 76, -1, 76, 109, 146, 110, -1, 76, 109, 277, 110, -1, 117, -1, 118, -1, 119, -1, 120, -1, 121, -1, 122, -1, 150, -1, 109, 276, 110, 153, -1, 109, 276, 110, 169, -1, 153, -1, 154, 117, 153, -1, 154, 123, 153, -1, 154, 124, 153, -1, 154, -1, 155, 119, 154, -1, 155, 120, 154, -1, 155, -1, 156, 88, 155, -1, 156, 89, 155, -1, 156, -1, 157, 125, 156, -1, 157, 126, 156, -1, 157, 90, 156, -1, 157, 91, 156, -1, 157, -1, 158, 92, 157, -1, 158, 93, 157, -1, 158, -1, 159, 118, 158, -1, 159, -1, 160, 127, 159, -1, 160, -1, 161, 128, 160, -1, 161, -1, 162, 94, 161, -1, 162, -1, 163, 95, 162, -1, 163, -1, 163, 129, 171, 130, 164, -1, 163, 129, 130, 164, -1, 163, 129, 171, 130, 169, -1, 164, -1, 164, -1, 150, 168, 166, -1, 169, 374, -1, -1, 166, -1, 131, -1, 107, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 111, 112, -1, 111, 134, 166, 135, 112, -1, 111, 134, 116, 170, 135, 112, -1, 111, 134, 166, 116, 170, 135, 112, -1, 167, -1, 170, 116, 167, -1, 166, -1, 171, 116, 166, -1, -1, 171, -1, 174, -1, 175, -1, 179, -1, 180, -1, 192, -1, 194, -1, 195, -1, 200, -1, 127, 144, 114, 145, 115, 132, -1, 72, 130, 313, 173, -1, 114, 115, -1, 114, 134, 134, 211, 176, 135, 115, -1, 177, -1, 176, 134, 177, -1, 214, -1, 40, 214, -1, 309, -1, 173, 135, -1, 173, -1, 178, 173, -1, 172, 132, -1, 41, 109, 171, 110, 173, -1, 41, 109, 171, 110, 173, 42, 173, -1, 43, 109, 171, 110, 185, -1, 43, 109, 171, 110, 114, 134, 207, 186, 115, -1, 53, 109, 171, 110, 185, -1, 53, 109, 171, 110, 114, 134, 207, 188, 115, -1, 165, -1, 165, 96, 165, -1, 311, -1, 181, -1, 182, 116, 181, -1, 44, 182, 130, -1, 45, 130, -1, 183, -1, 184, 183, -1, 184, 173, -1, -1, 187, -1, 184, 178, -1, 187, 184, 178, -1, -1, 189, -1, 184, 191, -1, 184, 178, 190, -1, 189, 184, 191, -1, 189, 184, 178, 190, -1, -1, 191, -1, 56, -1, 56, 132, -1, 47, 109, 171, 110, 173, -1, 46, 173, 47, 109, 171, 110, 132, -1, 48, 109, 134, 193, 110, 173, -1, 172, 135, 132, 172, 132, 172, -1, 214, 172, 132, 172, -1, 51, 72, 132, -1, 51, 117, 171, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 172, 132, -1, 61, 167, 132, -1, 62, 167, 132, -1, 62, 167, 63, 166, 132, -1, 57, 175, 196, -1, 57, 175, 198, -1, 57, 175, 196, 198, -1, 197, -1, 58, 109, 96, 110, 175, -1, 197, 58, 109, 96, 110, 175, -1, 59, 109, 96, 110, 175, -1, 197, 59, 109, 96, 110, 175, -1, 58, 109, 134, 134, 199, 135, 110, 175, 135, -1, 197, 58, 109, 134, 134, 199, 135, 110, 175, 135, -1, 59, 109, 134, 134, 199, 135, 110, 175, 135, -1, 197, 59, 109, 134, 134, 199, 135, 110, 175, 135, -1, 60, 175, -1, 227, -1, 227, 310, -1, 227, 358, -1, 367, 139, -1, 367, -1, 64, 201, 109, 141, 110, 132, -1, 64, 201, 109, 141, 130, 202, 110, 132, -1, 64, 201, 109, 141, 130, 202, 130, 202, 110, 132, -1, 64, 201, 109, 141, 130, 202, 130, 202, 130, 205, 110, 132, -1, 64, 201, 51, 109, 141, 130, 130, 202, 130, 205, 130, 206, 110, 132, -1, -1, 11, -1, -1, 203, -1, 204, -1, 203, 116, 204, -1, 141, 109, 165, 110, -1, 111, 165, 112, 141, 109, 165, 110, -1, -1, 141, -1, 205, 116, 141, -1, 139, -1, 206, 116, 139, -1, 135, -1, 208, -1, 214, -1, 208, 134, 214, -1, 135, -1, 210, -1, 224, -1, 210, 134, 224, -1, -1, 212, -1, 29, 213, 132, -1, 212, 29, 213, 132, -1, 275, -1, 213, 116, 275, -1, 215, -1, 224, -1, 216, 135, 132, -1, 221, 135, 132, -1, 218, 135, 132, -1, 294, 135, 132, -1, 297, 135, 132, -1, 217, 278, -1, 233, 217, 278, -1, 216, 135, 116, 134, 273, 278, -1, 368, 273, 312, -1, 371, 273, 312, -1, 229, 371, 273, 312, -1, 219, -1, 229, 219, -1, 233, 219, -1, 233, 229, 219, -1, 218, 135, 116, 134, 273, -1, 111, 112, 273, 109, 134, 261, 135, 110, -1, 371, 273, 109, 134, 261, 135, 110, -1, 220, 273, 109, 134, 261, 135, 110, -1, 111, 134, 263, 135, 112, -1, 111, 134, 263, 135, 116, 134, 264, 135, 112, -1, 3, 217, -1, 3, 219, -1, 221, 135, 116, 134, 139, -1, 3, 227, 310, -1, 222, 135, 116, 134, 310, -1, 229, 3, 227, 310, -1, 227, 3, 310, -1, 227, 3, 229, 310, -1, 3, 139, 131, 166, -1, 223, 135, 116, 134, 139, 131, 166, -1, 225, 135, 132, -1, 222, 135, 132, -1, 223, 135, 132, -1, 241, 135, 132, -1, 226, 310, 312, 278, -1, 225, 116, 313, 310, 312, 278, -1, 237, -1, 241, -1, 243, -1, 284, -1, 238, -1, 242, -1, 244, -1, 285, -1, -1, 229, -1, 230, -1, 229, 230, -1, 231, -1, 315, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 232, 287, 110, -1, 234, -1, 229, 234, -1, 233, 229, 234, -1, 235, -1, 234, 235, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 238, -1, 233, 238, -1, 237, 235, -1, 237, 235, 229, -1, 237, 235, 238, -1, 239, -1, 228, 240, 228, -1, 236, -1, 229, 236, -1, 239, 230, -1, 239, 236, -1, 28, 109, 277, 110, -1, 28, 109, 171, 110, -1, 78, 109, 277, 110, -1, 78, 109, 171, 110, -1, 242, -1, 233, 242, -1, 241, 235, -1, 241, 235, 229, -1, 245, -1, 229, 245, -1, 242, 230, -1, 244, -1, 233, 244, -1, 243, 235, -1, 243, 235, 229, -1, 74, -1, 229, 74, -1, 244, 230, -1, 246, -1, 257, -1, 248, 114, 249, 115, -1, 248, 275, -1, -1, 248, 275, 247, 114, 249, 115, -1, 248, 109, 293, 110, 114, 249, 115, -1, 248, 286, -1, 31, 313, -1, 32, 313, -1, -1, 249, 250, -1, 251, 132, -1, 40, 251, 132, -1, 252, 132, -1, 40, 252, 132, -1, 367, -1, 367, 275, -1, 251, 116, 275, -1, 251, 116, -1, 227, 253, -1, 252, 116, 313, 253, -1, -1, 255, -1, 319, 254, -1, 332, 254, -1, 358, -1, -1, 255, -1, 130, 165, -1, 30, 313, -1, 256, 114, 259, 373, 115, -1, 256, 275, -1, -1, 256, 275, 258, 114, 259, 373, 115, -1, 275, 260, -1, 259, 116, 275, 260, -1, -1, 131, 165, -1, -1, 262, -1, 264, -1, 263, -1, 263, 135, 116, 134, 264, -1, 264, 135, 116, 134, 96, -1, 263, 135, 116, 134, 96, -1, 268, -1, 264, 135, 116, 134, 268, -1, 263, 135, 116, 134, 268, -1, 263, 135, 116, 134, 264, 135, 116, 134, 268, -1, 269, -1, 264, 135, 116, 134, 269, -1, -1, 266, -1, 267, -1, 267, 135, 116, 134, 96, -1, 271, -1, 270, -1, 267, 135, 116, 134, 271, -1, 267, 135, 116, 134, 270, -1, 270, -1, 363, 273, 374, -1, 371, 273, 374, -1, 229, 371, 273, 374, -1, 219, -1, 271, -1, 363, -1, 371, -1, 229, 371, -1, 372, -1, 226, 337, 374, -1, 226, 341, 374, -1, 226, -1, 226, 352, -1, 139, -1, 272, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 367, -1, 227, -1, 227, 358, -1, 367, -1, 372, -1, 227, -1, 227, 346, -1, -1, 131, 279, -1, 107, 279, -1, 166, -1, 114, 280, 373, 115, -1, -1, 279, -1, 281, 279, -1, 280, 116, 279, -1, 280, 116, 281, 279, -1, 282, 130, -1, 275, 130, -1, 283, -1, 282, 283, -1, 113, 275, -1, 111, 134, 166, 135, 112, -1, 111, 134, 311, 135, 112, -1, 111, 134, 165, 96, 165, 135, 112, -1, 113, 111, 134, 147, 135, 112, -1, 285, -1, 233, 285, -1, 284, 235, -1, 284, 235, 229, -1, 286, -1, 229, 286, -1, 285, 230, -1, 75, 109, 293, 110, -1, 288, 374, -1, 287, 116, 288, 374, -1, -1, 290, 275, 289, 291, -1, 227, 337, -1, 33, -1, 35, -1, 34, -1, -1, 291, 292, -1, 128, 275, 109, 293, 110, -1, 128, 114, 134, 299, 115, -1, 128, 109, 134, 287, 135, 110, 114, 134, 299, 115, 109, 293, 110, -1, 277, -1, 166, -1, 293, 116, 277, -1, 293, 116, 166, -1, 33, 295, -1, 234, 33, 295, -1, 294, 116, 295, -1, 296, 291, -1, 296, 291, 131, 277, -1, 275, -1, 274, 109, 134, 287, 135, 110, -1, 36, 275, 109, 134, 287, 135, 110, 114, 115, -1, -1, 36, 275, 109, 134, 287, 135, 110, 114, 298, 299, 115, -1, 300, -1, 299, 134, 300, -1, 301, 135, 132, -1, 302, 135, 132, -1, 217, -1, 219, -1, 301, 135, 116, 134, 273, -1, 227, 310, -1, 302, 135, 116, 134, 310, -1, -1, 304, -1, 306, -1, 304, 134, 306, -1, -1, 304, -1, 214, -1, 308, -1, 200, -1, -1, 5, 82, 307, 114, 305, 115, -1, 40, 306, -1, 309, -1, 324, 175, -1, 328, 134, 209, 175, -1, 218, 175, -1, 226, 324, 175, -1, 229, 324, 175, -1, 233, 324, 175, -1, 233, 229, 324, 175, -1, 226, 328, 134, 209, 175, -1, 229, 328, 134, 209, 175, -1, 233, 328, 134, 209, 175, -1, 233, 229, 328, 134, 209, 175, -1, 319, -1, 332, -1, 324, -1, 165, 122, 165, -1, -1, 64, 109, 142, 110, 313, -1, -1, 314, -1, 315, -1, 314, 315, -1, 39, 109, 109, 316, 110, 110, -1, 317, -1, 316, 116, 317, -1, -1, 318, -1, 318, 109, 172, 110, -1, 273, -1, 235, -1, 236, -1, 230, -1, 320, 313, -1, 321, -1, 322, 313, -1, 323, 313, -1, 137, -1, 109, 320, 110, -1, 151, 319, -1, 151, 229, 319, -1, 109, 321, 110, -1, 320, 350, -1, 109, 321, 110, 350, -1, 109, 322, 110, 351, -1, 109, 322, 110, -1, 109, 321, 110, 109, 134, 265, 135, 110, -1, 109, 323, 110, -1, 325, 313, -1, 326, -1, 327, 313, -1, 320, 109, 134, 265, 135, 110, -1, 109, 326, 110, 109, 134, 265, 135, 110, -1, 109, 325, 110, -1, 151, 324, -1, 151, 229, 324, -1, 109, 326, 110, -1, 109, 326, 110, 350, -1, 109, 327, 110, 351, -1, 109, 327, 110, -1, 329, -1, 330, -1, 331, -1, 320, 109, 272, 110, -1, 109, 330, 110, 109, 272, 110, -1, 109, 329, 110, -1, 151, 328, -1, 151, 229, 328, -1, 109, 330, 110, -1, 109, 330, 110, 350, -1, 109, 331, 110, 351, -1, 109, 331, 110, -1, 333, 313, -1, 334, -1, 335, 313, -1, 336, 313, -1, 342, -1, 109, 333, 110, -1, 151, 332, -1, 151, 229, 332, -1, 109, 334, 110, -1, 333, 350, -1, 109, 334, 110, 350, -1, 109, 335, 110, 351, -1, 109, 335, 110, -1, 333, 109, 134, 265, 135, 110, -1, 109, 334, 110, 109, 134, 265, 135, 110, -1, 109, 336, 110, -1, 320, 313, -1, 338, -1, 339, 313, -1, 340, 313, -1, 151, 337, -1, 151, 229, 337, -1, 109, 338, 110, -1, 320, 356, -1, 109, 338, 110, 350, -1, 109, 339, 110, 351, -1, 109, 339, 110, -1, 320, 109, 134, 265, 135, 110, -1, 109, 338, 110, 109, 134, 265, 135, 110, -1, 109, 340, 110, -1, 342, 313, -1, 343, -1, 344, 313, -1, 345, 313, -1, 74, -1, 75, -1, 151, 341, -1, 151, 229, 341, -1, 109, 343, 110, -1, 342, 356, -1, 109, 343, 110, 356, -1, 342, 109, 134, 265, 135, 110, -1, 109, 343, 110, 109, 134, 265, 135, 110, -1, 347, -1, 348, 313, -1, 349, 313, -1, 151, -1, 151, 229, -1, 151, 346, -1, 151, 229, 346, -1, 109, 347, 110, -1, 350, -1, 109, 347, 110, 350, -1, 109, 348, 110, 351, -1, 109, 348, 110, -1, 109, 134, 265, 135, 110, -1, 109, 347, 110, 109, 134, 265, 135, 110, -1, 109, 349, 110, -1, 111, 112, -1, 111, 112, 351, -1, 351, -1, 111, 134, 166, 135, 112, -1, 111, 134, 117, 135, 112, -1, 351, 111, 134, 166, 135, 112, -1, 351, 111, 134, 117, 135, 112, -1, 353, -1, 354, 313, -1, 355, 313, -1, 151, -1, 151, 229, -1, 151, 352, -1, 151, 229, 352, -1, 109, 353, 110, -1, 356, -1, 109, 353, 110, 356, -1, 109, 354, 110, 351, -1, 109, 354, 110, -1, 109, 134, 265, 135, 110, -1, 109, 353, 110, 109, 134, 265, 135, 110, -1, 109, 355, 110, -1, 357, -1, 357, 351, -1, 351, -1, 111, 112, -1, 111, 134, 229, 117, 135, 112, -1, 111, 134, 229, 135, 112, -1, 111, 134, 229, 166, 135, 112, -1, 111, 134, 7, 228, 166, 135, 112, -1, 111, 134, 229, 7, 166, 135, 112, -1, 359, -1, 360, 313, -1, 361, 313, -1, 151, -1, 151, 229, -1, 151, 358, -1, 151, 229, 358, -1, 109, 359, 110, -1, 350, -1, 109, 359, 110, 350, -1, 109, 360, 110, 351, -1, 109, 360, 110, -1, 109, 359, 110, 109, 134, 265, 135, 110, -1, 109, 361, 110, -1, 363, -1, 371, -1, 229, 371, -1, 364, -1, 365, -1, 151, 227, -1, 229, 151, 227, -1, 151, 372, -1, 229, 151, 372, -1, 151, 362, -1, 229, 151, 362, -1, 111, 112, 227, -1, 366, 227, -1, 111, 112, 351, 227, -1, 366, 351, 227, -1, 351, 227, -1, 111, 112, 364, -1, 366, 364, -1, 111, 112, 351, 364, -1, 366, 351, 364, -1, 351, 364, -1, 111, 134, 229, 117, 135, 112, -1, 111, 134, 229, 166, 135, 112, -1, 111, 134, 233, 166, 135, 112, -1, 111, 134, 233, 229, 166, 135, 112, -1, 371, -1, 229, 371, -1, 368, -1, 369, -1, 370, -1, 151, 227, -1, 229, 151, 227, -1, 151, 372, -1, 229, 151, 372, -1, 151, 367, -1, 229, 151, 367, -1, 111, 112, 227, -1, 111, 112, 351, 227, -1, 351, 227, -1, 111, 112, 369, -1, 111, 112, 351, 369, -1, 351, 369, -1, 111, 134, 264, 135, 112, -1, 111, 112, 109, 261, 110, -1, 371, 109, 134, 261, 135, 110, -1, 220, 109, 134, 261, 135, 110, -1, -1, 116, -1, -1, 131, 166, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 302, 302, 306, 313, 314, 315, 319, 320, 321, 325, 326, 330, 331, 335, 336, 340, 344, 345, 356, 358, 360, 362, 367, 368, 374, 378, 380, 381, 382, 384, 385, 387, 389, 391, 400, 401, 407, 408, 412, 413, 417, 421, 423, 425, 427, 432, 433, 437, 440, 442, 444, 449, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 489, 490, 496, 497, 498, 499, 503, 504, 506, 511, 512, 514, 516, 521, 522, 524, 529, 530, 532, 537, 538, 540, 542, 544, 549, 550, 552, 557, 558, 563, 564, 569, 570, 575, 576, 581, 582, 587, 588, 591, 593, 598, 603, 604, 606, 612, 613, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 634, 636, 638, 640, 645, 646, 651, 652, 658, 659, 665, 666, 667, 668, 669, 670, 671, 672, 673, 683, 690, 692, 702, 703, 708, 710, 716, 718, 722, 723, 728, 733, 736, 738, 740, 750, 752, 763, 764, 766, 770, 772, 776, 777, 782, 783, 787, 792, 793, 797, 799, 805, 806, 810, 812, 814, 816, 822, 823, 827, 829, 834, 836, 838, 843, 845, 850, 852, 856, 859, 863, 866, 870, 872, 874, 876, 881, 883, 885, 890, 892, 894, 896, 898, 903, 905, 907, 909, 914, 926, 927, 932, 934, 939, 943, 945, 947, 949, 951, 957, 958, 964, 965, 969, 970, 975, 977, 983, 984, 986, 991, 996, 1006, 1008, 1012, 1013, 1018, 1020, 1024, 1025, 1029, 1031, 1035, 1036, 1040, 1041, 1045, 1046, 1061, 1062, 1063, 1064, 1065, 1069, 1074, 1081, 1091, 1096, 1101, 1109, 1114, 1119, 1124, 1129, 1137, 1159, 1164, 1171, 1173, 1180, 1185, 1190, 1201, 1206, 1211, 1216, 1221, 1230, 1235, 1243, 1244, 1245, 1246, 1252, 1257, 1265, 1266, 1267, 1268, 1272, 1273, 1274, 1275, 1280, 1281, 1290, 1291, 1296, 1297, 1302, 1304, 1306, 1308, 1310, 1313, 1312, 1324, 1325, 1327, 1337, 1338, 1343, 1345, 1347, 1349, 1351, 1354, 1356, 1359, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1394, 1395, 1397, 1399, 1401, 1406, 1407, 1413, 1414, 1416, 1418, 1423, 1425, 1427, 1429, 1434, 1435, 1437, 1439, 1444, 1445, 1447, 1452, 1453, 1455, 1457, 1462, 1464, 1466, 1471, 1472, 1476, 1478, 1484, 1483, 1487, 1489, 1494, 1496, 1502, 1503, 1508, 1509, 1511, 1512, 1521, 1522, 1524, 1526, 1531, 1533, 1539, 1540, 1542, 1545, 1548, 1553, 1554, 1559, 1564, 1568, 1570, 1576, 1575, 1582, 1584, 1590, 1591, 1599, 1600, 1604, 1605, 1606, 1608, 1610, 1617, 1618, 1620, 1622, 1627, 1628, 1634, 1635, 1639, 1640, 1645, 1646, 1647, 1649, 1657, 1658, 1660, 1663, 1665, 1669, 1670, 1671, 1673, 1675, 1679, 1684, 1692, 1693, 1702, 1704, 1709, 1710, 1711, 1715, 1716, 1717, 1721, 1722, 1723, 1727, 1728, 1729, 1734, 1735, 1736, 1737, 1743, 1744, 1746, 1751, 1752, 1757, 1758, 1759, 1760, 1761, 1776, 1777, 1782, 1783, 1789, 1791, 1794, 1796, 1798, 1821, 1822, 1824, 1826, 1831, 1832, 1834, 1839, 1844, 1845, 1851, 1850, 1854, 1858, 1860, 1862, 1868, 1869, 1874, 1879, 1881, 1886, 1888, 1889, 1891, 1896, 1898, 1900, 1905, 1907, 1912, 1917, 1925, 1931, 1930, 1944, 1945, 1950, 1951, 1955, 1960, 1965, 1973, 1978, 1989, 1990, 1995, 1996, 2002, 2003, 2007, 2008, 2009, 2012, 2011, 2022, 2031, 2037, 2043, 2052, 2058, 2064, 2070, 2076, 2084, 2090, 2098, 2104, 2113, 2114, 2115, 2119, 2123, 2125, 2130, 2131, 2135, 2136, 2141, 2147, 2148, 2151, 2153, 2154, 2158, 2159, 2160, 2161, 2195, 2197, 2198, 2200, 2205, 2210, 2215, 2217, 2219, 2224, 2226, 2228, 2230, 2235, 2237, 2246, 2248, 2249, 2254, 2256, 2258, 2263, 2265, 2267, 2272, 2274, 2276, 2285, 2286, 2287, 2291, 2293, 2295, 2300, 2302, 2304, 2309, 2311, 2313, 2328, 2330, 2331, 2333, 2338, 2339, 2344, 2346, 2348, 2353, 2355, 2357, 2359, 2364, 2366, 2368, 2378, 2380, 2381, 2383, 2388, 2390, 2392, 2397, 2399, 2401, 2403, 2408, 2410, 2412, 2443, 2445, 2446, 2448, 2453, 2458, 2466, 2468, 2470, 2475, 2477, 2482, 2484, 2498, 2499, 2501, 2506, 2508, 2510, 2512, 2514, 2519, 2520, 2522, 2524, 2529, 2531, 2533, 2539, 2541, 2543, 2547, 2549, 2551, 2553, 2567, 2568, 2570, 2575, 2577, 2579, 2581, 2583, 2588, 2589, 2591, 2593, 2598, 2600, 2602, 2608, 2609, 2611, 2620, 2623, 2625, 2628, 2630, 2632, 2645, 2646, 2648, 2653, 2655, 2657, 2659, 2661, 2666, 2667, 2669, 2671, 2676, 2678, 2686, 2687, 2688, 2693, 2694, 2698, 2700, 2702, 2704, 2706, 2708, 2715, 2717, 2719, 2721, 2723, 2725, 2727, 2729, 2731, 2733, 2738, 2740, 2742, 2747, 2773, 2774, 2776, 2780, 2781, 2785, 2787, 2789, 2791, 2793, 2795, 2802, 2804, 2806, 2808, 2810, 2812, 2817, 2822, 2824, 2826, 2844, 2846, 2851, 2852 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "field_name", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 142, 142, 143, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 145, 145, 146, 146, 147, 147, 148, 148, 148, 148, 148, 149, 149, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 151, 151, 152, 152, 152, 152, 153, 153, 153, 154, 154, 154, 154, 155, 155, 155, 156, 156, 156, 157, 157, 157, 157, 157, 158, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 163, 163, 164, 164, 164, 164, 165, 166, 166, 166, 167, 167, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 169, 169, 169, 170, 170, 171, 171, 172, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 174, 175, 175, 176, 176, 177, 177, 177, 177, 178, 178, 179, 180, 180, 180, 180, 180, 180, 181, 181, 181, 182, 182, 183, 183, 184, 184, 185, 186, 186, 187, 187, 188, 188, 189, 189, 189, 189, 190, 190, 191, 191, 192, 192, 192, 193, 193, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 195, 195, 195, 196, 196, 196, 196, 196, 197, 197, 197, 197, 198, 199, 199, 199, 199, 199, 200, 200, 200, 200, 200, 201, 201, 202, 202, 203, 203, 204, 204, 205, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 215, 215, 215, 215, 215, 216, 216, 216, 217, 217, 217, 218, 218, 218, 218, 218, 219, 219, 219, 220, 220, 221, 221, 221, 222, 222, 222, 222, 222, 223, 223, 224, 224, 224, 224, 225, 225, 226, 226, 226, 226, 227, 227, 227, 227, 228, 228, 229, 229, 230, 230, 231, 231, 231, 231, 231, 232, 231, 233, 233, 233, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, 237, 238, 238, 239, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 241, 242, 242, 242, 243, 243, 243, 243, 244, 244, 244, 245, 245, 246, 246, 247, 246, 246, 246, 248, 248, 249, 249, 250, 250, 250, 250, 251, 251, 251, 251, 252, 252, 253, 253, 253, 253, 253, 254, 254, 255, 256, 257, 257, 258, 257, 259, 259, 260, 260, 261, 261, 262, 262, 262, 262, 262, 263, 263, 263, 263, 264, 264, 265, 265, 266, 266, 267, 267, 267, 267, 268, 268, 268, 268, 268, 269, 269, 269, 269, 269, 270, 270, 271, 271, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 276, 276, 276, 277, 277, 277, 277, 278, 278, 278, 279, 279, 280, 280, 280, 280, 280, 281, 281, 282, 282, 283, 283, 283, 283, 283, 284, 284, 284, 284, 285, 285, 285, 286, 287, 287, 289, 288, 288, 290, 290, 290, 291, 291, 292, 292, 292, 293, 293, 293, 293, 294, 294, 294, 295, 295, 296, 296, 297, 298, 297, 299, 299, 300, 300, 301, 301, 301, 302, 302, 303, 303, 304, 304, 305, 305, 306, 306, 306, 307, 306, 306, 308, 308, 308, 309, 309, 309, 309, 309, 309, 309, 309, 309, 310, 310, 310, 311, 312, 312, 313, 313, 314, 314, 315, 316, 316, 317, 317, 317, 318, 318, 318, 318, 319, 319, 319, 319, 320, 320, 321, 321, 321, 322, 322, 322, 322, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 332, 332, 332, 332, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 336, 337, 337, 337, 337, 338, 338, 338, 339, 339, 339, 339, 340, 340, 340, 341, 341, 341, 341, 342, 342, 343, 343, 343, 344, 344, 345, 345, 346, 346, 346, 347, 347, 347, 347, 347, 348, 348, 348, 348, 349, 349, 349, 350, 350, 350, 351, 351, 351, 351, 352, 352, 352, 353, 353, 353, 353, 353, 354, 354, 354, 354, 355, 355, 355, 356, 356, 356, 357, 357, 357, 357, 357, 357, 358, 358, 358, 359, 359, 359, 359, 359, 360, 360, 360, 360, 361, 361, 362, 362, 362, 363, 363, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 366, 366, 366, 366, 367, 367, 367, 368, 368, 369, 369, 369, 369, 369, 369, 370, 370, 370, 370, 370, 370, 371, 372, 372, 372, 373, 373, 374, 374 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 296, 296, 316, 314, 317, 315, 318, 319, 302, 304, 303, 0, 305, 330, 322, 327, 325, 326, 324, 323, 328, 329, 334, 331, 332, 333, 549, 549, 549, 0, 0, 0, 296, 222, 306, 320, 321, 7, 361, 0, 8, 14, 15, 0, 2, 64, 65, 567, 9, 296, 527, 525, 249, 3, 456, 3, 262, 0, 3, 3, 3, 250, 3, 0, 0, 0, 297, 298, 300, 296, 309, 312, 342, 288, 335, 340, 289, 350, 290, 357, 354, 364, 0, 0, 365, 291, 475, 479, 3, 3, 0, 2, 521, 526, 531, 301, 0, 0, 549, 579, 549, 2, 590, 591, 592, 296, 0, 733, 734, 0, 12, 0, 13, 296, 272, 273, 0, 297, 292, 293, 294, 295, 528, 307, 394, 550, 551, 372, 373, 12, 447, 448, 11, 443, 446, 0, 505, 500, 491, 447, 448, 0, 0, 530, 223, 0, 296, 0, 0, 0, 0, 0, 0, 0, 0, 296, 296, 2, 0, 735, 297, 584, 596, 739, 732, 730, 737, 0, 0, 0, 256, 2, 0, 534, 441, 442, 440, 0, 0, 0, 0, 549, 0, 636, 637, 0, 0, 547, 543, 549, 564, 549, 549, 545, 2, 544, 549, 603, 549, 549, 606, 0, 0, 0, 296, 296, 314, 362, 2, 296, 263, 299, 310, 343, 355, 480, 0, 2, 0, 456, 264, 297, 336, 351, 358, 476, 0, 2, 0, 313, 337, 344, 345, 0, 352, 356, 359, 363, 448, 296, 374, 367, 371, 0, 396, 477, 481, 0, 0, 0, 1, 296, 2, 532, 578, 580, 296, 2, 743, 297, 746, 547, 547, 0, 297, 0, 0, 275, 549, 545, 2, 296, 0, 0, 296, 552, 2, 503, 2, 556, 0, 0, 0, 0, 0, 0, 19, 61, 4, 5, 6, 17, 0, 0, 296, 2, 66, 67, 68, 69, 49, 20, 50, 16, 23, 48, 70, 296, 0, 73, 77, 80, 83, 88, 91, 93, 95, 97, 99, 101, 106, 497, 753, 454, 496, 0, 452, 453, 0, 568, 583, 586, 589, 595, 598, 601, 361, 0, 2, 741, 0, 296, 744, 2, 64, 296, 3, 428, 0, 436, 297, 296, 309, 335, 289, 350, 357, 3, 3, 410, 414, 424, 429, 475, 296, 430, 708, 709, 296, 431, 433, 296, 2, 585, 597, 731, 2, 2, 251, 2, 461, 0, 459, 458, 457, 143, 2, 2, 253, 2, 2, 252, 2, 283, 2, 284, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569, 608, 0, 456, 2, 563, 572, 662, 565, 566, 535, 296, 2, 602, 611, 604, 605, 0, 278, 296, 296, 341, 297, 0, 297, 0, 296, 736, 740, 738, 536, 296, 547, 257, 265, 311, 0, 2, 537, 296, 501, 338, 339, 285, 353, 360, 0, 296, 0, 751, 401, 0, 478, 502, 254, 255, 522, 296, 438, 0, 296, 239, 0, 2, 241, 0, 297, 0, 259, 2, 260, 280, 0, 0, 2, 296, 547, 296, 488, 490, 489, 0, 0, 753, 0, 296, 0, 296, 492, 296, 562, 560, 561, 559, 0, 554, 557, 0, 0, 296, 56, 296, 70, 51, 296, 58, 296, 296, 54, 55, 2, 129, 0, 0, 450, 0, 449, 730, 123, 296, 18, 0, 31, 32, 37, 2, 0, 37, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 112, 111, 0, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 2, 648, 455, 645, 549, 549, 653, 482, 296, 2, 587, 588, 0, 599, 600, 0, 2, 742, 745, 123, 296, 0, 2, 710, 297, 714, 705, 706, 712, 0, 2, 2, 670, 549, 753, 619, 549, 549, 753, 549, 633, 549, 549, 684, 437, 667, 549, 549, 675, 682, 296, 432, 297, 0, 0, 296, 720, 297, 725, 753, 717, 296, 722, 753, 296, 296, 296, 0, 123, 0, 19, 2, 0, 20, 0, 462, 751, 0, 0, 468, 243, 0, 296, 0, 0, 0, 547, 571, 575, 577, 607, 610, 614, 617, 570, 609, 0, 286, 660, 0, 296, 279, 0, 0, 0, 0, 277, 2, 0, 261, 538, 296, 0, 0, 296, 2, 366, 386, 375, 0, 0, 380, 374, 752, 0, 0, 399, 0, 297, 3, 417, 3, 421, 420, 593, 0, 533, 296, 64, 3, 296, 436, 297, 3, 430, 431, 2, 0, 0, 0, 487, 308, 296, 483, 485, 3, 2, 2, 0, 504, 3, 0, 556, 131, 0, 0, 224, 0, 0, 0, 0, 38, 0, 0, 123, 296, 21, 0, 22, 0, 694, 699, 451, 691, 549, 549, 0, 109, 3, 2, 29, 0, 35, 0, 28, 2, 26, 0, 107, 74, 75, 76, 78, 79, 81, 82, 86, 87, 84, 85, 89, 90, 92, 94, 96, 98, 100, 0, 0, 754, 296, 0, 0, 0, 649, 650, 646, 647, 499, 498, 296, 0, 296, 716, 296, 721, 297, 296, 664, 296, 296, 707, 663, 2, 296, 0, 0, 0, 0, 0, 0, 0, 0, 685, 0, 671, 622, 638, 672, 2, 618, 625, 434, 620, 621, 435, 2, 632, 641, 634, 635, 668, 669, 683, 711, 715, 713, 753, 270, 2, 747, 2, 425, 719, 724, 426, 0, 404, 3, 3, 3, 3, 456, 3, 0, 2, 470, 467, 752, 0, 463, 2, 466, 469, 0, 296, 244, 266, 3, 274, 276, 0, 456, 2, 573, 574, 2, 612, 613, 0, 661, 539, 3, 347, 346, 349, 348, 296, 540, 0, 541, 374, 0, 0, 296, 296, 0, 0, 694, 384, 387, 391, 549, 391, 390, 383, 376, 549, 378, 381, 296, 401, 395, 105, 402, 751, 0, 0, 439, 242, 0, 0, 3, 2, 670, 432, 0, 529, 0, 753, 491, 0, 296, 296, 296, 0, 553, 555, 132, 0, 0, 217, 0, 0, 0, 225, 226, 57, 0, 59, 62, 63, 0, 2, 130, 0, 0, 0, 695, 696, 692, 693, 461, 71, 72, 110, 127, 3, 109, 0, 0, 25, 37, 3, 0, 34, 103, 0, 3, 652, 656, 659, 651, 3, 594, 3, 718, 723, 2, 64, 296, 3, 3, 297, 0, 3, 624, 628, 631, 640, 674, 678, 681, 296, 3, 623, 639, 673, 296, 296, 427, 296, 296, 748, 0, 0, 0, 0, 258, 0, 105, 0, 3, 3, 0, 464, 0, 460, 0, 0, 247, 296, 0, 0, 131, 0, 0, 0, 0, 0, 131, 0, 0, 109, 109, 19, 2, 0, 0, 3, 133, 134, 2, 145, 135, 136, 137, 138, 139, 140, 147, 149, 0, 0, 0, 287, 296, 296, 549, 0, 542, 296, 377, 379, 0, 393, 695, 388, 392, 389, 382, 386, 369, 400, 0, 581, 2, 666, 665, 0, 671, 2, 484, 486, 506, 3, 514, 515, 0, 2, 510, 3, 3, 0, 0, 558, 224, 0, 0, 0, 224, 0, 0, 123, 698, 702, 704, 697, 751, 109, 0, 3, 663, 47, 46, 3, 39, 41, 36, 0, 3, 102, 104, 0, 2, 654, 655, 0, 0, 296, 0, 0, 0, 3, 640, 0, 2, 626, 627, 2, 642, 2, 676, 677, 0, 0, 64, 0, 3, 3, 3, 3, 412, 411, 415, 2, 2, 750, 749, 124, 0, 0, 0, 0, 3, 465, 3, 0, 245, 148, 3, 297, 296, 0, 0, 0, 0, 2, 0, 193, 0, 191, 0, 0, 0, 0, 0, 0, 0, 549, 123, 0, 153, 150, 296, 0, 0, 269, 281, 3, 3, 548, 615, 370, 385, 398, 296, 268, 296, 0, 517, 494, 296, 0, 0, 493, 508, 0, 0, 0, 218, 0, 227, 60, 2, 700, 701, 0, 128, 125, 0, 0, 0, 0, 0, 24, 0, 657, 296, 582, 267, 726, 727, 728, 0, 679, 296, 296, 296, 3, 3, 0, 687, 0, 0, 0, 0, 296, 296, 3, 546, 124, 472, 0, 0, 248, 297, 0, 0, 0, 0, 296, 194, 192, 189, 0, 195, 0, 0, 0, 0, 199, 202, 200, 196, 0, 197, 131, 37, 146, 144, 246, 0, 0, 419, 423, 422, 0, 511, 2, 512, 2, 513, 507, 296, 230, 0, 228, 0, 230, 296, 33, 126, 40, 30, 2, 44, 2, 42, 27, 3, 729, 3, 3, 3, 0, 0, 686, 688, 629, 643, 271, 2, 409, 3, 408, 0, 474, 471, 131, 0, 0, 131, 3, 0, 131, 190, 0, 2, 2, 211, 201, 0, 0, 0, 142, 0, 576, 616, 2, 0, 0, 2, 231, 0, 0, 219, 0, 3, 0, 0, 0, 0, 0, 0, 689, 690, 296, 0, 473, 154, 0, 0, 2, 167, 131, 156, 0, 184, 0, 131, 0, 2, 158, 0, 2, 0, 2, 2, 2, 198, 34, 296, 516, 518, 509, 0, 0, 0, 0, 0, 3, 3, 658, 630, 644, 680, 413, 131, 160, 163, 0, 162, 166, 3, 169, 168, 0, 131, 186, 131, 3, 0, 296, 0, 296, 0, 2, 0, 2, 141, 2, 232, 233, 0, 229, 220, 703, 0, 0, 155, 0, 0, 165, 235, 170, 2, 237, 185, 0, 188, 174, 203, 3, 212, 216, 205, 3, 0, 296, 0, 296, 0, 0, 0, 45, 43, 161, 164, 131, 0, 171, 296, 131, 131, 0, 175, 0, 0, 694, 213, 214, 215, 0, 204, 3, 206, 3, 296, 221, 234, 151, 172, 157, 131, 238, 187, 182, 180, 176, 159, 131, 0, 695, 0, 0, 0, 0, 152, 173, 183, 177, 181, 180, 178, 3, 3, 0, 0, 495, 179, 207, 209, 3, 3, 208, 210 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 815, 468, 300, 47, 133, 134, 301, 302, 303, 304, 305, 762, 763, 1136, 1137, 1138, 306, 381, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1032, 518, 977, 547, 322, 978, 949, 1059, 1522, 1061, 1062, 1063, 1064, 1523, 1065, 1066, 1441, 1442, 1405, 1406, 1407, 1501, 1502, 1506, 1507, 1542, 1543, 1067, 1365, 1068, 1069, 1302, 1303, 1304, 1484, 1070, 145, 955, 956, 957, 1385, 1465, 1476, 1477, 469, 470, 876, 877, 1040, 51, 52, 53, 54, 55, 347, 158, 58, 59, 60, 61, 62, 349, 64, 65, 264, 67, 68, 274, 351, 352, 71, 72, 73, 118, 75, 204, 354, 119, 78, 120, 80, 81, 455, 82, 454, 689, 690, 691, 910, 1088, 911, 83, 84, 458, 456, 697, 857, 858, 859, 860, 700, 701, 702, 359, 360, 361, 362, 466, 340, 135, 136, 522, 324, 170, 646, 647, 648, 649, 650, 85, 121, 87, 489, 490, 941, 491, 277, 495, 325, 88, 137, 138, 89, 1325, 1110, 1111, 1112, 1113, 90, 91, 718, 92, 273, 93, 94, 187, 1034, 680, 412, 125, 95, 501, 502, 503, 188, 268, 190, 191, 192, 269, 98, 99, 100, 101, 102, 103, 104, 195, 196, 197, 198, 199, 827, 606, 607, 608, 609, 200, 611, 612, 613, 573, 574, 575, 576, 752, 105, 615, 616, 617, 618, 619, 620, 970, 754, 755, 756, 596, 365, 366, 367, 368, 326, 164, 107, 108, 109, 370, 695, 570 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1338 static const yytype_int16 yypact[] = { 4794, 8872, -1338, 118, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -32, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 75, 75, 75, 889, 761, 17, 6057, 231, -1338, -1338, -1338, -1338, -1338, 166, -1338, -1338, -1338, 566, 192, -1338, -1338, -1338, -1338, 4939, -1338, -1338, -1338, -1338, 195, 234, -1338, 1148, -1338, -1338, -1338, -1338, 170, 2042, 352, 44, 7574, -1338, -1338, 9333, 1157, -1338, -1338, 1542, 364, 3919, 608, 982, 1542, 1041, -1338, -1338, 474, 402, -1338, 1542, 1242, -1338, 273, -1338, 455, 478, -1338, -1338, -1338, -1338, 354, 234, 75, -1338, 75, -1338, -1338, -1338, -1338, 9218, 1148, -1338, -1338, 1148, -1338, 387, -1338, 9518, -1338, -1338, 2342, 9556, -1338, 992, 992, 992, -1338, -1338, -1338, 75, -1338, -1338, -1338, 374, 386, 471, -1338, -1338, -1338, 480, -1338, -1338, -1338, -1338, -1338, 525, 539, -1338, -1338, 53, 8841, 1022, 54, 558, 563, 587, 592, 605, 615, 8759, 7097, 644, 585, -1338, 9371, -1338, -1338, -1338, -1338, 619, -1338, 349, 4637, 4637, -1338, 657, 446, -1338, -1338, -1338, -1338, 651, 453, 454, 476, 75, 659, -1338, -1338, 2042, 2592, 742, -1338, 57, -1338, 75, 75, 234, -1338, -1338, 101, -1338, 75, 75, -1338, 3079, 687, 706, 992, 6771, -1338, -1338, 707, 4939, -1338, -1338, 1542, -1338, -1338, -1338, 234, -1338, 1148, 195, -1338, 7912, -1338, 992, 992, 992, 234, -1338, 889, -1338, 4555, -1338, -1338, 691, 992, -1338, 992, -1338, 166, 8841, -1338, 713, -1338, 761, 725, 992, -1338, 889, 756, 768, -1338, 6057, 675, -1338, -1338, -1338, 9300, -1338, -1338, 2361, -1338, 742, 105, 10239, 9556, 2342, 3079, -1338, 194, -1338, -1338, 9518, 1148, 743, 7605, -1338, -1338, 126, -1338, 10586, 755, 847, 10372, 832, 10391, 10448, -1338, 839, -1338, -1338, -1338, -1338, 10467, 10467, 8615, 824, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 901, -1338, 679, 3121, 8954, 10391, -1338, 507, 418, 680, 295, 694, 894, 852, 888, 930, 66, -1338, -1338, 938, 665, -1338, 380, -1338, -1338, 1022, -1338, -1338, 12, 949, -1338, 338, 949, 961, 166, -1338, -1338, 968, 9218, -1338, 983, 984, 9067, -1338, -1338, 776, 1555, 8330, 6771, 1542, -1338, 1542, 992, 992, -1338, -1338, -1338, -1338, -1338, -1338, 992, 9218, 1148, -1338, -1338, 9594, 1098, -1338, 8061, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 995, 5881, 10391, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 2342, -1338, 489, 993, 994, 1000, 732, 1004, 1007, 1008, 2592, -1338, -1338, 969, 195, 1030, -1338, -1338, 1024, -1338, -1338, -1338, 9300, -1338, -1338, -1338, -1338, -1338, 3079, -1338, 8841, 8841, -1338, 992, 2342, 6890, 1148, 8403, -1338, -1338, -1338, -1338, 9300, 105, -1338, -1338, 1542, 234, -1338, -1338, 9300, -1338, 6655, -1338, -1338, 992, 992, 465, 8248, 1029, 1028, 1015, 1033, 992, -1338, -1338, -1338, -1338, 9742, -1338, 591, 6518, -1338, 234, 1044, -1338, 2342, 10668, 10296, -1338, -1338, -1338, -1338, 929, 3079, -1338, 8476, 742, 5771, -1338, -1338, -1338, 1039, 645, 938, 761, 7605, 809, 9518, -1338, 7605, -1338, -1338, -1338, -1338, 688, -1338, 1046, 847, 251, 8615, -1338, 9627, -1338, -1338, 8615, -1338, 8728, 8615, -1338, -1338, 1048, -1338, 751, 1043, 711, 1057, -1338, -1338, 9447, 6740, -1338, 107, -1338, -1338, 10239, -1338, 318, 10239, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 10239, -1338, -1338, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 10391, 4422, 10239, -1338, 665, 1831, -1338, -1338, 75, 75, -1338, -1338, 8841, -1338, -1338, 1024, 675, -1338, 1024, 10315, -1338, -1338, -1338, 5500, 6740, 1056, 1064, -1338, 9556, -1338, -1338, 619, -1338, 1065, 1323, 1067, 2196, 209, 938, -1338, 75, 75, 938, 243, -1338, 75, 75, 1024, -1338, -1338, 75, 75, -1338, 949, 9665, 1148, 10813, 217, 306, 9665, -1338, 2361, -1338, 938, -1338, 9218, -1338, 212, 8027, 8027, 8027, 1148, -1338, 6120, 1053, 995, 535, 1061, 1066, -1338, 1071, 4637, 421, -1338, 1166, 1148, 8027, 675, 2342, 675, 742, 394, 949, -1338, -1338, 788, 949, -1338, -1338, -1338, 847, -1338, 949, 234, 9742, -1338, 764, 1087, 806, 1088, -1338, 1089, 234, -1338, -1338, 9300, 234, 1090, 9627, 1096, -1338, 1729, -1338, 527, 550, 761, -1338, 761, 1102, 10391, -1338, 761, 10813, -1338, -1338, 1092, -1338, -1338, -1338, 675, -1338, 10741, 984, -1338, 8027, 857, 8330, -1338, -1338, 619, 1103, 1112, 1039, 3523, -1338, -1338, 7605, -1338, -1338, 1097, -1338, -1338, 1121, -1338, 1097, 1124, 10586, 10239, 1105, 1104, 94, 1128, 1123, 1132, 1133, -1338, 1136, 1138, 9485, 6859, -1338, 10239, -1338, 711, 1914, -1338, -1338, -1338, 75, 75, 6186, 10239, 1134, -1338, -1338, 822, -1338, 10239, -1338, -1338, -1338, 715, -1338, -1338, -1338, -1338, 507, 507, 418, 418, 680, 680, 680, 680, 295, 295, 694, 894, 852, 888, 930, 10391, 250, -1338, 9742, 1151, 1153, 1158, 1831, -1338, -1338, -1338, -1338, -1338, 9742, 827, 8027, -1338, 9218, -1338, 7216, 9180, -1338, 8061, 7097, -1338, -1338, 1323, 9742, 936, 1159, 1162, 1164, 1167, 1170, 1175, 1178, -1338, 3437, 2196, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 1024, -1338, -1338, -1338, 938, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 1179, -1338, 1180, 1181, -1338, -1338, 195, 1134, 6120, -1338, -1338, -1338, 5881, 1143, -1338, -1338, -1338, -1338, 761, 6348, 1247, -1338, -1338, -1338, -1338, 1165, 195, -1338, -1338, 1024, -1338, -1338, 1024, 230, 1024, -1338, -1338, -1338, -1338, -1338, -1338, 9409, -1338, 234, -1338, -1338, 554, 555, 9594, 7335, 2114, 10391, 2586, -1338, -1338, 1163, 40, 1163, -1338, 761, -1338, 75, -1338, -1338, 8985, 1015, -1338, -1338, -1338, 1028, 1185, 1186, -1338, -1338, 1189, 1191, -1338, 857, 1994, -1338, 444, -1338, 3523, 938, -1338, 1195, 7605, 9703, 8841, 1196, -1338, -1338, 1192, 1200, 1182, -1338, 10391, 1205, 298, 1203, -1338, 1206, 675, 1206, -1338, -1338, 1206, 1209, -1338, 1214, 1216, 1217, 1914, -1338, -1338, -1338, 5881, -1338, -1338, -1338, -1338, 1215, 10239, 1220, 831, -1338, 10239, -1338, 831, -1338, -1338, 10239, -1338, 972, 949, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 995, 984, 9067, -1338, -1338, 7454, 1229, -1338, 975, 949, -1338, 979, 991, 949, -1338, 992, 3705, -1338, -1338, -1338, 9742, 9742, -1338, 8403, 8403, -1338, 1226, 1232, 1235, 1240, -1338, 1244, 564, 43, 1134, -1338, 831, -1338, 4637, -1338, 10239, 582, -1338, 6621, 1243, 1245, 10182, 1248, 1251, 46, 70, 103, 10239, 1252, 234, 10239, 10239, 1238, 1257, 333, 1239, -1338, -1338, -1338, 1258, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 761, 1268, 10239, -1338, 9742, 9742, 75, 1269, -1338, 9098, -1338, -1338, 767, -1338, 2586, -1338, -1338, -1338, -1338, 1729, -1338, -1338, 1270, -1338, -1338, -1338, -1338, 1273, 1994, -1338, -1338, 1256, -1338, 1097, -1338, -1338, 2342, 1271, -1338, -1338, -1338, 836, 1276, -1338, 94, 1279, 10391, 1265, 94, 94, 1293, 9447, 1023, 949, -1338, -1338, 1071, 10239, 1292, 1215, 513, -1338, -1338, 1296, -1338, -5, -1338, 1297, 1296, -1338, -1338, 1304, -1338, -1338, 1024, 1306, 1309, 6978, 1310, 1312, 1313, -1338, -1338, 1316, -1338, -1338, 1024, -1338, -1338, -1338, -1338, 1024, 10239, 10239, 984, 1315, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 10391, 10391, 1317, 1318, 1296, -1338, -1338, 761, -1338, -1338, -1338, 7839, 9703, 10239, 10239, 1381, 10239, -1338, 1299, -1338, 1303, -1338, 1305, 10239, 1311, 10239, 1014, 1314, 39, 75, 5221, 1493, -1338, -1338, 6348, 1321, 584, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 10002, -1338, 8476, 1328, -1338, -1338, 9703, 589, 606, -1338, 1327, 1325, 847, 1334, -1338, 331, -1338, -1338, -1338, -1338, 1024, 1332, -1338, -1338, 1336, 831, 1339, 320, 457, -1338, 1341, -1338, 9742, -1338, -1338, -1338, -1338, -1338, 1345, -1338, 9742, 9742, 9742, -1338, -1338, 1351, -1338, 1355, 1358, 1360, 623, 8100, 8215, -1338, -1338, 463, -1338, 1361, 1370, -1338, 8549, 841, 866, 1374, 868, 6487, -1338, -1338, -1338, 616, -1338, 881, 1375, 1379, 234, 1429, 861, -1338, -1338, 10239, -1338, 10182, 10239, -1338, -1338, -1338, 1383, 1384, -1338, -1338, -1338, 1382, -1338, -1338, -1338, -1338, -1338, -1338, 9703, 847, 1386, -1338, 1366, 847, 9742, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 1389, 1390, -1338, -1338, -1338, -1338, -1338, -1338, -1338, 1395, -1338, 1394, -1338, -1338, 10182, 334, 10239, 10182, -1338, 1398, 10239, -1338, 339, 1415, 1417, -1338, -1338, 1405, 1406, 1393, -1338, 840, -1338, -1338, -1338, 1148, 2342, 1403, -1338, 329, 10391, -1338, 897, -1338, 831, 831, 1411, 1412, 1416, 1421, -1338, -1338, 8403, 1423, -1338, 1485, 10391, 1407, -1338, -1338, 10094, -1338, 898, -1338, 1410, 10182, 1422, -1338, -1338, 1434, -1338, 1443, -1338, 1459, 1461, -1338, 1428, 9703, -1338, -1338, -1338, 847, 675, 1452, 1431, 1455, 1296, 1296, -1338, -1338, -1338, -1338, -1338, 10182, 81, -1338, 447, -1338, -1338, 7690, -1338, -1338, 1435, 10239, -1338, 10239, 7690, 234, 9627, 234, 9627, 1465, -1338, 1466, -1338, -1338, 1456, -1338, -1338, 909, -1338, -1338, -1338, 1470, 1471, -1338, 10391, 10391, -1338, -1338, 880, 254, -1338, -1338, 1453, -1338, 880, -1338, -1338, 2645, 675, -1338, -1338, 234, 9627, 234, 9627, 1480, 1458, 675, -1338, -1338, -1338, -1338, 10094, 1476, 880, 7766, 10239, 10006, 1478, 880, 1486, 2645, 2922, -1338, -1338, -1338, 1487, -1338, -1338, -1338, -1338, 8841, -1338, -1338, -1338, 9873, -1338, 10094, -1338, -1338, 1467, 9785, -1338, -1338, 10006, 234, 2922, 234, 1495, 1498, 927, -1338, 9873, -1338, -1338, -1338, 9785, -1338, -1338, -1338, 234, 234, -1338, -1338, -1338, -1338, -1338, -1338, -1338, -1338 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1338, 4260, 2887, -1338, 1463, -1338, 1198, 661, -268, 942, -1338, 552, -528, -471, -934, -784, -1338, 4910, 0, -1338, -100, 434, 472, 506, 438, 1049, 1050, 1051, 1062, 1055, -1338, 1094, -577, 5180, -896, -1338, -712, 636, -68, -593, -654, -1338, 1469, -1338, 408, -1065, -1338, -1338, 159, -1338, -1118, -880, 265, -1338, -1338, -1338, -1338, 92, -1253, -1338, -1338, -1338, -1338, -1338, -1338, 341, -1303, 36, -1338, -904, -1338, 518, 311, -1338, 196, -1338, -309, -1338, -1338, -1338, 571, -749, -1338, -1338, 16, -930, 172, 1119, -1338, -1338, -1338, -149, -1338, 71, 966, -196, 1532, 4034, -1338, -1338, 83, 174, 287, 2700, -1338, 1836, -1338, -1338, 55, 2097, -1338, 2401, 2181, -1338, -1338, -1338, -656, -1338, 962, 964, 560, 736, -249, -1338, -1338, -1338, 955, 734, -456, -1338, -116, -94, 869, -1338, -1338, -963, -979, -2, 913, 1074, 29, -1338, 719, 357, -283, -191, -146, 681, 789, -1338, 1010, -1338, 2818, 1589, -439, 940, -1338, -1338, 720, -1338, -237, -1338, 109, -1338, -1338, -1338, -1275, 435, -1338, -1338, -1338, 1183, -1338, 32, -1338, -1338, -845, -111, -1337, -112, 3150, -1338, 3946, -1338, 941, -1338, -138, 1137, -181, -176, -174, 7, -40, -33, -28, 1352, 38, 50, 77, -134, -173, -171, -166, -165, -261, -504, -490, -476, -565, -319, -523, -1338, -1338, -525, 1107, 1111, 1115, -135, 4740, -582, -583, -534, -519, -480, -1338, -505, -725, -715, -709, -592, -312, -258, -1338, -1338, 326, 26, -81, -1338, 3689, -15, -601, -356 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -525 static const yytype_int16 yytable[] = { 49, 113, 453, 149, 399, 267, 768, 97, 428, 400, 150, 401, 402, 505, 403, 151, 753, 114, 821, 404, 405, 829, 383, 384, 260, 966, 106, 106, 440, 846, 610, 1072, 49, 597, 166, 967, 50, 921, 828, 97, 357, 968, 741, 147, 1175, 975, 870, 796, 407, 49, 1383, 1141, 408, 726, 413, 76, 161, 731, 106, 1173, 1174, 421, 358, 186, 143, 1443, 209, 822, 50, 49, 193, 63, 202, 216, 342, 410, 226, 123, 820, 31, 1254, 152, 823, 69, 399, 219, 177, 76, 605, 400, 425, 401, 402, 153, 403, 106, 31, 817, 166, 404, 405, 1185, 1306, 63, 280, 113, 629, 471, 1255, 670, 633, 818, 1191, 113, 31, 69, 266, 271, 1199, 925, 154, 580, 203, 411, 832, 819, 142, 1071, 407, 679, 839, 327, 408, 413, 724, 261, 1443, 683, 262, 1181, 31, 950, 1201, 674, 676, 149, 307, 147, 1462, 475, 477, 411, 150, 1488, 161, 113, 345, 151, 1208, 1209, 209, 567, 281, 252, 329, 1182, 252, 373, 411, 409, 715, 1307, 56, 115, 70, 1203, 291, 1472, 1200, 110, 861, 862, 966, 915, 510, 186, 186, 1516, 577, 1518, 41, 42, 967, 161, 436, 568, 581, 879, 968, 584, 122, 266, 1202, 1182, 56, 953, 70, 548, 549, 49, 419, 730, 411, 1238, 476, 817, 161, 1242, 760, 668, 1204, 209, 1060, 152, 327, 149, 519, 721, 443, 818, 743, 821, 150, 31, 1249, 153, 735, 151, 210, 307, 212, 220, 144, 819, 1018, 548, 1082, 439, 31, 833, 1175, 49, 1530, 836, 493, 933, 436, 494, 97, 271, 589, 1017, 154, 413, 271, 266, 266, 421, 665, 471, 993, 113, 666, 161, 853, 146, 1143, 106, 856, 1545, 822, 548, 31, 463, 610, 657, 181, 50, 1447, 471, 342, 1005, 166, 1190, 307, 823, 800, 471, -236, -236, 1175, 483, 168, 481, 155, 411, 76, 307, 500, 597, 817, 76, 527, 672, 597, 1173, 1174, 357, 830, 677, 602, 476, 63, 572, 818, 1095, 169, 472, 147, 849, 599, 1086, 806, 850, 69, 373, 832, 447, 819, 358, 1079, 113, 665, 569, 413, 345, 666, 996, 171, 603, 621, 821, 837, 829, 602, 201, 460, 229, 673, 675, 230, 736, 1191, 234, 626, 236, 748, -292, 626, -236, 1072, 113, 245, 900, 855, 163, 1118, 177, 1402, 1403, 988, 737, 1447, 1402, 1403, 557, 558, 1447, 714, 247, 110, 1196, 110, 441, 630, 442, 266, 765, 634, 1134, 822, 41, 42, 41, 42, 286, 186, 1447, 1120, 846, 357, 327, 327, 373, 1447, 823, 41, 42, 851, 1175, 559, 560, 852, 56, 266, 70, 307, 307, 1121, 766, 266, 1336, 358, 626, 715, 1438, 577, 577, 519, 163, 1529, 1329, 514, 519, 342, 1427, 519, 583, 1404, 411, 770, 771, 772, 1413, 113, 250, 1432, 1433, 1205, 1428, 1540, 1330, 703, 252, 1128, 377, 1071, 1544, 1334, 954, 1337, 1339, 266, 76, 110, 357, 139, 140, -520, 327, 266, 378, 626, -10, 49, 41, 42, 373, 720, 472, 578, 97, 1021, 76, 113, -444, 579, 358, 327, 229, 789, 76, 871, 884, 1106, 411, 307, 610, 113, 472, 106, 307, 1139, 307, 307, 1191, 243, 472, 263, 1018, 50, 751, 1191, 885, 212, 113, 345, 888, 1248, 110, 1161, 1163, 872, 471, 643, 435, 1134, 553, 554, 76, 41, 42, 1240, 1366, 881, 883, 110, 998, 139, 238, 912, 873, 806, 712, 914, 63, 851, 41, 42, 930, 1102, 1060, 387, 1473, 327, 1016, 498, 69, 1338, 390, 392, 572, 572, 1191, -471, 684, -471, 1474, 388, 307, -445, 579, 1128, 239, 1103, 391, 393, 915, 240, 276, 626, 345, 394, -471, 715, 621, 1500, 435, 252, 329, 411, 603, 1505, 603, 1280, 1281, 847, 110, 395, 139, 140, 599, 2, 206, 4, 5, 6, 7, 41, 42, 523, 626, 1525, -124, 550, -124, 626, 1532, 621, -124, 551, 552, 626, 163, 278, 626, 626, 626, 37, 229, 806, 234, 40, 916, -124, -124, 866, 212, 279, 41, 42, 848, 714, 626, 1376, 266, 56, 974, 70, 917, 577, 48, 112, 1089, 342, 1089, 918, 863, 330, 703, 916, 918, 1029, 331, 808, 43, -106, 35, 1016, 36, -106, 878, 919, 45, 46, 113, 1083, 1084, 909, 597, 112, 112, 1076, 48, 372, 357, 1478, 332, 1188, 1364, 1188, 705, 333, 1478, 48, 1320, 1401, 706, 1114, 1409, 48, 626, 935, 621, 1189, 334, 1312, 358, 48, 720, 720, 1321, 1322, 1036, 48, 335, 399, 48, 376, 229, 48, 400, 748, 401, 402, 1352, 403, 76, 1323, 1353, -3, 404, 405, 112, 112, 113, 345, 110, 1367, 141, 751, 751, 1446, 472, 1526, 722, 371, 1450, 41, 42, 389, 723, 500, 76, 528, 529, 530, 48, 555, 556, 48, 407, 385, 1412, 571, 408, 411, 48, 413, 472, 692, 1377, 45, 46, 966, 1471, 561, 562, 531, 703, 532, 397, 533, 534, 967, 572, 426, 442, 732, 703, 968, 241, 244, 626, 733, 626, 409, 1001, 48, 1429, 626, 345, 714, 703, 603, 427, 48, 712, 1165, 432, 750, 48, 411, 450, 342, 1440, 603, -368, 45, 46, 986, 983, 523, 110, 523, 139, 140, 523, 715, -397, 523, 419, 661, 411, 41, 42, 48, 48, 37, 954, 174, 175, 40, 954, 954, 1146, 1480, 484, 1481, 41, 42, 747, 48, 738, 504, 739, 806, 748, 740, 1539, 48, 744, 1158, 212, 894, 1539, 307, 329, 411, 48, 748, 110, 48, 139, 140, 372, 1539, 212, 461, 112, 1539, 1186, 41, 42, 808, 1498, 1440, 887, 626, 411, 462, 548, 106, 110, 112, 113, 345, 909, 112, 909, 1134, 1527, 48, 112, 41, 42, 896, 715, 727, 1373, 1374, 113, 748, 728, 1402, 1403, 48, 48, 1172, 291, 327, 76, 982, 48, 935, 935, 525, 995, 983, 720, 48, 508, 510, 706, 113, 307, 1236, 63, 513, 665, 413, 1360, 579, 666, 912, 1422, 983, 748, 914, 69, 1107, 129, 457, 130, 131, 132, 934, 116, 602, 751, 106, 1327, 41, 42, 45, 46, 1361, 712, 1363, 564, 1512, 212, 748, 527, 748, -293, 847, 773, 774, 48, 1246, 1368, 8, 9, 10, 11, 12, 748, 1231, 781, 782, 345, 8, 9, 10, 11, 12, 1430, 1448, 48, 48, 692, 563, 1427, 748, 159, 565, 703, 703, 1494, 498, 31, 626, 626, 566, 1495, 48, 775, 776, 1128, 48, 31, 8, 9, 10, 11, 12, 1550, 481, 329, 411, 644, 307, 579, -294, 830, 329, 602, 56, 34, 70, 8, 9, 10, 11, 12, 714, 48, 1384, 34, 338, 31, 1384, 777, 778, 779, 780, 48, 106, 569, -441, 258, 1299, 1300, 1301, 703, 703, 587, 667, 159, 31, 1145, 113, 411, 1157, 48, 411, 909, 1160, 34, 602, 48, 909, 48, 37, 590, -3, 76, 40, 645, 1162, 935, 602, 658, 659, 41, 42, 639, 34, 266, 660, 37, 323, 472, 662, 40, 1108, 663, 664, 57, 57, 339, 41, 42, 626, 1193, 1288, 1289, 112, 1291, 342, 43, 1245, 48, 411, 257, 1296, 96, 1298, 45, 46, 48, 669, 693, 694, 48, 696, 698, 719, 48, 345, 57, 112, 749, 112, 734, 45, 46, -240, 1463, 745, 2, 206, 4, 5, 6, 7, 757, 809, 96, 37, 430, 174, 175, 40, 434, 810, 813, 442, 824, 148, 41, 42, -12, 1355, 57, 96, 869, 57, 112, 228, -13, 271, 113, 112, 875, 868, 895, 897, 111, 189, 898, -418, 96, 902, 323, 96, 376, 905, 219, 725, 113, 729, 723, 56, 307, 70, 923, -524, 106, 37, 712, 174, 175, 40, 1316, 35, 938, 36, 626, 945, 41, 42, 113, 947, 951, 952, 434, 958, 959, 488, 106, 960, 961, 112, -295, 962, 692, 963, 1107, 979, 48, 8, 9, 10, 11, 12, 703, 1038, 106, 521, 990, 48, 991, 48, 703, 703, 703, 992, 1007, 76, 1425, 1008, 159, 1009, 348, 1073, 1010, 626, 626, 1011, 31, 1538, 48, 96, 1012, 63, 271, 1013, 1024, -406, -405, 307, 908, 1408, 1096, 1075, 96, 69, 48, 712, 1098, 1097, 1099, 112, 1105, 1115, 588, 748, 34, 1116, 594, 1117, 48, 1119, 112, 48, 112, 106, 1122, 973, 1124, 398, 189, 1125, 113, 1126, 1127, 399, 703, 627, 1130, 1133, 400, 631, 401, 402, 339, 403, 1155, 57, 1107, 1176, 404, 405, 1178, 96, 76, 1177, 48, 1179, 106, 1194, 112, 1195, 112, 1180, 1197, 96, 112, 1198, 1206, 867, 472, 210, 220, 212, 112, 1210, 1211, 57, 1213, 407, -3, 1511, 1193, 408, 704, 1218, 1223, 48, 48, 266, 1228, 493, 1226, 1232, 56, 96, 70, 1237, 1239, 323, 323, 48, 37, 665, 1241, 626, 40, 666, 162, 479, 1244, 1250, 1108, 41, 42, 692, 1256, 1424, 920, 1252, 922, 1258, 194, 1260, 457, 217, 1261, 688, 227, 1262, 113, 1263, 1264, 1266, 1273, 1290, 1282, 1283, 1293, 814, 116, 602, 1294, 1311, 1295, 1318, 1107, 45, 46, 1324, 1297, 1328, 113, 1305, 1332, 1333, 106, 465, 1335, 113, 1340, 113, 1326, 113, 1342, 488, 441, 323, 442, 488, 1348, 56, 96, 70, 1349, 1350, 149, 1351, 106, 521, 1358, 521, 48, 150, 521, 106, 323, 521, 151, 1359, 1362, 1369, 1510, 604, 48, 1370, 1301, 113, 339, 113, 1378, 1379, 1386, 1380, 1108, 1387, 162, 76, 1396, 1397, 113, 327, -407, 1400, 76, 1411, 1510, 1510, 1415, 374, 1417, 1419, 1420, 472, 161, 1426, 307, 176, 1434, 1435, 472, 173, 1421, 1436, 1439, 1193, 106, 644, 1437, 66, 117, 1510, 1193, 112, 1444, 162, 1353, 893, 373, 1449, 189, 1453, 323, 2, 206, 4, 5, 6, 7, 348, 1455, 1451, 1457, 804, 1459, 76, 48, 1461, 162, 1466, 1467, 66, 1468, 253, 1479, 48, 176, 48, 1493, 176, 444, 472, 1489, 1491, 112, 528, 529, 530, 160, 1496, 1497, 704, 1504, 1193, 845, 645, 1519, 1520, 1524, 594, 1531, 1041, 1108, 1533, 1535, 854, 1541, 48, 221, 531, 57, 532, 1548, 533, 1309, 1549, 890, 1212, 35, 783, 36, 784, 1132, 785, 56, 176, 70, 112, 96, 787, 1310, 56, 604, 70, 37, 786, 183, 184, 40, 1499, 1414, 644, 1091, 1551, 259, 41, 42, 1243, 1388, 112, 1372, 1217, 348, 112, 903, 1482, 904, 1090, 688, 1225, 926, 1129, 215, 1094, 802, 1037, 874, 989, 1104, 417, 940, 601, 111, 602, 717, 1319, 0, 994, 242, 45, 46, 948, 56, 0, 70, 792, 328, 374, 176, 793, 0, 1006, 437, 794, 259, 350, 488, 0, 0, 645, 0, 0, 445, 112, 0, 0, 0, 0, 0, 0, 0, 704, 0, 215, 0, 0, 0, 348, 339, 0, 0, 704, 0, 0, 0, 406, 0, 0, 0, 0, 0, 0, 0, 761, 0, 704, 0, 0, 767, 0, 424, 112, 176, 429, 431, 816, 0, 604, 160, 176, 0, 0, 0, 0, 0, 48, 215, 0, 0, 0, 48, 348, 348, 348, 0, 374, 0, 0, 0, 448, 520, 0, 0, 451, 0, 452, 0, 48, 997, 348, 0, 0, 0, 804, 459, 0, 0, 1486, 465, 1486, 66, 0, 0, 0, 0, 473, 0, 924, 0, 1041, 0, 0, 0, 0, 0, 480, 0, 0, 37, 0, 183, 184, 40, 431, 0, 0, 0, 215, 176, 41, 42, 0, 0, 1486, 0, 1486, 0, 0, 0, 0, 0, 0, 913, 0, 0, 176, 0, 348, 0, 176, 0, 0, 0, 74, 0, 907, 0, 411, 8, 9, 10, 11, 12, 45, 46, 215, 112, 0, 0, 880, 215, 882, 0, 816, 604, 0, 908, 0, 0, 0, 0, 804, 0, 0, 0, 74, 0, 31, 339, 48, 259, 0, 0, 0, 595, 0, 0, 0, 0, 987, 623, 0, 0, 0, 688, 1170, 1171, 0, 0, 0, 0, 0, 176, 628, 0, 34, 0, 628, 0, 0, 259, 929, 222, 0, 1286, 0, 488, 1109, 323, 681, 112, 0, 112, 112, 0, 0, 0, 0, 0, 348, 0, 8, 9, 10, 11, 12, 0, 348, 0, 704, 704, 0, 0, 0, 0, 707, 215, 571, 0, 411, 0, 0, 0, 1220, 1221, 45, 46, 473, 816, 0, 31, 0, 0, 0, 0, 0, 1031, 0, 0, 0, 604, 0, 350, 0, 845, 0, 0, 473, 0, 0, 0, 0, 520, 0, 0, 473, 0, 520, 34, 0, 520, 0, 0, 0, 0, 0, 0, 704, 704, 353, 0, 0, 57, 699, 0, 0, 431, 0, 0, 924, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 713, 0, 66, 0, 0, 0, 215, 0, 0, 750, 431, 411, 0, 0, 431, 0, 0, 45, 46, 31, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 1085, 0, 913, 924, 688, 0, 0, 112, 112, 176, 0, 0, 0, 259, 350, 0, 0, 34, 215, 57, 0, 0, 449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604, 0, 0, 0, 0, 0, 1142, 0, 0, 176, 0, 74, 0, 112, 804, 0, 74, 0, 0, 0, 0, 77, 0, 0, 0, 176, 0, 934, 795, 602, 0, 0, 0, 0, 0, 45, 46, 0, 37, 176, 183, 184, 40, 0, 0, 0, 628, 807, 0, 41, 42, 0, 1341, 77, 0, 0, 0, 1031, 0, 826, 1343, 1344, 1345, 892, 1317, 348, 348, 0, 0, 0, 48, 112, 899, 0, 0, 185, 901, 595, 0, 0, 112, 1123, 595, 45, 46, 57, 0, 0, 628, 0, 223, 350, 350, 350, 48, 48, 704, 0, 0, 0, 0, 339, 0, 1135, 704, 704, 704, 1135, 215, 350, 37, 222, 183, 184, 40, 0, 0, 0, 0, 48, 176, 41, 42, 1109, 1389, 0, 0, 699, 0, 0, 8, 9, 10, 11, 12, 0, 215, 924, 473, 0, 0, 215, 0, 0, 0, 0, 0, 907, 913, 411, 0, 0, 0, 913, 0, 45, 46, 1135, 0, 31, 0, 0, 0, 0, 473, 0, 0, 350, 704, 0, 0, 214, 0, 0, 0, 0, 939, 355, 74, 431, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 353, 183, 184, 40, 0, 74, 924, 924, 259, 713, 41, 42, 0, 74, 969, 0, 0, 0, 0, 215, 0, 0, 1109, 0, 0, 0, 0, 0, 0, 214, 0, 353, 0, 215, 0, 0, 601, 0, 602, 0, 0, 0, 57, 57, 45, 46, 0, 0, 0, 353, 0, 74, 0, 0, 699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 699, 57, 350, 0, 628, 0, 0, 1004, 214, 628, 807, 0, 0, 0, 699, 77, 0, 0, 0, 57, 77, 0, 0, 0, 1015, 0, 0, 0, 176, 353, 0, 0, 0, 0, 0, 0, 1081, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1109, 0, 26, 27, 28, 0, 0, 215, 348, 348, 0, 31, 79, 214, 0, 0, 0, 57, 0, 66, 0, 0, 57, 0, 0, 37, 0, 183, 184, 40, 0, 1485, 0, 1485, 0, 0, 41, 42, 353, 34, 0, 628, 0, 0, 79, 0, 207, 39, 259, 713, 0, 214, 1087, 0, 0, 57, 214, 0, 0, 223, 0, 1135, 265, 1135, 1135, 0, 0, 1485, 0, 1485, 45, 46, 0, 0, 0, 0, 0, 0, 1101, 0, 0, 224, 353, 353, 353, 0, 431, 117, 0, 45, 46, 924, 0, 0, 0, 0, 323, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 77, 0, 348, 74, 0, 0, 0, 1207, 0, 0, 0, 0, 0, 0, 0, 355, 214, 0, 595, 0, 77, 0, 0, 0, 0, 0, 0, 57, 77, 74, 0, 429, 353, 0, 0, 0, 699, 699, 0, 350, 350, 0, 356, 0, 0, 0, 355, 0, 0, 57, 0, 924, 924, 0, 0, 0, 57, 0, 0, 1192, 0, 0, 0, 0, 355, 0, 77, 353, 0, 0, 0, 0, 0, 1135, 1135, 0, 0, 0, 215, 0, 0, 8, 9, 10, 11, 12, 0, 8, 9, 10, 11, 12, 0, 0, 699, 699, 0, 214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 355, 0, 31, 1464, 353, 0, 0, 0, 31, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 0, 0, 222, 0, 479, 353, 0, 0, 0, 353, 79, 34, 214, 0, 628, 79, 37, 34, 183, 184, 40, 0, 37, 0, 183, 184, 40, 41, 42, 0, 0, 0, 176, 41, 42, 0, 0, 0, 0, 0, 713, 0, 1513, 0, 0, 0, 355, 0, 0, 0, 0, 1521, 0, 907, 0, 411, 0, 0, 0, 185, 0, 45, 46, 0, 0, 0, 0, 45, 46, 0, 74, 0, 0, 0, 0, 37, 0, 183, 184, 40, 0, 0, 0, 1287, 0, 0, 41, 42, 0, 0, 355, 355, 355, 0, 0, 0, 0, 0, 0, 0, 353, 259, 0, 0, 0, 66, 0, 0, 355, 0, 224, 0, 1509, 0, 411, 0, 0, 699, 0, 713, 45, 46, 0, 117, 213, 0, 355, 0, 1371, 0, 0, 0, 0, 232, 214, 0, 0, 77, 0, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 699, 0, 0, 0, 0, 0, 0, 0, 699, 699, 699, 0, 0, 214, 77, 0, 0, 355, 214, 350, 350, 0, 0, 0, 0, 0, 213, 86, 79, 0, 0, 0, 0, 1192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 79, 0, 0, 0, 355, 176, 0, 0, 79, 0, 0, 86, 0, 0, 0, 0, 353, 353, 117, 353, 353, 213, 0, 0, 699, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 0, 74, 0, 214, 0, 0, 356, 0, 79, 0, 225, 355, 0, 0, 0, 0, 0, 214, 0, 0, 0, 355, 0, 355, 0, 0, 0, 0, 223, 0, 0, 355, 0, 0, 0, 355, 353, 353, 0, 0, 0, 0, 0, 0, 213, 1483, 0, 1487, 0, 0, 356, 0, 0, 350, 0, 8, 9, 10, 11, 12, 0, 0, 0, 167, 0, 172, 0, 0, 178, 179, 180, 0, 182, 0, 0, 0, 0, 0, 117, 0, 0, 1515, 213, 1517, 31, 0, 233, 213, 0, 0, 0, 0, 0, 0, 0, 0, 77, 363, 248, 249, 1192, 0, 499, 0, 0, 0, 0, 1192, 0, 353, 0, 214, 34, 0, 0, 356, 0, 37, 0, 183, 184, 40, 0, 0, 0, 1546, 355, 1547, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1554, 1555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 0, 1509, 0, 411, 0, 1192, 356, 356, 356, 45, 46, 0, 1534, 0, 0, 0, 0, 0, 0, 0, 213, 74, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 0, 86, 0, 0, 356, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 353, 0, 0, 0, 0, 0, 0, 0, 353, 353, 353, 0, 0, 0, 79, 0, 0, 356, 0, 353, 353, 355, 355, 31, 355, 355, 0, 0, 0, 0, 0, 0, 0, 74, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 34, 356, 213, 0, 0, 37, 0, 183, 184, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 353, 0, 225, 0, 0, 0, 213, 355, 355, 124, 127, 128, 0, 0, 0, 0, 0, 0, 214, 0, 0, 265, 0, 0, 0, 356, 0, 0, 0, 45, 46, 0, 0, 0, 0, 356, 0, 356, 0, 0, 0, 0, 224, 0, 0, 356, 0, 0, 0, 356, 0, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 0, 0, 592, 0, 600, 353, 0, 86, 0, 0, 0, 0, 0, 0, 0, 624, 625, 0, 355, 254, 0, 255, 363, 546, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 74, 363, 0, 0, 0, 0, 0, 74, 0, 223, 0, 0, 0, 0, 213, 0, 0, 0, 0, 363, 0, 86, 0, 0, 0, 0, 356, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 355, 0, 355, 0, 213, 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, 74, 0, 415, 416, 0, 363, 0, 420, 0, 422, 423, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 355, 355, 355, 0, 0, 0, 0, 0, 0, 214, 0, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 356, 356, 0, 356, 356, 0, 0, 0, 355, 0, 0, 0, 0, 499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 1014, 0, 0, 8, 9, 10, 11, 12, 0, 363, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 0, 0, 363, 0, 0, 282, 283, 31, 284, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 86, 0, 0, 285, 34, 0, 0, 213, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 86, 0, 0, 363, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 77, 0, 0, 0, 294, 0, 379, 77, 0, 356, 0, 0, 344, 46, 296, 297, 298, 299, 0, 0, 31, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 927, 0, 928, 34, 0, 0, 0, 224, 37, 931, 932, 0, 40, 77, 937, 0, 0, 0, 0, 41, 42, 0, 363, 0, 0, 0, 942, 0, 0, 79, 0, 946, 363, 0, 363, 0, 0, 0, 0, 225, 0, 356, 363, 356, 0, 719, 363, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 1166, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 363, 797, 798, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 165, 0, 0, 0, 282, 283, 31, 284, 1025, 1026, 1027, 1028, 0, 1030, 0, 0, 831, 218, 0, 834, 835, 0, 838, 0, 840, 841, 0, 0, 1074, 842, 843, 0, 0, 285, 34, 0, 0, 0, 0, 286, 0, 0, 1080, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 356, 0, 0, 165, 0, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 0, 1100, 0, 1167, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 165, 0, 363, 363, 0, 363, 363, 0, 0, 0, 369, 79, 0, 0, 375, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 1131, 0, 0, 0, 0, 0, 1140, 0, 0, 0, 0, 1144, 0, 0, 0, 0, 1148, 0, 1149, 0, 0, 0, 1151, 0, 1152, 1153, 0, 213, 1156, 0, 363, 363, 0, 165, 0, 0, 0, 1168, 0, 79, 971, 972, 0, 0, 0, 218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1183, 1184, 0, 0, 0, 0, 0, 0, 165, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1214, 0, 0, 1216, 0, 0, 375, 0, 0, 0, 0, 31, 0, 165, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 126, 126, 126, 0, 0, 0, 0, 0, 0, 0, 0, 524, 0, 0, 34, 213, 0, 0, 0, 0, 0, 1230, 0, 0, 165, 0, 0, 1234, 1235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0, 0, 0, 0, 1251, 0, 0, 0, 1253, 0, 0, 0, 0, 1257, 0, 0, 0, 0, 86, 598, 0, 0, 0, 0, 622, 0, 1265, 0, 0, 126, 363, 126, 363, 0, 0, 0, 0, 0, 0, 1272, 0, 1274, 1275, 1276, 1277, 0, 0, 0, 0, 0, 0, 0, 0, 1092, 0, 0, 275, 1284, 0, 1285, 0, 0, 363, 172, 0, 0, 0, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 0, 211, 0, 0, 0, 0, 0, 0, 1313, 1314, 231, 86, 235, 0, 237, 0, 165, 165, 0, 0, 0, 246, 0, 369, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 126, 0, 126, 126, 0, 0, 0, 126, 524, 126, 126, 0, 0, 0, 363, 0, 211, 0, 235, 237, 246, 0, 1346, 1347, 0, 0, 0, 0, 0, 0, 0, 0, 1357, 0, 0, 0, 716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 524, 0, 524, 0, 0, 524, 0, 165, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 369, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1392, 1222, 1393, 1394, 1395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1399, 0, 0, 0, 0, 0, 0, 0, 0, 1410, 0, 0, 0, 211, 0, 235, 237, 246, 0, 0, 0, 86, 0, 0, 0, 0, 165, 0, 86, 0, 0, 0, 0, 0, 1431, 0, 0, 0, 369, 0, 0, 0, 812, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 156, 0, 0, 0, 0, 0, 598, 0, 0, 497, 0, 598, 0, 0, 0, 1469, 1470, 86, 0, 0, 369, 369, 369, 0, 0, 0, 0, 0, 1475, 0, 0, 0, 0, 0, 0, 1475, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 251, 0, 0, 0, 0, 0, 0, 0, 0, 1308, 256, 211, 0, 0, 0, 0, 0, 0, 0, 0, 1508, 0, 0, 524, 1514, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 235, 237, 0, 0, 0, 0, 0, 0, 246, 0, 0, 369, 0, 936, 1536, 0, 1537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 0, 1552, 1553, 716, 0, 0, 0, 0, 211, 1556, 1557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 0, 0, 0, 211, 282, 283, 0, 284, 211, 0, 211, 0, 0, 433, 0, 0, 0, 0, 0, 0, 0, 0, 438, 0, 0, 0, 0, 211, 0, 0, 211, 211, 446, 285, 0, 0, 0, 369, 211, 286, 0, 622, 0, 287, 0, 369, 288, 289, 290, 291, 41, 42, 211, 292, 293, 0, 0, 464, 0, 211, 0, 0, 474, 0, 0, 0, 126, 126, 0, 0, 0, 0, 0, 0, 0, 482, 294, 0, 379, 0, 0, 492, 0, 496, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 126, 0, 788, 126, 126, 526, 126, 0, 126, 126, 0, 0, 0, 126, 126, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 716, 0, 0, 586, 0, 0, 0, 0, 591, 0, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 211, 0, 0, 636, -296, 165, 0, 637, 638, 0, 640, 0, 0, 0, 0, 0, 0, 651, 652, 0, 653, 654, 0, 655, 0, 656, 0, 0, 211, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 586, 0, 0, 282, 283, 0, 284, 0, 671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 126, 285, 682, 0, 0, 0, 0, 286, 0, 369, 369, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 708, 0, 0, 211, 0, 0, 711, 0, 0, 0, 0, 464, 0, 0, 0, 0, 294, 211, 379, 0, 0, 380, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 497, 0, 0, 0, 524, 0, 0, 0, 0, 0, 746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 764, 0, -519, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 211, 30, 791, 0, 31, 32, 0, 0, 0, 0, 716, 801, 211, 0, 0, 0, 0, 0, 803, 0, 0, 0, 0, 0, 811, 0, 0, 0, 0, 33, 126, 211, 34, 825, 35, 126, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 364, 0, 0, 0, 0, 0, 865, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 414, 0, 811, 0, 0, 0, 0, 0, 0, 0, 906, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 369, 369, 26, 27, 28, 0, 211, 0, 0, 218, 251, 31, 0, 0, 0, 0, 0, 0, 0, 0, 943, 944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 34, 0, 414, 0, 0, 37, 0, 38, 39, 40, 0, 0, 0, 0, 981, 0, 41, 42, 0, 126, 985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 211, 157, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 414, 582, 0, 414, 585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 369, 0, 614, 1019, 0, 0, 0, 0, 0, 0, 1020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 632, 0, 1022, 341, 1023, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 1035, 0, 0, 0, 0, 0, 1039, 0, 0, 211, 0, 0, 414, 0, 0, 0, 414, 524, 1077, 524, 0, 1078, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 524, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507, 0, 509, 512, 0, 0, 0, 0, 0, 0, 515, 516, 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, 509, 509, 414, 0, 0, 364, 0, 591, 0, 211, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 509, 0, 0, 0, 1150, 31, 414, 0, 0, 0, 341, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 509, 0, 37, 0, 336, 337, 40, 0, -296, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 414, 414, 0, 0, 0, 0, 526, 0, 0, 0, 211, 0, 1215, 0, 0, 321, 0, 0, 0, 805, 364, 338, 0, 0, 0, 346, 0, 45, 46, 0, 614, 0, 614, 614, 0, 0, 0, 382, 382, 614, 0, 0, 0, 0, 0, 0, 1227, 0, 0, 844, 364, 1229, 0, 0, 0, 364, 0, 0, 0, 1233, 0, 0, 0, 0, 364, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 414, 886, 0, 0, 414, 889, 0, 1259, 0, 0, 0, 891, 0, 0, 0, 0, 0, 0, 0, 1267, 0, 321, 1268, 0, 1269, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 1278, 1279, 0, 0, 0, 0, 0, 478, 0, 0, 0, 0, 0, 0, 0, 364, 614, 0, 0, 0, 0, 0, 1292, 0, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 0, 0, 0, 0, 0, 0, 0, 341, 364, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1331, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 0, 414, 0, 0, 0, 31, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 805, 364, 0, 0, 614, 0, 614, 0, 0, 0, 382, 0, 0, 0, 0, 0, 614, 34, 211, 0, 0, 0, 37, 0, 336, 337, 40, 0, -296, 0, 1381, 0, 1382, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1390, 0, 1391, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 635, 0, 338, 0, 1398, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1416, 1418, 0, 0, 0, 0, 0, 0, 0, 805, 0, 1423, 0, 0, 1233, 0, 341, 364, 414, 0, 414, 0, 0, 0, 414, 710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1445, 0, 0, 509, 0, 0, 0, 0, 0, 1452, 614, 614, 1454, 0, 1456, 1458, 1460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 742, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 759, 0, 0, 414, 0, 742, 0, 0, 742, 0, 0, 0, 1490, 0, 1492, 0, 1233, 0, 0, 0, 0, 769, 0, 0, 414, 1147, 0, 0, 0, 0, 0, 1503, 0, 0, 0, 364, 0, 0, 0, 0, 0, 414, 1159, 790, 614, 614, 1164, 0, 0, 0, 0, 0, 0, 799, 0, 0, 364, 364, 0, 0, 346, 0, 0, 0, 0, 759, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 509, 0, 864, 0, 0, 0, 0, 414, 0, 414, 382, 0, 0, 0, 414, 0, 0, 33, 0, 0, 34, 0, 35, 614, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 509, 805, 414, 1247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, -523, 0, 45, 46, 364, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 759, 0, 965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 976, 0, 0, 0, 0, 0, 984, 0, 0, 285, 0, 0, 0, 341, 509, 641, 0, 139, 140, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 1003, 0, 294, 346, 642, 0, 643, 380, 0, 0, 45, 46, 296, 297, 298, 299, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1033, 0, 0, 0, 382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 346, 26, 27, 28, 29, 509, 509, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 321, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 364, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 0, 0, 0, 282, 283, 976, 284, 0, 0, 742, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 1154, 0, 285, 0, 0, 0, 0, 0, 286, 0, 0, 1169, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 0, 1187, 0, 0, 0, 282, 283, 414, 284, 0, 0, 294, 0, 379, 0, 0, 976, 976, 758, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 414, 414, 0, 285, 0, 0, 1219, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 509, 379, 0, 0, 973, 0, 0, 45, 46, 296, 297, 298, 299, 0, 976, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1270, 1271, 0, 0, 0, 0, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 509, 509, 30, 282, 283, 31, 1042, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 0, 1053, 0, 0, 0, 1054, 1055, 0, 33, 0, 285, 34, 0, 35, 0, 36, 1056, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1057, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1058, 0, 0, 0, 0, -131, 0, 0, 0, 0, 0, 1375, 0, 0, 742, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 1057, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, -131, 0, 0, 0, 0, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 282, 283, 31, 284, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -297, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 31, 38, 39, 287, 0, 321, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 294, 0, 44, -297, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 343, 0, 0, 0, 0, 758, 344, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 207, 39, 0, 0, 294, 0, 964, 0, 0, 0, 0, 758, 344, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 964, 0, 0, 0, 0, 758, 45, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 343, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 999, 0, 0, 0, 0, 0, 1000, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 964, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 205, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 485, 486, 487, 34, 0, 35, 31, 36, 37, 0, 207, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 43, 0, 208, 0, 0, 0, 0, 0, 45, 46, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -296, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 44, 30, 0, 0, 31, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 205, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 44, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 208, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 207, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 208, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, -403, 678, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 635, 36, 338, 0, 38, 39, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 678, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 685, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1356, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 678, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 686, 26, 27, 28, 687, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 270, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 678, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 593, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 0, 0, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 517, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 294, -37, 295, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 295, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 0, 31, 685, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 157, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 686, 26, 27, 28, 1093, 0, 45, 46, 282, 283, 31, 284, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 285, 34, 0, 0, 31, 685, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 593, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 686, 26, 27, 28, 1224, 0, 45, 46, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 285, 34, 26, 27, 28, 0, 286, 0, 38, 39, 287, 31, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 379, 38, 39, 0, 0, 0, 45, 46, 296, 297, 298, 299, 467, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 257, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 37, 0, 38, 39, 40, 31, 0, 0, 0, -3, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 44, 207, 39, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 34, 26, 27, 28, 43, 37, 270, 336, 337, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 34, 26, 27, 28, 635, 0, 338, 38, 39, 0, 31, -296, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 0, 0, 635, 31, 338, 38, 39, 0, 0, -296, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 338, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 157, 207, 39, 0, 31, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 0, 0, 0, 31, 270, 38, 39, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 338, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 686, 38, 39, 0, 31, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 593, 38, 39, 0, 0, 31, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 44, 0, 38, 39, 0, 0, 45, 46, 282, 283, 0, 284, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 1528, 1053, 0, 0, 0, 1054, 1055, 0, 33, 0, 285, -416, 0, 0, 0, 0, 1056, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1058, 284, 1043, 0, 1044, -131, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 0, 1053, 0, 0, 0, 1054, 1055, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1056, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1058, 0, 0, 0, 0, -131, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 282, 283, 0, 284, 1043, 0, 1044, 1402, 1403, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 1528, 1053, 0, 0, 0, 1054, 1055, 34, 33, 35, 285, 36, 0, 0, 38, 39, 1056, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 1315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1058, 284, 1043, 0, 1044, 1402, 1403, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 0, 1053, 0, 0, 0, 1054, 1055, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1056, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1058, 284, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 0, 0, 1053, 0, 0, 0, 1054, 1055, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1056, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 1058, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 294, 0, 379, 0, 282, 283, 0, 284, 709, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 294, 0, 379, 0, 282, 283, 0, 284, 344, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 506, 0, 0, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 294, 0, 0, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 174, 175, 40, 0, 0, 0, 0, 0, 0, 41, 42, 205, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 467, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1338)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 239, 43, 185, 116, 534, 0, 204, 185, 43, 185, 185, 281, 185, 43, 521, 1, 601, 185, 185, 603, 168, 169, 105, 750, 0, 1, 219, 621, 349, 876, 32, 345, 49, 750, 0, 693, 603, 32, 156, 750, 513, 43, 1023, 757, 647, 572, 186, 49, 1325, 985, 186, 492, 189, 0, 49, 496, 32, 1022, 1023, 196, 156, 63, 32, 1402, 66, 601, 32, 69, 63, 0, 28, 66, 155, 187, 69, 109, 601, 39, 85, 43, 601, 0, 265, 69, 57, 32, 349, 265, 201, 265, 265, 43, 265, 69, 39, 601, 113, 265, 265, 1035, 63, 32, 51, 105, 364, 256, 113, 418, 368, 601, 1042, 113, 39, 32, 116, 117, 72, 696, 43, 109, 78, 111, 604, 601, 109, 876, 266, 438, 610, 146, 266, 268, 490, 106, 1473, 446, 109, 96, 39, 734, 72, 426, 427, 185, 146, 147, 1423, 261, 262, 111, 185, 1456, 147, 155, 156, 185, 1054, 1055, 160, 95, 109, 109, 110, 122, 109, 160, 111, 64, 482, 132, 0, 1, 0, 72, 82, 96, 132, 72, 636, 637, 907, 688, 284, 185, 186, 1490, 323, 1492, 83, 84, 907, 186, 209, 129, 331, 653, 907, 334, 82, 201, 132, 122, 32, 111, 32, 307, 308, 209, 109, 494, 111, 1117, 109, 719, 209, 1121, 111, 410, 117, 221, 876, 185, 239, 265, 294, 488, 221, 719, 513, 814, 265, 39, 1130, 185, 504, 265, 66, 239, 66, 69, 11, 719, 826, 345, 902, 218, 39, 605, 1229, 251, 1505, 609, 128, 711, 271, 131, 251, 259, 341, 826, 185, 398, 264, 265, 266, 402, 406, 418, 795, 271, 406, 266, 630, 109, 988, 251, 634, 1532, 814, 381, 39, 251, 603, 396, 116, 251, 1406, 438, 371, 814, 307, 1042, 294, 814, 579, 446, 44, 45, 1279, 272, 107, 109, 112, 111, 251, 307, 279, 621, 814, 256, 82, 424, 626, 1278, 1279, 433, 109, 430, 111, 109, 251, 323, 814, 926, 131, 256, 328, 112, 345, 908, 590, 116, 251, 328, 816, 228, 814, 433, 110, 341, 480, 131, 479, 345, 480, 803, 114, 349, 350, 934, 109, 935, 111, 3, 247, 70, 426, 427, 73, 110, 1292, 76, 364, 78, 116, 3, 368, 115, 1215, 371, 85, 682, 632, 49, 953, 348, 44, 45, 130, 130, 1500, 44, 45, 90, 91, 1505, 482, 116, 72, 1045, 72, 221, 365, 221, 396, 79, 369, 79, 934, 83, 84, 83, 84, 72, 406, 1525, 110, 1001, 526, 426, 427, 406, 1532, 934, 83, 84, 112, 1398, 125, 126, 116, 251, 424, 251, 426, 427, 130, 111, 430, 111, 526, 433, 746, 1398, 571, 572, 506, 113, 1505, 110, 109, 511, 525, 116, 514, 109, 114, 111, 550, 551, 552, 114, 454, 0, 1390, 1391, 1051, 130, 1525, 130, 464, 109, 969, 116, 1215, 1532, 1252, 737, 1254, 1255, 472, 418, 72, 591, 74, 75, 0, 494, 480, 132, 482, 109, 484, 83, 84, 480, 488, 418, 110, 484, 848, 438, 494, 109, 116, 591, 513, 212, 568, 446, 648, 109, 943, 111, 506, 826, 508, 438, 484, 511, 983, 513, 514, 1445, 114, 446, 131, 1101, 484, 521, 1452, 658, 350, 525, 526, 662, 1129, 72, 1010, 1011, 111, 682, 113, 209, 79, 119, 120, 484, 83, 84, 1119, 1292, 655, 657, 72, 805, 74, 75, 688, 130, 810, 482, 688, 484, 112, 83, 84, 708, 116, 1215, 116, 116, 579, 826, 279, 484, 111, 116, 116, 571, 572, 1503, 111, 110, 113, 130, 132, 579, 109, 116, 1087, 109, 940, 132, 132, 1092, 114, 109, 590, 591, 116, 130, 906, 595, 1476, 271, 109, 110, 111, 601, 1482, 603, 1181, 1182, 621, 72, 132, 74, 75, 626, 4, 5, 6, 7, 8, 9, 83, 84, 294, 621, 1502, 110, 117, 112, 626, 1507, 628, 116, 123, 124, 632, 307, 109, 635, 636, 637, 72, 352, 898, 354, 76, 116, 131, 132, 111, 473, 109, 83, 84, 622, 746, 653, 1308, 655, 484, 757, 484, 132, 795, 0, 1, 912, 745, 914, 116, 638, 110, 671, 116, 116, 863, 110, 591, 109, 112, 69, 939, 71, 116, 652, 132, 117, 118, 685, 132, 132, 688, 1001, 29, 30, 883, 32, 109, 811, 1445, 110, 116, 1292, 116, 110, 110, 1452, 43, 116, 1360, 116, 945, 1363, 49, 711, 712, 713, 132, 110, 132, 811, 57, 719, 720, 132, 116, 869, 63, 110, 907, 66, 109, 442, 69, 907, 116, 907, 907, 112, 907, 682, 132, 116, 132, 907, 907, 82, 83, 745, 746, 72, 132, 30, 750, 751, 1406, 682, 1503, 110, 112, 1411, 83, 84, 109, 116, 733, 708, 85, 86, 87, 106, 88, 89, 109, 909, 115, 1366, 109, 909, 111, 116, 913, 708, 454, 1309, 117, 118, 1509, 1439, 92, 93, 109, 791, 111, 132, 113, 114, 1509, 795, 109, 623, 110, 801, 1509, 82, 83, 803, 116, 805, 64, 807, 147, 1386, 810, 811, 906, 815, 814, 109, 155, 746, 1014, 112, 109, 160, 111, 132, 905, 1402, 826, 114, 117, 118, 115, 116, 506, 72, 508, 74, 75, 511, 1150, 114, 514, 109, 110, 111, 83, 84, 185, 186, 72, 1117, 74, 75, 76, 1121, 1122, 990, 1449, 114, 1451, 83, 84, 110, 201, 506, 109, 508, 1124, 116, 511, 1523, 209, 514, 1007, 699, 110, 1529, 876, 110, 111, 218, 116, 72, 221, 74, 75, 109, 1540, 713, 132, 228, 1544, 1037, 83, 84, 811, 1472, 1473, 109, 898, 111, 132, 1001, 876, 72, 243, 905, 906, 907, 247, 909, 79, 1504, 251, 252, 83, 84, 110, 1229, 109, 58, 59, 921, 116, 114, 44, 45, 265, 266, 1022, 82, 945, 876, 110, 272, 934, 935, 112, 110, 116, 939, 279, 109, 1042, 116, 944, 945, 110, 876, 109, 1087, 1085, 110, 116, 1087, 1092, 115, 116, 116, 1092, 876, 944, 72, 243, 74, 75, 76, 109, 1, 111, 969, 944, 1239, 83, 84, 117, 118, 110, 906, 110, 127, 1485, 807, 116, 82, 116, 3, 1001, 553, 554, 328, 1125, 110, 10, 11, 12, 13, 14, 116, 1109, 561, 562, 1001, 10, 11, 12, 13, 14, 110, 110, 348, 349, 685, 118, 116, 116, 49, 128, 1019, 1020, 110, 733, 39, 1022, 1023, 94, 116, 365, 555, 556, 1534, 369, 39, 10, 11, 12, 13, 14, 110, 109, 110, 111, 380, 1042, 116, 3, 109, 110, 111, 876, 67, 876, 10, 11, 12, 13, 14, 1150, 396, 1326, 67, 111, 39, 1330, 557, 558, 559, 560, 406, 1042, 131, 109, 105, 58, 59, 60, 1077, 1078, 109, 109, 113, 39, 109, 1082, 111, 109, 424, 111, 1087, 109, 67, 111, 430, 1092, 432, 72, 112, 112, 1042, 76, 380, 109, 1101, 111, 110, 110, 83, 84, 112, 67, 1109, 110, 72, 146, 1042, 110, 76, 944, 110, 110, 0, 1, 155, 83, 84, 1124, 1042, 1194, 1195, 467, 1197, 1211, 109, 109, 472, 111, 111, 1204, 0, 1206, 117, 118, 480, 112, 114, 116, 484, 131, 114, 109, 488, 1150, 32, 491, 110, 493, 109, 117, 118, 114, 1427, 112, 4, 5, 6, 7, 8, 9, 110, 112, 32, 72, 205, 74, 75, 76, 209, 112, 112, 1004, 112, 43, 83, 84, 130, 1278, 66, 49, 116, 69, 528, 33, 130, 1192, 1193, 533, 29, 130, 110, 110, 1, 63, 112, 110, 66, 114, 239, 69, 109, 112, 1193, 491, 1211, 493, 116, 1042, 1215, 1042, 115, 115, 1193, 72, 1150, 74, 75, 76, 1227, 69, 115, 71, 1229, 109, 83, 84, 1233, 110, 130, 132, 271, 110, 116, 274, 1215, 110, 110, 583, 3, 110, 921, 110, 1233, 116, 590, 10, 11, 12, 13, 14, 1259, 115, 1233, 294, 110, 601, 110, 603, 1267, 1268, 1269, 110, 110, 1215, 1382, 110, 307, 110, 156, 29, 110, 1278, 1279, 110, 39, 1519, 622, 147, 110, 1215, 1287, 110, 110, 110, 110, 1292, 130, 1362, 110, 131, 160, 1215, 638, 1229, 112, 116, 112, 643, 110, 110, 341, 116, 67, 110, 345, 130, 652, 109, 654, 655, 656, 1292, 116, 114, 112, 185, 186, 110, 1325, 110, 110, 1509, 1331, 364, 116, 112, 1509, 368, 1509, 1509, 371, 1509, 110, 221, 1325, 116, 1509, 1509, 110, 209, 1292, 116, 688, 110, 1325, 109, 692, 109, 694, 112, 109, 221, 698, 109, 109, 643, 1292, 1192, 1193, 1192, 706, 130, 112, 251, 132, 1510, 115, 1485, 1292, 1510, 464, 110, 110, 719, 720, 1382, 110, 128, 115, 115, 1215, 251, 1215, 114, 112, 426, 427, 733, 72, 1534, 132, 1398, 76, 1534, 49, 265, 110, 112, 1233, 83, 84, 1082, 112, 1381, 692, 116, 694, 110, 63, 110, 698, 66, 110, 454, 69, 112, 1423, 112, 112, 110, 112, 47, 112, 112, 132, 109, 467, 111, 132, 115, 132, 110, 1423, 117, 118, 115, 132, 110, 1445, 132, 115, 112, 1423, 252, 112, 1452, 112, 1454, 130, 1456, 112, 492, 1287, 494, 1287, 496, 112, 1292, 328, 1292, 112, 110, 1509, 110, 1445, 506, 112, 508, 814, 1509, 511, 1452, 513, 514, 1509, 112, 109, 109, 1485, 349, 826, 109, 60, 1490, 525, 1492, 110, 110, 109, 114, 1325, 132, 147, 1445, 112, 112, 1503, 1519, 110, 112, 1452, 110, 1509, 1510, 96, 160, 96, 109, 109, 1445, 1510, 115, 1519, 57, 110, 110, 1452, 55, 132, 110, 42, 1445, 1503, 869, 110, 0, 1, 1534, 1452, 875, 130, 186, 116, 671, 1534, 132, 406, 110, 579, 4, 5, 6, 7, 8, 9, 433, 110, 132, 96, 590, 96, 1503, 898, 132, 209, 110, 132, 32, 110, 97, 132, 907, 106, 909, 115, 109, 221, 1503, 110, 110, 916, 85, 86, 87, 49, 112, 112, 671, 132, 1503, 621, 869, 109, 132, 115, 626, 115, 875, 1423, 110, 110, 632, 132, 939, 69, 109, 484, 111, 110, 113, 114, 110, 667, 1058, 69, 563, 71, 564, 979, 565, 1445, 155, 1445, 959, 484, 567, 1215, 1452, 488, 1452, 72, 566, 74, 75, 76, 1473, 1368, 973, 916, 1544, 105, 83, 84, 1122, 1330, 981, 1302, 1073, 526, 985, 685, 1452, 685, 914, 685, 1092, 698, 973, 66, 922, 583, 869, 649, 791, 941, 193, 723, 109, 467, 111, 484, 1233, -1, 801, 82, 117, 118, 733, 1503, -1, 1503, 571, 147, 328, 218, 571, -1, 815, 216, 571, 155, 156, 723, -1, -1, 973, -1, -1, 226, 1035, -1, -1, -1, -1, -1, -1, -1, 791, -1, 117, -1, -1, -1, 591, 745, -1, -1, 801, -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, 528, -1, 815, -1, -1, 533, -1, 201, 1073, 272, 204, 205, 601, -1, 603, 209, 279, -1, -1, -1, -1, -1, 1087, 160, -1, -1, -1, 1092, 635, 636, 637, -1, 406, -1, -1, -1, 230, 294, -1, -1, 234, -1, 236, -1, 1109, 805, 653, -1, -1, -1, 810, 245, -1, -1, 1454, 583, 1456, 251, -1, -1, -1, -1, 256, -1, 696, -1, 1073, -1, -1, -1, -1, -1, 266, -1, -1, 72, -1, 74, 75, 76, 274, -1, -1, -1, 221, 348, 83, 84, -1, -1, 1490, -1, 1492, -1, -1, -1, -1, -1, -1, 688, -1, -1, 365, -1, 711, -1, 369, -1, -1, -1, 0, -1, 109, -1, 111, 10, 11, 12, 13, 14, 117, 118, 259, 1188, -1, -1, 654, 264, 656, -1, 719, 720, -1, 130, -1, -1, -1, -1, 898, -1, -1, -1, 32, -1, 39, 905, 1211, 341, -1, -1, -1, 345, -1, -1, -1, -1, 788, 351, -1, -1, -1, 921, 1019, 1020, -1, -1, -1, -1, -1, 432, 364, -1, 67, -1, 368, -1, -1, 371, 706, 69, -1, 1188, -1, 943, 944, 945, 443, 1252, -1, 1254, 1255, -1, -1, -1, -1, -1, 803, -1, 10, 11, 12, 13, 14, -1, 811, -1, 1019, 1020, -1, -1, -1, -1, 469, 350, 109, -1, 111, -1, -1, -1, 1077, 1078, 117, 118, 418, 814, -1, 39, -1, -1, -1, -1, -1, 865, -1, -1, -1, 826, -1, 433, -1, 1001, -1, -1, 438, -1, -1, -1, -1, 506, -1, -1, 446, -1, 511, 67, -1, 514, -1, -1, -1, -1, -1, -1, 1077, 1078, 156, -1, -1, 876, 464, -1, -1, 467, -1, -1, 908, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 482, -1, 484, -1, -1, -1, 431, -1, -1, 109, 492, 111, -1, -1, 496, -1, -1, 117, 118, 39, -1, -1, -1, -1, -1, -1, -1, -1, 1381, 1382, 907, -1, 909, 953, 1082, -1, -1, 1390, 1391, 590, -1, -1, -1, 525, 526, -1, -1, 67, 473, 944, -1, -1, 230, -1, -1, -1, -1, -1, -1, -1, -1, -1, 939, -1, -1, -1, -1, -1, 988, -1, -1, 622, -1, 251, -1, 1428, 1124, -1, 256, -1, -1, -1, -1, 0, -1, -1, -1, 638, -1, 109, 572, 111, -1, -1, -1, -1, -1, 117, 118, -1, 72, 652, 74, 75, 76, -1, -1, -1, 590, 591, -1, 83, 84, -1, 1259, 32, -1, -1, -1, 1039, -1, 603, 1267, 1268, 1269, 670, 1227, 1022, 1023, -1, -1, -1, 1485, 1486, 679, -1, -1, 109, 683, 621, -1, -1, 1495, 959, 626, 117, 118, 1042, -1, -1, 632, -1, 69, 635, 636, 637, 1509, 1510, 1259, -1, -1, -1, -1, 1211, -1, 981, 1267, 1268, 1269, 985, 595, 653, 72, 351, 74, 75, 76, -1, -1, -1, -1, 1534, 733, 83, 84, 1233, 1331, -1, -1, 671, -1, -1, 10, 11, 12, 13, 14, -1, 623, 1119, 682, -1, -1, 628, -1, -1, -1, -1, -1, 109, 1087, 111, -1, -1, -1, 1092, -1, 117, 118, 1035, -1, 39, -1, -1, -1, -1, 708, -1, -1, 711, 1331, -1, -1, 66, -1, -1, -1, -1, 720, 156, 418, 723, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, 433, 74, 75, 76, -1, 438, 1181, 1182, 745, 746, 83, 84, -1, 446, 751, -1, -1, -1, -1, 699, -1, -1, 1325, -1, -1, -1, -1, -1, -1, 117, -1, 464, -1, 713, -1, -1, 109, -1, 111, -1, -1, -1, 1192, 1193, 117, 118, -1, -1, -1, 482, -1, 484, -1, -1, 791, -1, -1, -1, -1, -1, -1, -1, -1, -1, 801, 1215, 803, -1, 805, -1, -1, 808, 160, 810, 811, -1, -1, -1, 815, 251, -1, -1, -1, 1233, 256, -1, -1, -1, 825, -1, -1, -1, 898, 526, -1, -1, -1, -1, -1, -1, 900, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1423, -1, 30, 31, 32, -1, -1, 807, 1278, 1279, -1, 39, 0, 221, -1, -1, -1, 1287, -1, 876, -1, -1, 1292, -1, -1, 72, -1, 74, 75, 76, -1, 1454, -1, 1456, -1, -1, 83, 84, 591, 67, -1, 898, -1, -1, 32, -1, 74, 75, 905, 906, -1, 259, 909, -1, -1, 1325, 264, -1, -1, 351, -1, 1252, 109, 1254, 1255, -1, -1, 1490, -1, 1492, 117, 118, -1, -1, -1, -1, -1, -1, 935, -1, -1, 69, 635, 636, 637, -1, 943, 944, -1, 117, 118, 1386, -1, -1, -1, -1, 1519, -1, -1, -1, 653, -1, -1, -1, -1, -1, -1, 1402, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 671, -1, -1, -1, -1, -1, -1, -1, 418, -1, 1398, 682, -1, -1, -1, 1053, -1, -1, -1, -1, -1, -1, -1, 433, 350, -1, 1001, -1, 438, -1, -1, -1, -1, -1, -1, 1423, 446, 708, -1, 1014, 711, -1, -1, -1, 1019, 1020, -1, 1022, 1023, -1, 156, -1, -1, -1, 464, -1, -1, 1445, -1, 1472, 1473, -1, -1, -1, 1452, -1, -1, 1042, -1, -1, -1, -1, 482, -1, 484, 746, -1, -1, -1, -1, -1, 1390, 1391, -1, -1, -1, 1004, -1, -1, 10, 11, 12, 13, 14, -1, 10, 11, 12, 13, 14, -1, -1, 1077, 1078, -1, 431, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1503, 526, -1, 39, 1428, 791, -1, -1, -1, 39, -1, -1, -1, -1, -1, 801, -1, 803, -1, -1, -1, -1, 808, -1, 1509, 811, -1, -1, -1, 815, 251, 67, 473, -1, 1124, 256, 72, 67, 74, 75, 76, -1, 72, -1, 74, 75, 76, 83, 84, -1, -1, -1, 1211, 83, 84, -1, -1, -1, -1, -1, 1150, -1, 1486, -1, -1, -1, 591, -1, -1, -1, -1, 1495, -1, 109, -1, 111, -1, -1, -1, 109, -1, 117, 118, -1, -1, -1, -1, 117, 118, -1, 876, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 1193, -1, -1, 83, 84, -1, -1, 635, 636, 637, -1, -1, -1, -1, -1, -1, -1, 906, 1211, -1, -1, -1, 1215, -1, -1, 653, -1, 351, -1, 109, -1, 111, -1, -1, 1227, -1, 1229, 117, 118, -1, 1233, 66, -1, 671, -1, 1301, -1, -1, -1, -1, 75, 595, -1, -1, 682, -1, 1192, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1259, -1, -1, -1, -1, -1, -1, -1, 1267, 1268, 1269, -1, -1, 623, 708, -1, -1, 711, 628, 1278, 1279, -1, -1, -1, -1, -1, 117, 0, 418, -1, -1, -1, -1, 1292, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, 438, -1, -1, -1, 746, 1381, -1, -1, 446, -1, -1, 32, -1, -1, -1, -1, 1019, 1020, 1325, 1022, 1023, 160, -1, -1, 1331, -1, 464, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1287, -1, 1042, -1, 699, -1, -1, 482, -1, 484, -1, 69, 791, -1, -1, -1, -1, -1, 713, -1, -1, -1, 801, -1, 803, -1, -1, -1, -1, 808, -1, -1, 811, -1, -1, -1, 815, 1077, 1078, -1, -1, -1, -1, -1, -1, 221, 1453, -1, 1455, -1, -1, 526, -1, -1, 1398, -1, 10, 11, 12, 13, 14, -1, -1, -1, 53, -1, 55, -1, -1, 58, 59, 60, -1, 62, -1, -1, -1, -1, -1, 1423, -1, -1, 1489, 259, 1491, 39, -1, 76, 264, -1, -1, -1, -1, -1, -1, -1, -1, 876, 156, 88, 89, 1445, -1, 279, -1, -1, -1, -1, 1452, -1, 1150, -1, 807, 67, -1, -1, 591, -1, 72, -1, 74, 75, 76, -1, -1, -1, 1533, 906, 1535, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1548, 1549, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1193, -1, 109, -1, 111, -1, 1503, 635, 636, 637, 117, 118, -1, 1510, -1, -1, -1, -1, -1, -1, -1, 350, 1215, -1, -1, 653, -1, -1, -1, -1, -1, -1, -1, -1, 1227, -1, 1229, -1, -1, -1, 251, -1, -1, 671, -1, 256, -1, -1, -1, -1, -1, -1, -1, -1, 682, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 1259, -1, -1, -1, -1, -1, -1, -1, 1267, 1268, 1269, -1, -1, -1, 708, -1, -1, 711, -1, 1278, 1279, 1019, 1020, 39, 1022, 1023, -1, -1, -1, -1, -1, -1, -1, 1292, -1, -1, 431, -1, -1, -1, -1, -1, -1, -1, 1042, -1, -1, -1, -1, -1, -1, 67, 746, 448, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, 1331, -1, 351, -1, -1, -1, 473, 1077, 1078, 26, 27, 28, -1, -1, -1, -1, -1, -1, 1004, -1, -1, 109, -1, -1, -1, 791, -1, -1, -1, 117, 118, -1, -1, -1, -1, 801, -1, 803, -1, -1, -1, -1, 808, -1, -1, 811, -1, -1, -1, 815, -1, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, -1, -1, 344, -1, 346, 1398, -1, 418, -1, -1, -1, -1, -1, -1, -1, 357, 358, -1, 1150, 98, -1, 100, 433, 131, -1, -1, -1, 438, -1, -1, -1, -1, -1, -1, -1, 446, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 876, -1, -1, -1, 1445, 464, -1, -1, -1, -1, -1, 1452, -1, 1193, -1, -1, -1, -1, 595, -1, -1, -1, -1, 482, -1, 484, -1, -1, -1, -1, 906, -1, -1, -1, -1, 1215, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 623, 1227, -1, 1229, -1, 628, -1, -1, 181, -1, -1, -1, -1, -1, -1, -1, 1503, -1, 191, 192, -1, 526, -1, 196, -1, 198, 199, -1, -1, -1, -1, -1, -1, 1259, -1, -1, -1, -1, -1, -1, -1, 1267, 1268, 1269, -1, -1, -1, -1, -1, -1, 1192, -1, 1278, 1279, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1292, -1, -1, -1, -1, -1, -1, -1, -1, -1, 699, -1, -1, -1, -1, -1, -1, -1, -1, -1, 591, -1, -1, -1, 713, -1, -1, -1, -1, -1, -1, 1019, 1020, -1, 1022, 1023, -1, -1, -1, 1331, -1, -1, -1, -1, 733, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1042, 7, -1, -1, 10, 11, 12, 13, 14, -1, 635, 636, 637, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1287, -1, -1, 653, -1, -1, 37, 38, 39, 40, 1077, 1078, -1, -1, -1, -1, -1, -1, -1, -1, -1, 671, -1, -1, -1, -1, -1, 1398, -1, -1, -1, -1, 682, -1, -1, 66, 67, -1, -1, 807, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 708, -1, -1, 711, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1445, -1, -1, -1, 109, -1, 111, 1452, -1, 1150, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 39, -1, 746, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 700, -1, 702, 67, -1, -1, -1, 1193, 72, 709, 710, -1, 76, 1503, 714, -1, -1, -1, -1, 83, 84, -1, 791, -1, -1, -1, 726, -1, -1, 1215, -1, 731, 801, -1, 803, -1, -1, -1, -1, 808, -1, 1227, 811, 1229, -1, 109, 815, -1, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, 759, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1259, -1, -1, -1, -1, -1, -1, -1, 1267, 1268, 1269, -1, -1, -1, -1, -1, -1, -1, -1, 1278, 1279, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1292, 876, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1004, -1, -1, -1, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 906, 575, 576, -1, -1, -1, -1, -1, 1331, -1, -1, -1, -1, -1, 49, -1, -1, -1, 37, 38, 39, 40, 859, 860, 861, 862, -1, 864, -1, -1, 604, 66, -1, 607, 608, -1, 610, -1, 612, 613, -1, -1, 879, 617, 618, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, -1, 893, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 1398, -1, -1, 113, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 933, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, 146, -1, 1019, 1020, -1, 1022, 1023, -1, -1, -1, 156, 1445, -1, -1, 160, -1, -1, -1, 1452, -1, -1, -1, -1, -1, -1, 1042, -1, -1, -1, -1, 978, -1, -1, -1, -1, -1, 984, -1, -1, -1, -1, 989, -1, -1, -1, -1, 994, -1, 996, -1, -1, -1, 1000, -1, 1002, 1003, -1, 1192, 1006, -1, 1077, 1078, -1, 209, -1, -1, -1, 1015, -1, 1503, 755, 756, -1, -1, -1, 221, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1033, 1034, -1, -1, -1, -1, -1, -1, 239, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1060, -1, -1, 1063, -1, -1, 264, -1, -1, -1, -1, 39, -1, 271, -1, -1, -1, -1, -1, -1, -1, 1150, -1, -1, -1, 26, 27, 28, -1, -1, -1, -1, -1, -1, -1, -1, 294, -1, -1, 67, 1287, -1, -1, -1, -1, -1, 1106, -1, -1, 307, -1, -1, 1112, 1113, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1193, -1, -1, -1, -1, -1, -1, -1, 1132, -1, -1, -1, 1136, -1, -1, -1, -1, 1141, -1, -1, -1, -1, 1215, 345, -1, -1, -1, -1, 350, -1, 1154, -1, -1, 98, 1227, 100, 1229, -1, -1, -1, -1, -1, -1, 1167, -1, 1169, 1170, 1171, 1172, -1, -1, -1, -1, -1, -1, -1, -1, 918, -1, -1, 125, 1185, -1, 1187, -1, -1, 1259, 1191, -1, -1, -1, -1, -1, -1, 1267, 1268, 1269, -1, -1, -1, -1, -1, -1, -1, -1, 1278, 1279, -1, -1, 66, -1, -1, -1, -1, -1, -1, 1220, 1221, 75, 1292, 77, -1, 79, -1, 426, 427, -1, -1, -1, 86, -1, 433, -1, -1, -1, -1, 181, -1, -1, -1, -1, -1, -1, -1, 189, -1, 191, 192, -1, -1, -1, 196, 454, 198, 199, -1, -1, -1, 1331, -1, 117, -1, 119, 120, 121, -1, 1270, 1271, -1, -1, -1, -1, -1, -1, -1, -1, 1280, -1, -1, -1, 482, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 494, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 160, 506, -1, 508, -1, -1, 511, -1, 513, 514, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 268, 526, 1398, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1341, 1079, 1343, 1344, 1345, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1355, -1, -1, -1, -1, -1, -1, -1, -1, 1364, -1, -1, -1, 221, -1, 223, 224, 225, -1, -1, -1, 1445, -1, -1, -1, -1, 579, -1, 1452, -1, -1, -1, -1, -1, 1389, -1, -1, -1, 591, -1, -1, -1, 595, -1, -1, -1, -1, -1, -1, -1, -1, 259, -1, -1, -1, -1, 264, -1, -1, -1, -1, -1, 44, -1, -1, -1, -1, -1, 621, -1, -1, 279, -1, 626, -1, -1, -1, 1432, 1433, 1503, -1, -1, 635, 636, 637, -1, -1, -1, -1, -1, 1445, -1, -1, -1, -1, -1, -1, 1452, -1, -1, 653, -1, -1, -1, -1, -1, -1, -1, -1, 91, -1, -1, -1, -1, -1, -1, -1, -1, 1210, 101, 328, -1, -1, -1, -1, -1, -1, -1, -1, 1484, -1, -1, 685, 1488, -1, -1, -1, -1, -1, -1, -1, -1, 350, -1, -1, -1, -1, 355, 356, -1, -1, -1, -1, -1, -1, 363, -1, -1, 711, -1, 713, 1516, -1, 1518, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 171, -1, 1546, 1547, 746, -1, -1, -1, -1, 406, 1554, 1555, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, -1, -1, -1, 424, 37, 38, -1, 40, 429, -1, 431, -1, -1, 208, -1, -1, -1, -1, -1, -1, -1, -1, 217, -1, -1, -1, -1, 448, -1, -1, 451, 452, 227, 66, -1, -1, -1, 803, 459, 72, -1, 807, -1, 76, -1, 811, 79, 80, 81, 82, 83, 84, 473, 86, 87, -1, -1, 252, -1, 480, -1, -1, 257, -1, -1, -1, 575, 576, -1, -1, -1, -1, -1, -1, -1, 270, 109, -1, 111, -1, -1, 276, -1, 278, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 604, -1, 130, 607, 608, 295, 610, -1, 612, 613, -1, -1, -1, 617, 618, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, 906, -1, -1, 338, -1, -1, -1, -1, 343, -1, -1, -1, -1, -1, -1, 921, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 595, -1, -1, 372, 78, 945, -1, 376, 377, -1, 379, -1, -1, -1, -1, -1, -1, 386, 387, -1, 389, 390, -1, 392, -1, 394, -1, -1, 623, -1, -1, -1, -1, 628, -1, -1, -1, -1, -1, -1, -1, -1, 411, -1, -1, 37, 38, -1, 40, -1, 419, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1001, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 755, 756, 66, 444, -1, -1, -1, -1, 72, -1, 1022, 1023, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, 470, -1, -1, 699, -1, -1, 476, -1, -1, -1, -1, 481, -1, -1, -1, -1, 109, 713, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, 733, -1, -1, -1, 1082, -1, -1, -1, -1, -1, 517, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 532, -1, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, 795, 36, 571, -1, 39, 40, -1, -1, -1, -1, 1150, 580, 807, -1, -1, -1, -1, -1, 587, -1, -1, -1, -1, -1, 593, -1, -1, -1, -1, 64, 913, 826, 67, 602, 69, 918, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, 1192, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 155, 156, -1, -1, -1, -1, -1, 642, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, 1229, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 189, -1, -1, -1, -1, -1, -1, 196, -1, 678, -1, -1, -1, -1, -1, -1, -1, 686, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1278, 1279, 30, 31, 32, -1, 939, -1, -1, 1287, 717, 39, -1, -1, -1, -1, -1, -1, -1, -1, 727, 728, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 969, -1, -1, 67, -1, 268, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 760, -1, 83, 84, -1, 1079, 766, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1004, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 1015, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, 323, -1, -1, -1, -1, -1, -1, -1, 331, 332, -1, 334, 335, -1, -1, -1, -1, -1, -1, -1, -1, -1, 345, -1, 1398, -1, 349, 830, -1, -1, -1, -1, -1, -1, 837, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, 850, 371, 852, -1, -1, -1, -1, -1, -1, -1, -1, 1087, -1, -1, -1, -1, 866, -1, -1, -1, -1, -1, 872, -1, -1, 1101, -1, -1, 398, -1, -1, -1, 402, 1454, 884, 1456, -1, 887, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, -1, 1490, -1, 1492, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 282, -1, 284, 285, -1, -1, -1, -1, -1, -1, 292, 293, -1, -1, -1, -1, 1519, -1, -1, -1, -1, -1, -1, -1, -1, 307, 308, 479, -1, -1, 482, -1, 964, -1, 1192, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, 345, -1, -1, -1, 999, 39, 521, -1, -1, -1, 525, 526, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 381, -1, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, 571, 572, -1, -1, -1, -1, 1057, -1, -1, -1, 1287, -1, 1063, -1, -1, 146, -1, -1, -1, 590, 591, 111, -1, -1, -1, 156, -1, 117, 118, -1, 601, -1, 603, 604, -1, -1, -1, 168, 169, 610, -1, -1, -1, -1, -1, -1, 1097, -1, -1, 620, 621, 1102, -1, -1, -1, 626, -1, -1, -1, 1110, -1, -1, -1, -1, 635, 636, 637, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 653, -1, -1, -1, -1, 658, 659, -1, -1, 662, 663, -1, 1145, -1, -1, -1, 669, -1, -1, -1, -1, -1, -1, -1, 1157, -1, 239, 1160, -1, 1162, -1, -1, -1, -1, -1, 688, -1, -1, -1, -1, -1, -1, -1, 1176, 1177, -1, -1, -1, -1, -1, 263, -1, -1, -1, -1, -1, -1, -1, 711, 712, -1, -1, -1, -1, -1, 1198, -1, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, -1, -1, -1, -1, -1, -1, -1, 745, 746, -1, -1, -1, 750, 751, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1245, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, 795, -1, -1, -1, 39, -1, -1, -1, 803, -1, -1, -1, -1, -1, -1, 810, 811, -1, -1, 814, -1, 816, -1, -1, -1, 380, -1, -1, -1, -1, -1, 826, 67, 1534, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, -1, 1320, -1, 1322, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1336, -1, 1338, -1, -1, -1, -1, -1, -1, -1, 696, -1, -1, 109, -1, 111, -1, 1353, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1369, 1370, -1, -1, -1, -1, -1, -1, -1, 898, -1, 1380, -1, -1, 1383, -1, 905, 906, 907, -1, 909, -1, -1, -1, 913, 474, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1404, -1, -1, 757, -1, -1, -1, -1, -1, 1413, 934, 935, 1416, -1, 1418, 1419, 1420, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 513, -1, -1, -1, -1, 788, -1, -1, -1, -1, -1, -1, -1, 526, -1, -1, 969, -1, 531, -1, -1, 534, -1, -1, -1, 1458, -1, 1460, -1, 1462, -1, -1, -1, -1, 547, -1, -1, 990, 991, -1, -1, -1, -1, -1, 1477, -1, -1, -1, 1001, -1, -1, -1, -1, -1, 1007, 1008, 569, 1010, 1011, 1012, -1, -1, -1, -1, -1, -1, 579, -1, -1, 1022, 1023, -1, -1, 586, -1, -1, -1, -1, 591, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, 908, -1, 640, -1, -1, -1, -1, 1085, -1, 1087, 648, -1, -1, -1, 1092, -1, -1, 64, -1, -1, 67, -1, 69, 1101, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, 953, 1124, 1125, 1126, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 115, -1, 117, 118, 1150, -1, -1, -1, -1, -1, -1, -1, 988, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1001, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, 746, -1, 748, -1, -1, -1, -1, -1, -1, -1, -1, -1, 758, -1, -1, -1, -1, -1, 764, -1, -1, 66, -1, -1, -1, 1211, 1042, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1229, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 807, 808, -1, 109, 811, 111, -1, 113, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, 825, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1278, 1279, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 865, -1, -1, -1, 869, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 906, 30, 31, 32, 33, 1181, 1182, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, 945, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, 1398, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 973, -1, -1, -1, 37, 38, 979, 40, -1, -1, 983, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, 1004, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, 1015, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1037, -1, 1039, -1, -1, -1, 37, 38, 1485, 40, -1, -1, 109, -1, 111, -1, -1, 1054, 1055, 116, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, 1509, 1510, -1, 66, -1, -1, 1075, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1534, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 1386, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, 1130, -1, 1402, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1150, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1165, 1166, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 1472, 1473, 36, 37, 38, 39, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, -1, -1, -1, -1, -1, 1306, -1, -1, 1309, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, 1519, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, 111, 36, -1, -1, 39, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, 109, 71, 111, -1, 74, 75, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, 40, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, 110, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, 117, 118, 119, 120, 121, 122, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, -1, -1, 114, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, -1, 111, 74, 75, -1, 39, 78, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, -1, -1, 109, 39, 111, 74, 75, -1, -1, 78, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 111, -1, -1, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, 111, 74, 75, -1, 39, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, -1, -1, -1, 39, 111, 74, 75, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 111, -1, -1, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, 111, 74, 75, -1, 39, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, 111, 74, 75, -1, -1, 39, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 111, -1, 74, 75, -1, -1, 117, 118, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, 110, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, 132, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, 127, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, -1, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 109, 111, 117, 118, 137, 140, 151, 200, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 256, 257, 284, 285, 286, 294, 297, 303, 304, 306, 308, 309, 315, 320, 324, 325, 326, 327, 328, 329, 330, 331, 351, 368, 369, 370, 371, 72, 139, 140, 151, 217, 219, 227, 229, 238, 242, 244, 285, 82, 109, 313, 314, 315, 313, 313, 72, 74, 75, 76, 138, 139, 274, 275, 295, 296, 74, 75, 275, 109, 306, 11, 201, 109, 151, 320, 325, 326, 327, 329, 330, 331, 112, 134, 111, 220, 227, 229, 324, 328, 367, 368, 371, 372, 135, 107, 131, 278, 114, 135, 175, 74, 75, 137, 273, 135, 135, 135, 116, 135, 74, 75, 109, 151, 310, 319, 320, 321, 322, 323, 324, 328, 332, 333, 334, 335, 336, 342, 3, 28, 78, 240, 3, 5, 74, 111, 151, 219, 230, 234, 236, 245, 286, 324, 328, 371, 217, 219, 229, 238, 242, 244, 285, 324, 328, 33, 235, 235, 230, 236, 135, 235, 230, 235, 230, 75, 109, 114, 275, 286, 114, 275, 235, 230, 116, 135, 135, 0, 134, 109, 175, 313, 313, 134, 111, 227, 229, 369, 273, 273, 131, 229, 109, 151, 310, 320, 324, 111, 151, 371, 307, 232, 315, 109, 291, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 119, 120, 121, 122, 136, 140, 141, 142, 143, 144, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 169, 227, 277, 293, 367, 372, 229, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 227, 273, 351, 369, 111, 117, 151, 166, 219, 220, 226, 229, 233, 234, 238, 241, 242, 244, 263, 264, 268, 269, 270, 271, 285, 351, 363, 364, 365, 366, 371, 372, 112, 109, 324, 328, 371, 109, 116, 132, 111, 114, 151, 166, 279, 279, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 313, 132, 320, 321, 322, 323, 333, 334, 335, 336, 229, 319, 332, 64, 312, 111, 313, 350, 351, 313, 313, 175, 134, 109, 313, 350, 313, 313, 229, 310, 109, 109, 228, 229, 227, 229, 112, 134, 227, 367, 372, 175, 134, 273, 278, 219, 234, 324, 328, 175, 134, 295, 229, 238, 132, 229, 229, 293, 249, 247, 259, 275, 258, 229, 295, 132, 132, 306, 134, 139, 272, 3, 135, 209, 210, 224, 226, 229, 134, 312, 109, 312, 166, 320, 229, 109, 134, 273, 114, 33, 34, 35, 227, 287, 288, 290, 134, 128, 131, 292, 134, 230, 235, 236, 273, 316, 317, 318, 109, 141, 109, 150, 109, 150, 153, 109, 150, 109, 109, 150, 150, 111, 166, 171, 175, 227, 276, 367, 371, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 131, 168, 153, 153, 117, 123, 124, 119, 120, 88, 89, 90, 91, 125, 126, 92, 93, 118, 127, 128, 94, 95, 129, 131, 374, 109, 151, 346, 347, 348, 349, 350, 110, 116, 109, 350, 351, 109, 350, 351, 134, 109, 227, 369, 112, 134, 135, 111, 227, 229, 362, 363, 371, 372, 135, 109, 111, 151, 320, 337, 338, 339, 340, 341, 342, 343, 344, 345, 351, 352, 353, 354, 355, 356, 357, 151, 371, 229, 135, 135, 151, 227, 229, 364, 273, 227, 351, 364, 273, 109, 134, 134, 134, 112, 134, 72, 111, 113, 140, 275, 279, 280, 281, 282, 283, 134, 134, 134, 134, 134, 134, 310, 110, 110, 110, 110, 110, 110, 110, 319, 332, 109, 278, 112, 209, 134, 310, 171, 277, 171, 277, 310, 111, 209, 312, 175, 134, 209, 110, 40, 111, 115, 227, 250, 251, 252, 367, 114, 116, 373, 131, 260, 114, 229, 265, 266, 267, 270, 271, 110, 116, 175, 134, 117, 166, 134, 226, 229, 264, 363, 371, 304, 305, 109, 151, 337, 110, 116, 374, 275, 287, 109, 114, 275, 277, 287, 110, 116, 109, 141, 110, 130, 276, 276, 276, 146, 166, 277, 276, 112, 134, 110, 116, 110, 109, 151, 350, 358, 359, 360, 361, 110, 116, 166, 111, 139, 145, 146, 134, 79, 111, 139, 145, 166, 153, 153, 153, 154, 154, 155, 155, 156, 156, 156, 156, 157, 157, 158, 159, 160, 161, 162, 130, 171, 166, 134, 347, 348, 349, 229, 346, 313, 313, 166, 277, 134, 272, 134, 227, 351, 364, 229, 233, 112, 112, 134, 371, 112, 109, 134, 320, 338, 339, 340, 343, 353, 354, 355, 112, 134, 229, 337, 341, 352, 109, 313, 356, 374, 313, 313, 374, 109, 313, 356, 313, 313, 313, 313, 351, 227, 362, 372, 273, 112, 116, 112, 116, 374, 227, 364, 374, 261, 262, 263, 264, 261, 261, 273, 166, 134, 111, 275, 130, 116, 373, 279, 111, 130, 283, 29, 211, 212, 273, 261, 139, 310, 139, 312, 109, 350, 351, 109, 350, 351, 142, 351, 175, 265, 110, 110, 110, 110, 112, 175, 209, 175, 114, 251, 252, 112, 134, 109, 130, 151, 253, 255, 319, 320, 332, 358, 116, 132, 116, 132, 275, 249, 275, 115, 164, 165, 259, 135, 135, 139, 224, 135, 135, 261, 109, 151, 371, 135, 115, 229, 288, 289, 135, 134, 134, 109, 135, 110, 317, 171, 172, 130, 132, 111, 141, 202, 203, 204, 110, 116, 110, 110, 110, 110, 111, 166, 359, 360, 361, 229, 358, 313, 313, 114, 153, 169, 166, 167, 170, 116, 135, 134, 110, 116, 166, 134, 115, 164, 130, 265, 110, 110, 110, 346, 265, 110, 261, 227, 364, 111, 117, 151, 166, 166, 229, 343, 265, 110, 110, 110, 110, 110, 110, 110, 7, 229, 337, 341, 352, 134, 134, 374, 134, 134, 110, 135, 135, 135, 135, 278, 135, 164, 165, 166, 311, 134, 279, 281, 115, 134, 213, 275, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 127, 172, 173, 174, 175, 176, 177, 179, 180, 192, 194, 195, 200, 214, 309, 29, 135, 131, 278, 134, 134, 110, 135, 175, 249, 132, 132, 320, 165, 229, 254, 255, 254, 275, 313, 115, 260, 373, 110, 116, 112, 112, 135, 229, 116, 374, 291, 110, 287, 217, 219, 227, 299, 300, 301, 302, 293, 110, 110, 130, 165, 109, 110, 130, 116, 139, 112, 110, 110, 110, 358, 280, 116, 135, 170, 112, 79, 139, 147, 148, 149, 146, 135, 147, 164, 169, 135, 109, 350, 351, 135, 135, 134, 135, 135, 135, 166, 110, 135, 109, 350, 351, 109, 356, 109, 356, 351, 228, 7, 117, 135, 166, 265, 265, 264, 268, 268, 269, 116, 116, 110, 110, 112, 96, 122, 135, 135, 147, 279, 166, 116, 132, 214, 218, 229, 233, 109, 109, 173, 109, 109, 72, 132, 72, 132, 72, 117, 172, 109, 175, 167, 167, 130, 112, 144, 132, 135, 134, 135, 213, 110, 166, 265, 265, 313, 110, 115, 253, 115, 134, 110, 134, 135, 310, 115, 134, 135, 135, 110, 114, 202, 112, 165, 132, 202, 204, 110, 109, 350, 351, 373, 167, 112, 135, 116, 135, 85, 113, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 166, 166, 135, 112, 135, 135, 135, 135, 134, 134, 165, 165, 112, 112, 135, 135, 275, 229, 171, 171, 47, 171, 134, 132, 132, 132, 171, 132, 171, 58, 59, 60, 196, 197, 198, 132, 63, 132, 313, 114, 177, 115, 132, 135, 135, 96, 270, 271, 110, 300, 116, 132, 116, 132, 115, 298, 130, 141, 110, 110, 130, 134, 115, 112, 148, 112, 111, 148, 111, 148, 112, 265, 112, 265, 265, 265, 135, 135, 112, 112, 110, 110, 112, 116, 96, 264, 96, 135, 112, 112, 110, 110, 109, 110, 172, 193, 214, 132, 110, 109, 109, 175, 198, 58, 59, 166, 173, 145, 110, 110, 114, 134, 134, 299, 141, 205, 109, 132, 205, 265, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 173, 44, 45, 114, 183, 184, 185, 171, 173, 135, 110, 172, 114, 185, 96, 134, 96, 134, 109, 109, 132, 115, 134, 273, 310, 115, 116, 130, 165, 110, 135, 147, 147, 110, 110, 110, 110, 268, 42, 165, 181, 182, 311, 130, 134, 173, 183, 110, 132, 173, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 299, 141, 139, 206, 110, 132, 110, 135, 135, 173, 96, 116, 130, 135, 207, 208, 214, 132, 172, 172, 207, 175, 199, 227, 367, 175, 199, 110, 134, 110, 134, 115, 110, 116, 112, 112, 165, 181, 184, 186, 187, 134, 132, 184, 188, 189, 135, 109, 151, 310, 358, 139, 135, 175, 199, 175, 199, 109, 132, 139, 173, 178, 115, 184, 214, 172, 56, 178, 191, 115, 184, 110, 229, 110, 135, 135, 293, 173, 178, 132, 190, 191, 178, 191, 175, 175, 110, 110, 110, 190, 135, 135, 175, 175, 135, 135 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 302 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 313 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 314 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 315 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 16: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 17: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 18: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) ); // append 2nd juxtaposed string to 1st delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.str) = (yyvsp[(1) - (2)].str); // conversion from tok to str } break; case 19: /* Line 1806 of yacc.c */ #line 357 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 20: /* Line 1806 of yacc.c */ #line 359 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 21: /* Line 1806 of yacc.c */ #line 361 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 22: /* Line 1806 of yacc.c */ #line 363 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 373 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 25: /* Line 1806 of yacc.c */ #line 375 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 26: /* Line 1806 of yacc.c */ #line 379 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 386 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 388 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 392 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined - use location of '{'? (yyval.en) = new ExpressionNode( new ConstructorExpr( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ) ); } break; case 36: /* Line 1806 of yacc.c */ #line 402 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 37: /* Line 1806 of yacc.c */ #line 407 "parser.yy" { (yyval.en) = 0; } break; case 40: /* Line 1806 of yacc.c */ #line 413 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 41: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 42: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 43: /* Line 1806 of yacc.c */ #line 424 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 44: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 45: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 49: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 50: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 51: /* Line 1806 of yacc.c */ #line 445 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 52: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 53: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 475 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 61: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 483 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 65: /* Line 1806 of yacc.c */ #line 490 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 66: /* Line 1806 of yacc.c */ #line 496 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 67: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 68: /* Line 1806 of yacc.c */ #line 498 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 69: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 71: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 74: /* Line 1806 of yacc.c */ #line 513 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 76: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 79: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 531 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 84: /* Line 1806 of yacc.c */ #line 539 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 87: /* Line 1806 of yacc.c */ #line 545 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 551 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 90: /* Line 1806 of yacc.c */ #line 553 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 559 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 565 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 571 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 98: /* Line 1806 of yacc.c */ #line 577 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 100: /* Line 1806 of yacc.c */ #line 583 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 102: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 104: /* Line 1806 of yacc.c */ #line 594 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 108: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new ExpressionNode( build_binary_ptr( OperKinds::Assign, (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.en) = nullptr; } break; case 111: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 112: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.op) = OperKinds::AtAssn; } break; case 113: /* Line 1806 of yacc.c */ #line 619 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 114: /* Line 1806 of yacc.c */ #line 620 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 115: /* Line 1806 of yacc.c */ #line 621 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 116: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 117: /* Line 1806 of yacc.c */ #line 623 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 624 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 625 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 626 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 122: /* Line 1806 of yacc.c */ #line 628 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 123: /* Line 1806 of yacc.c */ #line 635 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple() ); } break; case 124: /* Line 1806 of yacc.c */ #line 637 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (yyvsp[(3) - (5)].en) ) ); } break; case 125: /* Line 1806 of yacc.c */ #line 639 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 126: /* Line 1806 of yacc.c */ #line 641 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 128: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 130: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 131: /* Line 1806 of yacc.c */ #line 658 "parser.yy" { (yyval.en) = 0; } break; case 135: /* Line 1806 of yacc.c */ #line 667 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 141: /* Line 1806 of yacc.c */ #line 674 "parser.yy" { Token fn; fn.str = new string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 142: /* Line 1806 of yacc.c */ #line 684 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 143: /* Line 1806 of yacc.c */ #line 691 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 144: /* Line 1806 of yacc.c */ #line 698 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 146: /* Line 1806 of yacc.c */ #line 704 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 147: /* Line 1806 of yacc.c */ #line 709 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 148: /* Line 1806 of yacc.c */ #line 711 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 149: /* Line 1806 of yacc.c */ #line 717 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 152: /* Line 1806 of yacc.c */ #line 724 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 153: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 154: /* Line 1806 of yacc.c */ #line 735 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 155: /* Line 1806 of yacc.c */ #line 737 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 156: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 157: /* Line 1806 of yacc.c */ #line 741 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 158: /* Line 1806 of yacc.c */ #line 751 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 753 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 160: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 161: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 163: /* Line 1806 of yacc.c */ #line 770 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 164: /* Line 1806 of yacc.c */ #line 772 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 165: /* Line 1806 of yacc.c */ #line 776 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 166: /* Line 1806 of yacc.c */ #line 777 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 168: /* Line 1806 of yacc.c */ #line 783 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 169: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 170: /* Line 1806 of yacc.c */ #line 792 "parser.yy" { (yyval.sn) = 0; } break; case 172: /* Line 1806 of yacc.c */ #line 798 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); } break; case 174: /* Line 1806 of yacc.c */ #line 805 "parser.yy" { (yyval.sn) = 0; } break; case 176: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 177: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 178: /* Line 1806 of yacc.c */ #line 815 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 179: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 180: /* Line 1806 of yacc.c */ #line 822 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 182: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = 0; } break; case 183: /* Line 1806 of yacc.c */ #line 830 "parser.yy" { (yyval.sn) = 0; } break; case 184: /* Line 1806 of yacc.c */ #line 835 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 185: /* Line 1806 of yacc.c */ #line 837 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn), true ) ); } break; case 186: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 187: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 188: /* Line 1806 of yacc.c */ #line 846 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 190: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 191: /* Line 1806 of yacc.c */ #line 858 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 192: /* Line 1806 of yacc.c */ #line 862 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 865 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 869 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 871 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 875 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 877 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 882 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 886 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 895 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 899 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 906 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 908 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 210: /* Line 1806 of yacc.c */ #line 910 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 211: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 213: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 214: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 215: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 217: /* Line 1806 of yacc.c */ #line 944 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 218: /* Line 1806 of yacc.c */ #line 946 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 219: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); } break; case 220: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); } break; case 221: /* Line 1806 of yacc.c */ #line 952 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); } break; case 222: /* Line 1806 of yacc.c */ #line 957 "parser.yy" { (yyval.flag) = false; } break; case 223: /* Line 1806 of yacc.c */ #line 959 "parser.yy" { (yyval.flag) = true; } break; case 224: /* Line 1806 of yacc.c */ #line 964 "parser.yy" { (yyval.en) = 0; } break; case 227: /* Line 1806 of yacc.c */ #line 971 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 976 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 229: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 230: /* Line 1806 of yacc.c */ #line 983 "parser.yy" { (yyval.en) = 0; } break; case 231: /* Line 1806 of yacc.c */ #line 985 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 232: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 233: /* Line 1806 of yacc.c */ #line 992 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); delete (yyvsp[(1) - (1)].tok); // allocated by lexer } break; case 234: /* Line 1806 of yacc.c */ #line 997 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); delete (yyvsp[(3) - (3)].tok); // allocated by lexer } break; case 235: /* Line 1806 of yacc.c */ #line 1007 "parser.yy" { (yyval.decl) = 0; } break; case 238: /* Line 1806 of yacc.c */ #line 1014 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 239: /* Line 1806 of yacc.c */ #line 1019 "parser.yy" { (yyval.decl) = 0; } break; case 242: /* Line 1806 of yacc.c */ #line 1026 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 247: /* Line 1806 of yacc.c */ #line 1040 "parser.yy" {} break; case 248: /* Line 1806 of yacc.c */ #line 1041 "parser.yy" {} break; case 256: /* Line 1806 of yacc.c */ #line 1070 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1077 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 258: /* Line 1806 of yacc.c */ #line 1082 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1092 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1097 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1102 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1110 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 263: /* Line 1806 of yacc.c */ #line 1115 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1120 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1125 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 266: /* Line 1806 of yacc.c */ #line 1130 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1138 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1161 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 269: /* Line 1806 of yacc.c */ #line 1165 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 270: /* Line 1806 of yacc.c */ #line 1172 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 271: /* Line 1806 of yacc.c */ #line 1176 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 272: /* Line 1806 of yacc.c */ #line 1181 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 273: /* Line 1806 of yacc.c */ #line 1186 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1191 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 275: /* Line 1806 of yacc.c */ #line 1202 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1207 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) )->addTypedef() ); } break; case 277: /* Line 1806 of yacc.c */ #line 1212 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addType( (yyvsp[(3) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef(); } break; case 278: /* Line 1806 of yacc.c */ #line 1217 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 279: /* Line 1806 of yacc.c */ #line 1222 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef()->addType( (yyvsp[(1) - (4)].decl) ); } break; case 280: /* Line 1806 of yacc.c */ #line 1231 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 281: /* Line 1806 of yacc.c */ #line 1236 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 286: /* Line 1806 of yacc.c */ #line 1253 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 287: /* Line 1806 of yacc.c */ #line 1258 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 296: /* Line 1806 of yacc.c */ #line 1280 "parser.yy" { (yyval.decl) = 0; } break; case 299: /* Line 1806 of yacc.c */ #line 1292 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 302: /* Line 1806 of yacc.c */ #line 1303 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 303: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 304: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 305: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 306: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 307: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { typedefTable.enterScope(); } break; case 308: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 314: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 315: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 316: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 317: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 318: /* Line 1806 of yacc.c */ #line 1353 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; } break; case 319: /* Line 1806 of yacc.c */ #line 1355 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 320: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; } break; case 321: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 322: /* Line 1806 of yacc.c */ #line 1365 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 323: /* Line 1806 of yacc.c */ #line 1367 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 324: /* Line 1806 of yacc.c */ #line 1369 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 325: /* Line 1806 of yacc.c */ #line 1371 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 326: /* Line 1806 of yacc.c */ #line 1373 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); } break; case 327: /* Line 1806 of yacc.c */ #line 1375 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); } break; case 328: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); } break; case 329: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); } break; case 330: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 331: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 332: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); } break; case 333: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); } break; case 334: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 336: /* Line 1806 of yacc.c */ #line 1396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1402 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1408 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 347: /* Line 1806 of yacc.c */ #line 1426 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1436 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1438 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1440 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1454 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1463 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1477 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), nullptr, nullptr, (yyvsp[(3) - (4)].decl), true ); } break; case 367: /* Line 1806 of yacc.c */ #line 1479 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), nullptr, nullptr, false ); } break; case 368: /* Line 1806 of yacc.c */ #line 1484 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), nullptr, (yyvsp[(5) - (6)].decl), true ); } break; case 370: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), nullptr, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 371: /* Line 1806 of yacc.c */ #line 1490 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 372: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 373: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 374: /* Line 1806 of yacc.c */ #line 1502 "parser.yy" { (yyval.decl) = 0; } break; case 375: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 379: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 381: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1525 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1527 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1539 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 387: /* Line 1806 of yacc.c */ #line 1541 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1547 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1553 "parser.yy" { (yyval.en) = 0; } break; case 392: /* Line 1806 of yacc.c */ #line 1555 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 393: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 395: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1571 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 397: /* Line 1806 of yacc.c */ #line 1576 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 399: /* Line 1806 of yacc.c */ #line 1583 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1585 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 401: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.en) = 0; } break; case 402: /* Line 1806 of yacc.c */ #line 1592 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 403: /* Line 1806 of yacc.c */ #line 1599 "parser.yy" { (yyval.decl) = 0; } break; case 407: /* Line 1806 of yacc.c */ #line 1607 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1609 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 409: /* Line 1806 of yacc.c */ #line 1611 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 411: /* Line 1806 of yacc.c */ #line 1619 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1621 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 413: /* Line 1806 of yacc.c */ #line 1623 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1629 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 416: /* Line 1806 of yacc.c */ #line 1634 "parser.yy" { (yyval.decl) = 0; } break; case 419: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 422: /* Line 1806 of yacc.c */ #line 1648 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1659 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1662 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1664 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1674 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1680 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1685 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 437: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 439: /* Line 1806 of yacc.c */ #line 1705 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1730 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = 0; } break; case 457: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 458: /* Line 1806 of yacc.c */ #line 1747 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 459: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1752 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 461: /* Line 1806 of yacc.c */ #line 1757 "parser.yy" { (yyval.in) = 0; } break; case 463: /* Line 1806 of yacc.c */ #line 1759 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1762 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1778 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1793 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 472: /* Line 1806 of yacc.c */ #line 1795 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 473: /* Line 1806 of yacc.c */ #line 1797 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1799 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 476: /* Line 1806 of yacc.c */ #line 1823 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1825 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1835 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1846 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 486: /* Line 1806 of yacc.c */ #line 1853 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { (yyval.tclass) = DeclarationNode::Otype; } break; case 489: /* Line 1806 of yacc.c */ #line 1861 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 490: /* Line 1806 of yacc.c */ #line 1863 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 491: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1870 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 493: /* Line 1806 of yacc.c */ #line 1875 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1880 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 495: /* Line 1806 of yacc.c */ #line 1882 "parser.yy" { (yyval.decl) = 0; } break; case 496: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1890 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 500: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 501: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1901 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1906 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1908 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 506: /* Line 1806 of yacc.c */ #line 1918 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 508: /* Line 1806 of yacc.c */ #line 1931 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 509: /* Line 1806 of yacc.c */ #line 1936 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 511: /* Line 1806 of yacc.c */ #line 1946 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1956 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 515: /* Line 1806 of yacc.c */ #line 1961 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 516: /* Line 1806 of yacc.c */ #line 1966 "parser.yy" { typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 517: /* Line 1806 of yacc.c */ #line 1974 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 518: /* Line 1806 of yacc.c */ #line 1979 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 519: /* Line 1806 of yacc.c */ #line 1989 "parser.yy" {} break; case 520: /* Line 1806 of yacc.c */ #line 1991 "parser.yy" { parseTree = parseTree != nullptr ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 522: /* Line 1806 of yacc.c */ #line 1997 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl) != nullptr ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 523: /* Line 1806 of yacc.c */ #line 2002 "parser.yy" { (yyval.decl) = 0; } break; case 527: /* Line 1806 of yacc.c */ #line 2010 "parser.yy" {} break; case 528: /* Line 1806 of yacc.c */ #line 2012 "parser.yy" { linkageStack.push( linkage ); // handle nested extern "C"/"Cforall" linkage = LinkageSpec::linkageCheck( (yyvsp[(2) - (2)].tok) ); } break; case 529: /* Line 1806 of yacc.c */ #line 2017 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 530: /* Line 1806 of yacc.c */ #line 2023 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 532: /* Line 1806 of yacc.c */ #line 2038 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2044 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (4)].decl)->addOldDeclList( (yyvsp[(3) - (4)].decl) )->addFunctionBody( (yyvsp[(4) - (4)].sn) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2053 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2059 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 536: /* Line 1806 of yacc.c */ #line 2065 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2071 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2077 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (4)].decl)->addFunctionBody( (yyvsp[(4) - (4)].sn) )->addQualifiers( (yyvsp[(2) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 539: /* Line 1806 of yacc.c */ #line 2085 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 540: /* Line 1806 of yacc.c */ #line 2091 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 541: /* Line 1806 of yacc.c */ #line 2099 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2105 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (6)].decl)->addOldDeclList( (yyvsp[(5) - (6)].decl) )->addFunctionBody( (yyvsp[(6) - (6)].sn) )->addQualifiers( (yyvsp[(2) - (6)].decl) )->addQualifiers( (yyvsp[(1) - (6)].decl) ); } break; case 546: /* Line 1806 of yacc.c */ #line 2120 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 548: /* Line 1806 of yacc.c */ #line 2125 "parser.yy" { delete (yyvsp[(3) - (5)].str); } break; case 549: /* Line 1806 of yacc.c */ #line 2130 "parser.yy" { (yyval.decl) = 0; } break; case 552: /* Line 1806 of yacc.c */ #line 2137 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 553: /* Line 1806 of yacc.c */ #line 2143 "parser.yy" { (yyval.decl) = 0; } break; case 558: /* Line 1806 of yacc.c */ #line 2154 "parser.yy" { delete (yyvsp[(3) - (4)].en); } break; case 559: /* Line 1806 of yacc.c */ #line 2158 "parser.yy" { delete (yyvsp[(1) - (1)].tok); } break; case 560: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 561: /* Line 1806 of yacc.c */ #line 2160 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 562: /* Line 1806 of yacc.c */ #line 2161 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 563: /* Line 1806 of yacc.c */ #line 2196 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2199 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2201 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2206 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 569: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2225 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2229 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2231 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 576: /* Line 1806 of yacc.c */ #line 2236 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2238 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2247 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2250 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 584: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 587: /* Line 1806 of yacc.c */ #line 2273 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2275 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2294 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2296 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 596: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2305 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 599: /* Line 1806 of yacc.c */ #line 2310 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2314 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 602: /* Line 1806 of yacc.c */ #line 2329 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2340 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 608: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 615: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2367 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2369 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 618: /* Line 1806 of yacc.c */ #line 2379 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2382 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2384 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2391 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2393 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2400 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2402 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 629: /* Line 1806 of yacc.c */ #line 2409 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2411 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2413 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 632: /* Line 1806 of yacc.c */ #line 2444 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2449 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2459 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2467 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2471 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 641: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2483 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 649: /* Line 1806 of yacc.c */ #line 2509 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2511 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2513 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2515 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 654: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2530 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 658: /* Line 1806 of yacc.c */ #line 2532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2534 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 660: /* Line 1806 of yacc.c */ #line 2540 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 661: /* Line 1806 of yacc.c */ #line 2542 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2548 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 664: /* Line 1806 of yacc.c */ #line 2550 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 665: /* Line 1806 of yacc.c */ #line 2552 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2554 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 671: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2584 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 676: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2599 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 680: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 683: /* Line 1806 of yacc.c */ #line 2610 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 686: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 687: /* Line 1806 of yacc.c */ #line 2626 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 688: /* Line 1806 of yacc.c */ #line 2629 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 689: /* Line 1806 of yacc.c */ #line 2631 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 690: /* Line 1806 of yacc.c */ #line 2633 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 692: /* Line 1806 of yacc.c */ #line 2647 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2654 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 695: /* Line 1806 of yacc.c */ #line 2656 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2658 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2660 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2662 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 700: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2672 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2677 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2679 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 707: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2699 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2701 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2703 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2705 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2707 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2716 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2718 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2720 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2722 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2724 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2726 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2728 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2730 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2732 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2734 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 728: /* Line 1806 of yacc.c */ #line 2746 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 729: /* Line 1806 of yacc.c */ #line 2748 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 731: /* Line 1806 of yacc.c */ #line 2775 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2786 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2788 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2790 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2792 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2803 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2805 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2807 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2809 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2811 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2813 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2818 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2823 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, DeclarationNode::newTuple( nullptr ), (yyvsp[(4) - (5)].decl), nullptr ); } break; case 749: /* Line 1806 of yacc.c */ #line 2825 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 750: /* Line 1806 of yacc.c */ #line 2827 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 753: /* Line 1806 of yacc.c */ #line 2851 "parser.yy" { (yyval.en) = 0; } break; case 754: /* Line 1806 of yacc.c */ #line 2853 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9190 "Parser/parser.cc" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2067 of yacc.c */ #line 2856 "parser.yy" // ----end of grammar---- extern char *yytext; void yyerror( const char * ) { cout << "Error "; if ( yyfilename ) { cout << "in file " << yyfilename << " "; } // if cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //