From 93d6b7f962a82b725d1918684297d68221b0b733 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 10 Dec 2018 14:03:53 +0100 Subject: [PATCH] #pragma lib --- psi.d/netdb.psi | 2 +- psi.d/stdlib.psi | 2 +- psi.d/time.psi | 2 +- src/cpp.c | 43 +- src/cpp.h | 2 + src/parser_proc.c | 6080 +++++++++++++++++++------------------ src/parser_proc.h | 2 +- src/parser_proc_grammar.y | 10 +- src/parser_scan.c | 1541 ++++------ src/parser_scan.re | 1 - src/types/cpp_exp.c | 9 +- tests/calc/calc.psi | 2 +- tests/idn/idn.psi | 4 +- tests/ndbm/gdbm.psi | 2 +- tests/ndbm/ndbm.psi | 2 +- tests/pipe/pipe.psi | 2 +- tests/sqlite/sqlite.psi | 2 +- tests/yaml/yaml.psi | 4 +- 18 files changed, 3706 insertions(+), 4006 deletions(-) diff --git a/psi.d/netdb.psi b/psi.d/netdb.psi index 6b55fec..a564a7a 100644 --- a/psi.d/netdb.psi +++ b/psi.d/netdb.psi @@ -1,5 +1,5 @@ #ifdef __linux__ -lib "anl"; +#pragma lib "anl"; #endif #include diff --git a/psi.d/stdlib.psi b/psi.d/stdlib.psi index 42212dc..35cf171 100644 --- a/psi.d/stdlib.psi +++ b/psi.d/stdlib.psi @@ -1,5 +1,5 @@ #ifdef __linux__ -lib "crypt"; +#pragma lib "crypt"; #endif #include diff --git a/psi.d/time.psi b/psi.d/time.psi index 152eba3..84c47ba 100644 --- a/psi.d/time.psi +++ b/psi.d/time.psi @@ -1,5 +1,5 @@ #ifdef __linux__ /* old, anyway */ -lib "rt"; +#pragma lib "rt"; #endif #include diff --git a/src/cpp.c b/src/cpp.c index c436ef3..ae89949 100644 --- a/src/cpp.c +++ b/src/cpp.c @@ -41,7 +41,30 @@ #define PSI_CPP_PREDEF #include "php_psi_predef.h" -HashTable psi_cpp_defaults; +static HashTable psi_cpp_defaults; +static HashTable psi_cpp_pragmas; + +typedef bool (*psi_cpp_pragma_func)(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl); + +static bool psi_cpp_pragma_once(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl) +{ + return NULL != zend_hash_add_empty_element(&cpp->once, decl->token->file); +} + +static bool psi_cpp_pragma_lib(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl) +{ + struct psi_token *lib = NULL; + char *libname; + + if (!psi_plist_get(decl->tokens, 0, &lib) + || !lib || lib->type != PSI_T_QUOTED_STRING) { + return false; + } + + cpp->parser->file.libnames = psi_plist_add(cpp->parser->file.libnames, + &libname); + return true; +} PHP_MINIT_FUNCTION(psi_cpp); PHP_MINIT_FUNCTION(psi_cpp) @@ -73,6 +96,12 @@ PHP_MINIT_FUNCTION(psi_cpp) psi_parser_dtor(&parser); +#define PSI_CPP_PRAGMA(name) \ + zend_hash_str_add_ptr(&psi_cpp_pragmas, #name, strlen(#name), psi_cpp_pragma_ ## name) + zend_hash_init(&psi_cpp_pragmas, 0, NULL, NULL, 1); + PSI_CPP_PRAGMA(once); + PSI_CPP_PRAGMA(lib); + return SUCCESS; } @@ -468,6 +497,18 @@ bool psi_cpp_if(struct psi_cpp *cpp, struct psi_cpp_exp *exp) return true; } +bool psi_cpp_pragma(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl) +{ + psi_cpp_pragma_func *fn; + + fn = zend_hash_find_ptr(&psi_cpp_pragmas, decl->token->text); + if (!fn) { + return false; + } + + return fn(cpp, decl); +} + bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags) { bool parsed = false; diff --git a/src/cpp.h b/src/cpp.h index 57e9eb5..9d98abd 100644 --- a/src/cpp.h +++ b/src/cpp.h @@ -70,6 +70,8 @@ bool psi_cpp_undef(struct psi_cpp *cpp, struct psi_token *tok); bool psi_cpp_has_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags, char *path); bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags); +bool psi_cpp_pragma(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl); + void psi_cpp_tokiter_reset(struct psi_cpp *cpp); bool psi_cpp_tokiter_seek(struct psi_cpp *cpp, size_t index); #if PSI_CPP_DEBUG > 1 diff --git a/src/parser_proc.c b/src/parser_proc.c index 75c8106..bc386a7 100644 --- a/src/parser_proc.c +++ b/src/parser_proc.c @@ -181,10 +181,14 @@ static inline void psi_parser_proc_add_impl(struct psi_parser *P, struct psi_imp } P->impls = psi_plist_add(P->impls, &impl); } +static inline void psi_parser_proc_add_lib(struct psi_parser *P, zend_string *lib) { + char *libname = strdup(lib->val); + P->file.libnames = psi_plist_add(P->file.libnames, &libname); +} /* end code */ -#line 188 "src/parser_proc.c" /* glr.c:261 */ +#line 192 "src/parser_proc.c" /* glr.c:261 */ #include #include @@ -298,16 +302,16 @@ static inline void psi_parser_proc_add_impl(struct psi_parser *P, struct psi_imp /* YYFINAL -- State number of the termination state. */ #define YYFINAL 166 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 8213 +#define YYLAST 8244 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 140 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 142 /* YYNRULES -- Number of rules. */ -#define YYNRULES 637 +#define YYNRULES 638 /* YYNRULES -- Number of states. */ -#define YYNSTATES 950 +#define YYNSTATES 953 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */ #define YYMAXRHS 16 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle @@ -370,70 +374,70 @@ static const unsigned char yytranslate[] = /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const unsigned short yyrline[] = { - 0, 412, 412, 412, 412, 412, 412, 412, 412, 412, - 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, - 413, 413, 413, 413, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, - 415, 415, 415, 415, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, + 0, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, - 420, 421, 424, 425, 428, 429, 430, 431, 437, 441, - 444, 447, 450, 456, 459, 462, 465, 468, 474, 480, - 483, 489, 512, 516, 520, 525, 529, 533, 537, 544, - 545, 549, 550, 554, 555, 556, 560, 561, 565, 566, - 570, 571, 572, 576, 577, 581, 586, 591, 596, 605, - 608, 611, 612, 618, 623, 631, 634, 638, 642, 649, - 653, 657, 661, 666, 677, 688, 693, 698, 702, 708, - 719, 722, 726, 734, 738, 744, 748, 755, 759, 763, - 770, 771, 772, 776, 790, 796, 799, 805, 808, 814, - 815, 823, 834, 843, 855, 856, 860, 870, 879, 891, - 892, 895, 901, 902, 906, 910, 914, 919, 924, 932, - 933, 934, 937, 943, 946, 949, 955, 956, 960, 963, - 966, 972, 975, 978, 986, 998, 1001, 1004, 1007, 1014, - 1017, 1027, 1030, 1033, 1036, 1037, 1038, 1042, 1045, 1048, - 1059, 1066, 1076, 1079, 1085, 1088, 1095, 1131, 1134, 1140, - 1143, 1149, 1155, 1156, 1157, 1158, 1159, 1160, 1164, 1168, - 1169, 1173, 1174, 1178, 1179, 1186, 1187, 1191, 1198, 1209, - 1216, 1224, 1248, 1277, 1284, 1295, 1341, 1382, 1397, 1400, - 1403, 1409, 1412, 1418, 1433, 1436, 1465, 1473, 1501, 1506, - 1514, 1524, 1534, 1537, 1541, 1547, 1561, 1578, 1581, 1587, - 1594, 1601, 1609, 1620, 1627, 1630, 1636, 1641, 1649, 1653, - 1657, 1661, 1665, 1669, 1676, 1680, 1684, 1688, 1692, 1696, - 1702, 1706, 1713, 1716, 1728, 1732, 1736, 1743, 1756, 1769, - 1782, 1785, 1792, 1793, 1797, 1800, 1803, 1806, 1812, 1816, - 1823, 1826, 1829, 1844, 1845, 1846, 1847, 1851, 1854, 1860, - 1861, 1867, 1870, 1876, 1877, 1881, 1882, 1892, 1895, 1902, - 1907, 1912, 1922, 1925, 1931, 1934, 1940, 1947, 1954, 1961, - 1962, 1966, 1967, 1968, 1969, 1970, 1974, 1975, 1976, 1977, - 1981, 1984, 1990, 1993, 1996, 1999, 2002, 2008, 2012, 2020, - 2021, 2025, 2032, 2035, 2038, 2041, 2045, 2048, 2054, 2058, - 2066, 2073, 2078, 2086, 2094, 2095, 2096, 2097, 2098, 2099, - 2100, 2101, 2102, 2103, 2107, 2110, 2116, 2119, 2125, 2126, - 2130, 2133, 2139, 2142, 2148, 2155, 2159, 2166, 2169, 2172, - 2178, 2185, 2188, 2191, 2198, 2203, 2211, 2212, 2213, 2214, - 2215, 2216, 2217, 2218, 2222, 2225, 2231, 2234, 2240, 2247, - 2248, 2252, 2259, 2262, 2268, 2276, 2279, 2285 + 417, 417, 417, 417, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 418, 418, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, + 419, 419, 419, 419, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, + 424, 425, 428, 429, 432, 433, 434, 435, 441, 444, + 447, 450, 453, 459, 462, 465, 468, 471, 477, 480, + 486, 489, 495, 518, 522, 526, 531, 535, 539, 543, + 550, 551, 555, 556, 560, 561, 562, 566, 567, 571, + 572, 576, 577, 578, 582, 583, 587, 592, 597, 602, + 611, 614, 617, 618, 624, 629, 637, 640, 644, 648, + 655, 659, 663, 667, 672, 683, 694, 699, 704, 708, + 714, 725, 728, 732, 740, 744, 750, 754, 761, 765, + 769, 776, 777, 778, 782, 796, 802, 805, 811, 814, + 820, 821, 829, 840, 849, 861, 862, 866, 876, 885, + 897, 898, 901, 907, 908, 912, 916, 920, 925, 930, + 938, 939, 940, 943, 949, 952, 955, 961, 962, 966, + 969, 972, 978, 981, 984, 992, 1004, 1007, 1010, 1013, + 1020, 1023, 1033, 1036, 1039, 1042, 1043, 1044, 1048, 1051, + 1054, 1065, 1072, 1082, 1085, 1091, 1094, 1101, 1137, 1140, + 1146, 1149, 1155, 1161, 1162, 1163, 1164, 1165, 1166, 1170, + 1174, 1175, 1179, 1180, 1184, 1185, 1192, 1193, 1197, 1204, + 1215, 1222, 1230, 1254, 1283, 1290, 1301, 1347, 1388, 1403, + 1406, 1409, 1415, 1418, 1424, 1439, 1442, 1471, 1479, 1507, + 1512, 1520, 1530, 1540, 1543, 1547, 1553, 1567, 1584, 1587, + 1593, 1600, 1607, 1615, 1626, 1633, 1636, 1642, 1647, 1655, + 1659, 1663, 1667, 1671, 1675, 1682, 1686, 1690, 1694, 1698, + 1702, 1708, 1712, 1719, 1722, 1734, 1738, 1742, 1749, 1762, + 1775, 1788, 1791, 1798, 1799, 1803, 1806, 1809, 1812, 1818, + 1822, 1829, 1832, 1835, 1850, 1851, 1852, 1853, 1857, 1860, + 1866, 1867, 1873, 1876, 1882, 1883, 1887, 1888, 1898, 1901, + 1908, 1913, 1918, 1928, 1931, 1937, 1940, 1946, 1953, 1960, + 1967, 1968, 1972, 1973, 1974, 1975, 1976, 1980, 1981, 1982, + 1983, 1987, 1990, 1996, 1999, 2002, 2005, 2008, 2014, 2018, + 2026, 2027, 2031, 2038, 2041, 2044, 2047, 2051, 2054, 2060, + 2064, 2072, 2079, 2084, 2092, 2100, 2101, 2102, 2103, 2104, + 2105, 2106, 2107, 2108, 2109, 2113, 2116, 2122, 2125, 2131, + 2132, 2136, 2139, 2145, 2148, 2154, 2161, 2165, 2172, 2175, + 2178, 2184, 2191, 2194, 2197, 2204, 2209, 2217, 2218, 2219, + 2220, 2221, 2222, 2223, 2224, 2228, 2231, 2237, 2240, 2246, + 2253, 2254, 2258, 2265, 2268, 2274, 2282, 2285, 2291 }; #endif @@ -503,108 +507,109 @@ static const char *const yytname[] = }; #endif -#define YYPACT_NINF -731 -#define YYTABLE_NINF -636 +#define YYPACT_NINF -719 +#define YYTABLE_NINF -637 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const short yypact[] = { - 529, -731, -731, -731, -731, -731, 128, -731, -731, -731, - 582, -731, -731, -731, 555, 722, 7975, 7975, 7975, 348, - 77, -23, 80, -731, 281, -731, 132, 529, -731, -731, - -731, -731, -731, 7120, 109, -731, -731, -731, -731, 409, - 161, -731, -731, -731, -731, 493, 26, -731, -731, 30, - 96, 126, -731, -731, -731, -731, 125, -731, 142, -731, - -731, -731, 7975, 7975, 7975, -731, -731, -731, 145, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, 861, -731, -731, -731, -731, 151, 987, 987, 33, - -731, 987, 6894, 7975, 7975, 1728, 154, -731, -731, -731, - 165, 7975, 164, 164, -731, -731, -731, -731, -731, -731, - 1353, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, 114, -731, -731, 114, 181, -731, -731, -731, -731, - -731, -731, 201, 192, -731, 214, -731, 218, -731, 234, - -731, 1841, 722, 138, -731, 26, -731, -731, 46, 224, - -731, -731, 232, 7975, 17, -731, -731, -731, 261, -731, - 101, -731, -731, -731, 507, -731, 233, 244, 248, 1954, - 1954, 7975, 230, -731, -731, -731, 7459, 26, -731, 1693, - -731, -731, -731, -731, -731, -731, -731, -731, 1806, 1919, - 2032, 2145, -731, 2258, 2371, -731, -731, -731, 2484, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, 2597, 2710, 2823, 2936, 3049, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, 3162, -731, 3275, 3388, 3501, 3614, 3727, 3840, -731, - 3953, -731, -731, 4066, 4179, 4292, 4405, 4518, 4631, 4744, - 4857, 4970, 5083, 5196, 5309, 5422, 5535, 5648, 5761, -731, - -731, -731, -731, -731, -731, -731, 5874, 987, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, 987, - -731, -731, -731, -731, -731, -731, -731, 116, 6894, -731, - -731, -731, -731, 7572, 6894, 250, 8076, -731, 111, -731, - 169, -731, -731, -731, -731, 245, 247, 247, 91, 91, - 6103, 256, -731, 230, 252, 266, -731, 268, -731, -731, - -731, 1467, -731, 255, 224, -731, -731, -731, -731, -731, - 301, -731, -731, 1239, -731, 283, -731, 52, 7120, -731, - 279, 173, 284, -731, -731, 175, 277, 286, -731, 7459, - 6555, 7459, 7975, 7459, -731, -731, 129, -731, -731, -731, - -731, -731, 6781, -731, 287, -731, 7975, 299, -731, 317, - 8076, 307, -731, -731, -731, -731, 755, 331, -731, 7108, - 7975, -731, -731, 1580, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, 6894, 6894, 323, 1420, 7459, 7459, -731, -731, - -731, -731, 153, -731, -731, -731, -731, -731, 5990, 6781, - 325, -731, 307, -731, 8100, -731, -731, 6103, 179, 427, - -731, -731, -731, -731, -731, -731, 8052, 320, 7685, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - 1113, -731, 76, 56, 1954, 224, 308, 493, 224, 309, - 6781, 7975, 338, 346, 356, 8100, 351, 357, -731, 360, - 369, 354, 363, 122, -731, 370, 376, -731, -731, -731, - 769, 7459, -731, 7744, -731, 255, 375, -731, -731, -731, - 378, -731, 8076, 379, 388, 7676, -731, 398, 1728, 389, - -731, -731, 7007, 229, 7975, 164, 164, -731, -731, 36, - 38, 47, 7225, -731, -731, 6781, 6781, 394, -731, -731, - -731, -731, -731, 391, 186, -731, 80, -731, -731, -731, - -731, -731, 255, 180, -731, -731, -731, 255, -731, 196, - -731, 399, -731, -731, 403, 8100, -731, -731, 6216, -731, - 6555, -731, 7459, -731, 80, 7459, -731, 7975, 7857, -731, - -731, -731, -731, -731, 405, 393, -731, -731, -731, -731, - 6894, 6894, 411, -731, 71, 412, -731, 389, 247, 247, - 6781, -731, 7838, -731, -731, 641, 413, 641, 407, 7975, - 1954, -731, 7233, 224, 392, 224, 224, 158, 350, 238, - 431, 8100, -731, -731, -731, -731, 434, 6668, -731, 433, - 7459, 219, -731, 436, 287, 440, 987, 7916, 8076, 8124, - 449, 441, 443, 7346, 446, 412, 7459, 7459, -731, 6781, - -731, 641, -731, 80, 6103, 448, 452, -731, -731, 453, - -731, -731, 431, -731, -731, -731, 7857, -731, 455, 6781, - 80, -731, 6329, 456, 460, -731, 395, -731, -731, -731, - 462, 458, 471, 389, 472, -731, -731, 474, 8148, -731, - 48, -731, 476, 484, 224, 488, 80, 7563, 489, 491, - -731, 492, -731, -731, 61, -731, 495, 494, -731, 7346, - -731, 506, 1954, 500, -731, 445, 511, 6781, 6216, 512, - -731, 6555, -731, -731, 515, 519, 523, 389, -731, 516, - 520, 1954, 276, 6442, 7442, 346, -731, -731, -731, 518, - 6668, -731, -731, 522, 521, -731, 526, 524, 530, 534, - 535, 528, -731, -731, 6216, -731, 542, -731, 641, 537, - 224, 80, 538, 6555, -731, 539, -731, 1954, -731, 541, - -731, -731, -731, 543, 6442, 224, 548, -731, 549, -731 + 497, -719, -719, -719, -719, -719, 99, -719, -719, -719, + 248, -719, -719, -719, 742, 275, 7978, 7978, 7978, 225, + 59, -20, 31, -719, 107, -719, 97, 497, -719, -719, + -719, -719, -719, 7123, 1957, -719, -719, -719, -719, 144, + 198, -719, -719, -719, -719, 1423, 5, -719, -719, 32, + 108, 115, -719, -719, -719, -719, 140, -719, 148, -719, + -719, -719, 7978, 7978, 7978, -719, -719, -719, 88, -719, + 98, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, 864, -719, -719, -719, -719, 168, 990, 990, 20, + -719, 990, 6897, 7978, 7978, 1537, 177, -719, -719, -719, + 179, 7978, 194, 194, -719, -719, -719, -719, -719, -719, + 1356, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, 125, -719, -719, 125, 211, -719, -719, -719, -719, + -719, -719, 220, 239, -719, 233, -719, 242, -719, 282, + -719, 1731, 275, 187, -719, 5, -719, -719, 50, 273, + -719, -719, 281, 7978, 1, -719, -719, -719, 308, -719, + 96, -719, -719, -719, 173, -719, 279, 285, 287, 1844, + 1844, 7978, 195, -719, -719, -719, 7462, 5, 290, -719, + 1696, -719, -719, -719, -719, -719, -719, -719, -719, 1809, + 1922, 2035, 2148, -719, 2261, 2374, -719, -719, -719, 2487, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, 2600, 2713, 2826, 2939, 3052, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, 3165, -719, 3278, 3391, 3504, 3617, 3730, 3843, + -719, 3956, -719, -719, 4069, 4182, 4295, 4408, 4521, 4634, + 4747, 4860, 4973, 5086, 5199, 5312, 5425, 5538, 5651, 5764, + -719, -719, -719, -719, -719, -719, -719, 5877, 990, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + 990, -719, -719, -719, -719, -719, -719, -719, 207, 6897, + -719, -719, -719, -719, 7575, 6897, 291, 8107, -719, 133, + -719, 214, -719, -719, -719, -719, 289, 286, 286, 53, + 53, 6106, 288, -719, 195, 294, 296, -719, 299, -719, + -719, -719, 1470, -719, 292, 273, -719, -719, -719, -719, + -719, 325, -719, -719, 1242, -719, 310, -719, 209, 7123, + -719, 306, 235, 305, -719, -719, 238, 300, 309, -719, + 7462, 6558, 7462, 7978, 7462, -719, -719, 284, -719, -719, + -719, -719, -719, 6784, -719, 311, -719, 7978, 315, 316, + -719, 317, 8107, 322, -719, -719, -719, -719, 758, 320, + -719, 7228, 7978, -719, -719, 1583, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, 6897, 6897, 321, 624, 7462, 7462, + -719, -719, -719, -719, 166, -719, -719, -719, -719, -719, + 5993, 6784, 323, -719, 322, -719, 8131, -719, -719, 6106, + 331, 545, -719, -719, -719, -719, -719, -719, 8083, 318, + 7688, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, 1116, -719, 102, 42, 1844, 273, 301, 1423, + 273, 303, 6784, 7978, 319, 332, 342, 8131, 334, 350, + -719, 353, 363, 348, 357, 120, -719, 359, 362, -719, + -719, -719, 7111, 7462, -719, -719, 7747, -719, 292, 361, + -719, -719, -719, 365, -719, 8107, 370, 374, 7841, -719, + 384, 1537, 360, -719, -719, 7010, 585, 7978, 194, 194, + -719, -719, 36, 39, 71, 7445, -719, -719, 6784, 6784, + 379, -719, -719, -719, -719, -719, 378, 240, -719, 31, + -719, -719, -719, -719, -719, 292, 243, -719, -719, -719, + 292, -719, 265, -719, 381, -719, -719, 385, 8131, -719, + -719, 6219, -719, 6558, -719, 7462, -719, 31, 7462, -719, + 7978, 7860, -719, -719, -719, -719, -719, 386, 383, -719, + -719, -719, -719, 6897, 6897, 387, -719, 84, 394, -719, + 360, 286, 286, 6784, -719, 8059, -719, -719, 734, 397, + 734, 380, 7978, 1844, -719, 7236, 273, 369, 273, 273, + 193, 328, 627, 406, 8131, -719, -719, -719, -719, 408, + 6671, -719, 407, 7462, 267, -719, 409, 311, 412, 990, + 7919, 8107, 8155, 421, 413, 415, 7349, 418, 394, 7462, + 7462, -719, 6784, -719, 734, -719, 31, 6106, 417, 419, + -719, -719, 420, -719, -719, 406, -719, -719, -719, 7860, + -719, 425, 6784, 31, -719, 6332, 426, 427, -719, 364, + -719, -719, -719, 429, 428, 435, 360, 434, -719, -719, + 441, 8179, -719, 43, -719, 443, 444, 273, 445, 31, + 7679, 442, 446, -719, 452, -719, -719, 60, -719, 455, + 457, -719, 7349, -719, 465, 1844, 462, -719, 398, 464, + 6784, 6219, 466, -719, 6558, -719, -719, 478, 472, 487, + 360, -719, 480, 482, 1844, 114, 6445, 7566, 332, -719, + -719, -719, 483, 6671, -719, -719, 484, 488, -719, 485, + 490, 491, 493, 496, 498, -719, -719, 6219, -719, 506, + -719, 734, 503, 273, 31, 504, 6558, -719, 507, -719, + 1844, -719, 510, -719, -719, -719, 511, 6445, 273, 512, + -719, 513, -719 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. @@ -612,141 +617,142 @@ static const short yypact[] = means the default is an error. */ static const unsigned short yydefact[] = { - 280, 401, 398, 402, 396, 397, 399, 393, 394, 392, - 391, 383, 285, 284, 0, 0, 0, 0, 510, 382, - 0, 432, 635, 286, 0, 436, 0, 281, 282, 288, - 287, 289, 293, 527, 0, 379, 385, 384, 390, 405, - 417, 389, 290, 291, 292, 0, 422, 443, 445, 446, - 0, 0, 457, 295, 294, 296, 0, 297, 0, 400, - 395, 391, 0, 0, 0, 382, 437, 444, 427, 299, - 310, 307, 309, 311, 312, 323, 320, 321, 318, 324, - 319, 0, 322, 313, 314, 315, 0, 335, 335, 0, - 303, 0, 0, 510, 510, 0, 0, 365, 370, 466, - 369, 0, 518, 518, 33, 34, 35, 36, 37, 623, - 584, 24, 42, 41, 40, 38, 39, 32, 31, 25, - 29, 28, 26, 27, 43, 592, 591, 589, 587, 588, - 590, 586, 585, 593, 30, 621, 619, 618, 620, 617, - 616, 386, 44, 45, 387, 388, 507, 551, 552, 553, - 554, 555, 0, 0, 548, 0, 433, 0, 637, 0, - 636, 391, 0, 0, 434, 422, 1, 283, 533, 520, - 381, 467, 0, 528, 529, 531, 380, 407, 411, 409, - 413, 406, 403, 418, 405, 404, 0, 0, 0, 458, - 458, 0, 0, 386, 387, 388, 0, 422, 71, 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, 161, 162, 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, - 111, 109, 110, 108, 106, 107, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 163, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, - 155, 159, 156, 157, 158, 160, 0, 335, 305, 300, - 46, 55, 56, 57, 58, 60, 61, 65, 109, 110, - 108, 106, 107, 127, 129, 130, 131, 132, 133, 134, - 163, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 150, 151, 152, 153, 337, 308, 336, - 301, 316, 317, 302, 304, 345, 346, 0, 0, 22, - 23, 20, 21, 0, 0, 348, 306, 347, 386, 509, - 387, 508, 366, 363, 371, 0, 0, 0, 0, 0, - 0, 0, 298, 0, 0, 0, 435, 0, 536, 535, - 534, 523, 469, 527, 520, 530, 532, 412, 408, 414, - 415, 410, 419, 0, 431, 0, 420, 392, 527, 463, - 0, 0, 460, 461, 464, 0, 486, 512, 484, 0, - 635, 0, 0, 0, 629, 630, 0, 560, 563, 562, - 564, 565, 0, 566, 428, 429, 0, 0, 424, 0, - 327, 328, 325, 338, 506, 505, 0, 0, 501, 0, - 0, 343, 340, 350, 2, 3, 4, 5, 6, 7, - 8, 9, 10, 11, 13, 12, 14, 15, 16, 17, - 18, 19, 0, 0, 0, 0, 0, 0, 472, 471, - 473, 470, 497, 361, 362, 495, 494, 496, 0, 0, - 0, 357, 359, 498, 358, 488, 499, 0, 0, 0, - 364, 421, 497, 525, 526, 524, 0, 0, 0, 528, - 468, 416, 189, 164, 165, 166, 167, 168, 169, 170, - 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 277, 278, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 221, 227, 225, 226, 224, 222, 223, 228, 229, - 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, - 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, - 250, 251, 279, 252, 253, 254, 255, 256, 257, 258, - 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, - 269, 270, 271, 275, 272, 273, 274, 276, 441, 442, - 0, 439, 0, 520, 458, 520, 0, 0, 520, 0, - 0, 513, 0, 0, 0, 612, 0, 0, 611, 45, - 0, 0, 0, 0, 632, 0, 0, 606, 537, 561, - 0, 0, 426, 329, 425, 527, 0, 502, 504, 339, - 0, 352, 353, 0, 351, 0, 341, 0, 0, 514, - 374, 367, 375, 0, 376, 518, 518, 373, 372, 623, - 24, 0, 0, 492, 356, 0, 0, 0, 538, 557, - 558, 559, 556, 0, 0, 542, 635, 547, 549, 550, - 522, 521, 527, 0, 438, 440, 423, 527, 465, 0, - 449, 0, 462, 447, 0, 487, 485, 483, 0, 567, - 635, 610, 0, 546, 635, 0, 631, 0, 607, 604, - 628, 430, 330, 333, 0, 331, 503, 500, 344, 349, - 0, 0, 0, 368, 0, 477, 474, 514, 0, 0, - 0, 490, 0, 491, 355, 0, 0, 0, 544, 0, - 458, 455, 0, 520, 0, 520, 520, 497, 0, 31, - 30, 573, 578, 574, 576, 577, 44, 0, 613, 624, - 0, 0, 633, 623, 609, 0, 335, 0, 354, 342, - 0, 515, 0, 514, 0, 477, 378, 377, 489, 0, - 539, 0, 543, 635, 0, 0, 0, 456, 453, 0, - 450, 448, 0, 575, 598, 584, 607, 599, 0, 0, - 635, 579, 635, 0, 0, 634, 0, 326, 332, 334, - 0, 0, 0, 514, 478, 481, 475, 0, 493, 540, - 0, 545, 0, 0, 520, 0, 635, 0, 594, 0, - 626, 625, 614, 568, 0, 519, 0, 0, 479, 514, - 476, 0, 458, 0, 454, 0, 0, 0, 0, 0, - 615, 635, 622, 605, 0, 0, 0, 514, 482, 0, - 0, 458, 0, 600, 0, 498, 596, 571, 569, 595, - 0, 583, 627, 0, 0, 480, 0, 0, 0, 0, - 0, 601, 602, 580, 0, 570, 0, 516, 0, 0, - 520, 635, 0, 635, 597, 0, 541, 458, 451, 0, - 581, 603, 517, 0, 600, 520, 0, 452, 0, 582 + 280, 402, 399, 403, 397, 398, 400, 394, 395, 393, + 392, 384, 285, 284, 0, 0, 0, 0, 511, 383, + 0, 433, 636, 286, 0, 437, 0, 281, 282, 288, + 287, 289, 293, 528, 0, 380, 386, 385, 391, 406, + 418, 390, 290, 291, 292, 0, 423, 444, 446, 447, + 0, 0, 458, 295, 294, 296, 0, 297, 0, 401, + 396, 392, 0, 0, 0, 383, 438, 445, 428, 300, + 311, 308, 310, 312, 313, 324, 321, 322, 319, 325, + 320, 0, 323, 314, 315, 316, 0, 336, 336, 0, + 304, 0, 0, 511, 511, 0, 0, 366, 371, 467, + 370, 0, 519, 519, 33, 34, 35, 36, 37, 624, + 585, 24, 42, 41, 40, 38, 39, 32, 31, 25, + 29, 28, 26, 27, 43, 593, 592, 590, 588, 589, + 591, 587, 586, 594, 30, 622, 620, 619, 621, 618, + 617, 387, 44, 45, 388, 389, 508, 552, 553, 554, + 555, 556, 0, 0, 549, 0, 434, 0, 638, 0, + 637, 392, 0, 0, 435, 423, 1, 283, 534, 521, + 382, 468, 0, 529, 530, 532, 381, 408, 412, 410, + 414, 407, 404, 419, 406, 405, 0, 0, 0, 459, + 459, 0, 0, 387, 388, 389, 0, 423, 0, 71, + 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, 161, 162, 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, 111, 109, 110, 108, 106, 107, 112, 113, 114, + 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 163, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, + 154, 155, 159, 156, 157, 158, 160, 0, 336, 306, + 301, 46, 55, 56, 57, 58, 60, 61, 65, 109, + 110, 108, 106, 107, 127, 129, 130, 131, 132, 133, + 134, 163, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, 151, 152, 153, 338, 309, + 337, 302, 317, 318, 303, 305, 346, 347, 0, 0, + 22, 23, 20, 21, 0, 0, 349, 307, 348, 387, + 510, 388, 509, 367, 364, 372, 0, 0, 0, 0, + 0, 0, 0, 298, 0, 0, 0, 436, 0, 537, + 536, 535, 524, 470, 528, 521, 531, 533, 413, 409, + 415, 416, 411, 420, 0, 432, 0, 421, 393, 528, + 464, 0, 0, 461, 462, 465, 0, 487, 513, 485, + 0, 636, 0, 0, 0, 630, 631, 0, 561, 564, + 563, 565, 566, 0, 567, 429, 430, 0, 0, 0, + 425, 0, 328, 329, 326, 339, 507, 506, 0, 0, + 502, 0, 0, 344, 341, 351, 2, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 13, 12, 14, 15, + 16, 17, 18, 19, 0, 0, 0, 0, 0, 0, + 473, 472, 474, 471, 498, 362, 363, 496, 495, 497, + 0, 0, 0, 358, 360, 499, 359, 489, 500, 0, + 0, 0, 365, 422, 498, 526, 527, 525, 0, 0, + 0, 529, 469, 417, 189, 164, 165, 166, 167, 168, + 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 277, 278, 190, 191, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, + 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, + 218, 219, 220, 221, 227, 225, 226, 224, 222, 223, + 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, + 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 279, 252, 253, 254, 255, 256, + 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, + 267, 268, 269, 270, 271, 275, 272, 273, 274, 276, + 442, 443, 0, 440, 0, 521, 459, 521, 0, 0, + 521, 0, 0, 514, 0, 0, 0, 613, 0, 0, + 612, 45, 0, 0, 0, 0, 633, 0, 0, 607, + 538, 562, 0, 0, 427, 299, 330, 426, 528, 0, + 503, 505, 340, 0, 353, 354, 0, 352, 0, 342, + 0, 0, 515, 375, 368, 376, 0, 377, 519, 519, + 374, 373, 624, 24, 0, 0, 493, 357, 0, 0, + 0, 539, 558, 559, 560, 557, 0, 0, 543, 636, + 548, 550, 551, 523, 522, 528, 0, 439, 441, 424, + 528, 466, 0, 450, 0, 463, 448, 0, 488, 486, + 484, 0, 568, 636, 611, 0, 547, 636, 0, 632, + 0, 608, 605, 629, 431, 331, 334, 0, 332, 504, + 501, 345, 350, 0, 0, 0, 369, 0, 478, 475, + 515, 0, 0, 0, 491, 0, 492, 356, 0, 0, + 0, 545, 0, 459, 456, 0, 521, 0, 521, 521, + 498, 0, 31, 30, 574, 579, 575, 577, 578, 44, + 0, 614, 625, 0, 0, 634, 624, 610, 0, 336, + 0, 355, 343, 0, 516, 0, 515, 0, 478, 379, + 378, 490, 0, 540, 0, 544, 636, 0, 0, 0, + 457, 454, 0, 451, 449, 0, 576, 599, 585, 608, + 600, 0, 0, 636, 580, 636, 0, 0, 635, 0, + 327, 333, 335, 0, 0, 0, 515, 479, 482, 476, + 0, 494, 541, 0, 546, 0, 0, 521, 0, 636, + 0, 595, 0, 627, 626, 615, 569, 0, 520, 0, + 0, 480, 515, 477, 0, 459, 0, 455, 0, 0, + 0, 0, 0, 616, 636, 623, 606, 0, 0, 0, + 515, 483, 0, 0, 459, 0, 601, 0, 499, 597, + 572, 570, 596, 0, 584, 628, 0, 0, 481, 0, + 0, 0, 0, 0, 602, 603, 581, 0, 571, 0, + 517, 0, 0, 521, 636, 0, 636, 598, 0, 542, + 459, 452, 0, 582, 604, 518, 0, 601, 521, 0, + 453, 0, 583 }; /* YYPGOTO[NTERM-NUM]. */ static const short yypgoto[] = { - -731, -351, -73, -11, -47, -731, -731, -731, 547, -731, - -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, - -731, -731, -86, -731, -281, -731, -731, -731, -476, -731, - -731, 421, -118, 41, -104, -179, -19, -5, -731, -731, - -731, 554, -731, -731, 416, -731, -731, -731, -731, -76, - -261, -731, -731, -181, -731, -731, 410, -731, -45, 573, - 39, -3, 50, -731, -731, -731, -731, -182, -731, -44, - 3, -33, -731, -731, 213, -349, -731, -210, -731, 9, - -731, -41, -369, -731, -66, -731, 150, -731, -446, -444, - 166, -731, -709, -87, -380, -731, -375, -29, -731, 459, - -731, -731, 586, -731, -158, -683, -730, -731, -731, 620, - -731, 249, -373, -731, -283, -696, 220, -145, -731, -731, - -692, -731, -731, -254, -284, -731, -731, -731, -175, -731, - -408, -410, -413, -731, -731, -731, -731, -731, -731, -83, - -21, -698 + -719, -319, -73, -11, -48, -719, -719, -719, 509, -719, + -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, + -719, -719, -86, -719, -282, -719, -719, -719, -483, -719, + -719, 377, -153, 26, -144, -180, -19, -14, -719, -719, + -719, 514, -719, -719, 366, -719, -719, -719, -719, -70, + -270, -719, -719, -181, -719, -719, 367, -719, -90, 539, + 46, -3, 49, -719, -719, -719, -719, -182, -719, -84, + 3, -33, -719, -719, 176, -365, -719, -250, -719, 11, + -719, -82, -357, -719, -50, -719, 111, -719, -455, -451, + 215, -719, -715, -87, -384, -719, -375, -29, -719, 399, + -719, -719, 551, -719, -206, -688, -718, -719, -719, 556, + -719, 182, -376, -719, -350, -701, 149, -204, -719, -719, + -704, -719, -719, -308, -349, -719, -719, -719, -240, -719, + -414, -410, -406, -719, -719, -719, -719, -719, -719, -150, + -21, -702 }; /* YYDEFGOTO[NTERM-NUM]. */ static const short yydefgoto[] = { - -1, 706, 499, 169, 357, 638, 26, 27, 28, 29, - 30, 86, 87, 88, 89, 363, 90, 91, 92, 318, - 754, 755, 358, 359, 376, 683, 684, 31, 500, 501, - 32, 96, 689, 690, 691, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 182, 408, 411, 185, 42, 188, - 502, 43, 197, 804, 44, 45, 639, 640, 641, 46, - 47, 48, 99, 419, 50, 420, 51, 421, 422, 423, - 424, 503, 53, 54, 489, 490, 693, 814, 854, 101, - 427, 428, 655, 505, 506, 676, 458, 56, 102, 103, - 146, 652, 765, 386, 402, 517, 172, 446, 174, 175, - 400, 57, 58, 714, 715, 656, 716, 153, 717, 718, - 719, 436, 437, 438, 906, 907, 908, 793, 794, 795, - 142, 889, 909, 838, 920, 921, 439, 666, 805, 440, - 922, 658, 143, 843, 871, 441, 442, 443, 663, 664, - 660, 160 + -1, 709, 501, 169, 358, 640, 26, 27, 28, 29, + 30, 86, 87, 88, 89, 364, 90, 91, 92, 319, + 757, 758, 359, 360, 377, 686, 687, 31, 502, 503, + 32, 96, 692, 693, 694, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 182, 409, 412, 185, 42, 188, + 504, 43, 197, 807, 44, 45, 641, 642, 643, 46, + 47, 48, 99, 420, 50, 421, 51, 422, 423, 424, + 425, 505, 53, 54, 491, 492, 696, 817, 857, 101, + 428, 429, 657, 507, 508, 679, 460, 56, 102, 103, + 146, 654, 768, 387, 403, 519, 172, 447, 174, 175, + 401, 57, 58, 717, 718, 658, 719, 153, 720, 721, + 722, 437, 438, 439, 909, 910, 911, 796, 797, 798, + 142, 892, 912, 841, 923, 924, 440, 668, 808, 441, + 925, 660, 143, 846, 874, 442, 443, 444, 665, 666, + 662, 160 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If @@ -754,724 +760,713 @@ static const short yydefgoto[] = number is the opposite. If YYTABLE_NINF, syntax error. */ static const short yytable[] = { - 171, 159, 360, 52, 173, 141, 144, 145, 425, 55, - 418, 418, 98, 68, 170, 444, 387, 659, 100, 374, - 659, 504, 657, 667, 520, 483, 377, 52, 518, 176, - 52, 707, 516, 778, 317, 450, 55, 486, 487, 695, - 797, 696, 792, 643, 364, 820, 796, 823, 52, 67, - 49, 193, 194, 195, 388, 451, 97, 389, 815, 361, - 49, -446, -466, 669, -466, -392, 168, -391, 22, -392, - 316, -24, 743, 670, 49, 398, 11, 49, 109, 892, - 770, 375, 378, 380, 186, -392, -392, 459, 727, 397, - 384, 859, 98, 462, 401, 49, 811, 837, 100, 483, - 156, 841, 674, 155, 855, 796, 812, 409, 483, 726, - 410, 483, 881, 1, 2, 3, 4, 5, 6, 7, - 8, 447, 488, -392, 158, -391, 9, 485, 189, 702, - 703, 61, 166, 399, 65, 669, 382, 59, 504, 60, - 778, 405, 454, 455, 878, -518, -386, -511, 456, 385, - -518, 187, 362, 746, 642, -446, 747, 868, 190, 98, - 457, 191, 404, 445, 52, 100, 668, 183, 4, 5, - 898, 135, 136, 137, 138, 139, 140, -457, 192, 196, - 426, 319, 682, 886, -360, 383, -360, -360, 915, -497, - 910, -497, -497, 62, 63, 64, 796, -457, 936, 385, - 67, 685, 686, 97, -387, -511, 645, 646, 648, 649, - 837, 49, 780, 781, 925, 391, 708, -511, 796, 776, - 777, 429, 430, 431, 432, 433, 910, 434, 435, 783, - 784, 452, 796, 1, 2, 3, 4, 5, 6, 7, - 8, 390, 695, 374, 696, 392, 9, 695, 939, 696, - 377, 61, 845, 671, 393, 834, 835, 394, 11, 379, - 381, 396, 401, 728, 403, 730, 766, 407, 733, 413, - 836, 429, 430, 431, 432, 433, 415, 434, 435, 416, - 484, 735, 463, 485, 509, 1, 2, 3, 4, 5, - 6, 7, 8, 834, 835, 374, 507, 510, 9, 511, - 756, 374, 377, 161, 168, 375, 692, 521, 377, 448, - 11, 644, 453, 93, 94, 18, 65, 650, 647, 701, - 651, 671, 429, 430, 431, 432, 433, 659, 434, 435, - 672, 483, 798, 674, 483, 483, 772, 773, 125, 126, - 127, 128, 129, 130, 131, 132, 133, 779, 861, 673, - 688, 147, 782, 678, 148, 687, 704, 375, 149, 721, - 150, 151, 461, 375, 162, 62, 63, 64, 65, 791, - 163, 152, 731, 734, 519, 737, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 171, 738, 739, 741, 173, - 374, 740, 742, 743, 744, 745, 653, 377, 661, 170, - 665, 818, 748, 828, 164, 830, 831, 749, 757, 374, - 374, 758, 759, 177, 178, 179, 377, 377, 180, 816, - 817, 662, 760, 762, 764, 774, 775, 807, 791, 659, - 147, 181, 785, 148, 870, 404, 786, 149, 806, 150, - 151, 709, 710, 711, 712, 810, 813, 824, 821, 680, - 858, 675, 375, 697, 698, 504, 829, 483, 483, 832, - 713, 894, 729, 839, 893, 418, 840, 842, 418, -608, - 867, 375, 375, 846, 850, 852, 851, 856, 659, 808, - 809, 862, 98, 912, 884, 863, 864, 866, 100, 872, - 659, 873, 874, 876, 694, 875, 877, 1, 2, 3, - 4, 5, 6, 7, 8, 880, 879, 723, 882, 692, - 9, 177, 178, 179, 692, 61, 180, 883, 904, 791, - 659, 885, 11, 888, 890, 941, 891, 895, 896, 181, - 899, 659, 901, 1, 2, 3, 4, 5, 6, 7, - 8, 791, 902, 903, 913, 911, 9, 742, 914, 916, - 938, 10, 924, 917, 927, 791, 926, 929, 11, 12, - 13, 928, 933, 930, 801, 947, 931, 935, 932, 937, - 14, 940, 942, 944, 167, 767, 945, 62, 63, 64, - 65, 948, 949, 395, 763, 69, 1, 2, 3, 4, - 5, 6, 7, 8, 184, 725, 414, 165, 826, 9, - 412, 418, 491, 732, 61, 857, 677, 157, 768, 769, - 736, 11, 15, 16, 17, 18, 19, 20, 21, 822, - 22, 70, 71, 72, 73, 74, 75, 76, 77, 78, - 79, 80, 81, 406, 82, 83, 84, 85, 751, 154, - 426, 934, 508, 833, 147, 23, 519, 148, 919, 654, - 24, 149, 25, 150, 151, 709, 710, 711, 712, 171, - 946, 865, 753, 173, 802, 0, 62, 63, 64, 65, - 0, 0, 0, 170, 0, 0, 0, 0, 0, 0, - 0, 0, 170, 384, 0, 98, 0, 374, 374, 0, - 98, 100, 0, 519, 377, 377, 100, 694, 519, 0, - 900, 0, 694, 418, 0, 66, 0, 0, 0, 799, - 0, 0, 445, 0, 0, 445, 0, 0, 0, 918, - 847, 0, 418, 800, 0, 0, 1, 2, 3, 4, - 5, 6, 7, 8, 0, 0, 662, 0, 0, 9, - 0, 0, 0, 0, 61, 0, 0, 0, 0, 375, - 375, 11, 0, 0, 0, 943, 0, 0, 418, 1, - 2, 3, 4, 5, 6, 7, 8, 844, 825, 0, - 0, 723, 9, 0, 0, 0, 0, 61, 0, 0, - 853, 454, 455, 697, 698, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 849, 0, 0, 457, - 750, 0, 860, 445, 0, 0, 93, 94, 18, 65, - 0, 464, 465, 466, 467, 468, 469, 470, 471, 472, - 473, 474, 475, 476, 477, 478, 479, 480, 481, 0, - 0, 0, 0, 0, 705, 0, 0, 0, 0, 62, - 63, 64, 0, 95, 0, 0, 897, 0, 0, 0, - 0, 0, 0, 0, 0, 905, 0, 0, 0, 0, - 0, 198, 0, 0, 199, 200, 201, 202, 203, 204, - 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, - 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, - 225, 905, 226, 227, 228, 229, 230, 231, 232, 233, - 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, - 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, - 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 0, 275, 0, 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, 0, 0, - 310, 0, 311, 312, 313, 314, 315, 198, 0, 0, - 320, 200, 201, 202, 203, 204, 205, 206, 207, 321, - 322, 323, 324, 212, 325, 326, 215, 216, 217, 327, - 219, 220, 221, 222, 223, 224, 225, 0, 226, 227, - 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, - 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, - 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, - 258, 259, 260, 328, 329, 330, 331, 332, 266, 267, - 268, 269, 270, 271, 272, 273, 274, 0, 275, 0, - 276, 277, 278, 279, 280, 333, 282, 334, 335, 336, - 337, 338, 339, 289, 340, 291, 292, 341, 342, 343, - 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, - 354, 355, 356, 309, 0, 0, 310, 0, 311, 312, - 313, 314, 315, 522, 0, 0, 523, 524, 525, 526, - 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, - 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, - 547, 548, 549, 0, 550, 551, 552, 553, 554, 413, - 724, 555, 556, 557, 558, 559, 560, 561, 562, 563, - 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, - 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, - 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, - 594, 595, 596, 0, 597, 0, 598, 599, 600, 601, - 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, - 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, - 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, - 0, 0, 632, 0, 633, 634, 635, 636, 637, 522, - 0, 0, 523, 524, 525, 526, 527, 528, 529, 530, - 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, - 541, 542, 543, 544, 545, 546, 547, 548, 549, 0, - 550, 551, 552, 553, 554, 413, 0, 555, 556, 557, - 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, - 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, - 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, - 588, 589, 590, 591, 592, 593, 594, 595, 596, 0, - 597, 0, 598, 599, 600, 601, 602, 603, 604, 605, - 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, - 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, - 626, 627, 628, 629, 630, 631, -584, 0, 632, 0, - 633, 634, 635, 636, 637, -584, -584, -584, -584, 0, - -584, -584, 0, 0, 0, -584, 0, 0, 0, 0, - 0, 0, -584, -584, -584, -584, -584, -584, -584, -584, - -584, -584, -584, -584, 0, -584, -584, -584, -584, -584, - -584, -584, -584, -584, -584, -584, -584, -584, -584, -584, - -584, -584, -584, 0, 0, 0, 0, 0, -584, -584, - -584, -584, -584, -584, 1, 2, 3, 4, 5, 6, - 7, 8, 0, 0, 0, 0, 0, 9, 0, 0, - -584, -584, 61, -584, -584, -584, -584, -584, -584, 11, - -584, 0, 0, -584, -584, -584, -584, -584, -584, -584, - -584, -584, -584, -584, -584, -584, -584, -584, -584, 0, - 104, 0, 0, 0, 0, 0, 0, 0, -584, 105, - 106, 107, 108, 0, 109, 110, 512, 0, 0, 111, - 495, 0, 496, 0, 497, 367, 513, 0, 0, 498, - 0, 0, 0, 0, 93, 94, 18, 65, 0, 0, - 0, 0, 0, 0, 369, 370, 168, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 371, 372, 0, - 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, - 0, 688, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 514, 117, 0, 118, 119, 120, - 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, - 0, 515, 105, 106, 107, 108, 0, 109, 110, 0, - 0, 0, 111, 0, 0, 365, 0, 366, 367, 0, - 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 369, 370, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 371, 372, 0, 0, 0, 0, 112, 113, 114, 115, - 116, 0, 0, 0, 0, 0, 0, 0, 373, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, - 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, + 171, 159, 361, 52, 173, 141, 144, 145, 426, 419, + 419, 55, 98, 68, 170, 445, 388, 659, 100, 375, + 176, 522, 488, 489, 669, 661, 710, 52, 661, 520, + 52, 781, 698, 318, 506, 452, 699, 799, 55, 800, + 795, 97, 378, 365, 645, 518, 362, 453, 52, 49, + 168, 193, 194, 195, 389, 818, 67, 390, 485, 49, + 823, 671, 826, -447, -467, -393, -467, 746, -392, -393, + 317, 22, -24, 49, 730, 158, 49, 109, 895, 399, + 402, 376, 379, 381, 490, 155, 672, 461, 840, 487, + 385, 186, 98, 464, 49, 398, 799, 166, 100, 844, + 11, 858, 410, 156, 773, 411, 862, 884, 59, 814, + 60, 1, 2, 3, 4, 5, 6, 7, 8, 815, + -458, 383, 196, -393, 9, 406, -392, 448, 677, 161, + 187, 837, 838, 485, 671, 729, 11, 400, 781, 363, + 189, 881, 485, 705, 706, 485, 644, 190, 177, 178, + 179, 749, 506, 180, 750, 871, -519, -447, 65, 98, + 386, -519, 405, 446, 52, 100, 181, 901, -387, -512, + 135, 136, 137, 138, 139, 140, 191, 177, 178, 179, + 427, 889, 180, 685, 192, 918, 198, 799, 97, 913, + 162, 62, 63, 64, 65, 181, 163, -361, 320, -361, + -361, 840, 688, 689, 183, 4, 5, 67, 384, 799, + 49, -458, 928, 939, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 799, -498, 913, -498, -498, 147, 386, + 164, 148, 454, 456, 457, 149, 698, 150, 151, 458, + 699, 698, -393, -393, 375, 699, 942, -512, 152, -388, + -512, 459, 1, 2, 3, 4, 5, 6, 7, 8, + 391, 731, 392, 733, 393, 9, 736, 378, 647, 648, + 61, 650, 651, 779, 780, 783, 784, 11, 394, 1, + 2, 3, 4, 5, 6, 7, 8, 430, 431, 432, + 433, 434, 9, 435, 436, 738, 375, 61, 786, 787, + 848, 673, 375, 759, 11, 395, 376, 695, 380, 382, + 397, 402, 455, 404, 408, 414, 449, 416, 417, 378, + 704, 670, 487, 465, 486, 378, 511, 512, 509, 801, + 513, 523, 62, 63, 64, 65, 450, 661, 646, 649, + 652, 168, 681, 653, 864, 673, 674, 675, 677, 676, + 782, 775, 776, 690, 707, 785, 740, 724, 376, 93, + 94, 18, 65, 463, 376, 734, 485, 737, 711, 485, + 485, 66, 741, 742, 743, 521, 430, 431, 432, 433, + 434, 744, 435, 436, 794, 745, 171, 746, 747, 748, + 173, 751, 375, 752, 760, 767, 95, 655, 761, 663, + 170, 667, 831, 762, 833, 834, 819, 820, 763, 765, + 777, 375, 375, 778, 788, 378, 821, 810, 789, 809, + 827, 813, 664, 430, 431, 432, 433, 434, 816, 435, + 436, 873, 824, 832, 378, 378, 405, 835, 842, 661, + 843, 845, -609, 794, 678, 849, 853, 855, 854, 859, + 865, 683, 866, 867, 376, 700, 701, 869, 876, 875, + 880, 877, 878, 879, 732, 861, 419, 896, 882, 419, + 506, 897, 883, 376, 376, 885, 891, 886, 888, 893, + 915, 811, 812, 887, 98, 870, 894, 898, 661, 902, + 100, 899, 485, 485, 904, 905, 906, 916, 697, 914, + 661, 1, 2, 3, 4, 5, 6, 7, 8, 726, + 745, 695, 917, 919, 9, 920, 695, 927, 929, 10, + 931, 930, 944, 932, 933, 934, 11, 12, 13, 935, + 661, 938, 936, 907, 794, 940, 167, 943, 14, 396, + 945, 661, 947, 770, 948, 951, 952, 766, 147, 941, + 413, 148, 728, 415, 184, 149, 794, 150, 151, 712, + 713, 714, 715, 165, 950, 735, 493, 804, 860, 680, + 794, 739, 157, 407, 825, 154, 510, 937, 716, 656, + 15, 16, 17, 18, 19, 20, 21, 836, 22, 1, + 2, 3, 4, 5, 6, 7, 8, 922, 949, 868, + 805, 829, 9, 419, 0, 0, 0, 61, 0, 0, + 0, 771, 772, 23, 11, 0, 0, 0, 24, 0, + 25, 0, 769, 0, 0, 0, 0, 0, 1, 2, + 3, 4, 5, 6, 7, 8, 0, 0, 0, 0, + 754, 9, 427, 0, 837, 838, 61, 0, 0, 521, + 0, 0, 0, 11, 0, 0, 0, 0, 0, 839, + 0, 0, 171, 0, 0, 756, 173, 0, 0, 93, + 94, 18, 65, 0, 0, 0, 170, 0, 0, 0, + 0, 0, 0, 0, 0, 170, 385, 0, 98, 0, + 375, 375, 0, 98, 100, 0, 521, 0, 0, 100, + 0, 521, 697, 903, 0, 419, 691, 697, 93, 94, + 18, 65, 802, 378, 378, 446, 0, 0, 446, 0, + 0, 0, 921, 850, 419, 0, 803, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 0, 147, 0, 664, + 148, 0, 0, 0, 149, 691, 150, 151, 712, 713, + 714, 715, 376, 376, 0, 0, 0, 0, 946, 0, + 419, 0, 1, 2, 3, 4, 5, 6, 7, 8, + 847, 828, 69, 0, 726, 9, 0, 0, 0, 0, + 61, 0, 0, 856, 456, 457, 700, 701, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 852, + 0, 0, 459, 0, 0, 863, 446, 0, 70, 71, + 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + 0, 82, 83, 84, 85, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 62, 63, 64, 0, 0, 0, 0, 900, + 0, 0, 0, 0, 0, 0, 0, 0, 908, 0, + 0, 0, 0, 0, 199, 0, 0, 200, 201, 202, + 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, + 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, + 223, 224, 225, 226, 908, 227, 228, 229, 230, 231, + 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, + 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, + 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, + 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, + 272, 273, 274, 275, 0, 276, 0, 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, 0, 0, 311, 0, 312, 313, 314, 315, 316, + 199, 0, 0, 321, 201, 202, 203, 204, 205, 206, + 207, 208, 322, 323, 324, 325, 213, 326, 327, 216, + 217, 218, 328, 220, 221, 222, 223, 224, 225, 226, + 0, 227, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, + 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, + 256, 257, 258, 259, 260, 261, 329, 330, 331, 332, + 333, 267, 268, 269, 270, 271, 272, 273, 274, 275, + 0, 276, 0, 277, 278, 279, 280, 281, 334, 283, + 335, 336, 337, 338, 339, 340, 290, 341, 292, 293, + 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, + 352, 353, 354, 355, 356, 357, 310, 0, 0, 311, + 0, 312, 313, 314, 315, 316, 524, 0, 0, 525, + 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, + 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, + 546, 547, 548, 549, 550, 551, 0, 552, 553, 554, + 555, 556, 414, 727, 557, 558, 559, 560, 561, 562, + 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, + 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, + 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, + 593, 594, 595, 596, 597, 598, 0, 599, 0, 600, + 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, + 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, + 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, + 631, 632, 633, 0, 0, 634, 0, 635, 636, 637, + 638, 639, 524, 0, 0, 525, 526, 527, 528, 529, + 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, + 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, + 550, 551, 0, 552, 553, 554, 555, 556, 414, 0, + 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, + 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, + 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, + 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, + 597, 598, 0, 599, 0, 600, 601, 602, 603, 604, + 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, + 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, + 625, 626, 627, 628, 629, 630, 631, 632, 633, -585, + 0, 634, 0, 635, 636, 637, 638, 639, -585, -585, + -585, -585, 0, -585, -585, 0, 0, 0, -585, 0, + 0, 0, 0, 0, 0, -585, -585, -585, -585, -585, + -585, -585, -585, -585, -585, -585, -585, 0, -585, -585, + -585, -585, -585, -585, -585, -585, -585, -585, -585, -585, + -585, -585, -585, -585, -585, -585, 0, 0, 0, 0, + 0, -585, -585, -585, -585, -585, -585, 1, 2, 3, + 4, 5, 6, 7, 8, 0, 0, 0, 0, 0, + 9, 0, 0, -585, -585, 61, -585, -585, -585, -585, + -585, -585, 11, -585, 0, 0, -585, -585, -585, -585, + -585, -585, -585, -585, -585, -585, -585, -585, -585, -585, + -585, -585, 0, 104, 0, 0, 0, 0, 0, 0, + 0, -585, 105, 106, 107, 108, 0, 109, 110, 514, + 0, 0, 111, 497, 0, 498, 0, 499, 368, 515, + 0, 0, 500, 0, 0, 0, 0, 62, 63, 64, + 65, 0, 0, 0, 0, 0, 0, 370, 371, 168, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, + 116, 1, 2, 3, 4, 5, 6, 7, 8, 0, + 0, 0, 0, 0, 9, 0, 0, 516, 117, 61, + 118, 119, 120, 121, 122, 123, 11, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, -33, 0, 0, 681, - 0, 0, 0, 0, 0, -33, -33, -33, -33, 0, - -33, -33, 0, 0, 0, -33, 0, 0, -33, -33, - -33, -33, 0, 0, 0, -33, 0, 0, 0, 0, - 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, - -33, -33, 0, 0, 0, 9, 0, 0, 0, 0, - 61, 0, 0, -33, -33, 0, 0, 11, 0, -33, - -33, -33, -33, -33, 0, 0, 0, 0, 0, 0, - 0, -33, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -33, 0, -33, -33, -33, -33, -33, -33, 0, - -33, 0, 0, -33, -33, -33, -33, -33, -33, -33, - -33, -33, -33, -33, -33, -33, -33, -33, -33, -34, - 0, -33, 93, 94, 18, 65, 0, 0, -34, -34, - -34, -34, 0, -34, -34, 0, 0, 0, -34, 0, - 0, -34, -34, -34, -34, 0, 0, 0, -34, 0, + 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, + 0, 0, 0, 0, 517, 105, 106, 107, 108, 0, + 109, 110, 0, 0, 0, 111, 0, 0, 366, 0, + 367, 368, 0, 0, 0, 369, 0, 0, 0, 0, + 0, 93, 94, 18, 65, 0, 0, 0, 0, 0, + 370, 371, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, + 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, + 0, 374, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, + 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, -33, + 0, 0, 684, 0, 0, 0, 0, 0, -33, -33, + -33, -33, 0, -33, -33, 0, 0, 0, -33, 0, + 0, -33, -33, -33, -33, 0, 0, 0, -33, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, - 6, 7, 8, -34, -34, 0, 0, 0, 9, 0, - 0, 0, 0, 61, 0, 0, -34, -34, 0, 0, - 11, 0, -34, -34, -34, -34, -34, 0, 0, 0, - 0, 0, 0, 0, -34, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -34, 0, -34, -34, -34, -34, - -34, -34, 0, -34, 0, 0, -34, -34, -34, -34, + 6, 7, 8, -33, -33, 0, 0, 0, 9, 0, + 0, 0, 0, 61, 0, 0, -33, -33, 0, 0, + 11, 0, -33, -33, -33, -33, -33, 0, 0, 0, + 0, 0, 0, 0, -33, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -33, 0, -33, -33, -33, -33, + -33, -33, 0, -33, 0, 0, -33, -33, -33, -33, + -33, -33, -33, -33, -33, -33, -33, -33, -33, -33, + -33, -33, -34, 0, -33, 62, 63, 64, 65, 0, + 0, -34, -34, -34, -34, 0, -34, -34, 0, 0, + 0, -34, 0, 0, -34, -34, -34, -34, 0, 0, + 0, -34, 0, 0, 0, 0, 0, 0, 1, 2, + 3, 4, 5, 6, 7, 8, -34, -34, 0, 0, + 0, 418, 0, 0, 0, 0, 61, 0, 0, -34, + -34, 0, 0, 11, 0, -34, -34, -34, -34, -34, + 0, 0, 0, 0, 0, 0, 0, -34, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -34, 0, -34, + -34, -34, -34, -34, -34, 0, -34, 0, 0, -34, -34, -34, -34, -34, -34, -34, -34, -34, -34, -34, - -34, -34, -35, 0, -34, 62, 63, 64, 65, 0, - 0, -35, -35, -35, -35, 0, -35, -35, 0, 0, - 0, -35, 0, 0, -35, -35, -35, -35, 0, 0, - 0, -35, 0, 0, 0, 0, 0, 0, 1, 2, - 3, 4, 5, 6, 7, 8, -35, -35, 0, 0, - 0, 417, 0, 0, 0, 0, 61, 0, 0, -35, - -35, 0, 0, 11, 0, -35, -35, -35, -35, -35, - 0, 0, 0, 0, 0, 0, 0, -35, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -35, 0, -35, - -35, -35, -35, -35, -35, 0, -35, 0, 0, -35, - -35, -35, -35, -35, -35, -35, -35, -35, -35, -35, - -35, -35, -35, -35, -35, -36, 0, -35, 62, 63, - 64, 65, 0, 0, -36, -36, -36, -36, 0, -36, - -36, 0, 0, 0, -36, 0, 0, -36, -36, -36, - -36, 0, 0, 0, -36, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, - -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -36, -36, 0, 0, 0, 0, -36, -36, - -36, -36, -36, 0, 0, 0, 0, 0, 0, 0, - -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -36, 0, -36, -36, -36, -36, -36, -36, 0, -36, - 0, 0, -36, -36, -36, -36, -36, -36, -36, -36, - -36, -36, -36, -36, -36, -36, -36, -36, -37, 0, - -36, 0, 0, 0, 0, 0, 0, -37, -37, -37, - -37, 0, -37, -37, 0, 0, 0, -37, 0, 0, - -37, -37, -37, -37, 0, 0, 0, -37, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -37, -37, 0, 0, 0, 0, 0, 0, + -34, -34, -34, -34, -34, -35, 0, -34, 62, 63, + 64, 65, 0, 0, -35, -35, -35, -35, 0, -35, + -35, 0, 0, 0, -35, 0, 0, -35, -35, -35, + -35, 0, 0, 0, -35, 0, 0, 0, 0, 0, + 0, 1, 2, 3, 4, 5, 6, 7, 8, -35, + -35, 0, 0, 0, 9, 0, 0, 0, 0, 61, + 0, 0, -35, -35, 0, 0, 0, 0, -35, -35, + -35, -35, -35, 0, 0, 0, 0, 0, 0, 0, + -35, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -35, 0, -35, -35, -35, -35, -35, -35, 0, -35, + 0, 0, -35, -35, -35, -35, -35, -35, -35, -35, + -35, -35, -35, -35, -35, -35, -35, -35, -36, 0, + -35, 62, 63, 64, 0, 0, 0, -36, -36, -36, + -36, 0, -36, -36, 0, 0, 0, -36, 0, 0, + -36, -36, -36, -36, 0, 0, 0, -36, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -36, -36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -36, -36, 0, 0, 0, + 0, -36, -36, -36, -36, -36, 0, 0, 0, 0, + 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -36, 0, -36, -36, -36, -36, -36, + -36, 0, -36, 0, 0, -36, -36, -36, -36, -36, + -36, -36, -36, -36, -36, -36, -36, -36, -36, -36, + -36, -37, 0, -36, 0, 0, 0, 0, 0, 0, + -37, -37, -37, -37, 0, -37, -37, 0, 0, 0, + -37, 0, 0, -37, -37, -37, -37, 0, 0, 0, + -37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -37, -37, 0, 0, 0, - 0, -37, -37, -37, -37, -37, 0, 0, 0, 0, - 0, 0, 0, -37, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -37, 0, -37, -37, -37, -37, -37, - -37, 0, -37, 0, 0, -37, -37, -37, -37, -37, + 0, 0, 0, 0, 0, 0, 0, 0, -37, -37, + 0, 0, 0, 0, -37, -37, -37, -37, -37, 0, + 0, 0, 0, 0, 0, 0, -37, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -37, 0, -37, -37, + -37, -37, -37, -37, 0, -37, 0, 0, -37, -37, -37, -37, -37, -37, -37, -37, -37, -37, -37, -37, - -37, -60, 0, -37, 0, 0, 0, 0, 0, 0, - -60, -60, -60, -60, 0, -60, -60, 0, 0, 0, - -60, 0, 0, -60, -60, -60, -60, 0, 0, 0, - -60, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -60, -60, 0, 0, 0, + -37, -37, -37, -37, -60, 0, -37, 0, 0, 0, + 0, 0, 0, -60, -60, -60, -60, 0, -60, -60, + 0, 0, 0, -60, 0, 0, -60, -60, -60, -60, + 0, 0, 0, -60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -60, -60, - 0, 0, 0, 0, -60, -60, -60, -60, -60, 0, - 0, 0, 0, 0, 0, 0, -60, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -60, 0, -60, -60, - -60, -60, -60, -60, 0, -60, 0, 0, -60, -60, - -60, -60, -60, -60, -60, -60, -60, -60, -60, -60, - -60, -60, -60, -60, -61, 0, -623, 0, 0, 0, - 0, 0, 0, -61, -61, -61, -61, 0, -61, -61, - 0, 0, 0, -61, 0, 0, -61, -61, -61, -61, - 0, 0, 0, -61, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -61, -61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -61, -61, 0, 0, 0, 0, -61, -61, -61, - -61, -61, 0, 0, 0, 0, 0, 0, 0, -61, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -61, - 0, -61, -61, -61, -61, -61, -61, 0, -61, 0, - 0, -61, -61, -61, -61, -61, -61, -61, -61, -61, - -61, -61, -61, -61, -61, -61, -61, -24, 0, -584, - 0, 0, 0, 0, 0, 0, -24, -24, -24, -24, - 0, -24, -24, 0, 0, 0, -24, 0, 0, -24, - -24, -24, -24, 0, 0, 0, -24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -24, -24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -60, -60, 0, 0, 0, 0, -60, -60, -60, + -60, -60, 0, 0, 0, 0, 0, 0, 0, -60, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -60, + 0, -60, -60, -60, -60, -60, -60, 0, -60, 0, + 0, -60, -60, -60, -60, -60, -60, -60, -60, -60, + -60, -60, -60, -60, -60, -60, -60, -61, 0, -624, + 0, 0, 0, 0, 0, 0, -61, -61, -61, -61, + 0, -61, -61, 0, 0, 0, -61, 0, 0, -61, + -61, -61, -61, 0, 0, 0, -61, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -61, -61, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -61, -61, 0, 0, 0, 0, + -61, -61, -61, -61, -61, 0, 0, 0, 0, 0, + 0, 0, -61, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -61, 0, -61, -61, -61, -61, -61, -61, + 0, -61, 0, 0, -61, -61, -61, -61, -61, -61, + -61, -61, -61, -61, -61, -61, -61, -61, -61, -61, + -24, 0, -585, 0, 0, 0, 0, 0, 0, -24, + -24, -24, -24, 0, -24, -24, 0, 0, 0, -24, + 0, 0, -24, -24, -24, -24, 0, 0, 0, -24, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -24, 0, 0, 0, 0, - -24, -24, -24, -24, -24, 0, 0, 0, 0, 0, - 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -24, 0, -24, -24, -24, -24, -24, -24, - 0, -24, 0, 0, -24, -24, -24, -24, -24, -24, + 0, 0, 0, 0, 0, 0, 0, -24, -24, 0, + 0, 0, 0, -24, -24, -24, -24, -24, 0, 0, + 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -24, 0, -24, -24, -24, + -24, -24, -24, 0, -24, 0, 0, -24, -24, -24, -24, -24, -24, -24, -24, -24, -24, -24, -24, -24, - -42, 0, -24, 0, 0, 0, 0, 0, 0, -42, - -42, -42, -42, 0, -42, -42, 0, 0, 0, -42, - 0, 0, -42, -42, -42, -42, 0, 0, 0, -42, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -42, -42, 0, 0, 0, 0, + -24, -24, -24, -42, 0, -24, 0, 0, 0, 0, + 0, 0, -42, -42, -42, -42, 0, -42, -42, 0, + 0, 0, -42, 0, 0, -42, -42, -42, -42, 0, + 0, 0, -42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -42, -42, 0, - 0, 0, 0, -42, -42, -42, -42, -42, 0, 0, - 0, 0, 0, 0, 0, -42, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -42, 0, -42, -42, -42, - -42, -42, -42, 0, -42, 0, 0, -42, -42, -42, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -42, -42, 0, 0, 0, 0, -42, -42, -42, -42, + -42, 0, 0, 0, 0, 0, 0, 0, -42, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -42, 0, + -42, -42, -42, -42, -42, -42, 0, -42, 0, 0, -42, -42, -42, -42, -42, -42, -42, -42, -42, -42, - -42, -42, -42, -41, 0, -42, 0, 0, 0, 0, - 0, 0, -41, -41, -41, -41, 0, -41, -41, 0, - 0, 0, -41, 0, 0, -41, -41, -41, -41, 0, - 0, 0, -41, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -41, -41, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -41, -41, 0, 0, 0, 0, -41, -41, -41, -41, - -41, 0, 0, 0, 0, 0, 0, 0, -41, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -41, 0, - -41, -41, -41, -41, -41, -41, 0, -41, 0, 0, - -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, - -41, -41, -41, -41, -41, -41, -40, 0, -41, 0, - 0, 0, 0, 0, 0, -40, -40, -40, -40, 0, - -40, -40, 0, 0, 0, -40, 0, 0, -40, -40, - -40, -40, 0, 0, 0, -40, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -40, -40, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -40, -40, 0, 0, 0, 0, -40, - -40, -40, -40, -40, 0, 0, 0, 0, 0, 0, - 0, -40, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -40, 0, -40, -40, -40, -40, -40, -40, 0, - -40, 0, 0, -40, -40, -40, -40, -40, -40, -40, - -40, -40, -40, -40, -40, -40, -40, -40, -40, -38, - 0, -40, 0, 0, 0, 0, 0, 0, -38, -38, - -38, -38, 0, -38, -38, 0, 0, 0, -38, 0, - 0, -38, -38, -38, -38, 0, 0, 0, -38, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -38, -38, 0, 0, 0, 0, 0, + -42, -42, -42, -42, -42, -42, -41, 0, -42, 0, + 0, 0, 0, 0, 0, -41, -41, -41, -41, 0, + -41, -41, 0, 0, 0, -41, 0, 0, -41, -41, + -41, -41, 0, 0, 0, -41, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -41, -41, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -41, -41, 0, 0, 0, 0, -41, + -41, -41, -41, -41, 0, 0, 0, 0, 0, 0, + 0, -41, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -41, 0, -41, -41, -41, -41, -41, -41, 0, + -41, 0, 0, -41, -41, -41, -41, -41, -41, -41, + -41, -41, -41, -41, -41, -41, -41, -41, -41, -40, + 0, -41, 0, 0, 0, 0, 0, 0, -40, -40, + -40, -40, 0, -40, -40, 0, 0, 0, -40, 0, + 0, -40, -40, -40, -40, 0, 0, 0, -40, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -40, -40, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -40, -40, 0, 0, + 0, 0, -40, -40, -40, -40, -40, 0, 0, 0, + 0, 0, 0, 0, -40, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -40, 0, -40, -40, -40, -40, + -40, -40, 0, -40, 0, 0, -40, -40, -40, -40, + -40, -40, -40, -40, -40, -40, -40, -40, -40, -40, + -40, -40, -38, 0, -40, 0, 0, 0, 0, 0, + 0, -38, -38, -38, -38, 0, -38, -38, 0, 0, + 0, -38, 0, 0, -38, -38, -38, -38, 0, 0, + 0, -38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -38, -38, 0, 0, - 0, 0, -38, -38, -38, -38, -38, 0, 0, 0, - 0, 0, 0, 0, -38, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -38, 0, -38, -38, -38, -38, - -38, -38, 0, -38, 0, 0, -38, -38, -38, -38, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -38, + -38, 0, 0, 0, 0, -38, -38, -38, -38, -38, + 0, 0, 0, 0, 0, 0, 0, -38, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -38, 0, -38, + -38, -38, -38, -38, -38, 0, -38, 0, 0, -38, -38, -38, -38, -38, -38, -38, -38, -38, -38, -38, - -38, -38, -39, 0, -38, 0, 0, 0, 0, 0, - 0, -39, -39, -39, -39, 0, -39, -39, 0, 0, - 0, -39, 0, 0, -39, -39, -39, -39, 0, 0, - 0, -39, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -39, -39, 0, 0, + -38, -38, -38, -38, -38, -39, 0, -38, 0, 0, + 0, 0, 0, 0, -39, -39, -39, -39, 0, -39, + -39, 0, 0, 0, -39, 0, 0, -39, -39, -39, + -39, 0, 0, 0, -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, - -39, 0, 0, 0, 0, -39, -39, -39, -39, -39, - 0, 0, 0, 0, 0, 0, 0, -39, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -39, 0, -39, - -39, -39, -39, -39, -39, 0, -39, 0, 0, -39, - -39, -39, -39, -39, -39, -39, -39, -39, -39, -39, - -39, -39, -39, -39, -39, -32, 0, -39, 0, 0, - 0, 0, 0, 0, -32, -32, -32, -32, 0, -32, - -32, 0, 0, 0, -32, 0, 0, -32, -32, -32, - -32, 0, 0, 0, -32, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, - -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -32, -32, 0, 0, 0, 0, -32, -32, - -32, -32, -32, 0, 0, 0, 0, 0, 0, 0, - -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -32, 0, -32, -32, -32, -32, -32, -32, 0, -32, - 0, 0, -32, -32, -32, -32, -32, -32, -32, -32, - -32, -32, -32, -32, -32, -32, -32, -32, -31, 0, - -32, 0, 0, 0, 0, 0, 0, -31, -31, -31, - -31, 0, -31, -31, 0, 0, 0, -31, 0, 0, - -31, -31, -31, -31, 0, 0, 0, -31, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -31, -31, 0, 0, 0, 0, 0, 0, + -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -39, -39, 0, 0, 0, 0, -39, -39, + -39, -39, -39, 0, 0, 0, 0, 0, 0, 0, + -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -39, 0, -39, -39, -39, -39, -39, -39, 0, -39, + 0, 0, -39, -39, -39, -39, -39, -39, -39, -39, + -39, -39, -39, -39, -39, -39, -39, -39, -32, 0, + -39, 0, 0, 0, 0, 0, 0, -32, -32, -32, + -32, 0, -32, -32, 0, 0, 0, -32, 0, 0, + -32, -32, -32, -32, 0, 0, 0, -32, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -32, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -32, -32, 0, 0, 0, + 0, -32, -32, -32, -32, -32, 0, 0, 0, 0, + 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -32, 0, -32, -32, -32, -32, -32, + -32, 0, -32, 0, 0, -32, -32, -32, -32, -32, + -32, -32, -32, -32, -32, -32, -32, -32, -32, -32, + -32, -31, 0, -32, 0, 0, 0, 0, 0, 0, + -31, -31, -31, -31, 0, -31, -31, 0, 0, 0, + -31, 0, 0, -31, -31, -31, -31, 0, 0, 0, + -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, -31, 0, 0, 0, - 0, -31, -31, -31, -31, -31, 0, 0, 0, 0, - 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -31, 0, -31, -31, -31, -31, -31, - -31, 0, -31, 0, 0, -31, -31, -31, -31, -31, + 0, 0, 0, 0, 0, 0, 0, 0, -31, -31, + 0, 0, 0, 0, -31, -31, -31, -31, -31, 0, + 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -31, 0, -31, -31, + -31, -31, -31, -31, 0, -31, 0, 0, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, - -31, -25, 0, -31, 0, 0, 0, 0, 0, 0, - -25, -25, -25, -25, 0, -25, -25, 0, 0, 0, - -25, 0, 0, -25, -25, -25, -25, 0, 0, 0, - -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -25, -25, 0, 0, 0, + -31, -31, -31, -31, -25, 0, -31, 0, 0, 0, + 0, 0, 0, -25, -25, -25, -25, 0, -25, -25, + 0, 0, 0, -25, 0, 0, -25, -25, -25, -25, + 0, 0, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -25, - 0, 0, 0, 0, -25, -25, -25, -25, -25, 0, - 0, 0, 0, 0, 0, 0, -25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -25, 0, -25, -25, - -25, -25, -25, -25, 0, -25, 0, 0, -25, -25, - -25, -25, -25, -25, -25, -25, -25, -25, -25, -25, - -25, -25, -25, -25, -29, 0, -25, 0, 0, 0, - 0, 0, 0, -29, -29, -29, -29, 0, -29, -29, - 0, 0, 0, -29, 0, 0, -29, -29, -29, -29, - 0, 0, 0, -29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -29, -29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -29, -29, 0, 0, 0, 0, -29, -29, -29, - -29, -29, 0, 0, 0, 0, 0, 0, 0, -29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -29, - 0, -29, -29, -29, -29, -29, -29, 0, -29, 0, - 0, -29, -29, -29, -29, -29, -29, -29, -29, -29, - -29, -29, -29, -29, -29, -29, -29, -28, 0, -29, - 0, 0, 0, 0, 0, 0, -28, -28, -28, -28, - 0, -28, -28, 0, 0, 0, -28, 0, 0, -28, - -28, -28, -28, 0, 0, 0, -28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -28, -28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -25, -25, 0, 0, 0, 0, -25, -25, -25, + -25, -25, 0, 0, 0, 0, 0, 0, 0, -25, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, + 0, -25, -25, -25, -25, -25, -25, 0, -25, 0, + 0, -25, -25, -25, -25, -25, -25, -25, -25, -25, + -25, -25, -25, -25, -25, -25, -25, -29, 0, -25, + 0, 0, 0, 0, 0, 0, -29, -29, -29, -29, + 0, -29, -29, 0, 0, 0, -29, 0, 0, -29, + -29, -29, -29, 0, 0, 0, -29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -29, -29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -29, -29, 0, 0, 0, 0, + -29, -29, -29, -29, -29, 0, 0, 0, 0, 0, + 0, 0, -29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -29, 0, -29, -29, -29, -29, -29, -29, + 0, -29, 0, 0, -29, -29, -29, -29, -29, -29, + -29, -29, -29, -29, -29, -29, -29, -29, -29, -29, + -28, 0, -29, 0, 0, 0, 0, 0, 0, -28, + -28, -28, -28, 0, -28, -28, 0, 0, 0, -28, + 0, 0, -28, -28, -28, -28, 0, 0, 0, -28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -28, 0, 0, 0, 0, - -28, -28, -28, -28, -28, 0, 0, 0, 0, 0, - 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -28, 0, -28, -28, -28, -28, -28, -28, - 0, -28, 0, 0, -28, -28, -28, -28, -28, -28, + 0, 0, 0, 0, 0, 0, 0, -28, -28, 0, + 0, 0, 0, -28, -28, -28, -28, -28, 0, 0, + 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -28, 0, -28, -28, -28, + -28, -28, -28, 0, -28, 0, 0, -28, -28, -28, -28, -28, -28, -28, -28, -28, -28, -28, -28, -28, - -26, 0, -28, 0, 0, 0, 0, 0, 0, -26, - -26, -26, -26, 0, -26, -26, 0, 0, 0, -26, - 0, 0, -26, -26, -26, -26, 0, 0, 0, -26, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -26, -26, 0, 0, 0, 0, + -28, -28, -28, -26, 0, -28, 0, 0, 0, 0, + 0, 0, -26, -26, -26, -26, 0, -26, -26, 0, + 0, 0, -26, 0, 0, -26, -26, -26, -26, 0, + 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -26, 0, - 0, 0, 0, -26, -26, -26, -26, -26, 0, 0, - 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -26, 0, -26, -26, -26, - -26, -26, -26, 0, -26, 0, 0, -26, -26, -26, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -26, -26, 0, 0, 0, 0, -26, -26, -26, -26, + -26, 0, 0, 0, 0, 0, 0, 0, -26, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, + -26, -26, -26, -26, -26, -26, 0, -26, 0, 0, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, - -26, -26, -26, -27, 0, -26, 0, 0, 0, 0, - 0, 0, -27, -27, -27, -27, 0, -27, -27, 0, - 0, 0, -27, 0, 0, -27, -27, -27, -27, 0, - 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -27, -27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -27, -27, 0, 0, 0, 0, -27, -27, -27, -27, - -27, 0, 0, 0, 0, 0, 0, 0, -27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, - -27, -27, -27, -27, -27, -27, 0, -27, 0, 0, - -27, -27, -27, -27, -27, -27, -27, -27, -27, -27, - -27, -27, -27, -27, -27, -27, -43, 0, -27, 0, - 0, 0, 0, 0, 0, -43, -43, -43, -43, 0, - -43, -43, 0, 0, 0, -43, 0, 0, -43, -43, - -43, -43, 0, 0, 0, -43, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -43, -43, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -43, -43, 0, 0, 0, 0, -43, - -43, -43, -43, -43, 0, 0, 0, 0, 0, 0, - 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -43, 0, -43, -43, -43, -43, -43, -43, 0, - -43, 0, 0, -43, -43, -43, -43, -43, -43, -43, - -43, -43, -43, -43, -43, -43, -43, -43, -43, -138, - 0, -43, 0, 0, 0, 0, 0, 0, -138, -138, - -138, -138, 0, -138, -138, 0, 0, 0, -138, 0, - 0, -138, -138, -138, -138, 0, 0, 0, -138, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -138, -138, 0, 0, 0, 0, 0, + -26, -26, -26, -26, -26, -26, -27, 0, -26, 0, + 0, 0, 0, 0, 0, -27, -27, -27, -27, 0, + -27, -27, 0, 0, 0, -27, 0, 0, -27, -27, + -27, -27, 0, 0, 0, -27, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -27, -27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -27, -27, 0, 0, 0, 0, -27, + -27, -27, -27, -27, 0, 0, 0, 0, 0, 0, + 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -27, 0, -27, -27, -27, -27, -27, -27, 0, + -27, 0, 0, -27, -27, -27, -27, -27, -27, -27, + -27, -27, -27, -27, -27, -27, -27, -27, -27, -43, + 0, -27, 0, 0, 0, 0, 0, 0, -43, -43, + -43, -43, 0, -43, -43, 0, 0, 0, -43, 0, + 0, -43, -43, -43, -43, 0, 0, 0, -43, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -43, -43, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -43, -43, 0, 0, + 0, 0, -43, -43, -43, -43, -43, 0, 0, 0, + 0, 0, 0, 0, -43, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -43, 0, -43, -43, -43, -43, + -43, -43, 0, -43, 0, 0, -43, -43, -43, -43, + -43, -43, -43, -43, -43, -43, -43, -43, -43, -43, + -43, -43, -138, 0, -43, 0, 0, 0, 0, 0, + 0, -138, -138, -138, -138, 0, -138, -138, 0, 0, + 0, -138, 0, 0, -138, -138, -138, -138, 0, 0, + 0, -138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -138, -138, 0, 0, - 0, 0, -138, -138, -138, -138, -138, 0, 0, 0, - 0, 0, 0, 0, -138, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -138, 0, -138, -138, -138, -138, - -138, -138, 0, -138, 0, 0, -138, -138, -138, -138, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -138, + -138, 0, 0, 0, 0, -138, -138, -138, -138, -138, + 0, 0, 0, 0, 0, 0, 0, -138, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -138, 0, -138, + -138, -138, -138, -138, -138, 0, -138, 0, 0, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, - -138, -138, -139, 0, -592, 0, 0, 0, 0, 0, - 0, -139, -139, -139, -139, 0, -139, -139, 0, 0, - 0, -139, 0, 0, -139, -139, -139, -139, 0, 0, - 0, -139, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -139, -139, 0, 0, + -138, -138, -138, -138, -138, -139, 0, -593, 0, 0, + 0, 0, 0, 0, -139, -139, -139, -139, 0, -139, + -139, 0, 0, 0, -139, 0, 0, -139, -139, -139, + -139, 0, 0, 0, -139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -139, - -139, 0, 0, 0, 0, -139, -139, -139, -139, -139, - 0, 0, 0, 0, 0, 0, 0, -139, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -139, 0, -139, - -139, -139, -139, -139, -139, 0, -139, 0, 0, -139, - -139, -139, -139, -139, -139, -139, -139, -139, -139, -139, - -139, -139, -139, -139, -139, -140, 0, -591, 0, 0, - 0, 0, 0, 0, -140, -140, -140, -140, 0, -140, - -140, 0, 0, 0, -140, 0, 0, -140, -140, -140, - -140, 0, 0, 0, -140, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -140, - -140, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -140, -140, 0, 0, 0, 0, -140, -140, - -140, -140, -140, 0, 0, 0, 0, 0, 0, 0, - -140, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -140, 0, -140, -140, -140, -140, -140, -140, 0, -140, - 0, 0, -140, -140, -140, -140, -140, -140, -140, -140, - -140, -140, -140, -140, -140, -140, -140, -140, -141, 0, - -589, 0, 0, 0, 0, 0, 0, -141, -141, -141, - -141, 0, -141, -141, 0, 0, 0, -141, 0, 0, - -141, -141, -141, -141, 0, 0, 0, -141, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -141, -141, 0, 0, 0, 0, 0, 0, + -139, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -139, -139, 0, 0, 0, 0, -139, -139, + -139, -139, -139, 0, 0, 0, 0, 0, 0, 0, + -139, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -139, 0, -139, -139, -139, -139, -139, -139, 0, -139, + 0, 0, -139, -139, -139, -139, -139, -139, -139, -139, + -139, -139, -139, -139, -139, -139, -139, -139, -140, 0, + -592, 0, 0, 0, 0, 0, 0, -140, -140, -140, + -140, 0, -140, -140, 0, 0, 0, -140, 0, 0, + -140, -140, -140, -140, 0, 0, 0, -140, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -140, -140, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -140, -140, 0, 0, 0, + 0, -140, -140, -140, -140, -140, 0, 0, 0, 0, + 0, 0, 0, -140, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -140, 0, -140, -140, -140, -140, -140, + -140, 0, -140, 0, 0, -140, -140, -140, -140, -140, + -140, -140, -140, -140, -140, -140, -140, -140, -140, -140, + -140, -141, 0, -590, 0, 0, 0, 0, 0, 0, + -141, -141, -141, -141, 0, -141, -141, 0, 0, 0, + -141, 0, 0, -141, -141, -141, -141, 0, 0, 0, + -141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -141, -141, 0, 0, 0, - 0, -141, -141, -141, -141, -141, 0, 0, 0, 0, - 0, 0, 0, -141, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -141, 0, -141, -141, -141, -141, -141, - -141, 0, -141, 0, 0, -141, -141, -141, -141, -141, + 0, 0, 0, 0, 0, 0, 0, 0, -141, -141, + 0, 0, 0, 0, -141, -141, -141, -141, -141, 0, + 0, 0, 0, 0, 0, 0, -141, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -141, 0, -141, -141, + -141, -141, -141, -141, 0, -141, 0, 0, -141, -141, -141, -141, -141, -141, -141, -141, -141, -141, -141, -141, - -141, -142, 0, -587, 0, 0, 0, 0, 0, 0, - -142, -142, -142, -142, 0, -142, -142, 0, 0, 0, - -142, 0, 0, -142, -142, -142, -142, 0, 0, 0, - -142, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -142, -142, 0, 0, 0, + -141, -141, -141, -141, -142, 0, -588, 0, 0, 0, + 0, 0, 0, -142, -142, -142, -142, 0, -142, -142, + 0, 0, 0, -142, 0, 0, -142, -142, -142, -142, + 0, 0, 0, -142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -142, -142, - 0, 0, 0, 0, -142, -142, -142, -142, -142, 0, - 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -142, 0, -142, -142, - -142, -142, -142, -142, 0, -142, 0, 0, -142, -142, - -142, -142, -142, -142, -142, -142, -142, -142, -142, -142, - -142, -142, -142, -142, -143, 0, -588, 0, 0, 0, - 0, 0, 0, -143, -143, -143, -143, 0, -143, -143, - 0, 0, 0, -143, 0, 0, -143, -143, -143, -143, - 0, 0, 0, -143, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -143, -143, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -143, -143, 0, 0, 0, 0, -143, -143, -143, - -143, -143, 0, 0, 0, 0, 0, 0, 0, -143, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -143, - 0, -143, -143, -143, -143, -143, -143, 0, -143, 0, - 0, -143, -143, -143, -143, -143, -143, -143, -143, -143, - -143, -143, -143, -143, -143, -143, -143, -144, 0, -590, - 0, 0, 0, 0, 0, 0, -144, -144, -144, -144, - 0, -144, -144, 0, 0, 0, -144, 0, 0, -144, - -144, -144, -144, 0, 0, 0, -144, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -144, -144, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -142, -142, 0, 0, 0, 0, -142, -142, -142, + -142, -142, 0, 0, 0, 0, 0, 0, 0, -142, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -142, + 0, -142, -142, -142, -142, -142, -142, 0, -142, 0, + 0, -142, -142, -142, -142, -142, -142, -142, -142, -142, + -142, -142, -142, -142, -142, -142, -142, -143, 0, -589, + 0, 0, 0, 0, 0, 0, -143, -143, -143, -143, + 0, -143, -143, 0, 0, 0, -143, 0, 0, -143, + -143, -143, -143, 0, 0, 0, -143, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -143, -143, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -143, -143, 0, 0, 0, 0, + -143, -143, -143, -143, -143, 0, 0, 0, 0, 0, + 0, 0, -143, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -143, 0, -143, -143, -143, -143, -143, -143, + 0, -143, 0, 0, -143, -143, -143, -143, -143, -143, + -143, -143, -143, -143, -143, -143, -143, -143, -143, -143, + -144, 0, -591, 0, 0, 0, 0, 0, 0, -144, + -144, -144, -144, 0, -144, -144, 0, 0, 0, -144, + 0, 0, -144, -144, -144, -144, 0, 0, 0, -144, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -144, -144, 0, 0, 0, 0, - -144, -144, -144, -144, -144, 0, 0, 0, 0, 0, - 0, 0, -144, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -144, 0, -144, -144, -144, -144, -144, -144, - 0, -144, 0, 0, -144, -144, -144, -144, -144, -144, + 0, 0, 0, 0, 0, 0, 0, -144, -144, 0, + 0, 0, 0, -144, -144, -144, -144, -144, 0, 0, + 0, 0, 0, 0, 0, -144, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -144, 0, -144, -144, -144, + -144, -144, -144, 0, -144, 0, 0, -144, -144, -144, -144, -144, -144, -144, -144, -144, -144, -144, -144, -144, - -145, 0, -586, 0, 0, 0, 0, 0, 0, -145, - -145, -145, -145, 0, -145, -145, 0, 0, 0, -145, - 0, 0, -145, -145, -145, -145, 0, 0, 0, -145, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -145, -145, 0, 0, 0, 0, + -144, -144, -144, -145, 0, -587, 0, 0, 0, 0, + 0, 0, -145, -145, -145, -145, 0, -145, -145, 0, + 0, 0, -145, 0, 0, -145, -145, -145, -145, 0, + 0, 0, -145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -145, -145, 0, - 0, 0, 0, -145, -145, -145, -145, -145, 0, 0, - 0, 0, 0, 0, 0, -145, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -145, 0, -145, -145, -145, - -145, -145, -145, 0, -145, 0, 0, -145, -145, -145, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -145, -145, 0, 0, 0, 0, -145, -145, -145, -145, + -145, 0, 0, 0, 0, 0, 0, 0, -145, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -145, 0, + -145, -145, -145, -145, -145, -145, 0, -145, 0, 0, -145, -145, -145, -145, -145, -145, -145, -145, -145, -145, - -145, -145, -145, -146, 0, -585, 0, 0, 0, 0, - 0, 0, -146, -146, -146, -146, 0, -146, -146, 0, - 0, 0, -146, 0, 0, -146, -146, -146, -146, 0, - 0, 0, -146, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -146, -146, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -146, -146, 0, 0, 0, 0, -146, -146, -146, -146, - -146, 0, 0, 0, 0, 0, 0, 0, -146, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -146, 0, - -146, -146, -146, -146, -146, -146, 0, -146, 0, 0, - -146, -146, -146, -146, -146, -146, -146, -146, -146, -146, - -146, -146, -146, -146, -146, -146, -30, 0, -593, 0, - 0, 0, 0, 0, 0, -30, -30, -30, -30, 0, - -30, -30, 0, 0, 0, -30, 0, 0, -30, -30, - -30, -30, 0, 0, 0, -30, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -30, -30, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -30, -30, 0, 0, 0, 0, -30, - -30, -30, -30, -30, 0, 0, 0, 0, 0, 0, - 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -30, 0, -30, -30, -30, -30, -30, -30, 0, - -30, 0, 0, -30, -30, -30, -30, -30, -30, -30, - -30, -30, -30, -30, -30, -30, -30, -30, -30, -148, - 0, -30, 0, 0, 0, 0, 0, 0, -148, -148, - -148, -148, 0, -148, -148, 0, 0, 0, -148, 0, - 0, -148, -148, -148, -148, 0, 0, 0, -148, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -148, -148, 0, 0, 0, 0, 0, + -145, -145, -145, -145, -145, -145, -146, 0, -586, 0, + 0, 0, 0, 0, 0, -146, -146, -146, -146, 0, + -146, -146, 0, 0, 0, -146, 0, 0, -146, -146, + -146, -146, 0, 0, 0, -146, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -146, -146, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -146, -146, 0, 0, 0, 0, -146, + -146, -146, -146, -146, 0, 0, 0, 0, 0, 0, + 0, -146, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -146, 0, -146, -146, -146, -146, -146, -146, 0, + -146, 0, 0, -146, -146, -146, -146, -146, -146, -146, + -146, -146, -146, -146, -146, -146, -146, -146, -146, -30, + 0, -594, 0, 0, 0, 0, 0, 0, -30, -30, + -30, -30, 0, -30, -30, 0, 0, 0, -30, 0, + 0, -30, -30, -30, -30, 0, 0, 0, -30, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -30, -30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -30, -30, 0, 0, + 0, 0, -30, -30, -30, -30, -30, 0, 0, 0, + 0, 0, 0, 0, -30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -30, 0, -30, -30, -30, -30, + -30, -30, 0, -30, 0, 0, -30, -30, -30, -30, + -30, -30, -30, -30, -30, -30, -30, -30, -30, -30, + -30, -30, -148, 0, -30, 0, 0, 0, 0, 0, + 0, -148, -148, -148, -148, 0, -148, -148, 0, 0, + 0, -148, 0, 0, -148, -148, -148, -148, 0, 0, + 0, -148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -148, -148, 0, 0, - 0, 0, -148, -148, -148, -148, -148, 0, 0, 0, - 0, 0, 0, 0, -148, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -148, 0, -148, -148, -148, -148, - -148, -148, 0, -148, 0, 0, -148, -148, -148, -148, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -148, + -148, 0, 0, 0, 0, -148, -148, -148, -148, -148, + 0, 0, 0, 0, 0, 0, 0, -148, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -148, 0, -148, + -148, -148, -148, -148, -148, 0, -148, 0, 0, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, - -148, -148, -149, 0, -621, 0, 0, 0, 0, 0, - 0, -149, -149, -149, -149, 0, -149, -149, 0, 0, - 0, -149, 0, 0, -149, -149, -149, -149, 0, 0, - 0, -149, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -149, -149, 0, 0, + -148, -148, -148, -148, -148, -149, 0, -622, 0, 0, + 0, 0, 0, 0, -149, -149, -149, -149, 0, -149, + -149, 0, 0, 0, -149, 0, 0, -149, -149, -149, + -149, 0, 0, 0, -149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -149, - -149, 0, 0, 0, 0, -149, -149, -149, -149, -149, - 0, 0, 0, 0, 0, 0, 0, -149, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -149, 0, -149, - -149, -149, -149, -149, -149, 0, -149, 0, 0, -149, - -149, -149, -149, -149, -149, -149, -149, -149, -149, -149, - -149, -149, -149, -149, -149, -150, 0, -619, 0, 0, - 0, 0, 0, 0, -150, -150, -150, -150, 0, -150, - -150, 0, 0, 0, -150, 0, 0, -150, -150, -150, - -150, 0, 0, 0, -150, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -150, - -150, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -150, -150, 0, 0, 0, 0, -150, -150, - -150, -150, -150, 0, 0, 0, 0, 0, 0, 0, - -150, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -150, 0, -150, -150, -150, -150, -150, -150, 0, -150, - 0, 0, -150, -150, -150, -150, -150, -150, -150, -150, - -150, -150, -150, -150, -150, -150, -150, -150, -151, 0, - -618, 0, 0, 0, 0, 0, 0, -151, -151, -151, - -151, 0, -151, -151, 0, 0, 0, -151, 0, 0, - -151, -151, -151, -151, 0, 0, 0, -151, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -151, -151, 0, 0, 0, 0, 0, 0, + -149, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -149, -149, 0, 0, 0, 0, -149, -149, + -149, -149, -149, 0, 0, 0, 0, 0, 0, 0, + -149, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -149, 0, -149, -149, -149, -149, -149, -149, 0, -149, + 0, 0, -149, -149, -149, -149, -149, -149, -149, -149, + -149, -149, -149, -149, -149, -149, -149, -149, -150, 0, + -620, 0, 0, 0, 0, 0, 0, -150, -150, -150, + -150, 0, -150, -150, 0, 0, 0, -150, 0, 0, + -150, -150, -150, -150, 0, 0, 0, -150, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -150, -150, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -150, -150, 0, 0, 0, + 0, -150, -150, -150, -150, -150, 0, 0, 0, 0, + 0, 0, 0, -150, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -150, 0, -150, -150, -150, -150, -150, + -150, 0, -150, 0, 0, -150, -150, -150, -150, -150, + -150, -150, -150, -150, -150, -150, -150, -150, -150, -150, + -150, -151, 0, -619, 0, 0, 0, 0, 0, 0, + -151, -151, -151, -151, 0, -151, -151, 0, 0, 0, + -151, 0, 0, -151, -151, -151, -151, 0, 0, 0, + -151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -151, -151, 0, 0, 0, - 0, -151, -151, -151, -151, -151, 0, 0, 0, 0, - 0, 0, 0, -151, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -151, 0, -151, -151, -151, -151, -151, - -151, 0, -151, 0, 0, -151, -151, -151, -151, -151, + 0, 0, 0, 0, 0, 0, 0, 0, -151, -151, + 0, 0, 0, 0, -151, -151, -151, -151, -151, 0, + 0, 0, 0, 0, 0, 0, -151, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -151, 0, -151, -151, + -151, -151, -151, -151, 0, -151, 0, 0, -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, - -151, -152, 0, -620, 0, 0, 0, 0, 0, 0, - -152, -152, -152, -152, 0, -152, -152, 0, 0, 0, - -152, 0, 0, -152, -152, -152, -152, 0, 0, 0, - -152, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -152, -152, 0, 0, 0, + -151, -151, -151, -151, -152, 0, -621, 0, 0, 0, + 0, 0, 0, -152, -152, -152, -152, 0, -152, -152, + 0, 0, 0, -152, 0, 0, -152, -152, -152, -152, + 0, 0, 0, -152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -152, -152, - 0, 0, 0, 0, -152, -152, -152, -152, -152, 0, - 0, 0, 0, 0, 0, 0, -152, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -152, 0, -152, -152, - -152, -152, -152, -152, 0, -152, 0, 0, -152, -152, - -152, -152, -152, -152, -152, -152, -152, -152, -152, -152, - -152, -152, -152, -152, -153, 0, -617, 0, 0, 0, - 0, 0, 0, -153, -153, -153, -153, 0, -153, -153, - 0, 0, 0, -153, 0, 0, -153, -153, -153, -153, - 0, 0, 0, -153, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -153, -153, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -153, -153, 0, 0, 0, 0, -153, -153, -153, - -153, -153, 0, 0, 0, 0, 0, 0, 0, -153, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -153, - 0, -153, -153, -153, -153, -153, -153, 0, -153, 0, - 0, -153, -153, -153, -153, -153, -153, -153, -153, -153, - -153, -153, -153, -153, -153, -153, -153, 104, 0, -616, - 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, - 0, 109, 110, 0, 0, 0, 111, 0, 0, 365, - 448, 366, 367, 0, 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 369, 370, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 371, 372, 0, 0, 0, 0, - 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, - 0, 0, 373, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, - 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 0, 0, 449, 104, 1, 2, 3, 4, 5, 6, - 7, 8, 105, 106, 107, 108, 0, 699, 110, 512, - 0, 0, 700, 495, 0, 496, 0, 497, 367, 11, - 0, 0, 498, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 369, 370, 168, + 0, -152, -152, 0, 0, 0, 0, -152, -152, -152, + -152, -152, 0, 0, 0, 0, 0, 0, 0, -152, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -152, + 0, -152, -152, -152, -152, -152, -152, 0, -152, 0, + 0, -152, -152, -152, -152, -152, -152, -152, -152, -152, + -152, -152, -152, -152, -152, -152, -152, -153, 0, -618, + 0, 0, 0, 0, 0, 0, -153, -153, -153, -153, + 0, -153, -153, 0, 0, 0, -153, 0, 0, -153, + -153, -153, -153, 0, 0, 0, -153, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -153, -153, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -153, -153, 0, 0, 0, 0, + -153, -153, -153, -153, -153, 0, 0, 0, 0, 0, + 0, 0, -153, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -153, 0, -153, -153, -153, -153, -153, -153, + 0, -153, 0, 0, -153, -153, -153, -153, -153, -153, + -153, -153, -153, -153, -153, -153, -153, -153, -153, -153, + 104, 0, -617, 0, 0, 0, 0, 0, 0, 105, + 106, 107, 108, 0, 109, 110, 0, 0, 0, 111, + 0, 0, 366, 450, 367, 368, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 371, 372, 0, 0, 0, 0, 112, 113, 114, 115, - 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 62, 63, 64, 65, 117, 0, - 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, - 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, - 109, 110, 492, 493, 494, 111, 495, 0, 496, 448, - 497, 367, 0, 0, 0, 498, 0, 0, 0, 0, + 0, 0, 0, 0, 370, 371, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 372, 373, 0, + 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, + 0, 0, 0, 0, 0, 374, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, + 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 0, 0, 451, 104, 1, 2, 3, + 4, 5, 6, 7, 8, 105, 106, 107, 108, 0, + 702, 110, 514, 0, 0, 703, 497, 0, 498, 0, + 499, 368, 11, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 369, 370, 168, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 371, 372, 0, 0, 0, 0, 112, + 370, 371, 168, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, + 0, 0, 0, 0, 0, 0, 0, 62, 63, 64, + 65, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, - 107, 108, 0, 109, 110, 787, 0, 0, 111, 495, - 0, 496, 0, 497, 367, 0, 0, 0, 498, 0, + 107, 108, 0, 109, 110, 494, 495, 496, 111, 497, + 0, 498, 450, 499, 368, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 158, 0, 0, 369, 370, 168, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 371, 372, 0, 0, + 0, 0, 0, 370, 371, 168, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 117, 788, 789, 119, 120, 121, + 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 790, 135, 136, 137, 138, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, - 0, 105, 106, 107, 108, 0, 109, 110, 512, 0, - 0, 111, 495, 0, 496, 0, 497, 367, 0, 0, - 0, 498, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 158, 0, 0, 369, 370, 168, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 371, - 372, 0, 0, 869, 0, 112, 113, 114, 115, 116, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, + 0, 105, 106, 107, 108, 0, 109, 110, 790, 0, + 0, 111, 497, 0, 498, 0, 499, 368, 0, 0, + 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 158, 0, 0, 370, 371, 168, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, + 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 117, 791, 792, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 126, 127, 128, 129, 130, 131, 132, 133, 793, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, - 110, 512, 0, 0, 111, 495, -635, 496, 0, 497, - 367, 0, 0, 0, 498, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 158, 0, 0, 369, - 370, 168, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 371, 372, 0, 0, 0, 0, 112, 113, + 110, 514, 0, 0, 111, 497, 0, 498, 0, 499, + 368, 0, 0, 0, 500, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 158, 0, 0, 370, + 371, 168, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 372, 373, 0, 0, 872, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, - 108, 0, 109, 110, 512, 0, 0, 111, 495, 0, - 496, 0, 497, 367, 0, 0, 0, 498, 0, 0, + 108, 0, 109, 110, 514, 0, 0, 111, 497, -636, + 498, 0, 499, 368, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, - 0, 0, 369, 370, 168, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 371, 372, 0, 0, 0, + 0, 0, 370, 371, 168, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, - 105, 106, 107, 108, 0, 109, 110, 787, 0, 0, - 111, 495, 0, 496, 0, 497, 367, 0, 0, 0, - 498, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 369, 370, 168, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 371, 372, + 105, 106, 107, 108, 0, 109, 110, 514, 0, 0, + 111, 497, 0, 498, 0, 499, 368, 0, 0, 0, + 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 158, 0, 0, 370, 371, 168, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 117, 788, 789, 119, + 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, - 127, 128, 129, 130, 131, 132, 133, 790, 135, 136, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, 110, - 512, 0, 0, 111, 495, 0, 496, 0, 497, 367, - 0, 0, 0, 498, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 369, 370, + 790, 0, 0, 111, 497, 0, 498, 0, 499, 368, + 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 370, 371, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 371, 372, 0, 0, 0, 0, 112, 113, 114, + 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, - 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, + 791, 792, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, + 793, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, - 0, 109, 110, 0, 0, 0, 111, 0, 0, 365, - 0, 366, 367, 0, 0, 0, 368, 0, 0, 0, + 0, 109, 110, 514, 0, 0, 111, 497, 0, 498, + 0, 499, 368, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 369, 370, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 371, 372, 0, 0, 0, 0, + 0, 370, 371, 168, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, - 0, 0, 373, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, 110, 0, 0, 0, 111, - 0, 0, 0, 0, 0, 0, 11, 0, 0, -527, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, + 0, 0, 366, 0, 367, 368, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 370, 371, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 372, 373, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 65, 117, 0, 118, 119, 120, + 0, 0, 0, 0, 0, 374, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, 110, 0, - 0, 679, 111, 0, 0, 0, 0, 0, 0, 11, - 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, - 474, 475, 476, 477, 478, 479, 480, 481, 0, 168, - 0, 0, 0, 482, 0, 0, 0, 0, 0, 0, + 0, 0, 111, 0, 0, 0, 0, 0, 0, 11, + 0, 0, -528, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 117, 0, @@ -1479,32 +1474,32 @@ static const short yytable[] = 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, - 109, 110, 0, 0, 0, 111, 0, 0, 771, 0, - 0, 0, 0, 0, 0, 722, 827, 464, 465, 466, - 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, - 477, 478, 479, 480, 481, 0, 0, 0, 0, 0, - 705, 0, 0, 0, 0, 0, 0, 0, 0, 112, + 109, 110, 753, 0, 0, 111, 0, 0, 0, 0, + 0, 0, 11, 466, 467, 468, 469, 470, 471, 472, + 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, + 483, 0, 168, 0, 0, 0, 708, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, + 65, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, 110, 0, 0, 0, 111, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 764, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 682, 0, 0, 0, 0, 0, 0, 725, 830, + 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, + 476, 477, 478, 479, 480, 481, 482, 483, 0, 0, + 0, 0, 0, 484, 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, - 0, 105, 106, 107, 108, 923, 109, 110, 0, 0, - 0, 111, 0, 0, 464, 465, 466, 467, 468, 469, - 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, - 480, 481, 0, 0, 0, 0, 0, 705, 168, 0, + 0, 105, 106, 107, 108, 0, 109, 110, 0, 0, + 0, 111, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 767, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1512,11 +1507,11 @@ static const short yytable[] = 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, - 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, - 110, 0, 0, 0, 111, 0, 0, 887, 0, 0, - 0, 0, 0, 0, 460, 464, 465, 466, 467, 468, + 0, 0, 0, 0, 105, 106, 107, 108, 774, 109, + 110, 0, 0, 0, 111, 0, 0, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, - 479, 480, 481, 0, 0, 0, 0, 0, 705, 0, + 479, 480, 481, 482, 483, 0, 0, 0, 0, 0, + 708, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1524,244 +1519,247 @@ static const short yytable[] = 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, - 108, 0, 109, 110, 0, 0, 0, 111, 0, 0, - 0, 761, 0, 0, 0, 0, 0, 722, 464, 465, - 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, - 476, 477, 478, 479, 480, 481, 0, 0, 0, 0, - 0, 482, 0, 0, 0, 0, 0, 104, 0, 0, - 0, 112, 113, 114, 115, 116, 105, 106, 107, 108, - 0, 109, 110, 0, 0, 0, 111, 0, 0, 0, + 108, 0, 109, 110, 0, 0, 0, 111, 0, 926, + 0, 0, 0, 0, 0, 0, 0, 462, 466, 467, + 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, + 478, 479, 480, 481, 482, 483, 0, 0, 0, 0, + 0, 708, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 0, 0, 0, 0, 0, 0, 0, 752, 0, - 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, + 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, + 105, 106, 107, 108, 0, 109, 110, 0, 0, 0, + 111, 0, 0, 890, 0, 0, 0, 0, 0, 0, + 725, 466, 467, 468, 469, 470, 471, 472, 473, 474, + 475, 476, 477, 478, 479, 480, 481, 482, 483, 0, + 0, 0, 0, 0, 708, 0, 0, 0, 0, 0, + 104, 0, 0, 0, 112, 113, 114, 115, 116, 105, + 106, 107, 108, 0, 109, 110, 0, 0, 0, 111, + 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, + 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 0, 0, 0, 0, 0, 0, + 0, 755, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, - 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, - 106, 107, 108, 819, 803, 110, 0, 0, 0, 111, - 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, - 474, 475, 476, 477, 478, 479, 480, 481, 0, 0, - 0, 0, 0, 705, 0, 0, 168, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, - 0, 0, 0, 112, 113, 114, 115, 116, 105, 106, - 107, 108, 0, 109, 110, 0, 0, 0, 111, 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 0, 0, 0, 0, 0, 104, 0, - 848, 0, 112, 113, 114, 115, 116, 105, 106, 107, - 108, 0, 109, 110, 0, 0, 0, 111, 0, 0, - 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, - 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, + 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, + 0, 0, 105, 106, 107, 108, 764, 806, 110, 0, + 0, 0, 111, 466, 467, 468, 469, 470, 471, 472, + 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, + 483, 0, 0, 0, 0, 0, 484, 0, 0, 168, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 104, 0, 0, 0, 112, 113, 114, 115, + 116, 105, 106, 107, 108, 0, 109, 110, 0, 0, + 0, 111, 0, 0, 0, 0, 0, 0, 117, 0, + 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 0, 0, 0, 0, + 0, 104, 0, 851, 0, 112, 113, 114, 115, 116, + 105, 106, 107, 108, 0, 109, 110, 0, 0, 0, + 111, 0, 0, 0, 0, 0, 0, 117, 0, 118, + 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, + 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 136, 137, 138, 139, 140, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, - 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 720, 0, 0, 464, 465, 466, 467, 468, 469, - 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, - 480, 481, 0, 0, 0, 0, 0, 705, 464, 465, - 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, - 476, 477, 478, 479, 480, 481, 0, 0, 0, 0, - 0, 482, 464, 465, 466, 467, 468, 469, 470, 471, - 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, - 0, 0, 0, 0, 0, 705, 464, 465, 466, 467, - 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, - 478, 479, 480, 481, 0, 0, 0, 0, 0, 482, - 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, - 474, 475, 476, 477, 478, 479, 480, 481, 0, 0, - 0, 0, 0, 705 + 0, 0, 0, 0, 0, 0, 117, 0, 118, 119, + 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 822, 0, 0, 0, 0, 0, + 0, 466, 467, 468, 469, 470, 471, 472, 473, 474, + 475, 476, 477, 478, 479, 480, 481, 482, 483, 0, + 0, 0, 723, 0, 708, 466, 467, 468, 469, 470, + 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, + 481, 482, 483, 0, 0, 0, 0, 0, 708, 466, + 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, + 477, 478, 479, 480, 481, 482, 483, 0, 0, 0, + 0, 0, 484, 466, 467, 468, 469, 470, 471, 472, + 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, + 483, 0, 0, 0, 0, 0, 708, 466, 467, 468, + 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, + 479, 480, 481, 482, 483, 0, 0, 0, 0, 0, + 484, 466, 467, 468, 469, 470, 471, 472, 473, 474, + 475, 476, 477, 478, 479, 480, 481, 482, 483, 0, + 0, 0, 0, 0, 708 }; static const short yycheck[] = { - 33, 22, 88, 0, 33, 16, 17, 18, 190, 0, - 189, 190, 15, 10, 33, 196, 103, 430, 15, 92, - 433, 390, 430, 433, 404, 376, 92, 24, 403, 34, - 27, 507, 401, 716, 81, 316, 27, 386, 387, 485, - 738, 485, 738, 418, 91, 775, 738, 777, 45, 10, - 0, 62, 63, 64, 141, 316, 15, 144, 767, 26, - 10, 31, 32, 436, 34, 29, 49, 29, 91, 33, - 81, 33, 24, 442, 24, 29, 29, 27, 17, 18, - 33, 92, 93, 94, 45, 33, 34, 368, 32, 165, - 101, 821, 95, 374, 38, 45, 25, 789, 95, 450, - 123, 797, 26, 26, 813, 797, 35, 6, 459, 33, - 9, 462, 64, 4, 5, 6, 7, 8, 9, 10, - 11, 197, 31, 87, 44, 87, 17, 36, 32, 498, - 499, 22, 0, 87, 87, 508, 95, 9, 507, 11, - 823, 124, 26, 27, 853, 31, 35, 36, 32, 35, - 36, 125, 119, 31, 415, 125, 34, 840, 32, 162, - 44, 36, 173, 196, 161, 162, 37, 6, 7, 8, - 879, 110, 111, 112, 113, 114, 115, 32, 36, 34, - 191, 30, 463, 866, 31, 31, 33, 34, 897, 31, - 888, 33, 34, 84, 85, 86, 888, 32, 928, 35, - 161, 482, 483, 162, 35, 36, 33, 34, 33, 34, - 902, 161, 32, 33, 910, 23, 37, 36, 910, 33, - 34, 92, 93, 94, 95, 96, 924, 98, 99, 33, - 34, 317, 924, 4, 5, 6, 7, 8, 9, 10, - 11, 40, 688, 316, 688, 31, 17, 693, 931, 693, - 316, 22, 33, 34, 36, 17, 18, 23, 29, 93, - 94, 123, 38, 643, 32, 645, 37, 6, 648, 36, - 32, 92, 93, 94, 95, 96, 32, 98, 99, 31, - 35, 650, 32, 36, 32, 4, 5, 6, 7, 8, - 9, 10, 11, 17, 18, 368, 40, 31, 17, 31, - 675, 374, 368, 22, 49, 316, 485, 6, 374, 26, - 29, 32, 359, 84, 85, 86, 87, 40, 34, 498, - 34, 34, 92, 93, 94, 95, 96, 740, 98, 99, - 31, 682, 740, 26, 685, 686, 705, 706, 100, 101, - 102, 103, 104, 105, 106, 107, 108, 722, 824, 32, - 121, 3, 727, 22, 6, 32, 31, 368, 10, 39, - 12, 13, 373, 374, 83, 84, 85, 86, 87, 738, - 89, 23, 64, 64, 403, 37, 100, 101, 102, 103, - 104, 105, 106, 107, 108, 418, 40, 31, 31, 418, - 463, 40, 32, 24, 40, 32, 429, 463, 431, 418, - 433, 770, 32, 783, 123, 785, 786, 31, 33, 482, - 483, 33, 33, 4, 5, 6, 482, 483, 9, 768, - 769, 432, 34, 25, 35, 31, 35, 34, 797, 842, - 3, 22, 33, 6, 842, 446, 33, 10, 33, 12, - 13, 14, 15, 16, 17, 34, 34, 40, 35, 460, - 819, 456, 463, 486, 487, 824, 64, 808, 809, 109, - 33, 874, 644, 32, 874, 644, 32, 34, 647, 33, - 839, 482, 483, 33, 25, 32, 35, 31, 891, 760, - 761, 33, 485, 891, 864, 33, 33, 32, 485, 33, - 903, 31, 97, 35, 485, 33, 25, 4, 5, 6, - 7, 8, 9, 10, 11, 31, 34, 518, 32, 688, - 17, 4, 5, 6, 693, 22, 9, 33, 887, 888, - 933, 33, 29, 34, 33, 933, 34, 32, 34, 22, - 24, 944, 32, 4, 5, 6, 7, 8, 9, 10, - 11, 910, 97, 32, 25, 33, 17, 32, 25, 33, - 930, 22, 34, 33, 33, 924, 34, 33, 29, 30, - 31, 35, 34, 33, 745, 945, 32, 25, 33, 32, - 41, 33, 33, 32, 27, 693, 33, 84, 85, 86, - 87, 33, 33, 162, 688, 30, 4, 5, 6, 7, - 8, 9, 10, 11, 40, 640, 186, 24, 780, 17, - 184, 780, 389, 647, 22, 815, 456, 21, 695, 696, - 651, 29, 83, 84, 85, 86, 87, 88, 89, 777, - 91, 66, 67, 68, 69, 70, 71, 72, 73, 74, - 75, 76, 77, 174, 79, 80, 81, 82, 671, 19, - 651, 924, 393, 788, 3, 116, 675, 6, 902, 429, - 121, 10, 123, 12, 13, 14, 15, 16, 17, 692, - 944, 836, 673, 692, 747, -1, 84, 85, 86, 87, - -1, -1, -1, 692, -1, -1, -1, -1, -1, -1, - -1, -1, 701, 694, -1, 688, -1, 760, 761, -1, - 693, 688, -1, 722, 760, 761, 693, 688, 727, -1, - 882, -1, 693, 882, -1, 123, -1, -1, -1, 742, - -1, -1, 745, -1, -1, 748, -1, -1, -1, 901, - 806, -1, 901, 744, -1, -1, 4, 5, 6, 7, - 8, 9, 10, 11, -1, -1, 747, -1, -1, 17, - -1, -1, -1, -1, 22, -1, -1, -1, -1, 760, - 761, 29, -1, -1, -1, 937, -1, -1, 937, 4, - 5, 6, 7, 8, 9, 10, 11, 800, 779, -1, - -1, 782, 17, -1, -1, -1, -1, 22, -1, -1, - 813, 26, 27, 816, 817, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 807, -1, -1, 44, - 31, -1, 823, 836, -1, -1, 84, 85, 86, 87, - -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, - -1, -1, -1, -1, 65, -1, -1, -1, -1, 84, - 85, 86, -1, 121, -1, -1, 879, -1, -1, -1, - -1, -1, -1, -1, -1, 888, -1, -1, -1, -1, - -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, 28, - 29, 924, 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, -1, 81, -1, 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, - 109, 110, 111, 112, 113, 114, 115, 116, -1, -1, - 119, -1, 121, 122, 123, 124, 125, 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, 28, 29, -1, 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, -1, 81, -1, - 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, 109, 110, 111, 112, - 113, 114, 115, 116, -1, -1, 119, -1, 121, 122, - 123, 124, 125, 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, 28, 29, -1, 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, -1, 81, -1, 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, 109, 110, 111, 112, 113, 114, 115, 116, - -1, -1, 119, -1, 121, 122, 123, 124, 125, 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, 28, 29, -1, - 31, 32, 33, 34, 35, 36, -1, 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, -1, - 81, -1, 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, 109, 110, - 111, 112, 113, 114, 115, 116, 3, -1, 119, -1, - 121, 122, 123, 124, 125, 12, 13, 14, 15, -1, - 17, 18, -1, -1, -1, 22, -1, -1, -1, -1, - -1, -1, 29, 30, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, -1, 42, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 57, 58, 59, -1, -1, -1, -1, -1, 65, 66, - 67, 68, 69, 70, 4, 5, 6, 7, 8, 9, - 10, 11, -1, -1, -1, -1, -1, 17, -1, -1, - 87, 88, 22, 90, 91, 92, 93, 94, 95, 29, - 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 112, 113, 114, 115, -1, - 3, -1, -1, -1, -1, -1, -1, -1, 125, 12, - 13, 14, 15, -1, 17, 18, 19, -1, -1, 22, - 23, -1, 25, -1, 27, 28, 29, -1, -1, 32, - -1, -1, -1, -1, 84, 85, 86, 87, -1, -1, - -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, - -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, - -1, 121, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 87, 88, -1, 90, 91, 92, - 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, - 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, - -1, 124, 12, 13, 14, 15, -1, 17, 18, -1, - -1, -1, 22, -1, -1, 25, -1, 27, 28, -1, - -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, + 33, 22, 88, 0, 33, 16, 17, 18, 190, 189, + 190, 0, 15, 10, 33, 196, 103, 431, 15, 92, + 34, 405, 387, 388, 434, 431, 509, 24, 434, 404, + 27, 719, 487, 81, 391, 317, 487, 741, 27, 741, + 741, 15, 92, 91, 419, 402, 26, 317, 45, 0, + 49, 62, 63, 64, 141, 770, 10, 144, 377, 10, + 778, 437, 780, 31, 32, 29, 34, 24, 29, 33, + 81, 91, 33, 24, 32, 44, 27, 17, 18, 29, + 38, 92, 93, 94, 31, 26, 443, 369, 792, 36, + 101, 45, 95, 375, 45, 165, 800, 0, 95, 800, + 29, 816, 6, 123, 33, 9, 824, 64, 9, 25, + 11, 4, 5, 6, 7, 8, 9, 10, 11, 35, + 32, 95, 34, 87, 17, 124, 87, 197, 26, 22, + 125, 17, 18, 452, 510, 33, 29, 87, 826, 119, + 32, 856, 461, 500, 501, 464, 416, 32, 4, 5, + 6, 31, 509, 9, 34, 843, 31, 125, 87, 162, + 35, 36, 173, 196, 161, 162, 22, 882, 35, 36, + 110, 111, 112, 113, 114, 115, 36, 4, 5, 6, + 191, 869, 9, 465, 36, 900, 88, 891, 162, 891, + 83, 84, 85, 86, 87, 22, 89, 31, 30, 33, + 34, 905, 484, 485, 6, 7, 8, 161, 31, 913, + 161, 32, 913, 931, 100, 101, 102, 103, 104, 105, + 106, 107, 108, 927, 31, 927, 33, 34, 3, 35, + 123, 6, 318, 26, 27, 10, 691, 12, 13, 32, + 691, 696, 33, 34, 317, 696, 934, 36, 23, 35, + 36, 44, 4, 5, 6, 7, 8, 9, 10, 11, + 40, 645, 23, 647, 31, 17, 650, 317, 33, 34, + 22, 33, 34, 33, 34, 32, 33, 29, 36, 4, + 5, 6, 7, 8, 9, 10, 11, 92, 93, 94, + 95, 96, 17, 98, 99, 652, 369, 22, 33, 34, + 33, 34, 375, 678, 29, 23, 317, 487, 93, 94, + 123, 38, 360, 32, 6, 36, 26, 32, 31, 369, + 500, 37, 36, 32, 35, 375, 32, 31, 40, 743, + 31, 6, 84, 85, 86, 87, 26, 743, 32, 34, + 40, 49, 22, 34, 827, 34, 31, 31, 26, 32, + 725, 708, 709, 32, 31, 730, 37, 39, 369, 84, + 85, 86, 87, 374, 375, 64, 685, 64, 37, 688, + 689, 123, 40, 31, 40, 404, 92, 93, 94, 95, + 96, 31, 98, 99, 741, 32, 419, 24, 40, 32, + 419, 32, 465, 31, 33, 35, 121, 430, 33, 432, + 419, 434, 786, 33, 788, 789, 771, 772, 34, 25, + 31, 484, 485, 35, 33, 465, 773, 34, 33, 33, + 40, 34, 433, 92, 93, 94, 95, 96, 34, 98, + 99, 845, 35, 64, 484, 485, 447, 109, 32, 845, + 32, 34, 33, 800, 458, 33, 25, 32, 35, 31, + 33, 462, 33, 33, 465, 488, 489, 32, 31, 33, + 25, 97, 33, 35, 646, 822, 646, 877, 34, 649, + 827, 877, 31, 484, 485, 32, 34, 33, 33, 33, + 894, 763, 764, 867, 487, 842, 34, 32, 894, 24, + 487, 34, 811, 812, 32, 97, 32, 25, 487, 33, + 906, 4, 5, 6, 7, 8, 9, 10, 11, 520, + 32, 691, 25, 33, 17, 33, 696, 34, 34, 22, + 35, 33, 936, 33, 33, 32, 29, 30, 31, 33, + 936, 25, 34, 890, 891, 32, 27, 33, 41, 162, + 33, 947, 32, 696, 33, 33, 33, 691, 3, 933, + 184, 6, 642, 186, 40, 10, 913, 12, 13, 14, + 15, 16, 17, 24, 948, 649, 390, 748, 818, 458, + 927, 653, 21, 174, 780, 19, 394, 927, 33, 430, + 83, 84, 85, 86, 87, 88, 89, 791, 91, 4, + 5, 6, 7, 8, 9, 10, 11, 905, 947, 839, + 750, 783, 17, 783, -1, -1, -1, 22, -1, -1, + -1, 698, 699, 116, 29, -1, -1, -1, 121, -1, + 123, -1, 37, -1, -1, -1, -1, -1, 4, 5, + 6, 7, 8, 9, 10, 11, -1, -1, -1, -1, + 673, 17, 653, -1, 17, 18, 22, -1, -1, 678, + -1, -1, -1, 29, -1, -1, -1, -1, -1, 32, + -1, -1, 695, -1, -1, 676, 695, -1, -1, 84, + 85, 86, 87, -1, -1, -1, 695, -1, -1, -1, + -1, -1, -1, -1, -1, 704, 697, -1, 691, -1, + 763, 764, -1, 696, 691, -1, 725, -1, -1, 696, + -1, 730, 691, 885, -1, 885, 121, 696, 84, 85, + 86, 87, 745, 763, 764, 748, -1, -1, 751, -1, + -1, -1, 904, 809, 904, -1, 747, 100, 101, 102, + 103, 104, 105, 106, 107, 108, -1, 3, -1, 750, + 6, -1, -1, -1, 10, 121, 12, 13, 14, 15, + 16, 17, 763, 764, -1, -1, -1, -1, 940, -1, + 940, -1, 4, 5, 6, 7, 8, 9, 10, 11, + 803, 782, 30, -1, 785, 17, -1, -1, -1, -1, + 22, -1, -1, 816, 26, 27, 819, 820, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 810, + -1, -1, 44, -1, -1, 826, 839, -1, 66, 67, + 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, + -1, 79, 80, 81, 82, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 84, 85, 86, -1, -1, -1, -1, 882, + -1, -1, -1, -1, -1, -1, -1, -1, 891, -1, + -1, -1, -1, -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, 28, 29, 927, 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, -1, 81, -1, 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, 109, 110, 111, 112, 113, 114, 115, + 116, -1, -1, 119, -1, 121, 122, 123, 124, 125, + 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, 28, 29, + -1, 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, + -1, 81, -1, 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, 109, + 110, 111, 112, 113, 114, 115, 116, -1, -1, 119, + -1, 121, 122, 123, 124, 125, 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, 28, 29, -1, 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, -1, 81, -1, 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, 109, 110, 111, 112, 113, + 114, 115, 116, -1, -1, 119, -1, 121, 122, 123, + 124, 125, 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, + 28, 29, -1, 31, 32, 33, 34, 35, 36, -1, + 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, -1, 81, -1, 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, 109, 110, 111, 112, 113, 114, 115, 116, 3, + -1, 119, -1, 121, 122, 123, 124, 125, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, + -1, -1, -1, -1, -1, 29, 30, 31, 32, 33, + 34, 35, 36, 37, 38, 39, 40, -1, 42, 43, + 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, + -1, 65, 66, 67, 68, 69, 70, 4, 5, 6, + 7, 8, 9, 10, 11, -1, -1, -1, -1, -1, + 17, -1, -1, 87, 88, 22, 90, 91, 92, 93, + 94, 95, 29, 97, -1, -1, 100, 101, 102, 103, + 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, + 114, 115, -1, 3, -1, -1, -1, -1, -1, -1, + -1, 125, 12, 13, 14, 15, -1, 17, 18, 19, + -1, -1, 22, 23, -1, 25, -1, 27, 28, 29, + -1, -1, 32, -1, -1, -1, -1, 84, 85, 86, + 87, -1, -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, - 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, - 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, + 70, 4, 5, 6, 7, 8, 9, 10, 11, -1, + -1, -1, -1, -1, 17, -1, -1, 87, 88, 22, + 90, 91, 92, 93, 94, 95, 29, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 3, -1, -1, 119, - -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, - 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, + 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, + -1, -1, -1, -1, 124, 12, 13, 14, 15, -1, + 17, 18, -1, -1, -1, 22, -1, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, - -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, - 47, 48, -1, -1, -1, 17, -1, -1, -1, -1, - 22, -1, -1, 60, 61, -1, -1, 29, -1, 66, + -1, 84, 85, 86, 87, -1, -1, -1, -1, -1, + 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, 118, 84, 85, 86, 87, -1, -1, 12, 13, + -1, -1, 119, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, 4, 5, 6, 7, 8, @@ -1787,15 +1785,15 @@ static const short yycheck[] = 86, 87, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, - 48, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 4, 5, 6, 7, 8, 9, 10, 11, 47, + 48, -1, -1, -1, 17, -1, -1, -1, -1, 22, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - 118, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 118, 84, 85, 86, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2179,38 +2177,38 @@ static const short yycheck[] = -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, - 10, 11, 12, 13, 14, 15, -1, 17, 18, 19, - -1, -1, 22, 23, -1, 25, -1, 27, 28, 29, - -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 47, 48, 49, + 3, -1, 118, -1, -1, -1, -1, -1, -1, 12, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, + -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, - 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 84, 85, 86, 87, 88, -1, - 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, - 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, - -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, - 17, 18, 19, 20, 21, 22, 23, -1, 25, 26, - 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, + -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, + -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, + -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, + 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, -1, -1, 118, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, -1, + 17, 18, 19, -1, -1, 22, 23, -1, 25, -1, + 27, 28, 29, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, + -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, + 87, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, - 14, 15, -1, 17, 18, 19, -1, -1, 22, 23, - -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, + 14, 15, -1, 17, 18, 19, 20, 21, 22, 23, + -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, + -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 88, 89, 90, 91, 92, 93, + -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, @@ -2219,25 +2217,25 @@ static const short yycheck[] = -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, - 61, -1, -1, 64, -1, 66, 67, 68, 69, 70, + 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, + -1, -1, -1, -1, -1, -1, -1, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, - 18, 19, -1, -1, 22, 23, 24, 25, -1, 27, + 18, 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, + -1, -1, 60, 61, -1, -1, 64, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, - 15, -1, 17, 18, 19, -1, -1, 22, 23, -1, + 15, -1, 17, 18, 19, -1, -1, 22, 23, 24, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, @@ -2251,11 +2249,11 @@ static const short yycheck[] = 12, 13, 14, 15, -1, 17, 18, 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, + -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 88, 89, 90, 91, + -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, @@ -2267,37 +2265,37 @@ static const short yycheck[] = -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, - -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, + 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, - -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, + -1, 17, 18, 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 47, 48, -1, -1, -1, -1, -1, -1, -1, + -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, - -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, - -1, -1, -1, -1, -1, -1, 29, -1, -1, 32, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 49, -1, -1, -1, + -1, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 87, 88, -1, 90, 91, 92, + -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, - -1, 33, 22, -1, -1, -1, -1, -1, -1, 29, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, -1, 49, - -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, + -1, -1, 22, -1, -1, -1, -1, -1, -1, 29, + -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 49, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, @@ -2305,32 +2303,32 @@ static const short yycheck[] = 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, - 17, 18, -1, -1, -1, 22, -1, -1, 33, -1, - -1, -1, -1, -1, -1, 32, 33, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, -1, -1, -1, -1, -1, - 65, -1, -1, -1, -1, -1, -1, -1, -1, 66, + 17, 18, 31, -1, -1, 22, -1, -1, -1, -1, + -1, -1, 29, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, -1, 49, -1, -1, -1, 65, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, + 87, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 35, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 33, -1, -1, -1, -1, -1, -1, 32, 33, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, + -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, - -1, 12, 13, 14, 15, 33, 17, 18, -1, -1, - -1, 22, -1, -1, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, -1, -1, -1, -1, -1, 65, 49, -1, + -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, + -1, 22, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 35, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2338,11 +2336,11 @@ static const short yycheck[] = 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, - -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, - 18, -1, -1, -1, 22, -1, -1, 34, -1, -1, - -1, -1, -1, -1, 32, 42, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 57, 58, 59, -1, -1, -1, -1, -1, 65, -1, + -1, -1, -1, -1, 12, 13, 14, 15, 33, 17, + 18, -1, -1, -1, 22, -1, -1, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, -1, -1, -1, -1, -1, + 65, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2350,58 +2348,72 @@ static const short yycheck[] = -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, - 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, - -1, 35, -1, -1, -1, -1, -1, 32, 42, 43, + 15, -1, 17, 18, -1, -1, -1, 22, -1, 33, + -1, -1, -1, -1, -1, -1, -1, 32, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, - -1, 65, -1, -1, -1, -1, -1, 3, -1, -1, - -1, 66, 67, 68, 69, 70, 12, 13, 14, 15, - -1, 17, 18, -1, -1, -1, 22, -1, -1, -1, + -1, 65, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, -1, -1, -1, -1, -1, -1, -1, 64, -1, - 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, + 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, + 22, -1, -1, 34, -1, -1, -1, -1, -1, -1, + 32, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, + -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, + 3, -1, -1, -1, 66, 67, 68, 69, 70, 12, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, + -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, + 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, + -1, 64, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, - -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, - 13, 14, 15, 35, 17, 18, -1, -1, -1, 22, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, - -1, -1, -1, 65, -1, -1, 49, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, - -1, -1, -1, 66, 67, 68, 69, 70, 12, 13, - 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, -1, -1, -1, -1, -1, 3, -1, - 64, -1, 66, 67, 68, 69, 70, 12, 13, 14, - 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, - -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, - 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, - 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, + 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, + -1, -1, 12, 13, 14, 15, 35, 17, 18, -1, + -1, -1, 22, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, -1, -1, -1, -1, -1, 65, -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, - 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, - 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 39, -1, -1, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, -1, -1, -1, -1, -1, 65, 42, 43, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, - -1, 65, 42, 43, 44, 45, 46, 47, 48, 49, - 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - -1, -1, -1, -1, -1, 65, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, -1, -1, -1, -1, -1, 65, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, - -1, -1, -1, 65 + -1, -1, 3, -1, -1, -1, 66, 67, 68, 69, + 70, 12, 13, 14, 15, -1, 17, 18, -1, -1, + -1, 22, -1, -1, -1, -1, -1, -1, 88, -1, + 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, + 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, + 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, + -1, 3, -1, 64, -1, 66, 67, 68, 69, 70, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, + 22, -1, -1, -1, -1, -1, -1, 88, -1, 90, + 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, + 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, + 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, + 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 35, -1, -1, -1, -1, -1, + -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, + -1, -1, 39, -1, 65, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, -1, -1, -1, -1, -1, 65, 42, + 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, -1, -1, -1, + -1, -1, 65, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, -1, -1, -1, -1, -1, 65, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, -1, -1, -1, -1, -1, + 65, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, + -1, -1, -1, -1, 65 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -2427,82 +2439,83 @@ static const unsigned short yystos[] = 281, 22, 83, 89, 123, 199, 0, 148, 49, 143, 176, 211, 236, 237, 238, 239, 177, 4, 5, 6, 9, 22, 184, 6, 181, 187, 200, 125, 189, 32, - 32, 36, 36, 143, 143, 143, 34, 192, 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, 28, 29, 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, 81, 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, 109, 110, 111, 112, 113, 114, 115, 116, - 119, 121, 122, 123, 124, 125, 143, 144, 159, 30, - 3, 12, 13, 14, 15, 17, 18, 22, 66, 67, - 68, 69, 70, 88, 90, 91, 92, 93, 94, 95, - 97, 100, 101, 102, 103, 104, 105, 106, 107, 108, - 109, 110, 111, 112, 113, 114, 115, 144, 162, 163, - 162, 26, 119, 155, 144, 25, 27, 28, 32, 47, - 48, 60, 61, 78, 142, 143, 164, 224, 143, 230, - 143, 230, 173, 31, 143, 35, 233, 233, 233, 233, - 40, 23, 31, 36, 23, 171, 123, 189, 29, 87, - 240, 38, 234, 32, 143, 124, 239, 6, 185, 6, - 9, 186, 184, 36, 196, 32, 31, 17, 175, 203, - 205, 207, 208, 209, 210, 207, 143, 220, 221, 92, - 93, 94, 95, 96, 98, 99, 251, 252, 253, 266, - 269, 275, 276, 277, 193, 211, 237, 189, 26, 118, - 164, 190, 162, 144, 26, 27, 32, 44, 226, 164, - 32, 143, 164, 32, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 65, 141, 35, 36, 215, 215, 31, 214, - 215, 214, 19, 20, 21, 23, 25, 27, 32, 142, - 168, 169, 190, 211, 222, 223, 224, 40, 251, 32, - 31, 31, 19, 29, 87, 124, 222, 235, 236, 237, - 234, 6, 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, 28, 29, - 31, 32, 33, 34, 35, 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, 81, 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, 109, 110, 111, 112, 113, 114, - 115, 116, 119, 121, 122, 123, 124, 125, 145, 196, - 197, 198, 190, 236, 32, 33, 34, 34, 33, 34, - 40, 34, 231, 211, 256, 222, 245, 270, 271, 272, - 280, 211, 143, 278, 279, 211, 267, 271, 37, 252, - 222, 34, 31, 32, 26, 177, 225, 226, 22, 33, - 143, 119, 164, 165, 166, 164, 164, 32, 121, 172, - 173, 174, 175, 216, 219, 228, 229, 211, 211, 17, - 22, 175, 222, 222, 31, 65, 141, 168, 37, 14, - 15, 16, 17, 33, 243, 244, 246, 248, 249, 250, - 39, 39, 32, 143, 37, 198, 33, 32, 234, 207, - 234, 64, 209, 234, 64, 222, 221, 37, 40, 31, - 40, 31, 32, 24, 40, 32, 31, 34, 32, 31, - 31, 211, 64, 143, 160, 161, 236, 33, 33, 33, - 34, 35, 25, 174, 35, 232, 37, 172, 233, 233, - 33, 33, 222, 222, 31, 35, 33, 34, 245, 236, - 32, 33, 236, 33, 34, 33, 33, 19, 89, 90, - 109, 222, 255, 257, 258, 259, 260, 281, 270, 211, - 280, 193, 279, 17, 193, 268, 33, 34, 164, 164, - 34, 25, 35, 34, 217, 232, 215, 215, 222, 35, - 246, 35, 244, 246, 40, 143, 207, 33, 234, 64, - 234, 234, 109, 257, 17, 18, 32, 260, 263, 32, - 32, 255, 34, 273, 211, 33, 33, 162, 64, 143, - 25, 35, 32, 211, 218, 232, 31, 217, 222, 246, - 280, 168, 33, 33, 33, 268, 32, 222, 245, 64, - 270, 274, 33, 31, 97, 33, 35, 25, 232, 34, - 31, 64, 32, 33, 234, 33, 245, 34, 34, 261, - 33, 34, 18, 271, 272, 32, 34, 211, 232, 24, - 207, 32, 97, 32, 222, 211, 254, 255, 256, 262, - 281, 33, 270, 25, 25, 232, 33, 33, 207, 263, - 264, 265, 270, 33, 34, 255, 34, 33, 35, 33, - 33, 32, 33, 34, 254, 25, 246, 32, 234, 245, - 33, 270, 33, 207, 32, 33, 264, 234, 33, 33 + 32, 36, 36, 143, 143, 143, 34, 192, 88, 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, 28, 29, 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, 81, 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, 109, 110, 111, 112, 113, 114, 115, + 116, 119, 121, 122, 123, 124, 125, 143, 144, 159, + 30, 3, 12, 13, 14, 15, 17, 18, 22, 66, + 67, 68, 69, 70, 88, 90, 91, 92, 93, 94, + 95, 97, 100, 101, 102, 103, 104, 105, 106, 107, + 108, 109, 110, 111, 112, 113, 114, 115, 144, 162, + 163, 162, 26, 119, 155, 144, 25, 27, 28, 32, + 47, 48, 60, 61, 78, 142, 143, 164, 224, 143, + 230, 143, 230, 173, 31, 143, 35, 233, 233, 233, + 233, 40, 23, 31, 36, 23, 171, 123, 189, 29, + 87, 240, 38, 234, 32, 143, 124, 239, 6, 185, + 6, 9, 186, 184, 36, 196, 32, 31, 17, 175, + 203, 205, 207, 208, 209, 210, 207, 143, 220, 221, + 92, 93, 94, 95, 96, 98, 99, 251, 252, 253, + 266, 269, 275, 276, 277, 193, 211, 237, 189, 26, + 26, 118, 164, 190, 162, 144, 26, 27, 32, 44, + 226, 164, 32, 143, 164, 32, 42, 43, 44, 45, + 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, + 56, 57, 58, 59, 65, 141, 35, 36, 215, 215, + 31, 214, 215, 214, 19, 20, 21, 23, 25, 27, + 32, 142, 168, 169, 190, 211, 222, 223, 224, 40, + 251, 32, 31, 31, 19, 29, 87, 124, 222, 235, + 236, 237, 234, 6, 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, + 28, 29, 31, 32, 33, 34, 35, 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, 81, + 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, 109, 110, 111, 112, + 113, 114, 115, 116, 119, 121, 122, 123, 124, 125, + 145, 196, 197, 198, 190, 236, 32, 33, 34, 34, + 33, 34, 40, 34, 231, 211, 256, 222, 245, 270, + 271, 272, 280, 211, 143, 278, 279, 211, 267, 271, + 37, 252, 222, 34, 31, 31, 32, 26, 177, 225, + 226, 22, 33, 143, 119, 164, 165, 166, 164, 164, + 32, 121, 172, 173, 174, 175, 216, 219, 228, 229, + 211, 211, 17, 22, 175, 222, 222, 31, 65, 141, + 168, 37, 14, 15, 16, 17, 33, 243, 244, 246, + 248, 249, 250, 39, 39, 32, 143, 37, 198, 33, + 32, 234, 207, 234, 64, 209, 234, 64, 222, 221, + 37, 40, 31, 40, 31, 32, 24, 40, 32, 31, + 34, 32, 31, 31, 211, 64, 143, 160, 161, 236, + 33, 33, 33, 34, 35, 25, 174, 35, 232, 37, + 172, 233, 233, 33, 33, 222, 222, 31, 35, 33, + 34, 245, 236, 32, 33, 236, 33, 34, 33, 33, + 19, 89, 90, 109, 222, 255, 257, 258, 259, 260, + 281, 270, 211, 280, 193, 279, 17, 193, 268, 33, + 34, 164, 164, 34, 25, 35, 34, 217, 232, 215, + 215, 222, 35, 246, 35, 244, 246, 40, 143, 207, + 33, 234, 64, 234, 234, 109, 257, 17, 18, 32, + 260, 263, 32, 32, 255, 34, 273, 211, 33, 33, + 162, 64, 143, 25, 35, 32, 211, 218, 232, 31, + 217, 222, 246, 280, 168, 33, 33, 33, 268, 32, + 222, 245, 64, 270, 274, 33, 31, 97, 33, 35, + 25, 232, 34, 31, 64, 32, 33, 234, 33, 245, + 34, 34, 261, 33, 34, 18, 271, 272, 32, 34, + 211, 232, 24, 207, 32, 97, 32, 222, 211, 254, + 255, 256, 262, 281, 33, 270, 25, 25, 232, 33, + 33, 207, 263, 264, 265, 270, 33, 34, 255, 34, + 33, 35, 33, 33, 32, 33, 34, 254, 25, 246, + 32, 234, 245, 33, 270, 33, 207, 32, 33, 264, + 234, 33, 33 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ @@ -2537,41 +2550,41 @@ static const unsigned short yyr1[] = 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 146, 146, 147, 147, 148, 148, 148, 148, 148, 148, - 148, 148, 148, 148, 148, 148, 148, 148, 149, 150, - 150, 151, 151, 151, 151, 151, 151, 151, 151, 152, - 152, 153, 153, 154, 154, 154, 155, 155, 156, 156, - 157, 157, 157, 158, 158, 159, 159, 159, 159, 160, - 160, 160, 160, 161, 161, 162, 162, 163, 163, 164, + 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, + 150, 150, 151, 151, 151, 151, 151, 151, 151, 151, + 152, 152, 153, 153, 154, 154, 154, 155, 155, 156, + 156, 157, 157, 157, 158, 158, 159, 159, 159, 159, + 160, 160, 160, 160, 161, 161, 162, 162, 163, 163, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 165, 165, 166, 166, 166, 167, 167, 168, 168, 168, - 169, 169, 169, 170, 170, 171, 171, 172, 172, 173, - 173, 173, 173, 173, 174, 174, 174, 174, 174, 175, - 175, 175, 176, 176, 177, 177, 178, 178, 178, 179, - 179, 179, 179, 180, 180, 180, 181, 181, 182, 182, - 182, 183, 183, 183, 183, 184, 184, 184, 184, 184, - 184, 185, 185, 186, 186, 186, 186, 187, 187, 187, - 188, 188, 189, 189, 190, 190, 191, 192, 192, 193, - 193, 194, 195, 195, 195, 195, 195, 195, 196, 197, - 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, - 202, 202, 202, 203, 203, 204, 205, 206, 207, 207, - 207, 208, 208, 209, 209, 209, 210, 210, 211, 211, - 212, 213, 214, 214, 215, 216, 216, 217, 217, 218, - 218, 218, 218, 219, 220, 220, 221, 221, 222, 222, - 222, 222, 222, 222, 223, 223, 223, 223, 223, 223, - 224, 224, 225, 225, 226, 226, 226, 227, 228, 229, - 230, 230, 231, 231, 232, 232, 232, 232, 233, 233, - 234, 234, 234, 235, 235, 235, 235, 236, 236, 237, - 237, 238, 238, 239, 239, 240, 240, 241, 241, 242, - 242, 242, 243, 243, 244, 244, 245, 246, 247, 248, - 248, 249, 249, 249, 249, 249, 250, 250, 250, 250, - 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, - 254, 254, 255, 255, 255, 255, 255, 255, 256, 256, - 257, 258, 258, 259, 260, 260, 260, 260, 260, 260, - 260, 260, 260, 260, 261, 261, 262, 262, 263, 263, - 264, 264, 265, 265, 266, 267, 267, 268, 268, 268, - 269, 270, 270, 270, 271, 271, 272, 272, 272, 272, - 272, 272, 272, 272, 273, 273, 274, 274, 275, 276, - 276, 277, 278, 278, 279, 280, 280, 281 + 164, 165, 165, 166, 166, 166, 167, 167, 168, 168, + 168, 169, 169, 169, 170, 170, 171, 171, 172, 172, + 173, 173, 173, 173, 173, 174, 174, 174, 174, 174, + 175, 175, 175, 176, 176, 177, 177, 178, 178, 178, + 179, 179, 179, 179, 180, 180, 180, 181, 181, 182, + 182, 182, 183, 183, 183, 183, 184, 184, 184, 184, + 184, 184, 185, 185, 186, 186, 186, 186, 187, 187, + 187, 188, 188, 189, 189, 190, 190, 191, 192, 192, + 193, 193, 194, 195, 195, 195, 195, 195, 195, 196, + 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, + 202, 202, 202, 202, 203, 203, 204, 205, 206, 207, + 207, 207, 208, 208, 209, 209, 209, 210, 210, 211, + 211, 212, 213, 214, 214, 215, 216, 216, 217, 217, + 218, 218, 218, 218, 219, 220, 220, 221, 221, 222, + 222, 222, 222, 222, 222, 223, 223, 223, 223, 223, + 223, 224, 224, 225, 225, 226, 226, 226, 227, 228, + 229, 230, 230, 231, 231, 232, 232, 232, 232, 233, + 233, 234, 234, 234, 235, 235, 235, 235, 236, 236, + 237, 237, 238, 238, 239, 239, 240, 240, 241, 241, + 242, 242, 242, 243, 243, 244, 244, 245, 246, 247, + 248, 248, 249, 249, 249, 249, 249, 250, 250, 250, + 250, 251, 251, 252, 252, 252, 252, 252, 253, 253, + 254, 254, 254, 255, 255, 255, 255, 255, 255, 256, + 256, 257, 258, 258, 259, 260, 260, 260, 260, 260, + 260, 260, 260, 260, 260, 261, 261, 262, 262, 263, + 263, 264, 264, 265, 265, 266, 267, 267, 268, 268, + 268, 269, 270, 270, 270, 271, 271, 272, 272, 272, + 272, 272, 272, 272, 272, 273, 273, 274, 274, 275, + 276, 276, 277, 278, 278, 279, 280, 280, 281 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ @@ -2606,41 +2619,41 @@ static const unsigned char yyr2[] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, - 3, 2, 2, 1, 2, 2, 2, 1, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, + 2, 3, 2, 2, 1, 2, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 2, 6, 2, 2, 0, - 1, 1, 3, 1, 3, 0, 1, 1, 2, 3, - 2, 3, 5, 2, 4, 1, 1, 1, 1, 4, - 0, 1, 1, 1, 3, 6, 5, 1, 1, 1, - 1, 1, 1, 3, 4, 1, 2, 1, 2, 1, - 1, 2, 4, 4, 1, 1, 1, 3, 3, 1, - 2, 2, 1, 1, 1, 1, 2, 2, 2, 1, - 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, - 2, 1, 1, 2, 2, 0, 1, 1, 2, 1, - 2, 0, 1, 0, 1, 1, 2, 0, 1, 2, - 3, 4, 0, 4, 1, 2, 5, 0, 2, 1, - 3, 3, 1, 2, 2, 3, 1, 2, 3, 1, - 2, 1, 1, 1, 2, 1, 1, 5, 7, 5, - 7, 13, 16, 5, 7, 6, 5, 1, 0, 1, - 1, 1, 3, 1, 1, 3, 1, 2, 3, 2, - 4, 4, 1, 1, 3, 4, 5, 0, 2, 2, - 4, 1, 3, 5, 1, 3, 1, 3, 1, 4, - 3, 3, 2, 5, 1, 1, 1, 1, 1, 1, - 4, 2, 1, 2, 2, 1, 1, 2, 2, 2, - 0, 1, 0, 1, 0, 2, 7, 9, 0, 7, - 0, 3, 3, 0, 1, 1, 1, 0, 1, 1, - 2, 1, 2, 1, 2, 1, 1, 4, 5, 7, - 8, 13, 1, 3, 2, 4, 2, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 2, 6, 2, 2, + 0, 1, 1, 3, 1, 3, 0, 1, 1, 2, + 3, 2, 3, 5, 2, 4, 1, 1, 1, 1, + 4, 0, 1, 1, 1, 3, 6, 5, 1, 1, + 1, 1, 1, 1, 3, 4, 1, 2, 1, 2, + 1, 1, 2, 4, 4, 1, 1, 1, 3, 3, + 1, 2, 2, 1, 1, 1, 1, 2, 2, 2, + 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, + 1, 2, 1, 1, 2, 2, 0, 1, 1, 2, + 1, 2, 0, 1, 0, 1, 1, 2, 0, 1, + 2, 3, 4, 0, 4, 1, 2, 5, 0, 2, + 1, 3, 3, 1, 2, 2, 3, 1, 2, 3, + 1, 2, 1, 1, 1, 2, 1, 1, 5, 7, + 5, 7, 13, 16, 5, 7, 6, 5, 1, 0, + 1, 1, 1, 3, 1, 1, 3, 1, 2, 3, + 2, 4, 4, 1, 1, 3, 4, 5, 0, 2, + 2, 4, 1, 3, 5, 1, 3, 1, 3, 1, + 4, 3, 3, 2, 5, 1, 1, 1, 1, 1, + 1, 4, 2, 1, 2, 2, 1, 1, 2, 2, + 2, 0, 1, 0, 1, 0, 2, 7, 9, 0, + 7, 0, 3, 3, 0, 1, 1, 1, 0, 1, + 1, 2, 1, 2, 1, 2, 1, 1, 4, 5, + 7, 8, 13, 1, 3, 2, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 1, 1, 1, 1, 1, 3, 6, 1, - 2, 1, 1, 1, 1, 2, 1, 1, 3, 4, - 6, 8, 12, 5, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 0, 2, 1, 3, 1, 1, - 0, 1, 1, 3, 3, 6, 1, 0, 1, 1, - 3, 1, 1, 3, 5, 6, 1, 1, 1, 1, - 1, 1, 1, 1, 0, 2, 1, 3, 3, 1, - 1, 3, 1, 3, 4, 0, 1, 1 + 1, 1, 2, 1, 1, 1, 1, 1, 3, 6, + 1, 2, 1, 1, 1, 1, 2, 1, 1, 3, + 4, 6, 8, 12, 5, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 0, 2, 1, 3, 1, + 1, 0, 1, 1, 3, 3, 6, 1, 0, 1, + 1, 3, 1, 1, 3, 5, 6, 1, 1, 1, + 1, 1, 1, 1, 1, 0, 2, 1, 3, 3, + 1, 1, 3, 1, 3, 4, 0, 1, 1 }; @@ -2679,12 +2692,13 @@ static const unsigned char yydprec[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 2, 2, 2, 0, + 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, + 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, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, + 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 1, 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, 0, 0, 0, 0, 0, 0, 0, @@ -2692,8 +2706,7 @@ static const unsigned char yydprec[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, - 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, + 2, 1, 0, 0, 0, 2, 1, 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, 0, 0, 0, 0, 0, 0, @@ -2704,13 +2717,13 @@ static const unsigned char yydprec[] = 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, 0, 0, 0, - 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 1, 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, 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, 0, - 0, 0, 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */ @@ -2779,7 +2792,7 @@ static const unsigned char yymerger[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYIMMEDIATE[RULE-NUM] -- True iff rule #RULE-NUM is not to be deferred, as @@ -2849,7 +2862,7 @@ static const yybool yyimmediate[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of @@ -2864,67 +2877,64 @@ static const unsigned short yyconflp[] = 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, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 3714, - 0, 3716, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 3700, 3702, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 3716, + 0, 0, 3718, 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, 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3696, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 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, 0, 3706, 0, 3708, 3710, 0, 3718, - 0, 3720, 3722, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3698, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 3698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 169, 0, 3708, 0, 3710, + 3712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3720, 0, 3722, 3724, 0, 0, + 0, 9, 0, 0, 0, 11, 0, 0, 0, 0, + 0, 0, 3702, 3704, 0, 0, 0, 0, 0, 3700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 3, 0, 0, 0, 0, 0, 0, 5, 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, 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, 0, 0, 0, 7, 0, 0, 0, 3706, 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, 0, 3704, 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, 3714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 9, 0, 0, 0, 11, 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, 0, 0, 0, 0, - 0, 0, 3712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3726, 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, - 0, 13, 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, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3724, 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, 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, 0, 0, 0, 0, 0, 167, 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, 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, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, - 0, 5, 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, 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, 0, 0, 0, 7, 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, 0, 0, 0, @@ -2993,470 +3003,462 @@ static const unsigned short yyconflp[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, - 0, 0, 0, 0, 0, 21, 23, 25, 27, 0, - 29, 31, 0, 0, 0, 33, 0, 0, 0, 0, - 0, 0, 35, 37, 39, 41, 43, 45, 47, 49, - 51, 53, 55, 57, 0, 59, 61, 63, 65, 67, - 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, - 89, 91, 93, 0, 0, 0, 0, 0, 95, 97, - 99, 101, 103, 105, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 107, 109, 0, 111, 113, 115, 117, 119, 121, 0, - 123, 0, 0, 125, 127, 129, 131, 133, 135, 137, - 139, 141, 143, 145, 147, 149, 151, 153, 155, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 157, 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, 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, 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, - 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, 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, 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, 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, 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, 0, 169, 0, 0, 0, - 0, 0, 0, 0, 0, 171, 173, 175, 177, 0, - 179, 181, 0, 0, 0, 183, 0, 0, 185, 187, - 189, 191, 0, 0, 0, 193, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 195, 197, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 199, 201, 0, 0, 0, 0, 203, - 205, 207, 209, 211, 0, 0, 0, 0, 0, 0, - 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 215, 0, 217, 219, 221, 223, 225, 227, 0, - 229, 0, 0, 231, 233, 235, 237, 239, 241, 243, - 245, 247, 249, 251, 253, 255, 257, 259, 261, 263, - 0, 0, 0, 0, 0, 0, 0, 0, 265, 267, - 269, 271, 0, 273, 275, 0, 0, 0, 277, 0, - 0, 279, 281, 283, 285, 0, 0, 0, 287, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 289, 291, 0, 0, 0, 159, 0, - 0, 0, 0, 161, 0, 0, 293, 295, 0, 0, - 163, 0, 297, 299, 301, 303, 305, 0, 0, 0, - 0, 0, 0, 0, 307, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 309, 0, 311, 313, 315, 317, - 319, 321, 0, 323, 0, 0, 325, 327, 329, 331, - 333, 335, 337, 339, 341, 343, 345, 347, 349, 351, - 353, 355, 357, 0, 0, 0, 0, 0, 165, 0, - 0, 359, 361, 363, 365, 0, 367, 369, 0, 0, - 0, 371, 0, 0, 373, 375, 377, 379, 0, 0, - 0, 381, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 383, 385, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 387, - 389, 0, 0, 0, 0, 391, 393, 395, 397, 399, - 0, 0, 0, 0, 0, 0, 0, 401, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 403, 0, 405, - 407, 409, 411, 413, 415, 0, 417, 0, 0, 419, - 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, - 441, 443, 445, 447, 449, 451, 0, 0, 0, 0, - 0, 0, 0, 0, 453, 455, 457, 459, 0, 461, - 463, 0, 0, 0, 465, 0, 0, 467, 469, 471, - 473, 0, 0, 0, 475, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 477, - 479, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 481, 483, 0, 0, 0, 0, 485, 487, - 489, 491, 493, 0, 0, 0, 0, 0, 0, 0, - 495, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 497, 0, 499, 501, 503, 505, 507, 509, 0, 511, - 0, 0, 513, 515, 517, 519, 521, 523, 525, 527, - 529, 531, 533, 535, 537, 539, 541, 543, 545, 0, - 0, 0, 0, 0, 0, 0, 0, 547, 549, 551, - 553, 0, 555, 557, 0, 0, 0, 559, 0, 0, - 561, 563, 565, 567, 0, 0, 0, 569, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 571, 573, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 575, 577, 0, 0, 0, - 0, 579, 581, 583, 585, 587, 0, 0, 0, 0, - 0, 0, 0, 589, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 591, 0, 593, 595, 597, 599, 601, - 603, 0, 605, 0, 0, 607, 609, 611, 613, 615, - 617, 619, 621, 623, 625, 627, 629, 631, 633, 635, - 637, 639, 0, 0, 0, 0, 0, 0, 0, 0, - 641, 643, 645, 647, 0, 649, 651, 0, 0, 0, - 653, 0, 0, 655, 657, 659, 661, 0, 0, 0, - 663, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 665, 667, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 669, 671, - 0, 0, 0, 0, 673, 675, 677, 679, 681, 0, - 0, 0, 0, 0, 0, 0, 683, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 685, 0, 687, 689, - 691, 693, 695, 697, 0, 699, 0, 0, 701, 703, - 705, 707, 709, 711, 713, 715, 717, 719, 721, 723, - 725, 727, 729, 731, 733, 0, 0, 0, 0, 0, - 0, 0, 0, 736, 739, 742, 745, 0, 748, 751, - 0, 0, 0, 754, 0, 0, 757, 760, 763, 766, - 0, 0, 0, 769, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 772, 775, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 778, 781, 0, 0, 0, 0, 784, 787, 790, - 793, 796, 0, 0, 0, 0, 0, 0, 0, 799, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, - 0, 805, 808, 811, 814, 817, 820, 0, 823, 0, - 0, 826, 829, 832, 835, 838, 841, 844, 847, 850, - 853, 856, 859, 862, 865, 868, 871, 876, 0, 874, - 0, 0, 0, 0, 0, 0, 878, 880, 882, 884, - 0, 886, 888, 0, 0, 0, 890, 0, 0, 892, - 894, 896, 898, 0, 0, 0, 900, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 902, 904, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 906, 908, 0, 0, 0, 0, - 910, 912, 914, 916, 918, 0, 0, 0, 0, 0, - 0, 0, 920, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 922, 0, 924, 926, 928, 930, 932, 934, - 0, 936, 0, 0, 938, 940, 942, 944, 946, 948, - 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, - 970, 0, 0, 0, 0, 0, 0, 0, 0, 972, - 974, 976, 978, 0, 980, 982, 0, 0, 0, 984, - 0, 0, 986, 988, 990, 992, 0, 0, 0, 994, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 996, 998, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1000, 1002, 0, - 0, 0, 0, 1004, 1006, 1008, 1010, 1012, 0, 0, - 0, 0, 0, 0, 0, 1014, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1016, 0, 1018, 1020, 1022, - 1024, 1026, 1028, 0, 1030, 0, 0, 1032, 1034, 1036, - 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, - 1058, 1060, 1062, 1064, 0, 0, 0, 0, 0, 0, - 0, 0, 1066, 1068, 1070, 1072, 0, 1074, 1076, 0, - 0, 0, 1078, 0, 0, 1080, 1082, 1084, 1086, 0, - 0, 0, 1088, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1090, 1092, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1094, 1096, 0, 0, 0, 0, 1098, 1100, 1102, 1104, - 1106, 0, 0, 0, 0, 0, 0, 0, 1108, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, - 1112, 1114, 1116, 1118, 1120, 1122, 0, 1124, 0, 0, - 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, - 1146, 1148, 1150, 1152, 1154, 1156, 1158, 0, 0, 0, - 0, 0, 0, 0, 0, 1160, 1162, 1164, 1166, 0, - 1168, 1170, 0, 0, 0, 1172, 0, 0, 1174, 1176, - 1178, 1180, 0, 0, 0, 1182, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1184, 1186, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1188, 1190, 0, 0, 0, 0, 1192, - 1194, 1196, 1198, 1200, 0, 0, 0, 0, 0, 0, - 0, 1202, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1204, 0, 1206, 1208, 1210, 1212, 1214, 1216, 0, - 1218, 0, 0, 1220, 1222, 1224, 1226, 1228, 1230, 1232, - 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, - 0, 0, 0, 0, 0, 0, 0, 0, 1254, 1256, - 1258, 1260, 0, 1262, 1264, 0, 0, 0, 1266, 0, - 0, 1268, 1270, 1272, 1274, 0, 0, 0, 1276, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1278, 1280, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1282, 1284, 0, 0, - 0, 0, 1286, 1288, 1290, 1292, 1294, 0, 0, 0, - 0, 0, 0, 0, 1296, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1298, 0, 1300, 1302, 1304, 1306, - 1308, 1310, 0, 1312, 0, 0, 1314, 1316, 1318, 1320, - 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, - 1342, 1344, 1346, 0, 0, 0, 0, 0, 0, 0, - 0, 1348, 1350, 1352, 1354, 0, 1356, 1358, 0, 0, - 0, 1360, 0, 0, 1362, 1364, 1366, 1368, 0, 0, - 0, 1370, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1372, 1374, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1376, - 1378, 0, 0, 0, 0, 1380, 1382, 1384, 1386, 1388, - 0, 0, 0, 0, 0, 0, 0, 1390, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1392, 0, 1394, - 1396, 1398, 1400, 1402, 1404, 0, 1406, 0, 0, 1408, - 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, - 1430, 1432, 1434, 1436, 1438, 1440, 0, 0, 0, 0, - 0, 0, 0, 0, 1442, 1444, 1446, 1448, 0, 1450, - 1452, 0, 0, 0, 1454, 0, 0, 1456, 1458, 1460, - 1462, 0, 0, 0, 1464, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1466, - 1468, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1470, 1472, 0, 0, 0, 0, 1474, 1476, - 1478, 1480, 1482, 0, 0, 0, 0, 0, 0, 0, - 1484, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1486, 0, 1488, 1490, 1492, 1494, 1496, 1498, 0, 1500, - 0, 0, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, - 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 0, - 0, 0, 0, 0, 0, 0, 0, 1536, 1538, 1540, - 1542, 0, 1544, 1546, 0, 0, 0, 1548, 0, 0, - 1550, 1552, 1554, 1556, 0, 0, 0, 1558, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1560, 1562, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1564, 1566, 0, 0, 0, - 0, 1568, 1570, 1572, 1574, 1576, 0, 0, 0, 0, - 0, 0, 0, 1578, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1580, 0, 1582, 1584, 1586, 1588, 1590, - 1592, 0, 1594, 0, 0, 1596, 1598, 1600, 1602, 1604, - 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, - 1626, 1628, 0, 0, 0, 0, 0, 0, 0, 0, - 1630, 1632, 1634, 1636, 0, 1638, 1640, 0, 0, 0, - 1642, 0, 0, 1644, 1646, 1648, 1650, 0, 0, 0, - 1652, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1654, 1656, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1658, 1660, - 0, 0, 0, 0, 1662, 1664, 1666, 1668, 1670, 0, - 0, 0, 0, 0, 0, 0, 1672, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1674, 0, 1676, 1678, - 1680, 1682, 1684, 1686, 0, 1688, 0, 0, 1690, 1692, - 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, - 1714, 1716, 1718, 1720, 1722, 0, 0, 0, 0, 0, - 0, 0, 0, 1724, 1726, 1728, 1730, 0, 1732, 1734, - 0, 0, 0, 1736, 0, 0, 1738, 1740, 1742, 1744, - 0, 0, 0, 1746, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1748, 1750, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1752, 1754, 0, 0, 0, 0, 1756, 1758, 1760, - 1762, 1764, 0, 0, 0, 0, 0, 0, 0, 1766, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1768, - 0, 1770, 1772, 1774, 1776, 1778, 1780, 0, 1782, 0, - 0, 1784, 1786, 1788, 1790, 1792, 1794, 1796, 1798, 1800, - 1802, 1804, 1806, 1808, 1810, 1812, 1814, 1816, 0, 0, - 0, 0, 0, 0, 0, 0, 1818, 1820, 1822, 1824, - 0, 1826, 1828, 0, 0, 0, 1830, 0, 0, 1832, - 1834, 1836, 1838, 0, 0, 0, 1840, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1842, 1844, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1846, 1848, 0, 0, 0, 0, - 1850, 1852, 1854, 1856, 1858, 0, 0, 0, 0, 0, - 0, 0, 1860, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1862, 0, 1864, 1866, 1868, 1870, 1872, 1874, - 0, 1876, 0, 0, 1878, 1880, 1882, 1884, 1886, 1888, - 1890, 1892, 1894, 1896, 1898, 1900, 1902, 1904, 1906, 1908, - 1910, 0, 0, 0, 0, 0, 0, 0, 0, 1912, - 1914, 1916, 1918, 0, 1920, 1922, 0, 0, 0, 1924, - 0, 0, 1926, 1928, 1930, 1932, 0, 0, 0, 1934, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1936, 1938, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1940, 1942, 0, - 0, 0, 0, 1944, 1946, 1948, 1950, 1952, 0, 0, - 0, 0, 0, 0, 0, 1954, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1956, 0, 1958, 1960, 1962, - 1964, 1966, 1968, 0, 1970, 0, 0, 1972, 1974, 1976, - 1978, 1980, 1982, 1984, 1986, 1988, 1990, 1992, 1994, 1996, - 1998, 2000, 2002, 2004, 0, 0, 0, 0, 0, 0, - 0, 0, 2006, 2008, 2010, 2012, 0, 2014, 2016, 0, - 0, 0, 2018, 0, 0, 2020, 2022, 2024, 2026, 0, - 0, 0, 2028, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2030, 2032, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2034, 2036, 0, 0, 0, 0, 2038, 2040, 2042, 2044, - 2046, 0, 0, 0, 0, 0, 0, 0, 2048, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2050, 0, - 2052, 2054, 2056, 2058, 2060, 2062, 0, 2064, 0, 0, - 2066, 2068, 2070, 2072, 2074, 2076, 2078, 2080, 2082, 2084, - 2086, 2088, 2090, 2092, 2094, 2096, 2098, 0, 0, 0, - 0, 0, 0, 0, 0, 2100, 2102, 2104, 2106, 0, - 2108, 2110, 0, 0, 0, 2112, 0, 0, 2114, 2116, - 2118, 2120, 0, 0, 0, 2122, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2124, 2126, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2128, 2130, 0, 0, 0, 0, 2132, - 2134, 2136, 2138, 2140, 0, 0, 0, 0, 0, 0, - 0, 2142, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2144, 0, 2146, 2148, 2150, 2152, 2154, 2156, 0, - 2158, 0, 0, 2160, 2162, 2164, 2166, 2168, 2170, 2172, - 2174, 2176, 2178, 2180, 2182, 2184, 2186, 2188, 2190, 2192, - 0, 0, 0, 0, 0, 0, 0, 0, 2194, 2196, - 2198, 2200, 0, 2202, 2204, 0, 0, 0, 2206, 0, - 0, 2208, 2210, 2212, 2214, 0, 0, 0, 2216, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2218, 2220, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2222, 2224, 0, 0, - 0, 0, 2226, 2228, 2230, 2232, 2234, 0, 0, 0, - 0, 0, 0, 0, 2236, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2238, 0, 2240, 2242, 2244, 2246, - 2248, 2250, 0, 2252, 0, 0, 2254, 2256, 2258, 2260, - 2262, 2264, 2266, 2268, 2270, 2272, 2274, 2276, 2278, 2280, - 2282, 2284, 2286, 0, 0, 0, 0, 0, 0, 0, - 0, 2288, 2290, 2292, 2294, 0, 2296, 2298, 0, 0, - 0, 2300, 0, 0, 2302, 2304, 2306, 2308, 0, 0, - 0, 2310, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2312, 2314, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2316, - 2318, 0, 0, 0, 0, 2320, 2322, 2324, 2326, 2328, - 0, 0, 0, 0, 0, 0, 0, 2330, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2332, 0, 2334, - 2336, 2338, 2340, 2342, 2344, 0, 2346, 0, 0, 2348, - 2350, 2352, 2354, 2356, 2358, 2360, 2362, 2364, 2366, 2368, - 2370, 2372, 2374, 2376, 2378, 2380, 0, 0, 0, 0, - 0, 0, 0, 0, 2382, 2384, 2386, 2388, 0, 2390, - 2392, 0, 0, 0, 2394, 0, 0, 2396, 2398, 2400, - 2402, 0, 0, 0, 2404, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2406, - 2408, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2410, 2412, 0, 0, 0, 0, 2414, 2416, - 2418, 2420, 2422, 0, 0, 0, 0, 0, 0, 0, - 2424, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2426, 0, 2428, 2430, 2432, 2434, 2436, 2438, 0, 2440, - 0, 0, 2442, 2444, 2446, 2448, 2450, 2452, 2454, 2456, - 2458, 2460, 2462, 2464, 2466, 2468, 2470, 2472, 2474, 0, - 0, 0, 0, 0, 0, 0, 0, 2476, 2478, 2480, - 2482, 0, 2484, 2486, 0, 0, 0, 2488, 0, 0, - 2490, 2492, 2494, 2496, 0, 0, 0, 2498, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2500, 2502, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2504, 2506, 0, 0, 0, - 0, 2508, 2510, 2512, 2514, 2516, 0, 0, 0, 0, - 0, 0, 0, 2518, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2520, 0, 2522, 2524, 2526, 2528, 2530, - 2532, 0, 2534, 0, 0, 2536, 2538, 2540, 2542, 2544, - 2546, 2548, 2550, 2552, 2554, 2556, 2558, 2560, 2562, 2564, - 2566, 2568, 0, 0, 0, 0, 0, 0, 0, 0, - 2570, 2572, 2574, 2576, 0, 2578, 2580, 0, 0, 0, - 2582, 0, 0, 2584, 2586, 2588, 2590, 0, 0, 0, - 2592, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2594, 2596, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2598, 2600, - 0, 0, 0, 0, 2602, 2604, 2606, 2608, 2610, 0, - 0, 0, 0, 0, 0, 0, 2612, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2614, 0, 2616, 2618, - 2620, 2622, 2624, 2626, 0, 2628, 0, 0, 2630, 2632, - 2634, 2636, 2638, 2640, 2642, 2644, 2646, 2648, 2650, 2652, - 2654, 2656, 2658, 2660, 2662, 0, 0, 0, 0, 0, - 0, 0, 0, 2664, 2666, 2668, 2670, 0, 2672, 2674, - 0, 0, 0, 2676, 0, 0, 2678, 2680, 2682, 2684, - 0, 0, 0, 2686, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2688, 2690, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2692, 2694, 0, 0, 0, 0, 2696, 2698, 2700, - 2702, 2704, 0, 0, 0, 0, 0, 0, 0, 2706, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2708, - 0, 2710, 2712, 2714, 2716, 2718, 2720, 0, 2722, 0, - 0, 2724, 2726, 2728, 2730, 2732, 2734, 2736, 2738, 2740, - 2742, 2744, 2746, 2748, 2750, 2752, 2754, 2756, 0, 0, - 0, 0, 0, 0, 0, 0, 2758, 2760, 2762, 2764, - 0, 2766, 2768, 0, 0, 0, 2770, 0, 0, 2772, - 2774, 2776, 2778, 0, 0, 0, 2780, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2782, 2784, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2786, 2788, 0, 0, 0, 0, - 2790, 2792, 2794, 2796, 2798, 0, 0, 0, 0, 0, - 0, 0, 2800, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2802, 0, 2804, 2806, 2808, 2810, 2812, 2814, - 0, 2816, 0, 0, 2818, 2820, 2822, 2824, 2826, 2828, - 2830, 2832, 2834, 2836, 2838, 2840, 2842, 2844, 2846, 2848, - 2850, 0, 0, 0, 0, 0, 0, 0, 0, 2852, - 2854, 2856, 2858, 0, 2860, 2862, 0, 0, 0, 2864, - 0, 0, 2866, 2868, 2870, 2872, 0, 0, 0, 2874, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2876, 2878, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2880, 2882, 0, - 0, 0, 0, 2884, 2886, 2888, 2890, 2892, 0, 0, - 0, 0, 0, 0, 0, 2894, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2896, 0, 2898, 2900, 2902, - 2904, 2906, 2908, 0, 2910, 0, 0, 2912, 2914, 2916, - 2918, 2920, 2922, 2924, 2926, 2928, 2930, 2932, 2934, 2936, - 2938, 2940, 2942, 2944, 0, 0, 0, 0, 0, 0, - 0, 0, 2946, 2948, 2950, 2952, 0, 2954, 2956, 0, - 0, 0, 2958, 0, 0, 2960, 2962, 2964, 2966, 0, - 0, 0, 2968, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2970, 2972, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2974, 2976, 0, 0, 0, 0, 2978, 2980, 2982, 2984, - 2986, 0, 0, 0, 0, 0, 0, 0, 2988, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2990, 0, - 2992, 2994, 2996, 2998, 3000, 3002, 0, 3004, 0, 0, - 3006, 3008, 3010, 3012, 3014, 3016, 3018, 3020, 3022, 3024, - 3026, 3028, 3030, 3032, 3034, 3036, 3038, 0, 0, 0, - 0, 0, 0, 0, 0, 3040, 3042, 3044, 3046, 0, - 3048, 3050, 0, 0, 0, 3052, 0, 0, 3054, 3056, - 3058, 3060, 0, 0, 0, 3062, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 3064, 3066, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3068, 3070, 0, 0, 0, 0, 3072, - 3074, 3076, 3078, 3080, 0, 0, 0, 0, 0, 0, - 0, 3082, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3084, 0, 3086, 3088, 3090, 3092, 3094, 3096, 0, - 3098, 0, 0, 3100, 3102, 3104, 3106, 3108, 3110, 3112, - 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, 3130, 3132, - 0, 0, 0, 0, 0, 0, 0, 0, 3134, 3136, - 3138, 3140, 0, 3142, 3144, 0, 0, 0, 3146, 0, - 0, 3148, 3150, 3152, 3154, 0, 0, 0, 3156, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3158, 3160, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3162, 3164, 0, 0, - 0, 0, 3166, 3168, 3170, 3172, 3174, 0, 0, 0, - 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3178, 0, 3180, 3182, 3184, 3186, - 3188, 3190, 0, 3192, 0, 0, 3194, 3196, 3198, 3200, - 3202, 3204, 3206, 3208, 3210, 3212, 3214, 3216, 3218, 3220, - 3222, 3224, 3226, 0, 0, 0, 0, 0, 0, 0, - 0, 3228, 3230, 3232, 3234, 0, 3236, 3238, 0, 0, - 0, 3240, 0, 0, 3242, 3244, 3246, 3248, 0, 0, - 0, 3250, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3252, 3254, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3256, - 3258, 0, 0, 0, 0, 3260, 3262, 3264, 3266, 3268, - 0, 0, 0, 0, 0, 0, 0, 3270, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 3272, 0, 3274, - 3276, 3278, 3280, 3282, 3284, 0, 3286, 0, 0, 3288, - 3290, 3292, 3294, 3296, 3298, 3300, 3302, 3304, 3306, 3308, - 3310, 3312, 3314, 3316, 3318, 3320, 0, 0, 0, 0, - 0, 0, 0, 0, 3322, 3324, 3326, 3328, 0, 3330, - 3332, 0, 0, 0, 3334, 0, 0, 3336, 3338, 3340, - 3342, 0, 0, 0, 3344, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3346, - 3348, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 3350, 3352, 0, 0, 0, 0, 3354, 3356, - 3358, 3360, 3362, 0, 0, 0, 0, 0, 0, 0, - 3364, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 3366, 0, 3368, 3370, 3372, 3374, 3376, 3378, 0, 3380, - 0, 0, 3382, 3384, 3386, 3388, 3390, 3392, 3394, 3396, - 3398, 3400, 3402, 3404, 3406, 3408, 3410, 3412, 3414, 0, - 0, 0, 0, 0, 0, 0, 0, 3416, 3418, 3420, - 3422, 0, 3424, 3426, 0, 0, 0, 3428, 0, 0, - 3430, 3432, 3434, 3436, 0, 0, 0, 3438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 3440, 3442, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 3444, 3446, 0, 0, 0, - 0, 3448, 3450, 3452, 3454, 3456, 0, 0, 0, 0, - 0, 0, 0, 3458, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3460, 0, 3462, 3464, 3466, 3468, 3470, - 3472, 0, 3474, 0, 0, 3476, 3478, 3480, 3482, 3484, - 3486, 3488, 3490, 3492, 3494, 3496, 3498, 3500, 3502, 3504, - 3506, 3508, 0, 0, 0, 0, 0, 0, 0, 0, - 3510, 3512, 3514, 3516, 0, 3518, 3520, 0, 0, 0, - 3522, 0, 0, 3524, 3526, 3528, 3530, 0, 0, 0, - 3532, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 3534, 3536, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 3538, 3540, - 0, 0, 0, 0, 3542, 3544, 3546, 3548, 3550, 0, - 0, 0, 0, 0, 0, 0, 3552, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3554, 0, 3556, 3558, - 3560, 3562, 3564, 3566, 0, 3568, 0, 0, 3570, 3572, - 3574, 3576, 3578, 3580, 3582, 3584, 3586, 3588, 3590, 3592, - 3594, 3596, 3598, 3600, 3602, 0, 0, 0, 0, 0, - 0, 0, 0, 3604, 3606, 3608, 3610, 0, 3612, 3614, - 0, 0, 0, 3616, 0, 0, 3618, 3620, 3622, 3624, - 0, 0, 0, 3626, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 3628, 3630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3632, 3634, 0, 0, 0, 0, 3636, 3638, 3640, - 3642, 3644, 0, 0, 0, 0, 0, 0, 0, 3646, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3648, - 0, 3650, 3652, 3654, 3656, 3658, 3660, 0, 3662, 0, - 0, 3664, 3666, 3668, 3670, 3672, 3674, 3676, 3678, 3680, - 3682, 3684, 3686, 3688, 3690, 3692, 3694, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 25, + 27, 29, 0, 31, 33, 0, 0, 0, 35, 0, + 0, 0, 0, 0, 0, 37, 39, 41, 43, 45, + 47, 49, 51, 53, 55, 57, 59, 0, 61, 63, + 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, + 85, 87, 89, 91, 93, 95, 0, 0, 0, 0, + 0, 97, 99, 101, 103, 105, 107, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 109, 111, 0, 113, 115, 117, 119, + 121, 123, 0, 125, 0, 0, 127, 129, 131, 133, + 135, 137, 139, 141, 143, 145, 147, 149, 151, 153, + 155, 157, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 159, 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, 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, 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, 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, + 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, 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, 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, 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, 0, 171, + 0, 0, 0, 0, 0, 0, 0, 0, 173, 175, + 177, 179, 0, 181, 183, 0, 0, 0, 185, 0, + 0, 187, 189, 191, 193, 0, 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 197, 199, 0, 0, 0, 161, 0, + 0, 0, 0, 163, 0, 0, 201, 203, 0, 0, + 165, 0, 205, 207, 209, 211, 213, 0, 0, 0, + 0, 0, 0, 0, 215, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 217, 0, 219, 221, 223, 225, + 227, 229, 0, 231, 0, 0, 233, 235, 237, 239, + 241, 243, 245, 247, 249, 251, 253, 255, 257, 259, + 261, 263, 265, 0, 0, 0, 0, 0, 167, 0, + 0, 267, 269, 271, 273, 0, 275, 277, 0, 0, + 0, 279, 0, 0, 281, 283, 285, 287, 0, 0, + 0, 289, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 291, 293, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, + 297, 0, 0, 0, 0, 299, 301, 303, 305, 307, + 0, 0, 0, 0, 0, 0, 0, 309, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 311, 0, 313, + 315, 317, 319, 321, 323, 0, 325, 0, 0, 327, + 329, 331, 333, 335, 337, 339, 341, 343, 345, 347, + 349, 351, 353, 355, 357, 359, 0, 0, 0, 0, + 0, 0, 0, 0, 361, 363, 365, 367, 0, 369, + 371, 0, 0, 0, 373, 0, 0, 375, 377, 379, + 381, 0, 0, 0, 383, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, + 387, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 389, 391, 0, 0, 0, 0, 393, 395, + 397, 399, 401, 0, 0, 0, 0, 0, 0, 0, + 403, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 405, 0, 407, 409, 411, 413, 415, 417, 0, 419, + 0, 0, 421, 423, 425, 427, 429, 431, 433, 435, + 437, 439, 441, 443, 445, 447, 449, 451, 453, 0, + 0, 0, 0, 0, 0, 0, 0, 455, 457, 459, + 461, 0, 463, 465, 0, 0, 0, 467, 0, 0, + 469, 471, 473, 475, 0, 0, 0, 477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 479, 481, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 483, 485, 0, 0, 0, + 0, 487, 489, 491, 493, 495, 0, 0, 0, 0, + 0, 0, 0, 497, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 499, 0, 501, 503, 505, 507, 509, + 511, 0, 513, 0, 0, 515, 517, 519, 521, 523, + 525, 527, 529, 531, 533, 535, 537, 539, 541, 543, + 545, 547, 0, 0, 0, 0, 0, 0, 0, 0, + 549, 551, 553, 555, 0, 557, 559, 0, 0, 0, + 561, 0, 0, 563, 565, 567, 569, 0, 0, 0, + 571, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 573, 575, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 577, 579, + 0, 0, 0, 0, 581, 583, 585, 587, 589, 0, + 0, 0, 0, 0, 0, 0, 591, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 593, 0, 595, 597, + 599, 601, 603, 605, 0, 607, 0, 0, 609, 611, + 613, 615, 617, 619, 621, 623, 625, 627, 629, 631, + 633, 635, 637, 639, 641, 0, 0, 0, 0, 0, + 0, 0, 0, 643, 645, 647, 649, 0, 651, 653, + 0, 0, 0, 655, 0, 0, 657, 659, 661, 663, + 0, 0, 0, 665, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 667, 669, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 671, 673, 0, 0, 0, 0, 675, 677, 679, + 681, 683, 0, 0, 0, 0, 0, 0, 0, 685, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, + 0, 689, 691, 693, 695, 697, 699, 0, 701, 0, + 0, 703, 705, 707, 709, 711, 713, 715, 717, 719, + 721, 723, 725, 727, 729, 731, 733, 735, 0, 0, + 0, 0, 0, 0, 0, 0, 738, 741, 744, 747, + 0, 750, 753, 0, 0, 0, 756, 0, 0, 759, + 762, 765, 768, 0, 0, 0, 771, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 774, 777, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 780, 783, 0, 0, 0, 0, + 786, 789, 792, 795, 798, 0, 0, 0, 0, 0, + 0, 0, 801, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 804, 0, 807, 810, 813, 816, 819, 822, + 0, 825, 0, 0, 828, 831, 834, 837, 840, 843, + 846, 849, 852, 855, 858, 861, 864, 867, 870, 873, + 878, 0, 876, 0, 0, 0, 0, 0, 0, 880, + 882, 884, 886, 0, 888, 890, 0, 0, 0, 892, + 0, 0, 894, 896, 898, 900, 0, 0, 0, 902, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 904, 906, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 908, 910, 0, + 0, 0, 0, 912, 914, 916, 918, 920, 0, 0, + 0, 0, 0, 0, 0, 922, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 924, 0, 926, 928, 930, + 932, 934, 936, 0, 938, 0, 0, 940, 942, 944, + 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, + 966, 968, 970, 972, 0, 0, 0, 0, 0, 0, + 0, 0, 974, 976, 978, 980, 0, 982, 984, 0, + 0, 0, 986, 0, 0, 988, 990, 992, 994, 0, + 0, 0, 996, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 998, 1000, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1002, 1004, 0, 0, 0, 0, 1006, 1008, 1010, 1012, + 1014, 0, 0, 0, 0, 0, 0, 0, 1016, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1018, 0, + 1020, 1022, 1024, 1026, 1028, 1030, 0, 1032, 0, 0, + 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, + 1054, 1056, 1058, 1060, 1062, 1064, 1066, 0, 0, 0, + 0, 0, 0, 0, 0, 1068, 1070, 1072, 1074, 0, + 1076, 1078, 0, 0, 0, 1080, 0, 0, 1082, 1084, + 1086, 1088, 0, 0, 0, 1090, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1092, 1094, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1096, 1098, 0, 0, 0, 0, 1100, + 1102, 1104, 1106, 1108, 0, 0, 0, 0, 0, 0, + 0, 1110, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1112, 0, 1114, 1116, 1118, 1120, 1122, 1124, 0, + 1126, 0, 0, 1128, 1130, 1132, 1134, 1136, 1138, 1140, + 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, + 0, 0, 0, 0, 0, 0, 0, 0, 1162, 1164, + 1166, 1168, 0, 1170, 1172, 0, 0, 0, 1174, 0, + 0, 1176, 1178, 1180, 1182, 0, 0, 0, 1184, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1186, 1188, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1190, 1192, 0, 0, + 0, 0, 1194, 1196, 1198, 1200, 1202, 0, 0, 0, + 0, 0, 0, 0, 1204, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1206, 0, 1208, 1210, 1212, 1214, + 1216, 1218, 0, 1220, 0, 0, 1222, 1224, 1226, 1228, + 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, + 1250, 1252, 1254, 0, 0, 0, 0, 0, 0, 0, + 0, 1256, 1258, 1260, 1262, 0, 1264, 1266, 0, 0, + 0, 1268, 0, 0, 1270, 1272, 1274, 1276, 0, 0, + 0, 1278, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1280, 1282, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1284, + 1286, 0, 0, 0, 0, 1288, 1290, 1292, 1294, 1296, + 0, 0, 0, 0, 0, 0, 0, 1298, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1300, 0, 1302, + 1304, 1306, 1308, 1310, 1312, 0, 1314, 0, 0, 1316, + 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, + 1338, 1340, 1342, 1344, 1346, 1348, 0, 0, 0, 0, + 0, 0, 0, 0, 1350, 1352, 1354, 1356, 0, 1358, + 1360, 0, 0, 0, 1362, 0, 0, 1364, 1366, 1368, + 1370, 0, 0, 0, 1372, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1374, + 1376, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1378, 1380, 0, 0, 0, 0, 1382, 1384, + 1386, 1388, 1390, 0, 0, 0, 0, 0, 0, 0, + 1392, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1394, 0, 1396, 1398, 1400, 1402, 1404, 1406, 0, 1408, + 0, 0, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, + 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, 0, + 0, 0, 0, 0, 0, 0, 0, 1444, 1446, 1448, + 1450, 0, 1452, 1454, 0, 0, 0, 1456, 0, 0, + 1458, 1460, 1462, 1464, 0, 0, 0, 1466, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1468, 1470, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1472, 1474, 0, 0, 0, + 0, 1476, 1478, 1480, 1482, 1484, 0, 0, 0, 0, + 0, 0, 0, 1486, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1488, 0, 1490, 1492, 1494, 1496, 1498, + 1500, 0, 1502, 0, 0, 1504, 1506, 1508, 1510, 1512, + 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, + 1534, 1536, 0, 0, 0, 0, 0, 0, 0, 0, + 1538, 1540, 1542, 1544, 0, 1546, 1548, 0, 0, 0, + 1550, 0, 0, 1552, 1554, 1556, 1558, 0, 0, 0, + 1560, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1562, 1564, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1566, 1568, + 0, 0, 0, 0, 1570, 1572, 1574, 1576, 1578, 0, + 0, 0, 0, 0, 0, 0, 1580, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1582, 0, 1584, 1586, + 1588, 1590, 1592, 1594, 0, 1596, 0, 0, 1598, 1600, + 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, + 1622, 1624, 1626, 1628, 1630, 0, 0, 0, 0, 0, + 0, 0, 0, 1632, 1634, 1636, 1638, 0, 1640, 1642, + 0, 0, 0, 1644, 0, 0, 1646, 1648, 1650, 1652, + 0, 0, 0, 1654, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1656, 1658, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1660, 1662, 0, 0, 0, 0, 1664, 1666, 1668, + 1670, 1672, 0, 0, 0, 0, 0, 0, 0, 1674, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1676, + 0, 1678, 1680, 1682, 1684, 1686, 1688, 0, 1690, 0, + 0, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, + 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 0, 0, + 0, 0, 0, 0, 0, 0, 1726, 1728, 1730, 1732, + 0, 1734, 1736, 0, 0, 0, 1738, 0, 0, 1740, + 1742, 1744, 1746, 0, 0, 0, 1748, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1750, 1752, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1754, 1756, 0, 0, 0, 0, + 1758, 1760, 1762, 1764, 1766, 0, 0, 0, 0, 0, + 0, 0, 1768, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1770, 0, 1772, 1774, 1776, 1778, 1780, 1782, + 0, 1784, 0, 0, 1786, 1788, 1790, 1792, 1794, 1796, + 1798, 1800, 1802, 1804, 1806, 1808, 1810, 1812, 1814, 1816, + 1818, 0, 0, 0, 0, 0, 0, 0, 0, 1820, + 1822, 1824, 1826, 0, 1828, 1830, 0, 0, 0, 1832, + 0, 0, 1834, 1836, 1838, 1840, 0, 0, 0, 1842, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1844, 1846, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1848, 1850, 0, + 0, 0, 0, 1852, 1854, 1856, 1858, 1860, 0, 0, + 0, 0, 0, 0, 0, 1862, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1864, 0, 1866, 1868, 1870, + 1872, 1874, 1876, 0, 1878, 0, 0, 1880, 1882, 1884, + 1886, 1888, 1890, 1892, 1894, 1896, 1898, 1900, 1902, 1904, + 1906, 1908, 1910, 1912, 0, 0, 0, 0, 0, 0, + 0, 0, 1914, 1916, 1918, 1920, 0, 1922, 1924, 0, + 0, 0, 1926, 0, 0, 1928, 1930, 1932, 1934, 0, + 0, 0, 1936, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1938, 1940, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1942, 1944, 0, 0, 0, 0, 1946, 1948, 1950, 1952, + 1954, 0, 0, 0, 0, 0, 0, 0, 1956, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1958, 0, + 1960, 1962, 1964, 1966, 1968, 1970, 0, 1972, 0, 0, + 1974, 1976, 1978, 1980, 1982, 1984, 1986, 1988, 1990, 1992, + 1994, 1996, 1998, 2000, 2002, 2004, 2006, 0, 0, 0, + 0, 0, 0, 0, 0, 2008, 2010, 2012, 2014, 0, + 2016, 2018, 0, 0, 0, 2020, 0, 0, 2022, 2024, + 2026, 2028, 0, 0, 0, 2030, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2032, 2034, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2036, 2038, 0, 0, 0, 0, 2040, + 2042, 2044, 2046, 2048, 0, 0, 0, 0, 0, 0, + 0, 2050, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2052, 0, 2054, 2056, 2058, 2060, 2062, 2064, 0, + 2066, 0, 0, 2068, 2070, 2072, 2074, 2076, 2078, 2080, + 2082, 2084, 2086, 2088, 2090, 2092, 2094, 2096, 2098, 2100, + 0, 0, 0, 0, 0, 0, 0, 0, 2102, 2104, + 2106, 2108, 0, 2110, 2112, 0, 0, 0, 2114, 0, + 0, 2116, 2118, 2120, 2122, 0, 0, 0, 2124, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2126, 2128, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2130, 2132, 0, 0, + 0, 0, 2134, 2136, 2138, 2140, 2142, 0, 0, 0, + 0, 0, 0, 0, 2144, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2146, 0, 2148, 2150, 2152, 2154, + 2156, 2158, 0, 2160, 0, 0, 2162, 2164, 2166, 2168, + 2170, 2172, 2174, 2176, 2178, 2180, 2182, 2184, 2186, 2188, + 2190, 2192, 2194, 0, 0, 0, 0, 0, 0, 0, + 0, 2196, 2198, 2200, 2202, 0, 2204, 2206, 0, 0, + 0, 2208, 0, 0, 2210, 2212, 2214, 2216, 0, 0, + 0, 2218, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2220, 2222, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2224, + 2226, 0, 0, 0, 0, 2228, 2230, 2232, 2234, 2236, + 0, 0, 0, 0, 0, 0, 0, 2238, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2240, 0, 2242, + 2244, 2246, 2248, 2250, 2252, 0, 2254, 0, 0, 2256, + 2258, 2260, 2262, 2264, 2266, 2268, 2270, 2272, 2274, 2276, + 2278, 2280, 2282, 2284, 2286, 2288, 0, 0, 0, 0, + 0, 0, 0, 0, 2290, 2292, 2294, 2296, 0, 2298, + 2300, 0, 0, 0, 2302, 0, 0, 2304, 2306, 2308, + 2310, 0, 0, 0, 2312, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2314, + 2316, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2318, 2320, 0, 0, 0, 0, 2322, 2324, + 2326, 2328, 2330, 0, 0, 0, 0, 0, 0, 0, + 2332, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2334, 0, 2336, 2338, 2340, 2342, 2344, 2346, 0, 2348, + 0, 0, 2350, 2352, 2354, 2356, 2358, 2360, 2362, 2364, + 2366, 2368, 2370, 2372, 2374, 2376, 2378, 2380, 2382, 0, + 0, 0, 0, 0, 0, 0, 0, 2384, 2386, 2388, + 2390, 0, 2392, 2394, 0, 0, 0, 2396, 0, 0, + 2398, 2400, 2402, 2404, 0, 0, 0, 2406, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2408, 2410, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2412, 2414, 0, 0, 0, + 0, 2416, 2418, 2420, 2422, 2424, 0, 0, 0, 0, + 0, 0, 0, 2426, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2428, 0, 2430, 2432, 2434, 2436, 2438, + 2440, 0, 2442, 0, 0, 2444, 2446, 2448, 2450, 2452, + 2454, 2456, 2458, 2460, 2462, 2464, 2466, 2468, 2470, 2472, + 2474, 2476, 0, 0, 0, 0, 0, 0, 0, 0, + 2478, 2480, 2482, 2484, 0, 2486, 2488, 0, 0, 0, + 2490, 0, 0, 2492, 2494, 2496, 2498, 0, 0, 0, + 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2502, 2504, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2506, 2508, + 0, 0, 0, 0, 2510, 2512, 2514, 2516, 2518, 0, + 0, 0, 0, 0, 0, 0, 2520, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2522, 0, 2524, 2526, + 2528, 2530, 2532, 2534, 0, 2536, 0, 0, 2538, 2540, + 2542, 2544, 2546, 2548, 2550, 2552, 2554, 2556, 2558, 2560, + 2562, 2564, 2566, 2568, 2570, 0, 0, 0, 0, 0, + 0, 0, 0, 2572, 2574, 2576, 2578, 0, 2580, 2582, + 0, 0, 0, 2584, 0, 0, 2586, 2588, 2590, 2592, + 0, 0, 0, 2594, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2596, 2598, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2600, 2602, 0, 0, 0, 0, 2604, 2606, 2608, + 2610, 2612, 0, 0, 0, 0, 0, 0, 0, 2614, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2616, + 0, 2618, 2620, 2622, 2624, 2626, 2628, 0, 2630, 0, + 0, 2632, 2634, 2636, 2638, 2640, 2642, 2644, 2646, 2648, + 2650, 2652, 2654, 2656, 2658, 2660, 2662, 2664, 0, 0, + 0, 0, 0, 0, 0, 0, 2666, 2668, 2670, 2672, + 0, 2674, 2676, 0, 0, 0, 2678, 0, 0, 2680, + 2682, 2684, 2686, 0, 0, 0, 2688, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2690, 2692, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2694, 2696, 0, 0, 0, 0, + 2698, 2700, 2702, 2704, 2706, 0, 0, 0, 0, 0, + 0, 0, 2708, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2710, 0, 2712, 2714, 2716, 2718, 2720, 2722, + 0, 2724, 0, 0, 2726, 2728, 2730, 2732, 2734, 2736, + 2738, 2740, 2742, 2744, 2746, 2748, 2750, 2752, 2754, 2756, + 2758, 0, 0, 0, 0, 0, 0, 0, 0, 2760, + 2762, 2764, 2766, 0, 2768, 2770, 0, 0, 0, 2772, + 0, 0, 2774, 2776, 2778, 2780, 0, 0, 0, 2782, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2784, 2786, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2788, 2790, 0, + 0, 0, 0, 2792, 2794, 2796, 2798, 2800, 0, 0, + 0, 0, 0, 0, 0, 2802, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2804, 0, 2806, 2808, 2810, + 2812, 2814, 2816, 0, 2818, 0, 0, 2820, 2822, 2824, + 2826, 2828, 2830, 2832, 2834, 2836, 2838, 2840, 2842, 2844, + 2846, 2848, 2850, 2852, 0, 0, 0, 0, 0, 0, + 0, 0, 2854, 2856, 2858, 2860, 0, 2862, 2864, 0, + 0, 0, 2866, 0, 0, 2868, 2870, 2872, 2874, 0, + 0, 0, 2876, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2878, 2880, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2882, 2884, 0, 0, 0, 0, 2886, 2888, 2890, 2892, + 2894, 0, 0, 0, 0, 0, 0, 0, 2896, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2898, 0, + 2900, 2902, 2904, 2906, 2908, 2910, 0, 2912, 0, 0, + 2914, 2916, 2918, 2920, 2922, 2924, 2926, 2928, 2930, 2932, + 2934, 2936, 2938, 2940, 2942, 2944, 2946, 0, 0, 0, + 0, 0, 0, 0, 0, 2948, 2950, 2952, 2954, 0, + 2956, 2958, 0, 0, 0, 2960, 0, 0, 2962, 2964, + 2966, 2968, 0, 0, 0, 2970, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2972, 2974, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2976, 2978, 0, 0, 0, 0, 2980, + 2982, 2984, 2986, 2988, 0, 0, 0, 0, 0, 0, + 0, 2990, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2992, 0, 2994, 2996, 2998, 3000, 3002, 3004, 0, + 3006, 0, 0, 3008, 3010, 3012, 3014, 3016, 3018, 3020, + 3022, 3024, 3026, 3028, 3030, 3032, 3034, 3036, 3038, 3040, + 0, 0, 0, 0, 0, 0, 0, 0, 3042, 3044, + 3046, 3048, 0, 3050, 3052, 0, 0, 0, 3054, 0, + 0, 3056, 3058, 3060, 3062, 0, 0, 0, 3064, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3066, 3068, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3070, 3072, 0, 0, + 0, 0, 3074, 3076, 3078, 3080, 3082, 0, 0, 0, + 0, 0, 0, 0, 3084, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3086, 0, 3088, 3090, 3092, 3094, + 3096, 3098, 0, 3100, 0, 0, 3102, 3104, 3106, 3108, + 3110, 3112, 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, + 3130, 3132, 3134, 0, 0, 0, 0, 0, 0, 0, + 0, 3136, 3138, 3140, 3142, 0, 3144, 3146, 0, 0, + 0, 3148, 0, 0, 3150, 3152, 3154, 3156, 0, 0, + 0, 3158, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3160, 3162, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3164, + 3166, 0, 0, 0, 0, 3168, 3170, 3172, 3174, 3176, + 0, 0, 0, 0, 0, 0, 0, 3178, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 3180, 0, 3182, + 3184, 3186, 3188, 3190, 3192, 0, 3194, 0, 0, 3196, + 3198, 3200, 3202, 3204, 3206, 3208, 3210, 3212, 3214, 3216, + 3218, 3220, 3222, 3224, 3226, 3228, 0, 0, 0, 0, + 0, 0, 0, 0, 3230, 3232, 3234, 3236, 0, 3238, + 3240, 0, 0, 0, 3242, 0, 0, 3244, 3246, 3248, + 3250, 0, 0, 0, 3252, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3254, + 3256, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3258, 3260, 0, 0, 0, 0, 3262, 3264, + 3266, 3268, 3270, 0, 0, 0, 0, 0, 0, 0, + 3272, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3274, 0, 3276, 3278, 3280, 3282, 3284, 3286, 0, 3288, + 0, 0, 3290, 3292, 3294, 3296, 3298, 3300, 3302, 3304, + 3306, 3308, 3310, 3312, 3314, 3316, 3318, 3320, 3322, 0, + 0, 0, 0, 0, 0, 0, 0, 3324, 3326, 3328, + 3330, 0, 3332, 3334, 0, 0, 0, 3336, 0, 0, + 3338, 3340, 3342, 3344, 0, 0, 0, 3346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3348, 3350, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3352, 3354, 0, 0, 0, + 0, 3356, 3358, 3360, 3362, 3364, 0, 0, 0, 0, + 0, 0, 0, 3366, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3368, 0, 3370, 3372, 3374, 3376, 3378, + 3380, 0, 3382, 0, 0, 3384, 3386, 3388, 3390, 3392, + 3394, 3396, 3398, 3400, 3402, 3404, 3406, 3408, 3410, 3412, + 3414, 3416, 0, 0, 0, 0, 0, 0, 0, 0, + 3418, 3420, 3422, 3424, 0, 3426, 3428, 0, 0, 0, + 3430, 0, 0, 3432, 3434, 3436, 3438, 0, 0, 0, + 3440, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3442, 3444, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3446, 3448, + 0, 0, 0, 0, 3450, 3452, 3454, 3456, 3458, 0, + 0, 0, 0, 0, 0, 0, 3460, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3462, 0, 3464, 3466, + 3468, 3470, 3472, 3474, 0, 3476, 0, 0, 3478, 3480, + 3482, 3484, 3486, 3488, 3490, 3492, 3494, 3496, 3498, 3500, + 3502, 3504, 3506, 3508, 3510, 0, 0, 0, 0, 0, + 0, 0, 0, 3512, 3514, 3516, 3518, 0, 3520, 3522, + 0, 0, 0, 3524, 0, 0, 3526, 3528, 3530, 3532, + 0, 0, 0, 3534, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3536, 3538, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3540, 3542, 0, 0, 0, 0, 3544, 3546, 3548, + 3550, 3552, 0, 0, 0, 0, 0, 0, 0, 3554, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3556, + 0, 3558, 3560, 3562, 3564, 3566, 3568, 0, 3570, 0, + 0, 3572, 3574, 3576, 3578, 3580, 3582, 3584, 3586, 3588, + 3590, 3592, 3594, 3596, 3598, 3600, 3602, 3604, 0, 0, + 0, 0, 0, 0, 0, 0, 3606, 3608, 3610, 3612, + 0, 3614, 3616, 0, 0, 0, 3618, 0, 0, 3620, + 3622, 3624, 3626, 0, 0, 0, 3628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3630, 3632, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3634, 3636, 0, 0, 0, 0, + 3638, 3640, 3642, 3644, 3646, 0, 0, 0, 0, 0, + 0, 0, 3648, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3650, 0, 3652, 3654, 3656, 3658, 3660, 3662, + 0, 3664, 0, 0, 3666, 3668, 3670, 3672, 3674, 3676, + 3678, 3680, 3682, 3684, 3686, 3688, 3690, 3692, 3694, 3696, 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, 0, 0, 0, @@ -3676,33 +3678,47 @@ static const unsigned short yyconflp[] = 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, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3728 + 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, 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, 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, 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, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3728, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3730 }; /* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by 0, pointed into by YYCONFLP. */ static const short yyconfl[] = { - 0, 391, 0, 391, 0, 391, 0, 391, 0, 382, - 0, 382, 0, 405, 0, 466, 0, 466, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, - 0, 622, 0, 622, 0, 622, 0, 622, 0, 391, - 0, 391, 0, 391, 0, 391, 0, 405, 0, 46, + 0, 392, 0, 392, 0, 392, 0, 392, 0, 383, + 0, 383, 0, 406, 0, 467, 0, 467, 0, 311, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 392, 0, 392, 0, 392, 0, 392, 0, 406, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, @@ -3712,7 +3728,7 @@ static const short yyconfl[] = 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, - 0, 46, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 46, 0, 46, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, @@ -3721,7 +3737,7 @@ static const short yyconfl[] = 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, - 0, 55, 0, 55, 0, 55, 0, 56, 0, 56, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, @@ -3731,6 +3747,7 @@ static const short yyconfl[] = 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, @@ -3739,8 +3756,7 @@ static const short yyconfl[] = 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, - 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, - 0, 57, 0, 57, 0, 58, 0, 58, 0, 58, + 0, 57, 0, 57, 0, 57, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, @@ -3749,31 +3765,31 @@ static const short yyconfl[] = 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, - 0, 58, 0, 58, 0, 58, 0, 58, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, - 0, 623, 0, 584, 622, 0, 584, 622, 0, 584, - 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, - 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, - 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, - 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, - 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, - 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, - 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, - 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, - 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, - 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, - 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, - 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, - 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, - 0, 584, 622, 0, 622, 0, 65, 0, 65, 0, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 624, 0, 624, 0, 624, + 0, 624, 0, 624, 0, 585, 623, 0, 585, 623, + 0, 585, 623, 0, 585, 623, 0, 585, 623, 0, + 585, 623, 0, 585, 623, 0, 585, 623, 0, 585, + 623, 0, 585, 623, 0, 585, 623, 0, 585, 623, + 0, 585, 623, 0, 585, 623, 0, 585, 623, 0, + 585, 623, 0, 585, 623, 0, 585, 623, 0, 585, + 623, 0, 585, 623, 0, 585, 623, 0, 585, 623, + 0, 585, 623, 0, 585, 623, 0, 585, 623, 0, + 585, 623, 0, 585, 623, 0, 585, 623, 0, 585, + 623, 0, 585, 623, 0, 585, 623, 0, 585, 623, + 0, 585, 623, 0, 585, 623, 0, 585, 623, 0, + 585, 623, 0, 585, 623, 0, 585, 623, 0, 585, + 623, 0, 585, 623, 0, 585, 623, 0, 585, 623, + 0, 585, 623, 0, 585, 623, 0, 585, 623, 0, + 585, 623, 0, 585, 623, 0, 623, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, @@ -3783,6 +3799,7 @@ static const short yyconfl[] = 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, @@ -3791,8 +3808,8 @@ static const short yyconfl[] = 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, - 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, - 109, 0, 109, 0, 110, 0, 110, 0, 110, 0, + 109, 0, 109, 0, 109, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, @@ -3801,7 +3818,6 @@ static const short yyconfl[] = 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, - 110, 0, 110, 0, 110, 0, 110, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, @@ -3811,7 +3827,7 @@ static const short yyconfl[] = 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, - 108, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 108, 0, 108, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, @@ -3820,7 +3836,7 @@ static const short yyconfl[] = 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, - 106, 0, 106, 0, 106, 0, 107, 0, 107, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, @@ -3830,6 +3846,7 @@ static const short yyconfl[] = 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, @@ -3838,8 +3855,8 @@ static const short yyconfl[] = 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, - 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, - 127, 0, 127, 0, 129, 0, 129, 0, 129, 0, + 127, 0, 127, 0, 127, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, @@ -3848,7 +3865,6 @@ static const short yyconfl[] = 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, - 129, 0, 129, 0, 129, 0, 129, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, @@ -3858,7 +3874,7 @@ static const short yyconfl[] = 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, - 130, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 130, 0, 130, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, @@ -3867,7 +3883,7 @@ static const short yyconfl[] = 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, - 131, 0, 131, 0, 131, 0, 132, 0, 132, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, @@ -3877,6 +3893,7 @@ static const short yyconfl[] = 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, @@ -3885,8 +3902,8 @@ static const short yyconfl[] = 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, - 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, - 133, 0, 133, 0, 134, 0, 134, 0, 134, 0, + 133, 0, 133, 0, 133, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, @@ -3895,7 +3912,6 @@ static const short yyconfl[] = 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, - 134, 0, 134, 0, 134, 0, 134, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, @@ -3905,7 +3921,16 @@ static const short yyconfl[] = 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, - 163, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 163, 0, 163, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, @@ -3914,16 +3939,26 @@ static const short yyconfl[] = 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, - 592, 0, 592, 0, 592, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, - 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, @@ -3933,7 +3968,16 @@ static const short yyconfl[] = 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, - 589, 0, 589, 0, 587, 0, 587, 0, 587, 0, + 589, 0, 589, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, @@ -3942,27 +3986,8 @@ static const short yyconfl[] = 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, - 587, 0, 587, 0, 587, 0, 587, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, - 588, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, - 590, 0, 590, 0, 590, 0, 586, 0, 586, 0, - 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, @@ -3971,25 +3996,16 @@ static const short yyconfl[] = 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, - 585, 0, 585, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, - 593, 0, 593, 0, 593, 0, 593, 0, 147, 0, + 586, 0, 586, 0, 586, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, + 594, 0, 594, 0, 594, 0, 594, 0, 594, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, @@ -3999,17 +4015,26 @@ static const short yyconfl[] = 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, - 147, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, - 621, 0, 621, 0, 621, 0, 619, 0, 619, 0, - 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 147, 0, 147, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 622, 0, + 622, 0, 622, 0, 622, 0, 622, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, @@ -4018,6 +4043,16 @@ static const short yyconfl[] = 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, @@ -4027,16 +4062,7 @@ static const short yyconfl[] = 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, - 618, 0, 618, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, - 620, 0, 620, 0, 620, 0, 620, 0, 617, 0, + 618, 0, 618, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, @@ -4045,20 +4071,11 @@ static const short yyconfl[] = 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, - 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, - 617, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, - 616, 0, 616, 0, 616, 0, 511, 0, 511, 0, - 459, 0, 459, 0, 460, 0, 497, 0, 497, 0, - 497, 0, 45, 0, 623, 0, 391, 0, 572, 0, - 572, 0, 572, 0, 623, 0, 342, 0, 493, 0 + 617, 0, 617, 0, 617, 0, 617, 0, 512, 0, + 512, 0, 460, 0, 460, 0, 461, 0, 498, 0, + 498, 0, 498, 0, 45, 0, 624, 0, 392, 0, + 573, 0, 573, 0, 573, 0, 624, 0, 343, 0, + 494, 0 }; /* Error token number */ @@ -4488,126 +4505,133 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, switch (yyn) { case 287: -#line 431 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 435 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { psi_cpp_exp_exec((*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), P->preproc, PSI_DATA(P)); psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } } -#line 4499 "src/parser_proc.c" /* glr.c:821 */ +#line 4516 "src/parser_proc.c" /* glr.c:821 */ break; case 288: -#line 437 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 441 "src/parser_proc_grammar.y" /* glr.c:821 */ { - char *libname = strdup((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->val); - P->file.libnames = psi_plist_add(P->file.libnames, &libname); + psi_parser_proc_add_lib(P, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); } -#line 4508 "src/parser_proc.c" /* glr.c:821 */ +#line 4524 "src/parser_proc.c" /* glr.c:821 */ break; case 289: -#line 441 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 444 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_const(P, (*(struct psi_const **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4516 "src/parser_proc.c" /* glr.c:821 */ +#line 4532 "src/parser_proc.c" /* glr.c:821 */ break; case 290: -#line 444 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 447 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_decl(P, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4524 "src/parser_proc.c" /* glr.c:821 */ +#line 4540 "src/parser_proc.c" /* glr.c:821 */ break; case 291: -#line 447 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 450 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_decl_extvars(P, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4532 "src/parser_proc.c" /* glr.c:821 */ +#line 4548 "src/parser_proc.c" /* glr.c:821 */ break; case 292: -#line 450 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 453 "src/parser_proc_grammar.y" /* glr.c:821 */ { if (P->flags & PSI_DEBUG) { P->error(PSI_DATA(P), (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token, PSI_NOTICE, "Ignored decl: %s", (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name->val); } psi_decl_free(&(*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4543 "src/parser_proc.c" /* glr.c:821 */ +#line 4559 "src/parser_proc.c" /* glr.c:821 */ break; case 293: -#line 456 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 459 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_typedef(P, (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4551 "src/parser_proc.c" /* glr.c:821 */ +#line 4567 "src/parser_proc.c" /* glr.c:821 */ break; case 294: -#line 459 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 462 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_struct(P, (*(struct psi_decl_struct **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4559 "src/parser_proc.c" /* glr.c:821 */ +#line 4575 "src/parser_proc.c" /* glr.c:821 */ break; case 295: -#line 462 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 465 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_union(P, (*(struct psi_decl_union **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4567 "src/parser_proc.c" /* glr.c:821 */ +#line 4583 "src/parser_proc.c" /* glr.c:821 */ break; case 296: -#line 465 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 468 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4575 "src/parser_proc.c" /* glr.c:821 */ +#line 4591 "src/parser_proc.c" /* glr.c:821 */ break; case 297: -#line 468 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 471 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_parser_proc_add_impl(P, (*(struct psi_impl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4583 "src/parser_proc.c" /* glr.c:821 */ +#line 4599 "src/parser_proc.c" /* glr.c:821 */ break; case 298: -#line 474 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 477 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4591 "src/parser_proc.c" /* glr.c:821 */ +#line 4607 "src/parser_proc.c" /* glr.c:821 */ break; case 299: #line 480 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_cpp_exp **)(&(*yyvalp))) = NULL; + (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4599 "src/parser_proc.c" /* glr.c:821 */ +#line 4615 "src/parser_proc.c" /* glr.c:821 */ break; case 300: -#line 483 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 486 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_cpp_exp **)(&(*yyvalp))) = (*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); + (*(struct psi_cpp_exp **)(&(*yyvalp))) = NULL; } -#line 4607 "src/parser_proc.c" /* glr.c:821 */ +#line 4623 "src/parser_proc.c" /* glr.c:821 */ break; case 301: #line 489 "src/parser_proc_grammar.y" /* glr.c:821 */ + { + (*(struct psi_cpp_exp **)(&(*yyvalp))) = (*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); +} +#line 4631 "src/parser_proc.c" /* glr.c:821 */ + break; + + case 302: +#line 495 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { struct psi_token *msg = NULL; @@ -4631,222 +4655,222 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, } (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4635 "src/parser_proc.c" /* glr.c:821 */ +#line 4659 "src/parser_proc.c" /* glr.c:821 */ break; - case 302: -#line 512 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 303: +#line 518 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4644 "src/parser_proc.c" /* glr.c:821 */ +#line 4668 "src/parser_proc.c" /* glr.c:821 */ break; - case 303: -#line 516 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 304: +#line 522 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, NULL); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4653 "src/parser_proc.c" /* glr.c:821 */ +#line 4677 "src/parser_proc.c" /* glr.c:821 */ break; - case 304: -#line 520 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 305: +#line 526 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4663 "src/parser_proc.c" /* glr.c:821 */ +#line 4687 "src/parser_proc.c" /* glr.c:821 */ break; - case 305: -#line 525 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 306: +#line 531 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_cpp_macro_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4672 "src/parser_proc.c" /* glr.c:821 */ +#line 4696 "src/parser_proc.c" /* glr.c:821 */ break; - case 306: -#line 529 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 307: +#line 535 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4681 "src/parser_proc.c" /* glr.c:821 */ +#line 4705 "src/parser_proc.c" /* glr.c:821 */ break; - case 307: -#line 533 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 308: +#line 539 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, NULL); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4690 "src/parser_proc.c" /* glr.c:821 */ +#line 4714 "src/parser_proc.c" /* glr.c:821 */ break; - case 308: -#line 537 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 309: +#line 543 "src/parser_proc_grammar.y" /* glr.c:821 */ { psi_plist_free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp))) = NULL; } -#line 4699 "src/parser_proc.c" /* glr.c:821 */ +#line 4723 "src/parser_proc.c" /* glr.c:821 */ break; - case 325: -#line 581 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 326: +#line 587 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4709 "src/parser_proc.c" /* glr.c:821 */ +#line 4733 "src/parser_proc.c" /* glr.c:821 */ break; - case 326: -#line 586 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 327: +#line 592 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); } -#line 4719 "src/parser_proc.c" /* glr.c:821 */ +#line 4743 "src/parser_proc.c" /* glr.c:821 */ break; - case 327: -#line 591 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 328: +#line 597 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, psi_num_exp_tokens((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4729 "src/parser_proc.c" /* glr.c:821 */ +#line 4753 "src/parser_proc.c" /* glr.c:821 */ break; - case 328: -#line 596 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 329: +#line 602 "src/parser_proc_grammar.y" /* glr.c:821 */ { struct psi_plist *list = psi_plist_init((psi_plist_dtor) psi_token_free); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, psi_plist_add(list, &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4740 "src/parser_proc.c" /* glr.c:821 */ +#line 4764 "src/parser_proc.c" /* glr.c:821 */ break; - case 329: -#line 605 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 330: +#line 611 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_init(NULL); } -#line 4748 "src/parser_proc.c" /* glr.c:821 */ +#line 4772 "src/parser_proc.c" /* glr.c:821 */ break; - case 330: -#line 608 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 331: +#line 614 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_init(NULL); /* FIXME */ } -#line 4756 "src/parser_proc.c" /* glr.c:821 */ +#line 4780 "src/parser_proc.c" /* glr.c:821 */ break; - case 332: -#line 612 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 333: +#line 618 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 4764 "src/parser_proc.c" /* glr.c:821 */ +#line 4788 "src/parser_proc.c" /* glr.c:821 */ break; - case 333: -#line 618 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 334: +#line 624 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_token_free), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4774 "src/parser_proc.c" /* glr.c:821 */ +#line 4798 "src/parser_proc.c" /* glr.c:821 */ break; - case 334: -#line 623 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 335: +#line 629 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4784 "src/parser_proc.c" /* glr.c:821 */ +#line 4808 "src/parser_proc.c" /* glr.c:821 */ break; - case 335: -#line 631 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 336: +#line 637 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 4792 "src/parser_proc.c" /* glr.c:821 */ +#line 4816 "src/parser_proc.c" /* glr.c:821 */ break; - case 337: -#line 638 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 338: +#line 644 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_token_free), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4801 "src/parser_proc.c" /* glr.c:821 */ +#line 4825 "src/parser_proc.c" /* glr.c:821 */ break; - case 338: -#line 642 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 339: +#line 648 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4810 "src/parser_proc.c" /* glr.c:821 */ +#line 4834 "src/parser_proc.c" /* glr.c:821 */ break; - case 339: -#line 649 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 340: +#line 655 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 4819 "src/parser_proc.c" /* glr.c:821 */ +#line 4843 "src/parser_proc.c" /* glr.c:821 */ break; - case 340: -#line 653 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 341: +#line 659 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4828 "src/parser_proc.c" /* glr.c:821 */ +#line 4852 "src/parser_proc.c" /* glr.c:821 */ break; - case 341: -#line 657 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 342: +#line 663 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_binary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4837 "src/parser_proc.c" /* glr.c:821 */ +#line 4861 "src/parser_proc.c" /* glr.c:821 */ break; - case 342: -#line 661 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 343: +#line 667 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_ternary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4846 "src/parser_proc.c" /* glr.c:821 */ +#line 4870 "src/parser_proc.c" /* glr.c:821 */ break; - case 343: -#line 666 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 344: +#line 672 "src/parser_proc_grammar.y" /* glr.c:821 */ { { uint8_t exists; @@ -4858,11 +4882,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } } -#line 4862 "src/parser_proc.c" /* glr.c:821 */ +#line 4886 "src/parser_proc.c" /* glr.c:821 */ break; - case 344: -#line 677 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 345: +#line 683 "src/parser_proc_grammar.y" /* glr.c:821 */ { { uint8_t exists; @@ -4874,51 +4898,51 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 4878 "src/parser_proc.c" /* glr.c:821 */ +#line 4902 "src/parser_proc.c" /* glr.c:821 */ break; - case 345: -#line 688 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 346: +#line 694 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->flags)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4888 "src/parser_proc.c" /* glr.c:821 */ +#line 4912 "src/parser_proc.c" /* glr.c:821 */ break; - case 346: -#line 693 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 347: +#line 699 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4898 "src/parser_proc.c" /* glr.c:821 */ +#line 4922 "src/parser_proc.c" /* glr.c:821 */ break; - case 347: -#line 698 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 348: +#line 704 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 4907 "src/parser_proc.c" /* glr.c:821 */ +#line 4931 "src/parser_proc.c" /* glr.c:821 */ break; - case 348: -#line 702 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 349: +#line 708 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINE, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4918 "src/parser_proc.c" /* glr.c:821 */ +#line 4942 "src/parser_proc.c" /* glr.c:821 */ break; - case 349: -#line 708 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 350: +#line 714 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_FUNCTION, @@ -4927,19 +4951,19 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->data.call->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4931 "src/parser_proc.c" /* glr.c:821 */ +#line 4955 "src/parser_proc.c" /* glr.c:821 */ break; - case 350: -#line 719 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 351: +#line 725 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 4939 "src/parser_proc.c" /* glr.c:821 */ +#line 4963 "src/parser_proc.c" /* glr.c:821 */ break; - case 352: -#line 726 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 353: +#line 732 "src/parser_proc_grammar.y" /* glr.c:821 */ { /* TODO: clang include test macros */ uint8_t no = 1; @@ -4948,101 +4972,93 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, exp->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &exp); } -#line 4952 "src/parser_proc.c" /* glr.c:821 */ +#line 4976 "src/parser_proc.c" /* glr.c:821 */ break; - case 353: -#line 734 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 354: +#line 740 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4961 "src/parser_proc.c" /* glr.c:821 */ +#line 4985 "src/parser_proc.c" /* glr.c:821 */ break; - case 354: -#line 738 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 355: +#line 744 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4969 "src/parser_proc.c" /* glr.c:821 */ +#line 4993 "src/parser_proc.c" /* glr.c:821 */ break; - case 355: -#line 744 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 356: +#line 750 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_const **)(&(*yyvalp))) = psi_const_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_const **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4978 "src/parser_proc.c" /* glr.c:821 */ +#line 5002 "src/parser_proc.c" /* glr.c:821 */ break; - case 356: -#line 748 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 357: +#line 754 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_const **)(&(*yyvalp))) = psi_const_init(NULL, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_const **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4987 "src/parser_proc.c" /* glr.c:821 */ +#line 5011 "src/parser_proc.c" /* glr.c:821 */ break; - case 357: -#line 755 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 358: +#line 761 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4996 "src/parser_proc.c" /* glr.c:821 */ +#line 5020 "src/parser_proc.c" /* glr.c:821 */ break; - case 358: -#line 759 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 359: +#line 765 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init(PSI_T_NUMBER, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 5005 "src/parser_proc.c" /* glr.c:821 */ +#line 5029 "src/parser_proc.c" /* glr.c:821 */ break; - case 359: -#line 763 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 360: +#line 769 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5014 "src/parser_proc.c" /* glr.c:821 */ - break; - - case 363: -#line 776 "src/parser_proc_grammar.y" /* glr.c:821 */ - { - (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); -} -#line 5022 "src/parser_proc.c" /* glr.c:821 */ +#line 5038 "src/parser_proc.c" /* glr.c:821 */ break; case 364: -#line 790 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 782 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5030 "src/parser_proc.c" /* glr.c:821 */ +#line 5046 "src/parser_proc.c" /* glr.c:821 */ break; case 365: #line 796 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); + (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5038 "src/parser_proc.c" /* glr.c:821 */ +#line 5054 "src/parser_proc.c" /* glr.c:821 */ break; case 366: -#line 799 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 802 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5046 "src/parser_proc.c" /* glr.c:821 */ +#line 5062 "src/parser_proc.c" /* glr.c:821 */ break; case 367: @@ -5050,19 +5066,27 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5054 "src/parser_proc.c" /* glr.c:821 */ +#line 5070 "src/parser_proc.c" /* glr.c:821 */ break; case 368: -#line 808 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 811 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5062 "src/parser_proc.c" /* glr.c:821 */ +#line 5078 "src/parser_proc.c" /* glr.c:821 */ + break; + + case 369: +#line 814 "src/parser_proc_grammar.y" /* glr.c:821 */ + { + (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); +} +#line 5086 "src/parser_proc.c" /* glr.c:821 */ break; - case 370: -#line 815 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 371: +#line 821 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name), @@ -5071,11 +5095,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5075 "src/parser_proc.c" /* glr.c:821 */ +#line 5099 "src/parser_proc.c" /* glr.c:821 */ break; - case 371: -#line 823 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 372: +#line 829 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( @@ -5087,11 +5111,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.enm = (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5091 "src/parser_proc.c" /* glr.c:821 */ +#line 5115 "src/parser_proc.c" /* glr.c:821 */ break; - case 372: -#line 834 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 373: +#line 840 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_STRUCT, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); @@ -5101,11 +5125,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_struct(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct); } -#line 5105 "src/parser_proc.c" /* glr.c:821 */ +#line 5129 "src/parser_proc.c" /* glr.c:821 */ break; - case 373: -#line 843 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 374: +#line 849 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_UNION, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); @@ -5115,20 +5139,20 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_union(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn); } -#line 5119 "src/parser_proc.c" /* glr.c:821 */ +#line 5143 "src/parser_proc.c" /* glr.c:821 */ break; - case 375: -#line 856 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 376: +#line 862 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 5128 "src/parser_proc.c" /* glr.c:821 */ +#line 5152 "src/parser_proc.c" /* glr.c:821 */ break; - case 376: -#line 860 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 377: +#line 866 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_ENUM, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->name), @@ -5139,11 +5163,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.enm = (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5143 "src/parser_proc.c" /* glr.c:821 */ +#line 5167 "src/parser_proc.c" /* glr.c:821 */ break; - case 377: -#line 870 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 378: +#line 876 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_STRUCT, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); @@ -5153,11 +5177,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_struct(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct); } -#line 5157 "src/parser_proc.c" /* glr.c:821 */ +#line 5181 "src/parser_proc.c" /* glr.c:821 */ break; - case 378: -#line 879 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 379: +#line 885 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_UNION, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); @@ -5167,78 +5191,70 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_union(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn); } -#line 5171 "src/parser_proc.c" /* glr.c:821 */ +#line 5195 "src/parser_proc.c" /* glr.c:821 */ break; - case 380: -#line 892 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 381: +#line 898 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5179 "src/parser_proc.c" /* glr.c:821 */ +#line 5203 "src/parser_proc.c" /* glr.c:821 */ break; - case 381: -#line 895 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 382: +#line 901 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5187 "src/parser_proc.c" /* glr.c:821 */ +#line 5211 "src/parser_proc.c" /* glr.c:821 */ break; - case 384: -#line 906 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 385: +#line 912 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5196 "src/parser_proc.c" /* glr.c:821 */ +#line 5220 "src/parser_proc.c" /* glr.c:821 */ break; - case 386: -#line 914 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 387: +#line 920 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5206 "src/parser_proc.c" /* glr.c:821 */ +#line 5230 "src/parser_proc.c" /* glr.c:821 */ break; - case 387: -#line 919 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 388: +#line 925 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5216 "src/parser_proc.c" /* glr.c:821 */ +#line 5240 "src/parser_proc.c" /* glr.c:821 */ break; - case 388: -#line 924 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 389: +#line 930 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5226 "src/parser_proc.c" /* glr.c:821 */ - break; - - case 391: -#line 934 "src/parser_proc_grammar.y" /* glr.c:821 */ - { - (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); -} -#line 5234 "src/parser_proc.c" /* glr.c:821 */ +#line 5250 "src/parser_proc.c" /* glr.c:821 */ break; case 392: -#line 937 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 940 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5242 "src/parser_proc.c" /* glr.c:821 */ +#line 5258 "src/parser_proc.c" /* glr.c:821 */ break; case 393: @@ -5246,67 +5262,75 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5250 "src/parser_proc.c" /* glr.c:821 */ +#line 5266 "src/parser_proc.c" /* glr.c:821 */ break; case 394: -#line 946 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 949 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5258 "src/parser_proc.c" /* glr.c:821 */ +#line 5274 "src/parser_proc.c" /* glr.c:821 */ break; case 395: -#line 949 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 952 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5266 "src/parser_proc.c" /* glr.c:821 */ +#line 5282 "src/parser_proc.c" /* glr.c:821 */ break; - case 398: -#line 960 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 396: +#line 955 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5274 "src/parser_proc.c" /* glr.c:821 */ +#line 5290 "src/parser_proc.c" /* glr.c:821 */ break; case 399: -#line 963 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 966 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5282 "src/parser_proc.c" /* glr.c:821 */ +#line 5298 "src/parser_proc.c" /* glr.c:821 */ break; case 400: -#line 966 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 969 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5290 "src/parser_proc.c" /* glr.c:821 */ +#line 5306 "src/parser_proc.c" /* glr.c:821 */ break; case 401: #line 972 "src/parser_proc_grammar.y" /* glr.c:821 */ { - (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5298 "src/parser_proc.c" /* glr.c:821 */ +#line 5314 "src/parser_proc.c" /* glr.c:821 */ break; case 402: -#line 975 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 978 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5306 "src/parser_proc.c" /* glr.c:821 */ +#line 5322 "src/parser_proc.c" /* glr.c:821 */ break; case 403: -#line 978 "src/parser_proc_grammar.y" /* glr.c:821 */ +#line 981 "src/parser_proc_grammar.y" /* glr.c:821 */ + { + (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); +} +#line 5330 "src/parser_proc.c" /* glr.c:821 */ + break; + + case 404: +#line 984 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5315,11 +5339,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5319 "src/parser_proc.c" /* glr.c:821 */ +#line 5343 "src/parser_proc.c" /* glr.c:821 */ break; - case 404: -#line 986 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 405: +#line 992 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5329,35 +5353,35 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } } -#line 5333 "src/parser_proc.c" /* glr.c:821 */ +#line 5357 "src/parser_proc.c" /* glr.c:821 */ break; - case 405: -#line 998 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 406: +#line 1004 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5341 "src/parser_proc.c" /* glr.c:821 */ +#line 5365 "src/parser_proc.c" /* glr.c:821 */ break; - case 406: -#line 1001 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 407: +#line 1007 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5349 "src/parser_proc.c" /* glr.c:821 */ +#line 5373 "src/parser_proc.c" /* glr.c:821 */ break; - case 407: -#line 1004 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 408: +#line 1010 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5357 "src/parser_proc.c" /* glr.c:821 */ +#line 5381 "src/parser_proc.c" /* glr.c:821 */ break; - case 408: -#line 1007 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 409: +#line 1013 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5365,19 +5389,19 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5369 "src/parser_proc.c" /* glr.c:821 */ +#line 5393 "src/parser_proc.c" /* glr.c:821 */ break; - case 409: -#line 1014 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 410: +#line 1020 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5377 "src/parser_proc.c" /* glr.c:821 */ +#line 5401 "src/parser_proc.c" /* glr.c:821 */ break; - case 410: -#line 1017 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 411: +#line 1023 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5385,43 +5409,43 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5389 "src/parser_proc.c" /* glr.c:821 */ +#line 5413 "src/parser_proc.c" /* glr.c:821 */ break; - case 411: -#line 1027 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 412: +#line 1033 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5397 "src/parser_proc.c" /* glr.c:821 */ +#line 5421 "src/parser_proc.c" /* glr.c:821 */ break; - case 413: -#line 1033 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 414: +#line 1039 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5405 "src/parser_proc.c" /* glr.c:821 */ +#line 5429 "src/parser_proc.c" /* glr.c:821 */ break; - case 417: -#line 1042 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 418: +#line 1048 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5413 "src/parser_proc.c" /* glr.c:821 */ +#line 5437 "src/parser_proc.c" /* glr.c:821 */ break; - case 418: -#line 1045 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 419: +#line 1051 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5421 "src/parser_proc.c" /* glr.c:821 */ +#line 5445 "src/parser_proc.c" /* glr.c:821 */ break; - case 419: -#line 1048 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 420: +#line 1054 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5430,11 +5454,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5434 "src/parser_proc.c" /* glr.c:821 */ +#line 5458 "src/parser_proc.c" /* glr.c:821 */ break; - case 420: -#line 1059 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 421: +#line 1065 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { @@ -5442,11 +5466,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5446 "src/parser_proc.c" /* glr.c:821 */ +#line 5470 "src/parser_proc.c" /* glr.c:821 */ break; - case 421: -#line 1066 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 422: +#line 1072 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { @@ -5454,44 +5478,44 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5458 "src/parser_proc.c" /* glr.c:821 */ +#line 5482 "src/parser_proc.c" /* glr.c:821 */ break; - case 422: -#line 1076 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 423: +#line 1082 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5466 "src/parser_proc.c" /* glr.c:821 */ +#line 5490 "src/parser_proc.c" /* glr.c:821 */ break; - case 423: -#line 1079 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 424: +#line 1085 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5474 "src/parser_proc.c" /* glr.c:821 */ +#line 5498 "src/parser_proc.c" /* glr.c:821 */ break; - case 424: -#line 1085 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 425: +#line 1091 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5482 "src/parser_proc.c" /* glr.c:821 */ +#line 5506 "src/parser_proc.c" /* glr.c:821 */ break; - case 425: -#line 1088 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 426: +#line 1094 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat("", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5491 "src/parser_proc.c" /* glr.c:821 */ +#line 5515 "src/parser_proc.c" /* glr.c:821 */ break; - case 426: -#line 1095 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 427: +#line 1101 "src/parser_proc_grammar.y" /* glr.c:821 */ { struct psi_plist *list = psi_plist_init((psi_plist_dtor) psi_decl_extvar_free); @@ -5525,60 +5549,60 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = list; } -#line 5529 "src/parser_proc.c" /* glr.c:821 */ +#line 5553 "src/parser_proc.c" /* glr.c:821 */ break; - case 427: -#line 1131 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 428: +#line 1137 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5537 "src/parser_proc.c" /* glr.c:821 */ +#line 5561 "src/parser_proc.c" /* glr.c:821 */ break; - case 428: -#line 1134 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 429: +#line 1140 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5545 "src/parser_proc.c" /* glr.c:821 */ +#line 5569 "src/parser_proc.c" /* glr.c:821 */ break; - case 429: -#line 1140 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 430: +#line 1146 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_var_free), &(*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5553 "src/parser_proc.c" /* glr.c:821 */ +#line 5577 "src/parser_proc.c" /* glr.c:821 */ break; - case 430: -#line 1143 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 431: +#line 1149 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5561 "src/parser_proc.c" /* glr.c:821 */ +#line 5585 "src/parser_proc.c" /* glr.c:821 */ break; - case 431: -#line 1149 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 432: +#line 1155 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5569 "src/parser_proc.c" /* glr.c:821 */ +#line 5593 "src/parser_proc.c" /* glr.c:821 */ break; - case 444: -#line 1179 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 445: +#line 1185 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_decl **)(&(*yyvalp)))->abi = psi_decl_abi_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text); } -#line 5578 "src/parser_proc.c" /* glr.c:821 */ +#line 5602 "src/parser_proc.c" /* glr.c:821 */ break; - case 447: -#line 1191 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 448: +#line 1197 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5586,11 +5610,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5590 "src/parser_proc.c" /* glr.c:821 */ +#line 5614 "src/parser_proc.c" /* glr.c:821 */ break; - case 448: -#line 1198 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 449: +#line 1204 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5599,11 +5623,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5603 "src/parser_proc.c" /* glr.c:821 */ +#line 5627 "src/parser_proc.c" /* glr.c:821 */ break; - case 449: -#line 1209 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 450: +#line 1215 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5611,11 +5635,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5615 "src/parser_proc.c" /* glr.c:821 */ +#line 5639 "src/parser_proc.c" /* glr.c:821 */ break; - case 450: -#line 1216 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 451: +#line 1222 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5624,11 +5648,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5628 "src/parser_proc.c" /* glr.c:821 */ +#line 5652 "src/parser_proc.c" /* glr.c:821 */ break; - case 451: -#line 1224 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 452: +#line 1230 "src/parser_proc_grammar.y" /* glr.c:821 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))->type = PSI_T_NAME; @@ -5653,11 +5677,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init(func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); } -#line 5657 "src/parser_proc.c" /* glr.c:821 */ +#line 5681 "src/parser_proc.c" /* glr.c:821 */ break; - case 452: -#line 1248 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 453: +#line 1254 "src/parser_proc_grammar.y" /* glr.c:821 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-12)].yystate.yysemantics.yysval)); (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval)); @@ -5684,11 +5708,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init(func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); } -#line 5688 "src/parser_proc.c" /* glr.c:821 */ +#line 5712 "src/parser_proc.c" /* glr.c:821 */ break; - case 453: -#line 1277 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 454: +#line 1283 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5696,11 +5720,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5700 "src/parser_proc.c" /* glr.c:821 */ +#line 5724 "src/parser_proc.c" /* glr.c:821 */ break; - case 454: -#line 1284 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 455: +#line 1290 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5709,11 +5733,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5713 "src/parser_proc.c" /* glr.c:821 */ +#line 5737 "src/parser_proc.c" /* glr.c:821 */ break; - case 455: -#line 1295 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 456: +#line 1301 "src/parser_proc_grammar.y" /* glr.c:821 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; @@ -5721,62 +5745,62 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5725 "src/parser_proc.c" /* glr.c:821 */ +#line 5749 "src/parser_proc.c" /* glr.c:821 */ break; - case 456: -#line 1341 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 457: +#line 1347 "src/parser_proc_grammar.y" /* glr.c:821 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), psi_decl_var_init(NULL, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5736 "src/parser_proc.c" /* glr.c:821 */ +#line 5760 "src/parser_proc.c" /* glr.c:821 */ break; - case 458: -#line 1397 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 459: +#line 1403 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5744 "src/parser_proc.c" /* glr.c:821 */ +#line 5768 "src/parser_proc.c" /* glr.c:821 */ break; - case 459: -#line 1400 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 460: +#line 1406 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5752 "src/parser_proc.c" /* glr.c:821 */ +#line 5776 "src/parser_proc.c" /* glr.c:821 */ break; - case 460: -#line 1403 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 461: +#line 1409 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5760 "src/parser_proc.c" /* glr.c:821 */ +#line 5784 "src/parser_proc.c" /* glr.c:821 */ break; - case 461: -#line 1409 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 462: +#line 1415 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5768 "src/parser_proc.c" /* glr.c:821 */ +#line 5792 "src/parser_proc.c" /* glr.c:821 */ break; - case 462: -#line 1412 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 463: +#line 1418 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5776 "src/parser_proc.c" /* glr.c:821 */ +#line 5800 "src/parser_proc.c" /* glr.c:821 */ break; - case 463: -#line 1418 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 464: +#line 1424 "src/parser_proc_grammar.y" /* glr.c:821 */ { char digest[17]; struct psi_token *name; @@ -5792,30 +5816,30 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5796 "src/parser_proc.c" /* glr.c:821 */ +#line 5820 "src/parser_proc.c" /* glr.c:821 */ break; - case 464: -#line 1433 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 465: +#line 1439 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5804 "src/parser_proc.c" /* glr.c:821 */ +#line 5828 "src/parser_proc.c" /* glr.c:821 */ break; - case 465: -#line 1436 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 466: +#line 1442 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), psi_decl_var_init(NULL, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) ); } -#line 5815 "src/parser_proc.c" /* glr.c:821 */ +#line 5839 "src/parser_proc.c" /* glr.c:821 */ break; - case 466: -#line 1465 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 467: +#line 1471 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name), @@ -5824,39 +5848,39 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5828 "src/parser_proc.c" /* glr.c:821 */ +#line 5852 "src/parser_proc.c" /* glr.c:821 */ break; - case 467: -#line 1473 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 468: +#line 1479 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5836 "src/parser_proc.c" /* glr.c:821 */ +#line 5860 "src/parser_proc.c" /* glr.c:821 */ break; - case 468: -#line 1501 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 469: +#line 1507 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_var **)(&(*yyvalp))) = psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)) + !! (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5846 "src/parser_proc.c" /* glr.c:821 */ +#line 5870 "src/parser_proc.c" /* glr.c:821 */ break; - case 469: -#line 1506 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 470: +#line 1512 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_var **)(&(*yyvalp))) = psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text, !! (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5856 "src/parser_proc.c" /* glr.c:821 */ +#line 5880 "src/parser_proc.c" /* glr.c:821 */ break; - case 470: -#line 1514 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 471: +#line 1520 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_union **)(&(*yyvalp))) = psi_decl_union_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5864,11 +5888,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_union **)(&(*yyvalp)))->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; (*(struct psi_decl_union **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5868 "src/parser_proc.c" /* glr.c:821 */ +#line 5892 "src/parser_proc.c" /* glr.c:821 */ break; - case 471: -#line 1524 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 472: +#line 1530 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_struct **)(&(*yyvalp))) = psi_decl_struct_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5876,27 +5900,27 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_struct **)(&(*yyvalp)))->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; (*(struct psi_decl_struct **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5880 "src/parser_proc.c" /* glr.c:821 */ +#line 5904 "src/parser_proc.c" /* glr.c:821 */ break; - case 472: -#line 1534 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 473: +#line 1540 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5888 "src/parser_proc.c" /* glr.c:821 */ +#line 5912 "src/parser_proc.c" /* glr.c:821 */ break; - case 474: -#line 1541 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 475: +#line 1547 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5896 "src/parser_proc.c" /* glr.c:821 */ +#line 5920 "src/parser_proc.c" /* glr.c:821 */ break; - case 475: -#line 1547 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 476: +#line 1553 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); @@ -5911,11 +5935,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5915 "src/parser_proc.c" /* glr.c:821 */ +#line 5939 "src/parser_proc.c" /* glr.c:821 */ break; - case 476: -#line 1561 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 477: +#line 1567 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); @@ -5930,27 +5954,27 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5934 "src/parser_proc.c" /* glr.c:821 */ +#line 5958 "src/parser_proc.c" /* glr.c:821 */ break; - case 477: -#line 1578 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 478: +#line 1584 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5942 "src/parser_proc.c" /* glr.c:821 */ +#line 5966 "src/parser_proc.c" /* glr.c:821 */ break; - case 478: -#line 1581 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 479: +#line 1587 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5950 "src/parser_proc.c" /* glr.c:821 */ +#line 5974 "src/parser_proc.c" /* glr.c:821 */ break; - case 479: -#line 1587 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 480: +#line 1593 "src/parser_proc_grammar.y" /* glr.c:821 */ { { struct psi_decl_arg *arg = psi_decl_arg_init(NULL, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); @@ -5958,11 +5982,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &arg); } } -#line 5962 "src/parser_proc.c" /* glr.c:821 */ +#line 5986 "src/parser_proc.c" /* glr.c:821 */ break; - case 480: -#line 1594 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 481: +#line 1600 "src/parser_proc_grammar.y" /* glr.c:821 */ { { struct psi_decl_arg *arg = psi_decl_arg_init(NULL, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); @@ -5970,11 +5994,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), &arg); } } -#line 5974 "src/parser_proc.c" /* glr.c:821 */ +#line 5998 "src/parser_proc.c" /* glr.c:821 */ break; - case 481: -#line 1601 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 482: +#line 1607 "src/parser_proc_grammar.y" /* glr.c:821 */ { { struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); @@ -5983,11 +6007,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &arg); } } -#line 5987 "src/parser_proc.c" /* glr.c:821 */ +#line 6011 "src/parser_proc.c" /* glr.c:821 */ break; - case 482: -#line 1609 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 483: +#line 1615 "src/parser_proc_grammar.y" /* glr.c:821 */ { { struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); @@ -5996,189 +6020,189 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &arg); } } -#line 6000 "src/parser_proc.c" /* glr.c:821 */ +#line 6024 "src/parser_proc.c" /* glr.c:821 */ break; - case 483: -#line 1620 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 484: +#line 1626 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_decl_enum **)(&(*yyvalp))) = psi_decl_enum_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_decl_enum **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)); } -#line 6009 "src/parser_proc.c" /* glr.c:821 */ +#line 6033 "src/parser_proc.c" /* glr.c:821 */ break; - case 484: -#line 1627 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 485: +#line 1633 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_enum_item_free), &(*(struct psi_decl_enum_item **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6017 "src/parser_proc.c" /* glr.c:821 */ +#line 6041 "src/parser_proc.c" /* glr.c:821 */ break; - case 485: -#line 1630 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 486: +#line 1636 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_enum_item **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6025 "src/parser_proc.c" /* glr.c:821 */ +#line 6049 "src/parser_proc.c" /* glr.c:821 */ break; - case 486: -#line 1636 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 487: +#line 1642 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_enum_item **)(&(*yyvalp))) = psi_decl_enum_item_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, NULL); (*(struct psi_decl_enum_item **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6035 "src/parser_proc.c" /* glr.c:821 */ +#line 6059 "src/parser_proc.c" /* glr.c:821 */ break; - case 487: -#line 1641 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 488: +#line 1647 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_enum_item **)(&(*yyvalp))) = psi_decl_enum_item_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_enum_item **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6045 "src/parser_proc.c" /* glr.c:821 */ +#line 6069 "src/parser_proc.c" /* glr.c:821 */ break; - case 488: -#line 1649 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 489: +#line 1655 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 6054 "src/parser_proc.c" /* glr.c:821 */ +#line 6078 "src/parser_proc.c" /* glr.c:821 */ break; - case 489: -#line 1653 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 490: +#line 1659 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_cast((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->token); } -#line 6063 "src/parser_proc.c" /* glr.c:821 */ +#line 6087 "src/parser_proc.c" /* glr.c:821 */ break; - case 490: -#line 1657 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 491: +#line 1663 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary(PSI_T_LPAREN, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6072 "src/parser_proc.c" /* glr.c:821 */ +#line 6096 "src/parser_proc.c" /* glr.c:821 */ break; - case 491: -#line 1661 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 492: +#line 1667 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_binary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 6081 "src/parser_proc.c" /* glr.c:821 */ +#line 6105 "src/parser_proc.c" /* glr.c:821 */ break; - case 492: -#line 1665 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 493: +#line 1671 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 6090 "src/parser_proc.c" /* glr.c:821 */ +#line 6114 "src/parser_proc.c" /* glr.c:821 */ break; - case 493: -#line 1669 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 494: +#line 1675 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_ternary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6099 "src/parser_proc.c" /* glr.c:821 */ +#line 6123 "src/parser_proc.c" /* glr.c:821 */ break; - case 494: -#line 1676 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 495: +#line 1682 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->flags); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6108 "src/parser_proc.c" /* glr.c:821 */ +#line 6132 "src/parser_proc.c" /* glr.c:821 */ break; - case 495: -#line 1680 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 496: +#line 1686 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6117 "src/parser_proc.c" /* glr.c:821 */ +#line 6141 "src/parser_proc.c" /* glr.c:821 */ break; - case 496: -#line 1684 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 497: +#line 1690 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6126 "src/parser_proc.c" /* glr.c:821 */ +#line 6150 "src/parser_proc.c" /* glr.c:821 */ break; - case 497: -#line 1688 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 498: +#line 1694 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6135 "src/parser_proc.c" /* glr.c:821 */ +#line 6159 "src/parser_proc.c" /* glr.c:821 */ break; - case 498: -#line 1692 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 499: +#line 1698 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_NAME, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 6144 "src/parser_proc.c" /* glr.c:821 */ +#line 6168 "src/parser_proc.c" /* glr.c:821 */ break; - case 499: -#line 1696 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 500: +#line 1702 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6152 "src/parser_proc.c" /* glr.c:821 */ +#line 6176 "src/parser_proc.c" /* glr.c:821 */ break; - case 500: -#line 1702 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 501: +#line 1708 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6161 "src/parser_proc.c" /* glr.c:821 */ +#line 6185 "src/parser_proc.c" /* glr.c:821 */ break; - case 501: -#line 1706 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 502: +#line 1712 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 6170 "src/parser_proc.c" /* glr.c:821 */ +#line 6194 "src/parser_proc.c" /* glr.c:821 */ break; - case 502: -#line 1713 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 503: +#line 1719 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6178 "src/parser_proc.c" /* glr.c:821 */ +#line 6202 "src/parser_proc.c" /* glr.c:821 */ break; - case 503: -#line 1716 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 504: +#line 1722 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { int8_t sizeof_void_p = sizeof(void *); @@ -6188,38 +6212,38 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_SIZEOF, (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), 0); } } -#line 6192 "src/parser_proc.c" /* glr.c:821 */ +#line 6216 "src/parser_proc.c" /* glr.c:821 */ break; - case 504: -#line 1728 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 505: +#line 1734 "src/parser_proc_grammar.y" /* glr.c:821 */ { int8_t sizeof_void_p = sizeof(void *); (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_INT8, &sizeof_void_p, 0); } -#line 6201 "src/parser_proc.c" /* glr.c:821 */ +#line 6225 "src/parser_proc.c" /* glr.c:821 */ break; - case 505: -#line 1732 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 506: +#line 1738 "src/parser_proc_grammar.y" /* glr.c:821 */ { int8_t sizeof_a = sizeof('a'); (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_INT8, &sizeof_a, 0); } -#line 6210 "src/parser_proc.c" /* glr.c:821 */ +#line 6234 "src/parser_proc.c" /* glr.c:821 */ break; - case 506: -#line 1736 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 507: +#line 1742 "src/parser_proc_grammar.y" /* glr.c:821 */ { uint64_t len = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->len + 1; (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_UINT64, &len, 0); } -#line 6219 "src/parser_proc.c" /* glr.c:821 */ +#line 6243 "src/parser_proc.c" /* glr.c:821 */ break; - case 507: -#line 1743 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 508: +#line 1749 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -6230,11 +6254,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 6234 "src/parser_proc.c" /* glr.c:821 */ +#line 6258 "src/parser_proc.c" /* glr.c:821 */ break; - case 508: -#line 1756 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 509: +#line 1762 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -6245,11 +6269,11 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 6249 "src/parser_proc.c" /* glr.c:821 */ +#line 6273 "src/parser_proc.c" /* glr.c:821 */ break; - case 509: -#line 1769 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 510: +#line 1775 "src/parser_proc_grammar.y" /* glr.c:821 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -6260,94 +6284,94 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 6264 "src/parser_proc.c" /* glr.c:821 */ +#line 6288 "src/parser_proc.c" /* glr.c:821 */ break; - case 510: -#line 1782 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 511: +#line 1788 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 6272 "src/parser_proc.c" /* glr.c:821 */ +#line 6296 "src/parser_proc.c" /* glr.c:821 */ break; - case 511: -#line 1785 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 512: +#line 1791 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&(*yyvalp)))->type = PSI_T_NAME; } -#line 6281 "src/parser_proc.c" /* glr.c:821 */ +#line 6305 "src/parser_proc.c" /* glr.c:821 */ break; - case 514: -#line 1797 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 515: +#line 1803 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout **)(&(*yyvalp))) = NULL; } -#line 6289 "src/parser_proc.c" /* glr.c:821 */ +#line 6313 "src/parser_proc.c" /* glr.c:821 */ break; - case 515: -#line 1800 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 516: +#line 1806 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(0, 0, psi_layout_init(0, atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->val), NULL)); } -#line 6297 "src/parser_proc.c" /* glr.c:821 */ +#line 6321 "src/parser_proc.c" /* glr.c:821 */ break; - case 516: -#line 1803 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 517: +#line 1809 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val), atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val), NULL); } -#line 6305 "src/parser_proc.c" /* glr.c:821 */ +#line 6329 "src/parser_proc.c" /* glr.c:821 */ break; - case 517: -#line 1806 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 518: +#line 1812 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val), atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val), psi_layout_init(0, atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-7)].yystate.yysemantics.yysval))->text->val), NULL)); } -#line 6313 "src/parser_proc.c" /* glr.c:821 */ +#line 6337 "src/parser_proc.c" /* glr.c:821 */ break; - case 518: -#line 1812 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 519: +#line 1818 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout*)(&(*yyvalp))).pos = 0; (*(struct psi_layout*)(&(*yyvalp))).len = 0; } -#line 6322 "src/parser_proc.c" /* glr.c:821 */ +#line 6346 "src/parser_proc.c" /* glr.c:821 */ break; - case 519: -#line 1816 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 520: +#line 1822 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_layout*)(&(*yyvalp))).pos = atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val); (*(struct psi_layout*)(&(*yyvalp))).len = atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val); } -#line 6331 "src/parser_proc.c" /* glr.c:821 */ +#line 6355 "src/parser_proc.c" /* glr.c:821 */ break; - case 520: -#line 1823 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 521: +#line 1829 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6339 "src/parser_proc.c" /* glr.c:821 */ +#line 6363 "src/parser_proc.c" /* glr.c:821 */ break; - case 521: -#line 1826 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 522: +#line 1832 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6347 "src/parser_proc.c" /* glr.c:821 */ +#line 6371 "src/parser_proc.c" /* glr.c:821 */ break; - case 522: -#line 1829 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 523: +#line 1835 "src/parser_proc_grammar.y" /* glr.c:821 */ { struct psi_validate_scope scope = {0}; psi_validate_scope_ctor(&scope); @@ -6360,88 +6384,88 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, psi_num_exp_free(&(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); psi_validate_scope_dtor(&scope); } -#line 6364 "src/parser_proc.c" /* glr.c:821 */ +#line 6388 "src/parser_proc.c" /* glr.c:821 */ break; - case 527: -#line 1851 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 528: +#line 1857 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6372 "src/parser_proc.c" /* glr.c:821 */ +#line 6396 "src/parser_proc.c" /* glr.c:821 */ break; - case 528: -#line 1854 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 529: +#line 1860 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6380 "src/parser_proc.c" /* glr.c:821 */ +#line 6404 "src/parser_proc.c" /* glr.c:821 */ break; - case 530: -#line 1861 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 531: +#line 1867 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6388 "src/parser_proc.c" /* glr.c:821 */ +#line 6412 "src/parser_proc.c" /* glr.c:821 */ break; - case 531: -#line 1867 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 532: +#line 1873 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = 1; } -#line 6396 "src/parser_proc.c" /* glr.c:821 */ +#line 6420 "src/parser_proc.c" /* glr.c:821 */ break; - case 532: -#line 1870 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 533: +#line 1876 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)) + 1; } -#line 6404 "src/parser_proc.c" /* glr.c:821 */ +#line 6428 "src/parser_proc.c" /* glr.c:821 */ break; - case 537: -#line 1892 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 538: +#line 1898 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl **)(&(*yyvalp))) = psi_impl_init((*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 6412 "src/parser_proc.c" /* glr.c:821 */ +#line 6436 "src/parser_proc.c" /* glr.c:821 */ break; - case 538: -#line 1895 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 539: +#line 1901 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl **)(&(*yyvalp))) = psi_impl_init((*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->static_memory = 1; } -#line 6421 "src/parser_proc.c" /* glr.c:821 */ +#line 6445 "src/parser_proc.c" /* glr.c:821 */ break; - case 539: -#line 1902 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 540: +#line 1908 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, NULL, (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->return_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval)); } -#line 6431 "src/parser_proc.c" /* glr.c:821 */ +#line 6455 "src/parser_proc.c" /* glr.c:821 */ break; - case 540: -#line 1907 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 541: +#line 1913 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->return_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)); } -#line 6441 "src/parser_proc.c" /* glr.c:821 */ +#line 6465 "src/parser_proc.c" /* glr.c:821 */ break; - case 541: -#line 1912 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 542: +#line 1918 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval)), (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval))); @@ -6449,531 +6473,531 @@ yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_impl_func **)(&(*yyvalp)))->vararg = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), psi_impl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))), NULL); (*(struct psi_impl_func **)(&(*yyvalp)))->vararg->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6453 "src/parser_proc.c" /* glr.c:821 */ +#line 6477 "src/parser_proc.c" /* glr.c:821 */ break; - case 542: -#line 1922 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 543: +#line 1928 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_impl_arg_free), &(*(struct psi_impl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6461 "src/parser_proc.c" /* glr.c:821 */ +#line 6485 "src/parser_proc.c" /* glr.c:821 */ break; - case 543: -#line 1925 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 544: +#line 1931 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_impl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6469 "src/parser_proc.c" /* glr.c:821 */ +#line 6493 "src/parser_proc.c" /* glr.c:821 */ break; - case 544: -#line 1931 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 545: +#line 1937 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_arg **)(&(*yyvalp))) = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); } -#line 6477 "src/parser_proc.c" /* glr.c:821 */ +#line 6501 "src/parser_proc.c" /* glr.c:821 */ break; - case 545: -#line 1934 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 546: +#line 1940 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_arg **)(&(*yyvalp))) = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6485 "src/parser_proc.c" /* glr.c:821 */ +#line 6509 "src/parser_proc.c" /* glr.c:821 */ break; - case 546: -#line 1940 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 547: +#line 1946 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_var **)(&(*yyvalp))) = psi_impl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_impl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6494 "src/parser_proc.c" /* glr.c:821 */ +#line 6518 "src/parser_proc.c" /* glr.c:821 */ break; - case 547: -#line 1947 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 548: +#line 1953 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_type **)(&(*yyvalp))) = psi_impl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6503 "src/parser_proc.c" /* glr.c:821 */ +#line 6527 "src/parser_proc.c" /* glr.c:821 */ break; - case 548: -#line 1954 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 549: +#line 1960 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_impl_type **)(&(*yyvalp))) = psi_impl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6512 "src/parser_proc.c" /* glr.c:821 */ +#line 6536 "src/parser_proc.c" /* glr.c:821 */ break; - case 560: -#line 1981 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 561: +#line 1987 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_impl_stmt_free), &(*(struct psi_token ***)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6520 "src/parser_proc.c" /* glr.c:821 */ +#line 6544 "src/parser_proc.c" /* glr.c:821 */ break; - case 561: -#line 1984 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 562: +#line 1990 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), &(*(struct psi_token ***)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6528 "src/parser_proc.c" /* glr.c:821 */ +#line 6552 "src/parser_proc.c" /* glr.c:821 */ break; - case 562: -#line 1990 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 563: +#line 1996 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_return_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6536 "src/parser_proc.c" /* glr.c:821 */ +#line 6560 "src/parser_proc.c" /* glr.c:821 */ break; - case 563: -#line 1993 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 564: +#line 1999 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_let_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6544 "src/parser_proc.c" /* glr.c:821 */ +#line 6568 "src/parser_proc.c" /* glr.c:821 */ break; - case 564: -#line 1996 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 565: +#line 2002 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_set_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6552 "src/parser_proc.c" /* glr.c:821 */ +#line 6576 "src/parser_proc.c" /* glr.c:821 */ break; - case 565: -#line 1999 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 566: +#line 2005 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_assert_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6560 "src/parser_proc.c" /* glr.c:821 */ +#line 6584 "src/parser_proc.c" /* glr.c:821 */ break; - case 566: -#line 2002 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 567: +#line 2008 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_free_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6568 "src/parser_proc.c" /* glr.c:821 */ +#line 6592 "src/parser_proc.c" /* glr.c:821 */ break; - case 567: -#line 2008 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 568: +#line 2014 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_stmt **)(&(*yyvalp))) = psi_let_stmt_init((*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_let_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6577 "src/parser_proc.c" /* glr.c:821 */ +#line 6601 "src/parser_proc.c" /* glr.c:821 */ break; - case 568: -#line 2012 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 569: +#line 2018 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_stmt **)(&(*yyvalp))) = psi_let_stmt_init(psi_let_exp_init_ex((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), PSI_LET_TMP, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)))); (*(struct psi_let_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_let_stmt **)(&(*yyvalp)))->exp->is_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6587 "src/parser_proc.c" /* glr.c:821 */ +#line 6611 "src/parser_proc.c" /* glr.c:821 */ break; - case 570: -#line 2021 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 571: +#line 2027 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = true; } -#line 6596 "src/parser_proc.c" /* glr.c:821 */ +#line 6620 "src/parser_proc.c" /* glr.c:821 */ break; - case 571: -#line 2025 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 572: +#line 2031 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = false; } -#line 6605 "src/parser_proc.c" /* glr.c:821 */ +#line 6629 "src/parser_proc.c" /* glr.c:821 */ break; - case 572: -#line 2032 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 573: +#line 2038 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_NULL, NULL); } -#line 6613 "src/parser_proc.c" /* glr.c:821 */ +#line 6637 "src/parser_proc.c" /* glr.c:821 */ break; - case 573: -#line 2035 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 574: +#line 2041 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init_ex(NULL, PSI_LET_NUMEXP, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6621 "src/parser_proc.c" /* glr.c:821 */ +#line 6645 "src/parser_proc.c" /* glr.c:821 */ break; - case 574: -#line 2038 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 575: +#line 2044 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLOC, (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6629 "src/parser_proc.c" /* glr.c:821 */ +#line 6653 "src/parser_proc.c" /* glr.c:821 */ break; - case 575: -#line 2041 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 576: +#line 2047 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLOC, (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->static_memory = 1; } -#line 6638 "src/parser_proc.c" /* glr.c:821 */ +#line 6662 "src/parser_proc.c" /* glr.c:821 */ break; - case 576: -#line 2045 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 577: +#line 2051 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLBACK, (*(struct psi_let_callback **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6646 "src/parser_proc.c" /* glr.c:821 */ +#line 6670 "src/parser_proc.c" /* glr.c:821 */ break; - case 577: -#line 2048 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 578: +#line 2054 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init_ex(NULL, PSI_LET_FUNC, (*(struct psi_let_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6654 "src/parser_proc.c" /* glr.c:821 */ +#line 6678 "src/parser_proc.c" /* glr.c:821 */ break; - case 578: -#line 2054 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 579: +#line 2060 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->var = (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6663 "src/parser_proc.c" /* glr.c:821 */ +#line 6687 "src/parser_proc.c" /* glr.c:821 */ break; - case 579: -#line 2058 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 580: +#line 2064 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = 1; (*(struct psi_let_exp **)(&(*yyvalp)))->var = (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); } -#line 6673 "src/parser_proc.c" /* glr.c:821 */ +#line 6697 "src/parser_proc.c" /* glr.c:821 */ break; - case 580: -#line 2066 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 581: +#line 2072 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_calloc **)(&(*yyvalp))) = psi_let_calloc_init((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_let_calloc **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); } -#line 6682 "src/parser_proc.c" /* glr.c:821 */ +#line 6706 "src/parser_proc.c" /* glr.c:821 */ break; - case 581: -#line 2073 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 582: +#line 2079 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_callback **)(&(*yyvalp))) = psi_let_callback_init(psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), NULL); (*(struct psi_let_callback **)(&(*yyvalp)))->func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-7)].yystate.yysemantics.yysval))); } -#line 6692 "src/parser_proc.c" /* glr.c:821 */ +#line 6716 "src/parser_proc.c" /* glr.c:821 */ break; - case 582: -#line 2078 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 583: +#line 2084 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_callback **)(&(*yyvalp))) = psi_let_callback_init(psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-11)].yystate.yysemantics.yysval))); } -#line 6702 "src/parser_proc.c" /* glr.c:821 */ +#line 6726 "src/parser_proc.c" /* glr.c:821 */ break; - case 583: -#line 2086 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 584: +#line 2092 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_let_func **)(&(*yyvalp))) = psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_let_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_let_func **)(&(*yyvalp)))->inner = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6712 "src/parser_proc.c" /* glr.c:821 */ +#line 6736 "src/parser_proc.c" /* glr.c:821 */ break; - case 594: -#line 2107 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 595: +#line 2113 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6720 "src/parser_proc.c" /* glr.c:821 */ +#line 6744 "src/parser_proc.c" /* glr.c:821 */ break; - case 595: -#line 2110 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 596: +#line 2116 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6728 "src/parser_proc.c" /* glr.c:821 */ +#line 6752 "src/parser_proc.c" /* glr.c:821 */ break; - case 596: -#line 2116 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 597: +#line 2122 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_let_exp_free), &(*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6736 "src/parser_proc.c" /* glr.c:821 */ +#line 6760 "src/parser_proc.c" /* glr.c:821 */ break; - case 597: -#line 2119 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 598: +#line 2125 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6744 "src/parser_proc.c" /* glr.c:821 */ +#line 6768 "src/parser_proc.c" /* glr.c:821 */ break; - case 600: -#line 2130 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 601: +#line 2136 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6752 "src/parser_proc.c" /* glr.c:821 */ +#line 6776 "src/parser_proc.c" /* glr.c:821 */ break; - case 601: -#line 2133 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 602: +#line 2139 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6760 "src/parser_proc.c" /* glr.c:821 */ +#line 6784 "src/parser_proc.c" /* glr.c:821 */ break; - case 602: -#line 2139 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 603: +#line 2145 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_set_exp_free), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6768 "src/parser_proc.c" /* glr.c:821 */ +#line 6792 "src/parser_proc.c" /* glr.c:821 */ break; - case 603: -#line 2142 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 604: +#line 2148 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6776 "src/parser_proc.c" /* glr.c:821 */ +#line 6800 "src/parser_proc.c" /* glr.c:821 */ break; - case 604: -#line 2148 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 605: +#line 2154 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_return_stmt **)(&(*yyvalp))) = psi_return_stmt_init((*(struct psi_return_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_return_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6785 "src/parser_proc.c" /* glr.c:821 */ +#line 6809 "src/parser_proc.c" /* glr.c:821 */ break; - case 605: -#line 2155 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 606: +#line 2161 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_return_exp **)(&(*yyvalp))) = psi_return_exp_init((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_return_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->token); } -#line 6794 "src/parser_proc.c" /* glr.c:821 */ +#line 6818 "src/parser_proc.c" /* glr.c:821 */ break; - case 606: -#line 2159 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 607: +#line 2165 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_return_exp **)(&(*yyvalp))) = psi_return_exp_init(NULL, NULL, psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_return_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 6803 "src/parser_proc.c" /* glr.c:821 */ +#line 6827 "src/parser_proc.c" /* glr.c:821 */ break; - case 607: -#line 2166 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 608: +#line 2172 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6811 "src/parser_proc.c" /* glr.c:821 */ +#line 6835 "src/parser_proc.c" /* glr.c:821 */ break; - case 608: -#line 2169 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 609: +#line 2175 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6819 "src/parser_proc.c" /* glr.c:821 */ +#line 6843 "src/parser_proc.c" /* glr.c:821 */ break; - case 609: -#line 2172 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 610: +#line 2178 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6827 "src/parser_proc.c" /* glr.c:821 */ +#line 6851 "src/parser_proc.c" /* glr.c:821 */ break; - case 610: -#line 2178 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 611: +#line 2184 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_stmt **)(&(*yyvalp))) = psi_set_stmt_init((*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_set_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6836 "src/parser_proc.c" /* glr.c:821 */ +#line 6860 "src/parser_proc.c" /* glr.c:821 */ break; - case 611: -#line 2185 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 612: +#line 2191 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6844 "src/parser_proc.c" /* glr.c:821 */ +#line 6868 "src/parser_proc.c" /* glr.c:821 */ break; - case 612: -#line 2188 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 613: +#line 2194 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = psi_set_exp_init(PSI_SET_NUMEXP, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6852 "src/parser_proc.c" /* glr.c:821 */ +#line 6876 "src/parser_proc.c" /* glr.c:821 */ break; - case 613: -#line 2191 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 614: +#line 2197 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = (*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_set_exp **)(&(*yyvalp)))->var = (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6861 "src/parser_proc.c" /* glr.c:821 */ +#line 6885 "src/parser_proc.c" /* glr.c:821 */ break; - case 614: -#line 2198 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 615: +#line 2204 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_func **)(&(*yyvalp))) = psi_set_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->inner = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6871 "src/parser_proc.c" /* glr.c:821 */ +#line 6895 "src/parser_proc.c" /* glr.c:821 */ break; - case 615: -#line 2203 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 616: +#line 2209 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_set_func **)(&(*yyvalp))) = psi_set_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->text, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->recursive = 1; } -#line 6881 "src/parser_proc.c" /* glr.c:821 */ +#line 6905 "src/parser_proc.c" /* glr.c:821 */ break; - case 624: -#line 2222 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 625: +#line 2228 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6889 "src/parser_proc.c" /* glr.c:821 */ +#line 6913 "src/parser_proc.c" /* glr.c:821 */ break; - case 625: -#line 2225 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 626: +#line 2231 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6897 "src/parser_proc.c" /* glr.c:821 */ +#line 6921 "src/parser_proc.c" /* glr.c:821 */ break; - case 626: -#line 2231 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 627: +#line 2237 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_set_exp_free), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6905 "src/parser_proc.c" /* glr.c:821 */ +#line 6929 "src/parser_proc.c" /* glr.c:821 */ break; - case 627: -#line 2234 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 628: +#line 2240 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6913 "src/parser_proc.c" /* glr.c:821 */ +#line 6937 "src/parser_proc.c" /* glr.c:821 */ break; - case 628: -#line 2240 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 629: +#line 2246 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_assert_stmt **)(&(*yyvalp))) = psi_assert_stmt_init((enum psi_assert_kind) (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_assert_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6922 "src/parser_proc.c" /* glr.c:821 */ +#line 6946 "src/parser_proc.c" /* glr.c:821 */ break; - case 631: -#line 2252 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 632: +#line 2258 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_free_stmt **)(&(*yyvalp))) = psi_free_stmt_init((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_free_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6931 "src/parser_proc.c" /* glr.c:821 */ +#line 6955 "src/parser_proc.c" /* glr.c:821 */ break; - case 632: -#line 2259 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 633: +#line 2265 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_free_exp_free), &(*(struct psi_free_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6939 "src/parser_proc.c" /* glr.c:821 */ +#line 6963 "src/parser_proc.c" /* glr.c:821 */ break; - case 633: -#line 2262 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 634: +#line 2268 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_free_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6947 "src/parser_proc.c" /* glr.c:821 */ +#line 6971 "src/parser_proc.c" /* glr.c:821 */ break; - case 634: -#line 2268 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 635: +#line 2274 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_free_exp **)(&(*yyvalp))) = psi_free_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_free_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6957 "src/parser_proc.c" /* glr.c:821 */ +#line 6981 "src/parser_proc.c" /* glr.c:821 */ break; - case 635: -#line 2276 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 636: +#line 2282 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(bool*)(&(*yyvalp))) = false; } -#line 6965 "src/parser_proc.c" /* glr.c:821 */ +#line 6989 "src/parser_proc.c" /* glr.c:821 */ break; - case 636: -#line 2279 "src/parser_proc_grammar.y" /* glr.c:821 */ + case 637: +#line 2285 "src/parser_proc_grammar.y" /* glr.c:821 */ { (*(bool*)(&(*yyvalp))) = true; } -#line 6973 "src/parser_proc.c" /* glr.c:821 */ +#line 6997 "src/parser_proc.c" /* glr.c:821 */ break; -#line 6977 "src/parser_proc.c" /* glr.c:821 */ +#line 7001 "src/parser_proc.c" /* glr.c:821 */ default: break; } @@ -7022,759 +7046,759 @@ yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, struct psi_parser switch (yytype) { case 141: /* binary_op_token */ -#line 294 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 298 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7028 "src/parser_proc.c" /* glr.c:851 */ +#line 7052 "src/parser_proc.c" /* glr.c:851 */ break; case 142: /* unary_op_token */ -#line 294 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 298 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7034 "src/parser_proc.c" /* glr.c:851 */ +#line 7058 "src/parser_proc.c" /* glr.c:851 */ break; case 143: /* name_token */ -#line 294 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 298 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7040 "src/parser_proc.c" /* glr.c:851 */ +#line 7064 "src/parser_proc.c" /* glr.c:851 */ break; case 144: /* any_noeol_token */ -#line 294 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 298 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7046 "src/parser_proc.c" /* glr.c:851 */ +#line 7070 "src/parser_proc.c" /* glr.c:851 */ break; case 149: /* lib */ -#line 288 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 292 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7052 "src/parser_proc.c" /* glr.c:851 */ +#line 7076 "src/parser_proc.c" /* glr.c:851 */ break; case 150: /* cpp */ -#line 303 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&(*yyvaluep))));} -#line 7058 "src/parser_proc.c" /* glr.c:851 */ +#line 7082 "src/parser_proc.c" /* glr.c:851 */ break; case 151: /* cpp_exp */ -#line 303 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&(*yyvaluep))));} -#line 7064 "src/parser_proc.c" /* glr.c:851 */ +#line 7088 "src/parser_proc.c" /* glr.c:851 */ break; case 153: /* cpp_message_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7070 "src/parser_proc.c" /* glr.c:851 */ +#line 7094 "src/parser_proc.c" /* glr.c:851 */ break; case 154: /* cpp_include_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7076 "src/parser_proc.c" /* glr.c:851 */ +#line 7100 "src/parser_proc.c" /* glr.c:851 */ break; case 155: /* cpp_header_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7082 "src/parser_proc.c" /* glr.c:851 */ +#line 7106 "src/parser_proc.c" /* glr.c:851 */ break; case 156: /* cpp_no_arg_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7088 "src/parser_proc.c" /* glr.c:851 */ +#line 7112 "src/parser_proc.c" /* glr.c:851 */ break; case 157: /* cpp_name_arg_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7094 "src/parser_proc.c" /* glr.c:851 */ +#line 7118 "src/parser_proc.c" /* glr.c:851 */ break; case 158: /* cpp_exp_arg_token */ -#line 291 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 295 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7100 "src/parser_proc.c" /* glr.c:851 */ +#line 7124 "src/parser_proc.c" /* glr.c:851 */ break; case 159: /* cpp_macro_decl */ -#line 305 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 309 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_cpp_macro_decl_free(&(*(struct psi_cpp_macro_decl **)(&(*yyvaluep))));} -#line 7106 "src/parser_proc.c" /* glr.c:851 */ +#line 7130 "src/parser_proc.c" /* glr.c:851 */ break; case 160: /* cpp_macro_sig */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7112 "src/parser_proc.c" /* glr.c:851 */ +#line 7136 "src/parser_proc.c" /* glr.c:851 */ break; case 161: /* cpp_macro_sig_args */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7118 "src/parser_proc.c" /* glr.c:851 */ +#line 7142 "src/parser_proc.c" /* glr.c:851 */ break; case 162: /* cpp_macro_decl_tokens */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7124 "src/parser_proc.c" /* glr.c:851 */ +#line 7148 "src/parser_proc.c" /* glr.c:851 */ break; case 163: /* cpp_macro_decl_token_list */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7130 "src/parser_proc.c" /* glr.c:851 */ +#line 7154 "src/parser_proc.c" /* glr.c:851 */ break; case 164: /* cpp_macro_exp */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 313 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_num_exp_free(&(*(struct psi_num_exp **)(&(*yyvaluep))));} -#line 7136 "src/parser_proc.c" /* glr.c:851 */ +#line 7160 "src/parser_proc.c" /* glr.c:851 */ break; case 165: /* cpp_macro_call_args */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7142 "src/parser_proc.c" /* glr.c:851 */ +#line 7166 "src/parser_proc.c" /* glr.c:851 */ break; case 166: /* cpp_macro_call_arg_list */ -#line 307 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7148 "src/parser_proc.c" /* glr.c:851 */ +#line 7172 "src/parser_proc.c" /* glr.c:851 */ break; case 167: /* constant */ -#line 315 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 319 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_const_free(&(*(struct psi_const **)(&(*yyvaluep))));} -#line 7154 "src/parser_proc.c" /* glr.c:851 */ +#line 7178 "src/parser_proc.c" /* glr.c:851 */ break; case 168: /* impl_def_val */ -#line 317 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 321 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_def_val_free(&(*(struct psi_impl_def_val **)(&(*yyvaluep))));} -#line 7160 "src/parser_proc.c" /* glr.c:851 */ +#line 7184 "src/parser_proc.c" /* glr.c:851 */ break; case 169: /* impl_def_val_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 316 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7166 "src/parser_proc.c" /* glr.c:851 */ +#line 7190 "src/parser_proc.c" /* glr.c:851 */ break; case 170: /* decl_typedef */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7172 "src/parser_proc.c" /* glr.c:851 */ +#line 7196 "src/parser_proc.c" /* glr.c:851 */ break; case 171: /* typedef */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7178 "src/parser_proc.c" /* glr.c:851 */ +#line 7202 "src/parser_proc.c" /* glr.c:851 */ break; case 172: /* typedef_anon */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7184 "src/parser_proc.c" /* glr.c:851 */ +#line 7208 "src/parser_proc.c" /* glr.c:851 */ break; case 173: /* typedef_decl */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7190 "src/parser_proc.c" /* glr.c:851 */ +#line 7214 "src/parser_proc.c" /* glr.c:851 */ break; case 174: /* typedef_anon_decl */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7196 "src/parser_proc.c" /* glr.c:851 */ +#line 7220 "src/parser_proc.c" /* glr.c:851 */ break; case 175: /* qualified_decl_type */ -#line 326 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 7202 "src/parser_proc.c" /* glr.c:851 */ +#line 7226 "src/parser_proc.c" /* glr.c:851 */ break; case 177: /* decl_type */ -#line 326 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 7208 "src/parser_proc.c" /* glr.c:851 */ +#line 7232 "src/parser_proc.c" /* glr.c:851 */ break; case 178: /* decl_type_complex */ -#line 326 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 7214 "src/parser_proc.c" /* glr.c:851 */ +#line 7238 "src/parser_proc.c" /* glr.c:851 */ break; case 179: /* decl_type_simple */ -#line 320 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7220 "src/parser_proc.c" /* glr.c:851 */ +#line 7244 "src/parser_proc.c" /* glr.c:851 */ break; case 180: /* decl_real_type */ -#line 320 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7226 "src/parser_proc.c" /* glr.c:851 */ +#line 7250 "src/parser_proc.c" /* glr.c:851 */ break; case 181: /* int_signed */ -#line 300 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 304 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7232 "src/parser_proc.c" /* glr.c:851 */ +#line 7256 "src/parser_proc.c" /* glr.c:851 */ break; case 182: /* int_width */ -#line 297 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 301 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7238 "src/parser_proc.c" /* glr.c:851 */ +#line 7262 "src/parser_proc.c" /* glr.c:851 */ break; case 183: /* decl_int_type */ -#line 320 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7244 "src/parser_proc.c" /* glr.c:851 */ +#line 7268 "src/parser_proc.c" /* glr.c:851 */ break; case 184: /* int_signed_types */ -#line 297 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 301 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7250 "src/parser_proc.c" /* glr.c:851 */ +#line 7274 "src/parser_proc.c" /* glr.c:851 */ break; case 185: /* signed_short_types */ -#line 300 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 304 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7256 "src/parser_proc.c" /* glr.c:851 */ +#line 7280 "src/parser_proc.c" /* glr.c:851 */ break; case 186: /* signed_long_types */ -#line 300 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 304 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7262 "src/parser_proc.c" /* glr.c:851 */ +#line 7286 "src/parser_proc.c" /* glr.c:851 */ break; case 187: /* int_width_types */ -#line 297 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 301 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7268 "src/parser_proc.c" /* glr.c:851 */ +#line 7292 "src/parser_proc.c" /* glr.c:851 */ break; case 188: /* decl_stmt */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7274 "src/parser_proc.c" /* glr.c:851 */ +#line 7298 "src/parser_proc.c" /* glr.c:851 */ break; case 189: /* decl_asm */ -#line 323 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 327 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7280 "src/parser_proc.c" /* glr.c:851 */ +#line 7304 "src/parser_proc.c" /* glr.c:851 */ break; case 190: /* quoted_strings */ -#line 323 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 327 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7286 "src/parser_proc.c" /* glr.c:851 */ +#line 7310 "src/parser_proc.c" /* glr.c:851 */ break; case 191: /* decl_extvar_stmt */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7292 "src/parser_proc.c" /* glr.c:851 */ +#line 7316 "src/parser_proc.c" /* glr.c:851 */ break; case 192: /* decl_extvar_list */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7298 "src/parser_proc.c" /* glr.c:851 */ +#line 7322 "src/parser_proc.c" /* glr.c:851 */ break; case 193: /* decl_vars */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7304 "src/parser_proc.c" /* glr.c:851 */ +#line 7328 "src/parser_proc.c" /* glr.c:851 */ break; case 194: /* ignored_decl */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7310 "src/parser_proc.c" /* glr.c:851 */ +#line 7334 "src/parser_proc.c" /* glr.c:851 */ break; case 199: /* decl */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7316 "src/parser_proc.c" /* glr.c:851 */ +#line 7340 "src/parser_proc.c" /* glr.c:851 */ break; case 200: /* decl_body */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7322 "src/parser_proc.c" /* glr.c:851 */ +#line 7346 "src/parser_proc.c" /* glr.c:851 */ break; case 201: /* decl_func_body */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7328 "src/parser_proc.c" /* glr.c:851 */ +#line 7352 "src/parser_proc.c" /* glr.c:851 */ break; case 202: /* decl_functor_body */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7334 "src/parser_proc.c" /* glr.c:851 */ +#line 7358 "src/parser_proc.c" /* glr.c:851 */ break; case 203: /* decl_anon_functor_body */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7340 "src/parser_proc.c" /* glr.c:851 */ +#line 7364 "src/parser_proc.c" /* glr.c:851 */ break; case 204: /* decl_functor */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7346 "src/parser_proc.c" /* glr.c:851 */ +#line 7370 "src/parser_proc.c" /* glr.c:851 */ break; case 205: /* decl_anon_functor */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7352 "src/parser_proc.c" /* glr.c:851 */ +#line 7376 "src/parser_proc.c" /* glr.c:851 */ break; case 206: /* decl_func */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7358 "src/parser_proc.c" /* glr.c:851 */ +#line 7382 "src/parser_proc.c" /* glr.c:851 */ break; case 207: /* decl_args */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7364 "src/parser_proc.c" /* glr.c:851 */ +#line 7388 "src/parser_proc.c" /* glr.c:851 */ break; case 208: /* decl_arg_list */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7370 "src/parser_proc.c" /* glr.c:851 */ +#line 7394 "src/parser_proc.c" /* glr.c:851 */ break; case 209: /* decl_anon_arg */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7376 "src/parser_proc.c" /* glr.c:851 */ +#line 7400 "src/parser_proc.c" /* glr.c:851 */ break; case 210: /* decl_arg */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7382 "src/parser_proc.c" /* glr.c:851 */ +#line 7406 "src/parser_proc.c" /* glr.c:851 */ break; case 211: /* decl_var */ -#line 332 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 336 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_var_free(&(*(struct psi_decl_var **)(&(*yyvaluep))));} -#line 7388 "src/parser_proc.c" /* glr.c:851 */ +#line 7412 "src/parser_proc.c" /* glr.c:851 */ break; case 212: /* decl_union */ -#line 336 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 340 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_union_free(&(*(struct psi_decl_union **)(&(*yyvaluep))));} -#line 7394 "src/parser_proc.c" /* glr.c:851 */ +#line 7418 "src/parser_proc.c" /* glr.c:851 */ break; case 213: /* decl_struct */ -#line 334 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_struct_free(&(*(struct psi_decl_struct **)(&(*yyvaluep))));} -#line 7400 "src/parser_proc.c" /* glr.c:851 */ +#line 7424 "src/parser_proc.c" /* glr.c:851 */ break; case 214: /* decl_struct_args */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7406 "src/parser_proc.c" /* glr.c:851 */ +#line 7430 "src/parser_proc.c" /* glr.c:851 */ break; case 215: /* struct_args_block */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7412 "src/parser_proc.c" /* glr.c:851 */ +#line 7436 "src/parser_proc.c" /* glr.c:851 */ break; case 216: /* struct_args */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7418 "src/parser_proc.c" /* glr.c:851 */ +#line 7442 "src/parser_proc.c" /* glr.c:851 */ break; case 217: /* struct_arg_var_list */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7424 "src/parser_proc.c" /* glr.c:851 */ +#line 7448 "src/parser_proc.c" /* glr.c:851 */ break; case 218: /* decl_vars_with_layout */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7430 "src/parser_proc.c" /* glr.c:851 */ +#line 7454 "src/parser_proc.c" /* glr.c:851 */ break; case 219: /* decl_enum */ -#line 338 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_enum_free(&(*(struct psi_decl_enum **)(&(*yyvaluep))));} -#line 7436 "src/parser_proc.c" /* glr.c:851 */ +#line 7460 "src/parser_proc.c" /* glr.c:851 */ break; case 220: /* decl_enum_items */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7442 "src/parser_proc.c" /* glr.c:851 */ +#line 7466 "src/parser_proc.c" /* glr.c:851 */ break; case 221: /* decl_enum_item */ -#line 340 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 344 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_decl_enum_item_free(&(*(struct psi_decl_enum_item **)(&(*yyvaluep))));} -#line 7448 "src/parser_proc.c" /* glr.c:851 */ +#line 7472 "src/parser_proc.c" /* glr.c:851 */ break; case 222: /* num_exp */ -#line 398 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 402 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_num_exp_free(&(*(struct psi_num_exp **)(&(*yyvaluep))));} -#line 7454 "src/parser_proc.c" /* glr.c:851 */ +#line 7478 "src/parser_proc.c" /* glr.c:851 */ break; case 223: /* number */ -#line 400 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 404 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7460 "src/parser_proc.c" /* glr.c:851 */ +#line 7484 "src/parser_proc.c" /* glr.c:851 */ break; case 224: /* sizeof */ -#line 350 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 354 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7466 "src/parser_proc.c" /* glr.c:851 */ +#line 7490 "src/parser_proc.c" /* glr.c:851 */ break; case 225: /* sizeof_body */ -#line 350 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 354 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7472 "src/parser_proc.c" /* glr.c:851 */ +#line 7496 "src/parser_proc.c" /* glr.c:851 */ break; case 226: /* sizeof_body_notypes */ -#line 350 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 354 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7478 "src/parser_proc.c" /* glr.c:851 */ +#line 7502 "src/parser_proc.c" /* glr.c:851 */ break; case 227: /* enum_name */ -#line 288 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 292 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7484 "src/parser_proc.c" /* glr.c:851 */ +#line 7508 "src/parser_proc.c" /* glr.c:851 */ break; case 228: /* union_name */ -#line 288 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 292 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7490 "src/parser_proc.c" /* glr.c:851 */ +#line 7514 "src/parser_proc.c" /* glr.c:851 */ break; case 229: /* struct_name */ -#line 288 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 292 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7496 "src/parser_proc.c" /* glr.c:851 */ +#line 7520 "src/parser_proc.c" /* glr.c:851 */ break; case 230: /* optional_name */ -#line 288 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 292 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7502 "src/parser_proc.c" /* glr.c:851 */ +#line 7526 "src/parser_proc.c" /* glr.c:851 */ break; case 232: /* decl_layout */ -#line 347 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 351 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_layout_free(&(*(struct psi_layout **)(&(*yyvaluep))));} -#line 7508 "src/parser_proc.c" /* glr.c:851 */ +#line 7532 "src/parser_proc.c" /* glr.c:851 */ break; case 233: /* align_and_size */ -#line 345 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 349 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7514 "src/parser_proc.c" /* glr.c:851 */ +#line 7538 "src/parser_proc.c" /* glr.c:851 */ break; case 234: /* array_size */ -#line 403 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 407 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7520 "src/parser_proc.c" /* glr.c:851 */ +#line 7544 "src/parser_proc.c" /* glr.c:851 */ break; case 236: /* indirection */ -#line 403 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 407 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7526 "src/parser_proc.c" /* glr.c:851 */ +#line 7550 "src/parser_proc.c" /* glr.c:851 */ break; case 237: /* pointers */ -#line 403 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 407 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7532 "src/parser_proc.c" /* glr.c:851 */ +#line 7556 "src/parser_proc.c" /* glr.c:851 */ break; case 238: /* asterisks */ -#line 403 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 407 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7538 "src/parser_proc.c" /* glr.c:851 */ +#line 7562 "src/parser_proc.c" /* glr.c:851 */ break; case 241: /* impl */ -#line 353 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 357 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_free(&(*(struct psi_impl **)(&(*yyvaluep))));} -#line 7544 "src/parser_proc.c" /* glr.c:851 */ +#line 7568 "src/parser_proc.c" /* glr.c:851 */ break; case 242: /* impl_func */ -#line 355 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 359 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_func_free(&(*(struct psi_impl_func **)(&(*yyvaluep))));} -#line 7550 "src/parser_proc.c" /* glr.c:851 */ +#line 7574 "src/parser_proc.c" /* glr.c:851 */ break; case 243: /* impl_args */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7556 "src/parser_proc.c" /* glr.c:851 */ +#line 7580 "src/parser_proc.c" /* glr.c:851 */ break; case 244: /* impl_arg */ -#line 357 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 361 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_arg_free(&(*(struct psi_impl_arg **)(&(*yyvaluep))));} -#line 7562 "src/parser_proc.c" /* glr.c:851 */ +#line 7586 "src/parser_proc.c" /* glr.c:851 */ break; case 245: /* impl_var */ -#line 361 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 365 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_var_free(&(*(struct psi_impl_var **)(&(*yyvaluep))));} -#line 7568 "src/parser_proc.c" /* glr.c:851 */ +#line 7592 "src/parser_proc.c" /* glr.c:851 */ break; case 246: /* impl_type */ -#line 359 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 363 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_type_free(&(*(struct psi_impl_type **)(&(*yyvaluep))));} -#line 7574 "src/parser_proc.c" /* glr.c:851 */ +#line 7598 "src/parser_proc.c" /* glr.c:851 */ break; case 247: /* impl_type_restricted */ -#line 359 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 363 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_type_free(&(*(struct psi_impl_type **)(&(*yyvaluep))));} -#line 7580 "src/parser_proc.c" /* glr.c:851 */ +#line 7604 "src/parser_proc.c" /* glr.c:851 */ break; case 248: /* impl_type_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7586 "src/parser_proc.c" /* glr.c:851 */ +#line 7610 "src/parser_proc.c" /* glr.c:851 */ break; case 249: /* impl_type_restricted_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7592 "src/parser_proc.c" /* glr.c:851 */ +#line 7616 "src/parser_proc.c" /* glr.c:851 */ break; case 250: /* impl_type_extended_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7598 "src/parser_proc.c" /* glr.c:851 */ +#line 7622 "src/parser_proc.c" /* glr.c:851 */ break; case 251: /* impl_stmts */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7604 "src/parser_proc.c" /* glr.c:851 */ +#line 7628 "src/parser_proc.c" /* glr.c:851 */ break; case 252: /* impl_stmt */ -#line 391 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_impl_stmt_free(&(*(struct psi_token ***)(&(*yyvaluep))));} -#line 7610 "src/parser_proc.c" /* glr.c:851 */ +#line 7634 "src/parser_proc.c" /* glr.c:851 */ break; case 253: /* let_stmt */ -#line 364 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 368 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_stmt_free(&(*(struct psi_let_stmt **)(&(*yyvaluep))));} -#line 7616 "src/parser_proc.c" /* glr.c:851 */ +#line 7640 "src/parser_proc.c" /* glr.c:851 */ break; case 254: /* let_exp */ -#line 366 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 370 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7622 "src/parser_proc.c" /* glr.c:851 */ +#line 7646 "src/parser_proc.c" /* glr.c:851 */ break; case 255: /* let_exp_byref */ -#line 366 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 370 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7628 "src/parser_proc.c" /* glr.c:851 */ +#line 7652 "src/parser_proc.c" /* glr.c:851 */ break; case 256: /* let_exp_assign */ -#line 366 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 370 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7634 "src/parser_proc.c" /* glr.c:851 */ +#line 7658 "src/parser_proc.c" /* glr.c:851 */ break; case 257: /* let_calloc */ -#line 368 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 372 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_calloc_free(&(*(struct psi_let_calloc **)(&(*yyvaluep))));} -#line 7640 "src/parser_proc.c" /* glr.c:851 */ +#line 7664 "src/parser_proc.c" /* glr.c:851 */ break; case 258: /* let_callback */ -#line 370 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 374 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_callback_free(&(*(struct psi_let_callback **)(&(*yyvaluep))));} -#line 7646 "src/parser_proc.c" /* glr.c:851 */ +#line 7670 "src/parser_proc.c" /* glr.c:851 */ break; case 259: /* let_func */ -#line 372 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 376 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_let_func_free(&(*(struct psi_let_func **)(&(*yyvaluep))));} -#line 7652 "src/parser_proc.c" /* glr.c:851 */ +#line 7676 "src/parser_proc.c" /* glr.c:851 */ break; case 260: /* let_func_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7658 "src/parser_proc.c" /* glr.c:851 */ +#line 7682 "src/parser_proc.c" /* glr.c:851 */ break; case 261: /* let_func_exps */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7664 "src/parser_proc.c" /* glr.c:851 */ +#line 7688 "src/parser_proc.c" /* glr.c:851 */ break; case 262: /* let_exps */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7670 "src/parser_proc.c" /* glr.c:851 */ +#line 7694 "src/parser_proc.c" /* glr.c:851 */ break; case 263: /* callback_rval */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7676 "src/parser_proc.c" /* glr.c:851 */ +#line 7700 "src/parser_proc.c" /* glr.c:851 */ break; case 264: /* callback_arg_list */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7682 "src/parser_proc.c" /* glr.c:851 */ +#line 7706 "src/parser_proc.c" /* glr.c:851 */ break; case 265: /* callback_args */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7688 "src/parser_proc.c" /* glr.c:851 */ +#line 7712 "src/parser_proc.c" /* glr.c:851 */ break; case 266: /* return_stmt */ -#line 382 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 386 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_return_stmt_free(&(*(struct psi_return_stmt **)(&(*yyvaluep))));} -#line 7694 "src/parser_proc.c" /* glr.c:851 */ +#line 7718 "src/parser_proc.c" /* glr.c:851 */ break; case 267: /* return_exp */ -#line 384 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 388 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_return_exp_free(&(*(struct psi_return_exp **)(&(*yyvaluep))));} -#line 7700 "src/parser_proc.c" /* glr.c:851 */ +#line 7724 "src/parser_proc.c" /* glr.c:851 */ break; case 268: /* call_decl_vars */ -#line 342 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7706 "src/parser_proc.c" /* glr.c:851 */ +#line 7730 "src/parser_proc.c" /* glr.c:851 */ break; case 269: /* set_stmt */ -#line 374 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 378 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_set_stmt_free(&(*(struct psi_set_stmt **)(&(*yyvaluep))));} -#line 7712 "src/parser_proc.c" /* glr.c:851 */ +#line 7736 "src/parser_proc.c" /* glr.c:851 */ break; case 270: /* set_exp */ -#line 376 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 380 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_set_exp_free(&(*(struct psi_set_exp **)(&(*yyvaluep))));} -#line 7718 "src/parser_proc.c" /* glr.c:851 */ +#line 7742 "src/parser_proc.c" /* glr.c:851 */ break; case 271: /* set_func */ -#line 378 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 382 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_set_func_free(&(*(struct psi_set_func **)(&(*yyvaluep))));} -#line 7724 "src/parser_proc.c" /* glr.c:851 */ +#line 7748 "src/parser_proc.c" /* glr.c:851 */ break; case 272: /* set_func_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7730 "src/parser_proc.c" /* glr.c:851 */ +#line 7754 "src/parser_proc.c" /* glr.c:851 */ break; case 273: /* set_func_exps */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7736 "src/parser_proc.c" /* glr.c:851 */ +#line 7760 "src/parser_proc.c" /* glr.c:851 */ break; case 274: /* set_exps */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7742 "src/parser_proc.c" /* glr.c:851 */ +#line 7766 "src/parser_proc.c" /* glr.c:851 */ break; case 275: /* assert_stmt */ -#line 380 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 384 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_assert_stmt_free(&(*(struct psi_assert_stmt **)(&(*yyvaluep))));} -#line 7748 "src/parser_proc.c" /* glr.c:851 */ +#line 7772 "src/parser_proc.c" /* glr.c:851 */ break; case 276: /* assert_stmt_token */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 397 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7754 "src/parser_proc.c" /* glr.c:851 */ +#line 7778 "src/parser_proc.c" /* glr.c:851 */ break; case 277: /* free_stmt */ -#line 386 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 390 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_free_stmt_free(&(*(struct psi_free_stmt **)(&(*yyvaluep))));} -#line 7760 "src/parser_proc.c" /* glr.c:851 */ +#line 7784 "src/parser_proc.c" /* glr.c:851 */ break; case 278: /* free_exps */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7766 "src/parser_proc.c" /* glr.c:851 */ +#line 7790 "src/parser_proc.c" /* glr.c:851 */ break; case 279: /* free_exp */ -#line 388 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 392 "src/parser_proc_grammar.y" /* glr.c:851 */ {psi_free_exp_free(&(*(struct psi_free_exp **)(&(*yyvaluep))));} -#line 7772 "src/parser_proc.c" /* glr.c:851 */ +#line 7796 "src/parser_proc.c" /* glr.c:851 */ break; case 280: /* reference */ -#line 405 "src/parser_proc_grammar.y" /* glr.c:851 */ +#line 409 "src/parser_proc_grammar.y" /* glr.c:851 */ {} -#line 7778 "src/parser_proc.c" /* glr.c:851 */ +#line 7802 "src/parser_proc.c" /* glr.c:851 */ break; @@ -7831,7 +7855,7 @@ yylhsNonterm (yyRuleNum yyrule) } #define yypact_value_is_default(Yystate) \ - (!!((Yystate) == (-731))) + (!!((Yystate) == (-719))) /** True iff LR state YYSTATE has only a default reduction (regardless * of token). */ @@ -9123,11 +9147,11 @@ yyparse (struct psi_parser *P, struct psi_plist *tokens, size_t *index) yylval = yyval_default; /* User initialization code. */ -#line 123 "src/parser_proc_grammar.y" /* glr.c:2265 */ +#line 127 "src/parser_proc_grammar.y" /* glr.c:2265 */ { } -#line 9131 "src/parser_proc.c" /* glr.c:2265 */ +#line 9155 "src/parser_proc.c" /* glr.c:2265 */ if (! yyinitGLRStack (yystackp, YYINITDEPTH)) goto yyexhaustedlab; @@ -9430,7 +9454,7 @@ yypdumpstack (yyGLRStack* yystackp) #define yydebug psi_parser_proc_debug #define yynerrs psi_parser_proc_nerrs -#line 2288 "src/parser_proc_grammar.y" /* glr.c:2578 */ +#line 2294 "src/parser_proc_grammar.y" /* glr.c:2578 */ /* epilogue */ diff --git a/src/parser_proc.h b/src/parser_proc.h index 57a6932..aec433d 100644 --- a/src/parser_proc.h +++ b/src/parser_proc.h @@ -40,7 +40,7 @@ extern int psi_parser_proc_debug; #endif /* "%code requires" blocks. */ -#line 94 "src/parser_proc_grammar.y" /* glr.c:197 */ +#line 98 "src/parser_proc_grammar.y" /* glr.c:197 */ #include "plist.h" #include "types/layout.h" diff --git a/src/parser_proc_grammar.y b/src/parser_proc_grammar.y index 5c2e24d..f9925cb 100644 --- a/src/parser_proc_grammar.y +++ b/src/parser_proc_grammar.y @@ -87,6 +87,10 @@ static inline void psi_parser_proc_add_impl(struct psi_parser *P, struct psi_imp } P->impls = psi_plist_add(P->impls, &impl); } +static inline void psi_parser_proc_add_lib(struct psi_parser *P, zend_string *lib) { + char *libname = strdup(lib->val); + P->file.libnames = psi_plist_add(P->file.libnames, &libname); +} /* end code */ } @@ -435,8 +439,7 @@ block: } } | lib { - char *libname = strdup($lib->text->val); - P->file.libnames = psi_plist_add(P->file.libnames, &libname); + psi_parser_proc_add_lib(P, $lib->text); } | constant { psi_parser_proc_add_const(P, $constant); @@ -474,6 +477,9 @@ lib: LIB QUOTED_STRING EOS { $lib = $QUOTED_STRING; } +| HASH PRAGMA LIB QUOTED_STRING EOS { + $lib = $QUOTED_STRING; +} ; cpp: diff --git a/src/parser_scan.c b/src/parser_scan.c index 262496b..58abfc7 100644 --- a/src/parser_scan.c +++ b/src/parser_scan.c @@ -1,4 +1,4 @@ -/* Generated by re2c 1.1.1 on Mon Dec 10 08:53:39 2018 */ +/* Generated by re2c 1.1.1 on Mon Dec 10 13:51:37 2018 */ #line 1 "src/parser_scan.re" /******************************************************************************* Copyright (c) 2016, Michael Wallner . @@ -69,9 +69,8 @@ struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input struct psi_plist *tokens; struct psi_token *token; const char *tok, *cur, *lim, *mrk, *eol, *ctxmrk; - unsigned parens, lines = 1; + unsigned char_width, parens, lines = 1; bool escaped; - token_t char_width; PSI_DEBUG_PRINT(P, "PSI: scanning %s\n", I->file->val); @@ -87,7 +86,7 @@ struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input (void) ctxmrk; -#line 91 "src/parser_scan.c" +#line 90 "src/parser_scan.c" { unsigned char yych; unsigned int yyaccept = 0; @@ -212,9 +211,9 @@ struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input yy2: ++cur; yy3: -#line 256 "src/parser_scan.re" +#line 254 "src/parser_scan.re" { CHECKEOF(); NEWTOKEN(-2); goto error; } -#line 218 "src/parser_scan.c" +#line 217 "src/parser_scan.c" yy4: ++cur; if (lim <= cur) CHECKEOF();; @@ -226,14 +225,14 @@ yy4: default: goto yy6; } yy6: -#line 255 "src/parser_scan.re" +#line 253 "src/parser_scan.re" { NEWTOKEN(PSI_T_WHITESPACE); goto start; } -#line 232 "src/parser_scan.c" +#line 231 "src/parser_scan.c" yy7: ++cur; -#line 254 "src/parser_scan.re" +#line 252 "src/parser_scan.re" { NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } -#line 237 "src/parser_scan.c" +#line 236 "src/parser_scan.c" yy9: yych = *++cur; switch (yych) { @@ -241,14 +240,14 @@ yy9: default: goto yy10; } yy10: -#line 157 "src/parser_scan.re" +#line 156 "src/parser_scan.re" { NEWTOKEN(PSI_T_NOT); goto start; } -#line 247 "src/parser_scan.c" +#line 246 "src/parser_scan.c" yy11: ++cur; -#line 130 "src/parser_scan.re" +#line 129 "src/parser_scan.re" { escaped = false; tok += 1; goto string; } -#line 252 "src/parser_scan.c" +#line 251 "src/parser_scan.c" yy13: yych = *++cur; switch (yych) { @@ -256,9 +255,9 @@ yy13: default: goto yy14; } yy14: -#line 140 "src/parser_scan.re" +#line 139 "src/parser_scan.re" { NEWTOKEN(PSI_T_HASH); goto start; } -#line 262 "src/parser_scan.c" +#line 261 "src/parser_scan.c" yy15: yych = *++cur; switch (yych) { @@ -331,9 +330,9 @@ yy15: } yy16: ++cur; -#line 158 "src/parser_scan.re" +#line 157 "src/parser_scan.re" { NEWTOKEN(PSI_T_MODULO); goto start; } -#line 337 "src/parser_scan.c" +#line 336 "src/parser_scan.c" yy18: yych = *++cur; switch (yych) { @@ -341,44 +340,44 @@ yy18: default: goto yy19; } yy19: -#line 159 "src/parser_scan.re" +#line 158 "src/parser_scan.re" { NEWTOKEN(PSI_T_AMPERSAND); goto start; } -#line 347 "src/parser_scan.c" +#line 346 "src/parser_scan.c" yy20: ++cur; -#line 129 "src/parser_scan.re" +#line 128 "src/parser_scan.re" { escaped = false; tok += 1; goto character; } -#line 352 "src/parser_scan.c" +#line 351 "src/parser_scan.c" yy22: ++cur; -#line 141 "src/parser_scan.re" +#line 140 "src/parser_scan.re" { NEWTOKEN(PSI_T_LPAREN); goto start; } -#line 357 "src/parser_scan.c" +#line 356 "src/parser_scan.c" yy24: ++cur; -#line 142 "src/parser_scan.re" +#line 141 "src/parser_scan.re" { NEWTOKEN(PSI_T_RPAREN); goto start; } -#line 362 "src/parser_scan.c" +#line 361 "src/parser_scan.c" yy26: ++cur; -#line 155 "src/parser_scan.re" +#line 154 "src/parser_scan.re" { NEWTOKEN(PSI_T_ASTERISK); goto start; } -#line 367 "src/parser_scan.c" +#line 366 "src/parser_scan.c" yy28: ++cur; -#line 160 "src/parser_scan.re" +#line 159 "src/parser_scan.re" { NEWTOKEN(PSI_T_PLUS); goto start; } -#line 372 "src/parser_scan.c" +#line 371 "src/parser_scan.c" yy30: ++cur; -#line 144 "src/parser_scan.re" +#line 143 "src/parser_scan.re" { NEWTOKEN(PSI_T_COMMA); goto start; } -#line 377 "src/parser_scan.c" +#line 376 "src/parser_scan.c" yy32: ++cur; -#line 161 "src/parser_scan.re" +#line 160 "src/parser_scan.re" { NEWTOKEN(PSI_T_MINUS); goto start; } -#line 382 "src/parser_scan.c" +#line 381 "src/parser_scan.c" yy34: yyaccept = 0; yych = *(mrk = ++cur); @@ -397,9 +396,9 @@ yy34: default: goto yy35; } yy35: -#line 172 "src/parser_scan.re" +#line 171 "src/parser_scan.re" { NEWTOKEN(PSI_T_PERIOD); goto start; } -#line 403 "src/parser_scan.c" +#line 402 "src/parser_scan.c" yy36: yych = *++cur; switch (yych) { @@ -408,9 +407,9 @@ yy36: default: goto yy37; } yy37: -#line 162 "src/parser_scan.re" +#line 161 "src/parser_scan.re" { NEWTOKEN(PSI_T_SLASH); goto start; } -#line 414 "src/parser_scan.c" +#line 413 "src/parser_scan.c" yy38: yyaccept = 1; yych = *(mrk = ++cur); @@ -423,9 +422,9 @@ yy38: default: goto yy125; } yy39: -#line 116 "src/parser_scan.re" +#line 115 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT; goto start; } -#line 429 "src/parser_scan.c" +#line 428 "src/parser_scan.c" yy40: yyaccept = 1; mrk = ++cur; @@ -453,14 +452,14 @@ yy40: } yy42: ++cur; -#line 145 "src/parser_scan.re" +#line 144 "src/parser_scan.re" { NEWTOKEN(PSI_T_COLON); goto start; } -#line 459 "src/parser_scan.c" +#line 458 "src/parser_scan.c" yy44: ++cur; -#line 143 "src/parser_scan.re" +#line 142 "src/parser_scan.re" { NEWTOKEN(PSI_T_EOS); goto start; } -#line 464 "src/parser_scan.c" +#line 463 "src/parser_scan.c" yy46: yyaccept = 2; yych = *(mrk = ++cur); @@ -536,9 +535,9 @@ yy46: default: goto yy47; } yy47: -#line 170 "src/parser_scan.re" +#line 169 "src/parser_scan.re" { NEWTOKEN(PSI_T_LCHEVR); goto start; } -#line 542 "src/parser_scan.c" +#line 541 "src/parser_scan.c" yy48: yych = *++cur; switch (yych) { @@ -546,9 +545,9 @@ yy48: default: goto yy49; } yy49: -#line 154 "src/parser_scan.re" +#line 153 "src/parser_scan.re" { NEWTOKEN(PSI_T_EQUALS); goto start; } -#line 552 "src/parser_scan.c" +#line 551 "src/parser_scan.c" yy50: yych = *++cur; switch (yych) { @@ -557,14 +556,14 @@ yy50: default: goto yy51; } yy51: -#line 171 "src/parser_scan.re" +#line 170 "src/parser_scan.re" { NEWTOKEN(PSI_T_RCHEVR); goto start; } -#line 563 "src/parser_scan.c" +#line 562 "src/parser_scan.c" yy52: ++cur; -#line 174 "src/parser_scan.re" +#line 173 "src/parser_scan.re" { NEWTOKEN(PSI_T_IIF); goto start; } -#line 568 "src/parser_scan.c" +#line 567 "src/parser_scan.c" yy54: yyaccept = 3; yych = *(mrk = ++cur); @@ -576,9 +575,9 @@ yy54: default: goto yy62; } yy55: -#line 249 "src/parser_scan.re" +#line 247 "src/parser_scan.re" { NEWTOKEN(PSI_T_NAME); goto start; } -#line 582 "src/parser_scan.c" +#line 581 "src/parser_scan.c" yy56: yyaccept = 3; yych = *(mrk = ++cur); @@ -821,9 +820,9 @@ yy74: } yy75: ++cur; -#line 148 "src/parser_scan.re" +#line 147 "src/parser_scan.re" { NEWTOKEN(PSI_T_LBRACKET); goto start; } -#line 827 "src/parser_scan.c" +#line 826 "src/parser_scan.c" yy77: yych = *++cur; switch (yych) { @@ -905,19 +904,19 @@ yy77: default: goto yy183; } yy78: -#line 163 "src/parser_scan.re" +#line 162 "src/parser_scan.re" { NEWTOKEN(PSI_T_BSLASH); goto start; } -#line 911 "src/parser_scan.c" +#line 910 "src/parser_scan.c" yy79: ++cur; -#line 149 "src/parser_scan.re" +#line 148 "src/parser_scan.re" { NEWTOKEN(PSI_T_RBRACKET); goto start; } -#line 916 "src/parser_scan.c" +#line 915 "src/parser_scan.c" yy81: ++cur; -#line 165 "src/parser_scan.re" +#line 164 "src/parser_scan.re" { NEWTOKEN(PSI_T_CARET); goto start; } -#line 921 "src/parser_scan.c" +#line 920 "src/parser_scan.c" yy83: yyaccept = 3; yych = *(mrk = ++cur); @@ -1057,9 +1056,9 @@ yy95: } yy96: ++cur; -#line 146 "src/parser_scan.re" +#line 145 "src/parser_scan.re" { NEWTOKEN(PSI_T_LBRACE); goto start; } -#line 1063 "src/parser_scan.c" +#line 1062 "src/parser_scan.c" yy98: yych = *++cur; switch (yych) { @@ -1067,29 +1066,29 @@ yy98: default: goto yy99; } yy99: -#line 164 "src/parser_scan.re" +#line 163 "src/parser_scan.re" { NEWTOKEN(PSI_T_PIPE); goto start; } -#line 1073 "src/parser_scan.c" +#line 1072 "src/parser_scan.c" yy100: ++cur; -#line 147 "src/parser_scan.re" +#line 146 "src/parser_scan.re" { NEWTOKEN(PSI_T_RBRACE); goto start; } -#line 1078 "src/parser_scan.c" +#line 1077 "src/parser_scan.c" yy102: ++cur; -#line 156 "src/parser_scan.re" +#line 155 "src/parser_scan.re" { NEWTOKEN(PSI_T_TILDE); goto start; } -#line 1083 "src/parser_scan.c" +#line 1082 "src/parser_scan.c" yy104: ++cur; -#line 150 "src/parser_scan.re" +#line 149 "src/parser_scan.re" { NEWTOKEN(PSI_T_CMP_NE); goto start; } -#line 1088 "src/parser_scan.c" +#line 1087 "src/parser_scan.c" yy106: ++cur; -#line 139 "src/parser_scan.re" +#line 138 "src/parser_scan.re" { NEWTOKEN(PSI_T_CPP_PASTE); goto start; } -#line 1093 "src/parser_scan.c" +#line 1092 "src/parser_scan.c" yy108: ++cur; if (lim <= cur) CHECKEOF();; @@ -1163,14 +1162,14 @@ yy108: default: goto yy108; } yy110: -#line 251 "src/parser_scan.re" +#line 249 "src/parser_scan.re" { NEWTOKEN(PSI_T_DOLLAR_NAME); goto start; } -#line 1169 "src/parser_scan.c" +#line 1168 "src/parser_scan.c" yy111: ++cur; -#line 152 "src/parser_scan.re" +#line 151 "src/parser_scan.re" { NEWTOKEN(PSI_T_AND); goto start; } -#line 1174 "src/parser_scan.c" +#line 1173 "src/parser_scan.c" yy113: yych = *++cur; switch (yych) { @@ -1244,23 +1243,22 @@ yy114: case 61: goto yy514; case 62: goto yy519; case 63: goto yy524; - case 64: goto yy532; - case 65: goto yy536; - case 66: goto yy538; - case 67: goto yy540; - case 68: goto yy542; - case 69: goto yy547; - case 70: goto yy549; - case 71: goto yy558; - case 72: goto yy560; - case 73: goto yy565; - case 74: goto yy567; - case 75: goto yy575; - case 76: goto yy579; - case 77: goto yy583; - case 78: goto yy587; - case 79: goto yy589; - default: goto yy594; + case 64: goto yy530; + case 65: goto yy534; + case 66: goto yy536; + case 67: goto yy538; + case 68: goto yy540; + case 69: goto yy545; + case 70: goto yy547; + case 71: goto yy554; + case 72: goto yy556; + case 73: goto yy561; + case 74: goto yy563; + case 75: goto yy570; + case 76: goto yy574; + case 77: goto yy577; + case 78: goto yy581; + default: goto yy586; } yy115: yyaccept = 4; @@ -1287,19 +1285,19 @@ yy115: default: goto yy117; } yy117: -#line 122 "src/parser_scan.re" +#line 121 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT; goto start; } -#line 1293 "src/parser_scan.c" +#line 1291 "src/parser_scan.c" yy118: ++cur; -#line 136 "src/parser_scan.re" +#line 135 "src/parser_scan.re" { goto comment; } -#line 1298 "src/parser_scan.c" +#line 1296 "src/parser_scan.c" yy120: ++cur; -#line 137 "src/parser_scan.re" +#line 136 "src/parser_scan.re" { goto comment_sl; } -#line 1303 "src/parser_scan.c" +#line 1301 "src/parser_scan.c" yy122: yyaccept = 4; mrk = ++cur; @@ -1375,9 +1373,9 @@ yy127: } yy128: cur -= 1; -#line 118 "src/parser_scan.re" +#line 117 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_L; cur += 1; goto start; } -#line 1381 "src/parser_scan.c" +#line 1379 "src/parser_scan.c" yy129: yych = *++cur; switch (yych) { @@ -1387,9 +1385,9 @@ yy129: } yy130: cur -= 1; -#line 117 "src/parser_scan.re" +#line 116 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_U; cur += 1; goto start; } -#line 1393 "src/parser_scan.c" +#line 1391 "src/parser_scan.c" yy131: yych = *++cur; switch (yych) { @@ -1493,29 +1491,29 @@ yy132: } yy134: ++cur; -#line 166 "src/parser_scan.re" +#line 165 "src/parser_scan.re" { NEWTOKEN(PSI_T_LSHIFT); goto start; } -#line 1499 "src/parser_scan.c" +#line 1497 "src/parser_scan.c" yy136: ++cur; -#line 168 "src/parser_scan.re" +#line 167 "src/parser_scan.re" { NEWTOKEN(PSI_T_CMP_LE); goto start; } -#line 1504 "src/parser_scan.c" +#line 1502 "src/parser_scan.c" yy138: ++cur; -#line 151 "src/parser_scan.re" +#line 150 "src/parser_scan.re" { NEWTOKEN(PSI_T_CMP_EQ); goto start; } -#line 1509 "src/parser_scan.c" +#line 1507 "src/parser_scan.c" yy140: ++cur; -#line 169 "src/parser_scan.re" +#line 168 "src/parser_scan.re" { NEWTOKEN(PSI_T_CMP_GE); goto start; } -#line 1514 "src/parser_scan.c" +#line 1512 "src/parser_scan.c" yy142: ++cur; -#line 167 "src/parser_scan.re" +#line 166 "src/parser_scan.re" { NEWTOKEN(PSI_T_RSHIFT); goto start; } -#line 1519 "src/parser_scan.c" +#line 1517 "src/parser_scan.c" yy144: yyaccept = 3; yych = *(mrk = ++cur); @@ -1596,9 +1594,9 @@ yy145: default: goto yy61; } yy146: -#line 229 "src/parser_scan.re" +#line 227 "src/parser_scan.re" { NEWTOKEN(PSI_T_AS); goto start; } -#line 1602 "src/parser_scan.c" +#line 1600 "src/parser_scan.c" yy147: ++cur; if (lim <= cur) CHECKEOF();; @@ -1847,9 +1845,9 @@ yy159: default: goto yy61; } yy160: -#line 199 "src/parser_scan.re" +#line 197 "src/parser_scan.re" { NEWTOKEN(PSI_T_IF); goto start; } -#line 1853 "src/parser_scan.c" +#line 1851 "src/parser_scan.c" yy161: yyaccept = 3; yych = *(mrk = ++cur); @@ -1863,9 +1861,9 @@ yy161: yy162: ++cur; cur -= 1; -#line 134 "src/parser_scan.re" +#line 133 "src/parser_scan.re" { char_width = sizeof(wchar_t); } -#line 1869 "src/parser_scan.c" +#line 1867 "src/parser_scan.c" yy164: yyaccept = 3; yych = *(mrk = ++cur); @@ -1982,9 +1980,9 @@ yy177: yy178: ++cur; cur -= 1; -#line 133 "src/parser_scan.re" +#line 132 "src/parser_scan.re" { char_width = 4; } -#line 1988 "src/parser_scan.c" +#line 1986 "src/parser_scan.c" yy180: yyaccept = 3; yych = *(mrk = ++cur); @@ -2083,9 +2081,9 @@ yy183: default: goto yy183; } yy185: -#line 250 "src/parser_scan.re" +#line 248 "src/parser_scan.re" { NEWTOKEN(PSI_T_NSNAME); goto start; } -#line 2089 "src/parser_scan.c" +#line 2087 "src/parser_scan.c" yy186: yyaccept = 3; yych = *(mrk = ++cur); @@ -2215,9 +2213,9 @@ yy200: yy201: ++cur; cur -= 1; -#line 132 "src/parser_scan.re" +#line 131 "src/parser_scan.re" { char_width = 2; } -#line 2221 "src/parser_scan.c" +#line 2219 "src/parser_scan.c" yy203: yyaccept = 3; yych = *(mrk = ++cur); @@ -2245,14 +2243,14 @@ yy205: } yy206: ++cur; -#line 153 "src/parser_scan.re" +#line 152 "src/parser_scan.re" { NEWTOKEN(PSI_T_OR); goto start; } -#line 2251 "src/parser_scan.c" +#line 2249 "src/parser_scan.c" yy208: ++cur; -#line 173 "src/parser_scan.re" +#line 172 "src/parser_scan.re" { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } -#line 2256 "src/parser_scan.c" +#line 2254 "src/parser_scan.c" yy210: yych = *++cur; switch (yych) { @@ -2267,15 +2265,15 @@ yy210: yy211: ++cur; cur -= 1; -#line 123 "src/parser_scan.re" +#line 122 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_F; cur += 1; goto start; } -#line 2273 "src/parser_scan.c" +#line 2271 "src/parser_scan.c" yy213: ++cur; cur -= 1; -#line 124 "src/parser_scan.re" +#line 123 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_L; cur += 1; goto start; } -#line 2279 "src/parser_scan.c" +#line 2277 "src/parser_scan.c" yy215: yych = *++cur; switch (yych) { @@ -2302,9 +2300,9 @@ yy217: ++cur; yy218: cur -= 2; -#line 119 "src/parser_scan.re" +#line 118 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_UL; cur += 2; goto start; } -#line 2308 "src/parser_scan.c" +#line 2306 "src/parser_scan.c" yy219: yych = *++cur; switch (yych) { @@ -2351,9 +2349,9 @@ yy220: } yy222: ++cur; -#line 252 "src/parser_scan.re" +#line 250 "src/parser_scan.re" { tok += 1; cur -= 1; NEWTOKEN(PSI_T_CPP_HEADER); cur += 1; goto start; } -#line 2357 "src/parser_scan.c" +#line 2355 "src/parser_scan.c" yy224: yyaccept = 3; yych = *(mrk = ++cur); @@ -2564,9 +2562,9 @@ yy241: default: goto yy61; } yy242: -#line 224 "src/parser_scan.re" +#line 222 "src/parser_scan.re" { NEWTOKEN(PSI_T_LET); goto start; } -#line 2570 "src/parser_scan.c" +#line 2568 "src/parser_scan.c" yy243: yyaccept = 10; yych = *(mrk = ++cur); @@ -2639,9 +2637,9 @@ yy243: default: goto yy61; } yy244: -#line 223 "src/parser_scan.re" +#line 221 "src/parser_scan.re" { NEWTOKEN(PSI_T_LIB); goto start; } -#line 2645 "src/parser_scan.c" +#line 2643 "src/parser_scan.c" yy245: yyaccept = 3; yych = *(mrk = ++cur); @@ -2771,9 +2769,9 @@ yy252: default: goto yy61; } yy253: -#line 225 "src/parser_scan.re" +#line 223 "src/parser_scan.re" { NEWTOKEN(PSI_T_SET); goto start; } -#line 2777 "src/parser_scan.c" +#line 2775 "src/parser_scan.c" yy254: yyaccept = 3; yych = *(mrk = ++cur); @@ -3006,9 +3004,9 @@ yy273: default: goto yy61; } yy274: -#line 193 "src/parser_scan.re" +#line 191 "src/parser_scan.re" { NEWTOKEN(PSI_T_INT); goto start; } -#line 3012 "src/parser_scan.c" +#line 3010 "src/parser_scan.c" yy275: yyaccept = 3; yych = *(mrk = ++cur); @@ -3074,9 +3072,9 @@ yy282: yy283: ++cur; cur -= 1; -#line 131 "src/parser_scan.re" +#line 130 "src/parser_scan.re" { char_width = 1; } -#line 3080 "src/parser_scan.c" +#line 3078 "src/parser_scan.c" yy285: yyaccept = 3; yych = *(mrk = ++cur); @@ -3108,27 +3106,27 @@ yy288: yy289: ++cur; cur -= 2; -#line 126 "src/parser_scan.re" +#line 125 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DD; cur += 2; goto start; } -#line 3114 "src/parser_scan.c" +#line 3112 "src/parser_scan.c" yy291: ++cur; cur -= 2; -#line 125 "src/parser_scan.re" +#line 124 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DF; cur += 2; goto start; } -#line 3120 "src/parser_scan.c" +#line 3118 "src/parser_scan.c" yy293: ++cur; cur -= 2; -#line 127 "src/parser_scan.re" +#line 126 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DL; cur += 2; goto start; } -#line 3126 "src/parser_scan.c" +#line 3124 "src/parser_scan.c" yy295: ++cur; cur -= 3; -#line 120 "src/parser_scan.re" +#line 119 "src/parser_scan.re" { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_ULL; cur += 3; goto start; } -#line 3132 "src/parser_scan.c" +#line 3130 "src/parser_scan.c" yy297: ++cur; if ((lim - cur) < 3) CHECKEOF();; @@ -3284,9 +3282,9 @@ yy305: default: goto yy61; } yy306: -#line 203 "src/parser_scan.re" +#line 201 "src/parser_scan.re" { NEWTOKEN(PSI_T_ELIF); goto start; } -#line 3290 "src/parser_scan.c" +#line 3288 "src/parser_scan.c" yy307: yyaccept = 14; yych = *(mrk = ++cur); @@ -3359,9 +3357,9 @@ yy307: default: goto yy61; } yy308: -#line 202 "src/parser_scan.re" +#line 200 "src/parser_scan.re" { NEWTOKEN(PSI_T_ELSE); goto start; } -#line 3365 "src/parser_scan.c" +#line 3363 "src/parser_scan.c" yy309: yyaccept = 3; yych = *(mrk = ++cur); @@ -3466,9 +3464,9 @@ yy313: default: goto yy61; } yy314: -#line 230 "src/parser_scan.re" +#line 228 "src/parser_scan.re" { NEWTOKEN(PSI_T_FREE); goto start; } -#line 3472 "src/parser_scan.c" +#line 3470 "src/parser_scan.c" yy315: yyaccept = 3; yych = *(mrk = ++cur); @@ -3589,9 +3587,9 @@ yy321: default: goto yy61; } yy322: -#line 214 "src/parser_scan.re" +#line 212 "src/parser_scan.re" { NEWTOKEN(PSI_T_NULL); goto start; } -#line 3595 "src/parser_scan.c" +#line 3593 "src/parser_scan.c" yy323: yyaccept = 3; yych = *(mrk = ++cur); @@ -3743,9 +3741,9 @@ yy333: default: goto yy61; } yy334: -#line 231 "src/parser_scan.re" +#line 229 "src/parser_scan.re" { NEWTOKEN(PSI_T_TEMP); goto start; } -#line 3749 "src/parser_scan.c" +#line 3747 "src/parser_scan.c" yy335: yyaccept = 3; yych = *(mrk = ++cur); @@ -3866,9 +3864,9 @@ yy341: default: goto yy61; } yy342: -#line 212 "src/parser_scan.re" +#line 210 "src/parser_scan.re" { NEWTOKEN(PSI_T_TRUE); goto start; } -#line 3872 "src/parser_scan.c" +#line 3870 "src/parser_scan.c" yy343: yyaccept = 3; yych = *(mrk = ++cur); @@ -3957,9 +3955,9 @@ yy345: default: goto yy61; } yy346: -#line 240 "src/parser_scan.re" +#line 238 "src/parser_scan.re" { NEWTOKEN(PSI_T_ZVAL); goto start; } -#line 3963 "src/parser_scan.c" +#line 3961 "src/parser_scan.c" yy347: yyaccept = 3; yych = *(mrk = ++cur); @@ -4069,9 +4067,9 @@ yy352: default: goto yy61; } yy353: -#line 190 "src/parser_scan.re" +#line 188 "src/parser_scan.re" { NEWTOKEN(PSI_T_BOOL); goto start; } -#line 4075 "src/parser_scan.c" +#line 4073 "src/parser_scan.c" yy354: yyaccept = 21; yych = *(mrk = ++cur); @@ -4144,9 +4142,9 @@ yy354: default: goto yy61; } yy355: -#line 191 "src/parser_scan.re" +#line 189 "src/parser_scan.re" { NEWTOKEN(PSI_T_CHAR); goto start; } -#line 4150 "src/parser_scan.c" +#line 4148 "src/parser_scan.c" yy356: yyaccept = 3; yych = *(mrk = ++cur); @@ -4233,9 +4231,9 @@ yy358: default: goto yy61; } yy359: -#line 187 "src/parser_scan.re" +#line 185 "src/parser_scan.re" { NEWTOKEN(PSI_T_ENUM); goto start; } -#line 4239 "src/parser_scan.c" +#line 4237 "src/parser_scan.c" yy360: yyaccept = 3; yych = *(mrk = ++cur); @@ -4323,9 +4321,9 @@ yy362: default: goto yy61; } yy363: -#line 183 "src/parser_scan.re" +#line 181 "src/parser_scan.re" { NEWTOKEN(PSI_T_LINE); goto start; } -#line 4329 "src/parser_scan.c" +#line 4327 "src/parser_scan.c" yy364: yyaccept = 24; yych = *(mrk = ++cur); @@ -4398,9 +4396,9 @@ yy364: default: goto yy61; } yy365: -#line 194 "src/parser_scan.re" +#line 192 "src/parser_scan.re" { NEWTOKEN(PSI_T_LONG); goto start; } -#line 4404 "src/parser_scan.c" +#line 4402 "src/parser_scan.c" yy366: yyaccept = 3; yych = *(mrk = ++cur); @@ -4529,9 +4527,9 @@ yy374: default: goto yy61; } yy375: -#line 189 "src/parser_scan.re" +#line 187 "src/parser_scan.re" { NEWTOKEN(PSI_T_VOID); goto start; } -#line 4535 "src/parser_scan.c" +#line 4533 "src/parser_scan.c" yy376: yyaccept = 3; yych = *(mrk = ++cur); @@ -4611,9 +4609,9 @@ yy377: default: goto yy61; } yy378: -#line 218 "src/parser_scan.re" +#line 216 "src/parser_scan.re" { NEWTOKEN(PSI_T_ARRAY); goto start; } -#line 4617 "src/parser_scan.c" +#line 4615 "src/parser_scan.c" yy379: yyaccept = 3; yych = *(mrk = ++cur); @@ -4726,9 +4724,9 @@ yy384: default: goto yy61; } yy385: -#line 241 "src/parser_scan.re" +#line 239 "src/parser_scan.re" { NEWTOKEN(PSI_T_COUNT); goto start; } -#line 4732 "src/parser_scan.c" +#line 4730 "src/parser_scan.c" yy386: yyaccept = 3; yych = *(mrk = ++cur); @@ -4809,9 +4807,9 @@ yy387: default: goto yy61; } yy388: -#line 204 "src/parser_scan.re" +#line 202 "src/parser_scan.re" { NEWTOKEN(PSI_T_ENDIF); goto start; } -#line 4815 "src/parser_scan.c" +#line 4813 "src/parser_scan.c" yy389: yyaccept = 29; yych = *(mrk = ++cur); @@ -4884,9 +4882,9 @@ yy389: default: goto yy61; } yy390: -#line 209 "src/parser_scan.re" +#line 207 "src/parser_scan.re" { NEWTOKEN(PSI_T_ERROR); goto start; } -#line 4890 "src/parser_scan.c" +#line 4888 "src/parser_scan.c" yy391: yyaccept = 30; yych = *(mrk = ++cur); @@ -4959,9 +4957,9 @@ yy391: default: goto yy61; } yy392: -#line 213 "src/parser_scan.re" +#line 211 "src/parser_scan.re" { NEWTOKEN(PSI_T_FALSE); goto start; } -#line 4965 "src/parser_scan.c" +#line 4963 "src/parser_scan.c" yy393: yyaccept = 3; yych = *(mrk = ++cur); @@ -5050,9 +5048,9 @@ yy395: default: goto yy61; } yy396: -#line 200 "src/parser_scan.re" +#line 198 "src/parser_scan.re" { NEWTOKEN(PSI_T_IFDEF); goto start; } -#line 5056 "src/parser_scan.c" +#line 5054 "src/parser_scan.c" yy397: yyaccept = 3; yych = *(mrk = ++cur); @@ -5149,9 +5147,9 @@ yy400: default: goto yy61; } yy401: -#line 215 "src/parser_scan.re" +#line 213 "src/parser_scan.re" { NEWTOKEN(PSI_T_MIXED); goto start; } -#line 5155 "src/parser_scan.c" +#line 5153 "src/parser_scan.c" yy402: yyaccept = 3; yych = *(mrk = ++cur); @@ -5352,9 +5350,9 @@ yy418: default: goto yy61; } yy419: -#line 207 "src/parser_scan.re" +#line 205 "src/parser_scan.re" { NEWTOKEN(PSI_T_UNDEF); goto start; } -#line 5358 "src/parser_scan.c" +#line 5356 "src/parser_scan.c" yy420: yyaccept = 3; yych = *(mrk = ++cur); @@ -5436,9 +5434,9 @@ yy421: default: goto yy61; } yy422: -#line 180 "src/parser_scan.re" +#line 178 "src/parser_scan.re" { NEWTOKEN(PSI_T_CPP_ASM); goto start; } -#line 5442 "src/parser_scan.c" +#line 5440 "src/parser_scan.c" yy423: yyaccept = 3; yych = *(mrk = ++cur); @@ -5532,9 +5530,9 @@ yy426: default: goto yy61; } yy427: -#line 188 "src/parser_scan.re" +#line 186 "src/parser_scan.re" { NEWTOKEN(PSI_T_CONST); goto start; } -#line 5538 "src/parser_scan.c" +#line 5536 "src/parser_scan.c" yy428: yyaccept = 3; yych = *(mrk = ++cur); @@ -5616,9 +5614,9 @@ yy429: default: goto yy61; } yy430: -#line 195 "src/parser_scan.re" +#line 193 "src/parser_scan.re" { NEWTOKEN(PSI_T_FLOAT); goto start; } -#line 5622 "src/parser_scan.c" +#line 5620 "src/parser_scan.c" yy431: yyaccept = 3; yych = *(mrk = ++cur); @@ -5705,9 +5703,9 @@ yy433: default: goto yy61; } yy434: -#line 192 "src/parser_scan.re" +#line 190 "src/parser_scan.re" { NEWTOKEN(PSI_T_SHORT); goto start; } -#line 5711 "src/parser_scan.c" +#line 5709 "src/parser_scan.c" yy435: yyaccept = 3; yych = *(mrk = ++cur); @@ -5808,9 +5806,9 @@ yy439: default: goto yy61; } yy440: -#line 186 "src/parser_scan.re" +#line 184 "src/parser_scan.re" { NEWTOKEN(PSI_T_UNION); goto start; } -#line 5814 "src/parser_scan.c" +#line 5812 "src/parser_scan.c" yy441: yyaccept = 3; yych = *(mrk = ++cur); @@ -5897,9 +5895,9 @@ yy443: default: goto yy61; } yy444: -#line 238 "src/parser_scan.re" +#line 236 "src/parser_scan.re" { NEWTOKEN(PSI_T_ARRVAL); goto start; } -#line 5903 "src/parser_scan.c" +#line 5901 "src/parser_scan.c" yy445: yyaccept = 3; yych = *(mrk = ++cur); @@ -5996,9 +5994,9 @@ yy448: default: goto yy61; } yy449: -#line 242 "src/parser_scan.re" +#line 240 "src/parser_scan.re" { NEWTOKEN(PSI_T_CALLOC); goto start; } -#line 6002 "src/parser_scan.c" +#line 6000 "src/parser_scan.c" yy450: yyaccept = 41; yych = *(mrk = ++cur); @@ -6073,9 +6071,9 @@ yy450: default: goto yy61; } yy451: -#line 205 "src/parser_scan.re" +#line 203 "src/parser_scan.re" { NEWTOKEN(PSI_T_DEFINE); goto start; } -#line 6079 "src/parser_scan.c" +#line 6077 "src/parser_scan.c" yy452: yyaccept = 3; yych = *(mrk = ++cur); @@ -6164,9 +6162,9 @@ yy454: default: goto yy61; } yy455: -#line 201 "src/parser_scan.re" +#line 199 "src/parser_scan.re" { NEWTOKEN(PSI_T_IFNDEF); goto start; } -#line 6170 "src/parser_scan.c" +#line 6168 "src/parser_scan.c" yy456: yyaccept = 3; yych = *(mrk = ++cur); @@ -6247,9 +6245,9 @@ yy457: default: goto yy61; } yy458: -#line 235 "src/parser_scan.re" +#line 233 "src/parser_scan.re" { NEWTOKEN(PSI_T_INTVAL); goto start; } -#line 6253 "src/parser_scan.c" +#line 6251 "src/parser_scan.c" yy459: yyaccept = 44; yych = *(mrk = ++cur); @@ -6322,9 +6320,9 @@ yy459: default: goto yy61; } yy460: -#line 219 "src/parser_scan.re" +#line 217 "src/parser_scan.re" { NEWTOKEN(PSI_T_OBJECT); goto start; } -#line 6328 "src/parser_scan.c" +#line 6326 "src/parser_scan.c" yy461: yyaccept = 45; yych = *(mrk = ++cur); @@ -6397,9 +6395,9 @@ yy461: default: goto yy61; } yy462: -#line 239 "src/parser_scan.re" +#line 237 "src/parser_scan.re" { NEWTOKEN(PSI_T_OBJVAL); goto start; } -#line 6403 "src/parser_scan.c" +#line 6401 "src/parser_scan.c" yy463: yyaccept = 3; yych = *(mrk = ++cur); @@ -6496,9 +6494,9 @@ yy466: default: goto yy61; } yy467: -#line 228 "src/parser_scan.re" +#line 226 "src/parser_scan.re" { NEWTOKEN(PSI_T_RETURN); goto start; } -#line 6502 "src/parser_scan.c" +#line 6500 "src/parser_scan.c" yy468: yyaccept = 47; yych = *(mrk = ++cur); @@ -6571,9 +6569,9 @@ yy468: default: goto yy61; } yy469: -#line 221 "src/parser_scan.re" +#line 219 "src/parser_scan.re" { NEWTOKEN(PSI_T_STATIC); goto start; } -#line 6577 "src/parser_scan.c" +#line 6575 "src/parser_scan.c" yy470: yyaccept = 48; yych = *(mrk = ++cur); @@ -6646,9 +6644,9 @@ yy470: default: goto yy61; } yy471: -#line 217 "src/parser_scan.re" +#line 215 "src/parser_scan.re" { NEWTOKEN(PSI_T_STRING); goto start; } -#line 6652 "src/parser_scan.c" +#line 6650 "src/parser_scan.c" yy472: yyaccept = 49; yych = *(mrk = ++cur); @@ -6721,9 +6719,9 @@ yy472: default: goto yy61; } yy473: -#line 232 "src/parser_scan.re" +#line 230 "src/parser_scan.re" { NEWTOKEN(PSI_T_STRLEN); goto start; } -#line 6727 "src/parser_scan.c" +#line 6725 "src/parser_scan.c" yy474: yyaccept = 50; yych = *(mrk = ++cur); @@ -6796,9 +6794,9 @@ yy474: default: goto yy61; } yy475: -#line 233 "src/parser_scan.re" +#line 231 "src/parser_scan.re" { NEWTOKEN(PSI_T_STRVAL); goto start; } -#line 6802 "src/parser_scan.c" +#line 6800 "src/parser_scan.c" yy476: yyaccept = 3; yych = *(mrk = ++cur); @@ -6895,9 +6893,9 @@ yy479: default: goto yy61; } yy480: -#line 246 "src/parser_scan.re" +#line 244 "src/parser_scan.re" { NEWTOKEN(PSI_T_TO_INT); goto start; } -#line 6901 "src/parser_scan.c" +#line 6899 "src/parser_scan.c" yy481: yyaccept = 3; yych = *(mrk = ++cur); @@ -7022,9 +7020,9 @@ yy488: default: goto yy61; } yy489: -#line 196 "src/parser_scan.re" +#line 194 "src/parser_scan.re" { NEWTOKEN(PSI_T_DOUBLE); goto start; } -#line 7028 "src/parser_scan.c" +#line 7026 "src/parser_scan.c" yy490: yyaccept = 53; yych = *(mrk = ++cur); @@ -7097,9 +7095,9 @@ yy490: default: goto yy61; } yy491: -#line 177 "src/parser_scan.re" +#line 175 "src/parser_scan.re" { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } -#line 7103 "src/parser_scan.c" +#line 7101 "src/parser_scan.c" yy492: yyaccept = 54; yych = *(mrk = ++cur); @@ -7169,12 +7167,12 @@ yy492: case '~': case 0x7F: goto yy493; case '\\': goto yy147; - default: goto yy529; + default: goto yy61; } yy493: -#line 175 "src/parser_scan.re" +#line 174 "src/parser_scan.re" { NEWTOKEN(PSI_T_PRAGMA); goto start; } -#line 7178 "src/parser_scan.c" +#line 7176 "src/parser_scan.c" yy494: yyaccept = 55; yych = *(mrk = ++cur); @@ -7247,9 +7245,9 @@ yy494: default: goto yy61; } yy495: -#line 198 "src/parser_scan.re" +#line 196 "src/parser_scan.re" { NEWTOKEN(PSI_T_SIGNED); goto start; } -#line 7253 "src/parser_scan.c" +#line 7251 "src/parser_scan.c" yy496: yyaccept = 56; yych = *(mrk = ++cur); @@ -7322,9 +7320,9 @@ yy496: default: goto yy61; } yy497: -#line 182 "src/parser_scan.re" +#line 180 "src/parser_scan.re" { NEWTOKEN(PSI_T_SIZEOF); goto start; } -#line 7328 "src/parser_scan.c" +#line 7326 "src/parser_scan.c" yy498: yyaccept = 57; yych = *(mrk = ++cur); @@ -7397,28 +7395,28 @@ yy498: default: goto yy61; } yy499: -#line 185 "src/parser_scan.re" +#line 183 "src/parser_scan.re" { NEWTOKEN(PSI_T_STRUCT); goto start; } -#line 7403 "src/parser_scan.c" +#line 7401 "src/parser_scan.c" yy500: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'f': goto yy531; + case 'f': goto yy529; default: goto yy62; } yy501: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'e': goto yy533; + case 'e': goto yy531; default: goto yy62; } yy502: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'l': goto yy534; + case 'l': goto yy532; default: goto yy62; } yy503: @@ -7493,15 +7491,15 @@ yy503: default: goto yy61; } yy504: -#line 237 "src/parser_scan.re" +#line 235 "src/parser_scan.re" { NEWTOKEN(PSI_T_BOOLVAL); goto start; } -#line 7499 "src/parser_scan.c" +#line 7497 "src/parser_scan.c" yy505: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'E': - case 'e': goto yy535; + case 'e': goto yy533; default: goto yy62; } yy506: @@ -7509,7 +7507,7 @@ yy506: yych = *(mrk = ++cur); switch (yych) { case 'K': - case 'k': goto yy537; + case 'k': goto yy535; default: goto yy62; } yy507: @@ -7584,15 +7582,15 @@ yy507: default: goto yy61; } yy508: -#line 206 "src/parser_scan.re" +#line 204 "src/parser_scan.re" { NEWTOKEN(PSI_T_DEFINED); goto start; } -#line 7590 "src/parser_scan.c" +#line 7588 "src/parser_scan.c" yy509: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'L': - case 'l': goto yy539; + case 'l': goto yy537; default: goto yy62; } yy510: @@ -7600,7 +7598,7 @@ yy510: yych = *(mrk = ++cur); switch (yych) { case 'N': - case 'n': goto yy541; + case 'n': goto yy539; default: goto yy62; } yy511: @@ -7672,13 +7670,13 @@ yy511: case '~': case 0x7F: goto yy512; case '\\': goto yy147; - case '_': goto yy543; + case '_': goto yy541; default: goto yy61; } yy512: -#line 210 "src/parser_scan.re" +#line 208 "src/parser_scan.re" { NEWTOKEN(PSI_T_INCLUDE); goto start; } -#line 7682 "src/parser_scan.c" +#line 7680 "src/parser_scan.c" yy513: yyaccept = 61; yych = *(mrk = ++cur); @@ -7751,15 +7749,15 @@ yy513: default: goto yy61; } yy514: -#line 234 "src/parser_scan.re" +#line 232 "src/parser_scan.re" { NEWTOKEN(PSI_T_PATHVAL); goto start; } -#line 7757 "src/parser_scan.c" +#line 7755 "src/parser_scan.c" yy515: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'S': - case 's': goto yy544; + case 's': goto yy542; default: goto yy62; } yy516: @@ -7767,7 +7765,7 @@ yy516: yych = *(mrk = ++cur); switch (yych) { case 'E': - case 'e': goto yy545; + case 'e': goto yy543; default: goto yy62; } yy517: @@ -7775,7 +7773,7 @@ yy517: yych = *(mrk = ++cur); switch (yych) { case 'Y': - case 'y': goto yy546; + case 'y': goto yy544; default: goto yy62; } yy518: @@ -7850,15 +7848,15 @@ yy518: default: goto yy61; } yy519: -#line 248 "src/parser_scan.re" +#line 246 "src/parser_scan.re" { NEWTOKEN(PSI_T_TO_BOOL); goto start; } -#line 7856 "src/parser_scan.c" +#line 7854 "src/parser_scan.c" yy520: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'T': - case 't': goto yy548; + case 't': goto yy546; default: goto yy62; } yy521: @@ -7866,7 +7864,7 @@ yy521: yych = *(mrk = ++cur); switch (yych) { case 'C': - case 'c': goto yy550; + case 'c': goto yy548; default: goto yy62; } yy522: @@ -7874,7 +7872,7 @@ yy522: yych = *(mrk = ++cur); switch (yych) { case 'N': - case 'n': goto yy551; + case 'n': goto yy549; default: goto yy62; } yy523: @@ -7949,9 +7947,9 @@ yy523: default: goto yy61; } yy524: -#line 208 "src/parser_scan.re" +#line 206 "src/parser_scan.re" { NEWTOKEN(PSI_T_WARNING); goto start; } -#line 7955 "src/parser_scan.c" +#line 7953 "src/parser_scan.c" yy525: yyaccept = 34; yych = *(mrk = ++cur); @@ -8027,28 +8025,26 @@ yy526: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'b': goto yy552; + case 'b': goto yy550; default: goto yy62; } yy527: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 's': goto yy553; + case 's': goto yy551; default: goto yy62; } yy528: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'i': goto yy554; + case 'i': goto yy552; default: goto yy62; } yy529: - yyaccept = 3; - mrk = ++cur; - if (lim <= cur) CHECKEOF();; - yych = *cur; + yyaccept = 64; + yych = *(mrk = ++cur); switch (yych) { case 0x00: case 0x01: @@ -8113,13 +8109,30 @@ yy529: case '|': case '}': case '~': - case 0x7F: goto yy55; + case 0x7F: goto yy530; case '\\': goto yy147; - case 'o': goto yy555; - default: goto yy529; + default: goto yy61; } +yy530: +#line 182 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TYPEDEF); goto start; } +#line 8120 "src/parser_scan.c" yy531: - yyaccept = 64; + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'd': goto yy553; + default: goto yy62; + } +yy532: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy555; + default: goto yy62; + } +yy533: + yyaccept = 65; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -8185,30 +8198,16 @@ yy531: case '|': case '}': case '~': - case 0x7F: goto yy532; + case 0x7F: goto yy534; case '\\': goto yy147; default: goto yy61; } -yy532: -#line 184 "src/parser_scan.re" - { NEWTOKEN(PSI_T_TYPEDEF); goto start; } -#line 8196 "src/parser_scan.c" -yy533: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'd': goto yy557; - default: goto yy62; - } yy534: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy559; - default: goto yy62; - } +#line 214 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CALLABLE); goto start; } +#line 8209 "src/parser_scan.c" yy535: - yyaccept = 65; + yyaccept = 66; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -8279,11 +8278,11 @@ yy535: default: goto yy61; } yy536: -#line 216 "src/parser_scan.re" - { NEWTOKEN(PSI_T_CALLABLE); goto start; } -#line 8285 "src/parser_scan.c" +#line 218 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CALLBACK); goto start; } +#line 8284 "src/parser_scan.c" yy537: - yyaccept = 66; + yyaccept = 67; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -8354,11 +8353,11 @@ yy537: default: goto yy61; } yy538: -#line 220 "src/parser_scan.re" - { NEWTOKEN(PSI_T_CALLBACK); goto start; } -#line 8360 "src/parser_scan.c" +#line 234 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FLOATVAL); goto start; } +#line 8359 "src/parser_scan.c" yy539: - yyaccept = 67; + yyaccept = 68; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -8429,109 +8428,34 @@ yy539: default: goto yy61; } yy540: -#line 236 "src/parser_scan.re" - { NEWTOKEN(PSI_T_FLOATVAL); goto start; } -#line 8435 "src/parser_scan.c" -yy541: - yyaccept = 68; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy542; - case '\\': goto yy147; - default: goto yy61; - } -yy542: -#line 222 "src/parser_scan.re" +#line 220 "src/parser_scan.re" { NEWTOKEN(PSI_T_FUNCTION); goto start; } -#line 8510 "src/parser_scan.c" -yy543: +#line 8434 "src/parser_scan.c" +yy541: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'N': - case 'n': goto yy561; + case 'n': goto yy557; default: goto yy62; } -yy544: +yy542: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'E': - case 'e': goto yy562; + case 'e': goto yy558; default: goto yy62; } -yy545: +yy543: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'R': - case 'r': goto yy563; + case 'r': goto yy559; default: goto yy62; } -yy546: +yy544: yyaccept = 69; yych = *(mrk = ++cur); switch (yych) { @@ -8598,15 +8522,15 @@ yy546: case '|': case '}': case '~': - case 0x7F: goto yy547; + case 0x7F: goto yy545; case '\\': goto yy147; default: goto yy61; } -yy547: -#line 244 "src/parser_scan.re" +yy545: +#line 242 "src/parser_scan.re" { NEWTOKEN(PSI_T_TO_ARRAY); goto start; } -#line 8609 "src/parser_scan.c" -yy548: +#line 8533 "src/parser_scan.c" +yy546: yyaccept = 70; yych = *(mrk = ++cur); switch (yych) { @@ -8673,377 +8597,53 @@ yy548: case '|': case '}': case '~': - case 0x7F: goto yy549; + case 0x7F: goto yy547; case '\\': goto yy147; default: goto yy61; } -yy549: -#line 247 "src/parser_scan.re" +yy547: +#line 245 "src/parser_scan.re" { NEWTOKEN(PSI_T_TO_FLOAT); goto start; } -#line 8684 "src/parser_scan.c" -yy550: +#line 8608 "src/parser_scan.c" +yy548: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'T': - case 't': goto yy564; + case 't': goto yy560; default: goto yy62; } -yy551: +yy549: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'G': - case 'g': goto yy566; - default: goto yy62; - } -yy552: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'u': goto yy568; - default: goto yy62; - } -yy553: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy569; - default: goto yy62; - } -yy554: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'c': goto yy570; - default: goto yy62; - } -yy555: - yyaccept = 3; - mrk = ++cur; - if (lim <= cur) CHECKEOF();; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy147; - case 'n': goto yy571; - case 'o': goto yy555; - default: goto yy529; - } -yy557: - yyaccept = 71; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy558; - case '\\': goto yy147; - default: goto yy61; - } -yy558: -#line 197 "src/parser_scan.re" - { NEWTOKEN(PSI_T_UNSIGNED); goto start; } -#line 8871 "src/parser_scan.c" -yy559: - yyaccept = 72; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy560; - case '\\': goto yy147; - default: goto yy61; - } -yy560: -#line 181 "src/parser_scan.re" - { NEWTOKEN(PSI_T_VOLATILE); goto start; } -#line 8946 "src/parser_scan.c" -yy561: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy572; + case 'g': goto yy562; default: goto yy62; } -yy562: +yy550: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'R': - case 'r': goto yy573; + case 'u': goto yy564; default: goto yy62; } -yy563: +yy551: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'T': - case 't': goto yy574; + case 'i': goto yy565; default: goto yy62; } -yy564: - yyaccept = 73; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy565; - case '\\': goto yy147; - default: goto yy61; +yy552: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'c': goto yy566; + default: goto yy62; } -yy565: -#line 243 "src/parser_scan.re" - { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } -#line 9045 "src/parser_scan.c" -yy566: - yyaccept = 74; +yy553: + yyaccept = 71; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9109,41 +8709,18 @@ yy566: case '|': case '}': case '~': - case 0x7F: goto yy567; + case 0x7F: goto yy554; case '\\': goto yy147; default: goto yy61; } -yy567: -#line 245 "src/parser_scan.re" - { NEWTOKEN(PSI_T_TO_STRING); goto start; } -#line 9120 "src/parser_scan.c" -yy568: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy576; - default: goto yy62; - } -yy569: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy577; - default: goto yy62; - } -yy570: - yyaccept = 3; +yy554: +#line 195 "src/parser_scan.re" + { NEWTOKEN(PSI_T_UNSIGNED); goto start; } +#line 8720 "src/parser_scan.c" +yy555: + yyaccept = 72; yych = *(mrk = ++cur); switch (yych) { - case 't': goto yy578; - default: goto yy62; - } -yy571: - yyaccept = 3; - mrk = ++cur; - if (lim <= cur) CHECKEOF();; - yych = *cur; - switch (yych) { case 0x00: case 0x01: case 0x02: @@ -9207,30 +8784,40 @@ yy571: case '|': case '}': case '~': - case 0x7F: goto yy55; + case 0x7F: goto yy556; case '\\': goto yy147; - case 'c': goto yy580; - case 'o': goto yy555; - default: goto yy529; + default: goto yy61; } -yy572: +yy556: +#line 179 "src/parser_scan.re" + { NEWTOKEN(PSI_T_VOLATILE); goto start; } +#line 8795 "src/parser_scan.c" +yy557: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'X': - case 'x': goto yy581; + case 'E': + case 'e': goto yy567; default: goto yy62; } -yy573: +yy558: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy568; + default: goto yy62; + } +yy559: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case 'T': - case 't': goto yy582; + case 't': goto yy569; default: goto yy62; } -yy574: - yyaccept = 75; +yy560: + yyaccept = 73; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9296,30 +8883,16 @@ yy574: case '|': case '}': case '~': - case 0x7F: goto yy575; + case 0x7F: goto yy561; case '\\': goto yy147; default: goto yy61; } -yy575: -#line 226 "src/parser_scan.re" - { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } -#line 9307 "src/parser_scan.c" -yy576: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy584; - default: goto yy62; - } -yy577: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy585; - default: goto yy62; - } -yy578: - yyaccept = 76; +yy561: +#line 241 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } +#line 8894 "src/parser_scan.c" +yy562: + yyaccept = 74; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9385,19 +8958,54 @@ yy578: case '|': case '}': case '~': - case 0x7F: goto yy579; + case 0x7F: goto yy563; case '\\': goto yy147; default: goto yy61; } -yy579: -#line 178 "src/parser_scan.re" - { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } -#line 9396 "src/parser_scan.c" -yy580: +yy563: +#line 243 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_STRING); goto start; } +#line 8969 "src/parser_scan.c" +yy564: yyaccept = 3; - mrk = ++cur; - if (lim <= cur) CHECKEOF();; - yych = *cur; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy571; + default: goto yy62; + } +yy565: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy572; + default: goto yy62; + } +yy566: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy573; + default: goto yy62; + } +yy567: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'X': + case 'x': goto yy575; + default: goto yy62; + } +yy568: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy576; + default: goto yy62; + } +yy569: + yyaccept = 75; + yych = *(mrk = ++cur); switch (yych) { case 0x00: case 0x01: @@ -9462,22 +9070,30 @@ yy580: case '|': case '}': case '~': - case 0x7F: goto yy55; + case 0x7F: goto yy570; case '\\': goto yy147; - case 'e': goto yy586; - case 'o': goto yy555; - default: goto yy529; + default: goto yy61; } -yy581: +yy570: +#line 224 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } +#line 9081 "src/parser_scan.c" +yy571: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case 'T': - case 't': goto yy588; + case 'e': goto yy578; default: goto yy62; } -yy582: - yyaccept = 77; +yy572: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy579; + default: goto yy62; + } +yy573: + yyaccept = 76; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9543,34 +9159,26 @@ yy582: case '|': case '}': case '~': - case 0x7F: goto yy583; + case 0x7F: goto yy574; case '\\': goto yy147; default: goto yy61; } -yy583: -#line 227 "src/parser_scan.re" - { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } -#line 9554 "src/parser_scan.c" -yy584: +yy574: +#line 176 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } +#line 9170 "src/parser_scan.c" +yy575: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case '_': goto yy590; + case 'T': + case 't': goto yy580; default: goto yy62; } -yy585: - yyaccept = 3; +yy576: + yyaccept = 77; yych = *(mrk = ++cur); switch (yych) { - case '_': goto yy591; - default: goto yy62; - } -yy586: - yyaccept = 78; - mrk = ++cur; - if (lim <= cur) CHECKEOF();; - yych = *cur; - switch (yych) { case 0x00: case 0x01: case 0x02: @@ -9634,17 +9242,30 @@ yy586: case '|': case '}': case '~': - case 0x7F: goto yy587; + case 0x7F: goto yy577; case '\\': goto yy147; - case 'o': goto yy555; - default: goto yy529; + default: goto yy61; } -yy587: -#line 176 "src/parser_scan.re" - { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } -#line 9646 "src/parser_scan.c" -yy588: - yyaccept = 79; +yy577: +#line 225 "src/parser_scan.re" + { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } +#line 9253 "src/parser_scan.c" +yy578: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy582; + default: goto yy62; + } +yy579: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy583; + default: goto yy62; + } +yy580: + yyaccept = 78; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9710,40 +9331,40 @@ yy588: case '|': case '}': case '~': - case 0x7F: goto yy589; + case 0x7F: goto yy581; case '\\': goto yy147; default: goto yy61; } -yy589: -#line 211 "src/parser_scan.re" +yy581: +#line 209 "src/parser_scan.re" { NEWTOKEN(PSI_T_INCLUDE_NEXT); goto start; } -#line 9721 "src/parser_scan.c" -yy590: +#line 9342 "src/parser_scan.c" +yy582: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case '_': goto yy592; + case '_': goto yy584; default: goto yy62; } -yy591: +yy583: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { - case '_': goto yy593; + case '_': goto yy585; default: goto yy62; } -yy592: +yy584: yyaccept = 3; yych = *(mrk = ++cur); switch (yych) { case '\t': case '\f': - case ' ': goto yy595; - case '(': goto yy597; + case ' ': goto yy587; + case '(': goto yy589; default: goto yy62; } -yy593: - yyaccept = 80; +yy585: + yyaccept = 79; yych = *(mrk = ++cur); switch (yych) { case 0x00: @@ -9809,67 +9430,67 @@ yy593: case '|': case '}': case '~': - case 0x7F: goto yy594; + case 0x7F: goto yy586; case '\\': goto yy147; default: goto yy61; } -yy594: -#line 179 "src/parser_scan.re" +yy586: +#line 177 "src/parser_scan.re" { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } -#line 9820 "src/parser_scan.c" -yy595: +#line 9441 "src/parser_scan.c" +yy587: ++cur; if ((lim - cur) < 2) CHECKEOF();; yych = *cur; switch (yych) { case '\t': case '\f': - case ' ': goto yy595; - case '(': goto yy597; + case ' ': goto yy587; + case '(': goto yy589; default: goto yy114; } -yy597: +yy589: yych = *++cur; switch (yych) { - case '(': goto yy598; + case '(': goto yy590; default: goto yy114; } -yy598: +yy590: ++cur; -#line 253 "src/parser_scan.re" +#line 251 "src/parser_scan.re" { parens = 2; goto cpp_attribute; } -#line 9842 "src/parser_scan.c" +#line 9463 "src/parser_scan.c" } -#line 259 "src/parser_scan.re" +#line 257 "src/parser_scan.re" character: ; -#line 9849 "src/parser_scan.c" +#line 9470 "src/parser_scan.c" { unsigned char yych; if (lim <= cur) CHECKEOF();; yych = *cur; switch (yych) { case '\n': - case '\r': goto yy604; - case '\'': goto yy606; - case '\\': goto yy608; - default: goto yy602; + case '\r': goto yy596; + case '\'': goto yy598; + case '\\': goto yy600; + default: goto yy594; } -yy602: +yy594: ++cur; -#line 277 "src/parser_scan.re" +#line 275 "src/parser_scan.re" { escaped = false; goto character; } -#line 9865 "src/parser_scan.c" -yy604: +#line 9486 "src/parser_scan.c" +yy596: ++cur; -#line 264 "src/parser_scan.re" +#line 262 "src/parser_scan.re" { NEWLINE(); goto character; } -#line 9870 "src/parser_scan.c" -yy606: +#line 9491 "src/parser_scan.c" +yy598: ++cur; -#line 266 "src/parser_scan.re" +#line 264 "src/parser_scan.re" { if (escaped) { escaped = false; @@ -9881,43 +9502,43 @@ yy606: token->flags = char_width; goto start; } -#line 9885 "src/parser_scan.c" -yy608: +#line 9506 "src/parser_scan.c" +yy600: ++cur; -#line 265 "src/parser_scan.re" +#line 263 "src/parser_scan.re" { escaped = !escaped; goto character; } -#line 9890 "src/parser_scan.c" +#line 9511 "src/parser_scan.c" } -#line 279 "src/parser_scan.re" +#line 277 "src/parser_scan.re" string: ; -#line 9897 "src/parser_scan.c" +#line 9518 "src/parser_scan.c" { unsigned char yych; if (lim <= cur) CHECKEOF();; yych = *cur; switch (yych) { case '\n': - case '\r': goto yy614; - case '"': goto yy616; - case '\\': goto yy618; - default: goto yy612; + case '\r': goto yy606; + case '"': goto yy608; + case '\\': goto yy610; + default: goto yy604; } -yy612: +yy604: ++cur; -#line 297 "src/parser_scan.re" +#line 295 "src/parser_scan.re" { escaped = false; goto string; } -#line 9913 "src/parser_scan.c" -yy614: +#line 9534 "src/parser_scan.c" +yy606: ++cur; -#line 284 "src/parser_scan.re" +#line 282 "src/parser_scan.re" { NEWLINE(); goto string; } -#line 9918 "src/parser_scan.c" -yy616: +#line 9539 "src/parser_scan.c" +yy608: ++cur; -#line 286 "src/parser_scan.re" +#line 284 "src/parser_scan.re" { if (escaped) { escaped = false; @@ -9929,118 +9550,118 @@ yy616: token->flags = char_width; goto start; } -#line 9933 "src/parser_scan.c" -yy618: +#line 9554 "src/parser_scan.c" +yy610: ++cur; -#line 285 "src/parser_scan.re" +#line 283 "src/parser_scan.re" { escaped = !escaped; goto string; } -#line 9938 "src/parser_scan.c" +#line 9559 "src/parser_scan.c" } -#line 299 "src/parser_scan.re" +#line 297 "src/parser_scan.re" comment: ; -#line 9945 "src/parser_scan.c" +#line 9566 "src/parser_scan.c" { unsigned char yych; if ((lim - cur) < 2) CHECKEOF();; yych = *cur; switch (yych) { case '\n': - case '\r': goto yy624; - case '*': goto yy626; - default: goto yy622; + case '\r': goto yy616; + case '*': goto yy618; + default: goto yy614; } -yy622: +yy614: ++cur; -yy623: -#line 306 "src/parser_scan.re" +yy615: +#line 304 "src/parser_scan.re" { goto comment; } -#line 9961 "src/parser_scan.c" -yy624: +#line 9582 "src/parser_scan.c" +yy616: ++cur; -#line 304 "src/parser_scan.re" +#line 302 "src/parser_scan.re" { NEWLINE(); goto comment; } -#line 9966 "src/parser_scan.c" -yy626: +#line 9587 "src/parser_scan.c" +yy618: yych = *++cur; switch (yych) { - case '/': goto yy627; - default: goto yy623; + case '/': goto yy619; + default: goto yy615; } -yy627: +yy619: ++cur; -#line 305 "src/parser_scan.re" +#line 303 "src/parser_scan.re" { NEWTOKEN(PSI_T_COMMENT); goto start; } -#line 9977 "src/parser_scan.c" +#line 9598 "src/parser_scan.c" } -#line 308 "src/parser_scan.re" +#line 306 "src/parser_scan.re" comment_sl: ; -#line 9984 "src/parser_scan.c" +#line 9605 "src/parser_scan.c" { unsigned char yych; if (lim <= cur) CHECKEOF();; yych = *cur; switch (yych) { case '\n': - case '\r': goto yy633; - default: goto yy631; + case '\r': goto yy625; + default: goto yy623; } -yy631: +yy623: ++cur; -#line 314 "src/parser_scan.re" +#line 312 "src/parser_scan.re" { goto comment_sl; } -#line 9998 "src/parser_scan.c" -yy633: +#line 9619 "src/parser_scan.c" +yy625: ++cur; -#line 313 "src/parser_scan.re" +#line 311 "src/parser_scan.re" { NEWTOKEN(PSI_T_COMMENT); tok = cur - 1; NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } -#line 10003 "src/parser_scan.c" +#line 9624 "src/parser_scan.c" } -#line 316 "src/parser_scan.re" +#line 314 "src/parser_scan.re" cpp_attribute: ; -#line 10011 "src/parser_scan.c" +#line 9632 "src/parser_scan.c" { unsigned char yych; if (lim <= cur) CHECKEOF();; yych = *cur; switch (yych) { case '\n': - case '\r': goto yy639; - case '(': goto yy641; - case ')': goto yy643; - default: goto yy637; + case '\r': goto yy631; + case '(': goto yy633; + case ')': goto yy635; + default: goto yy629; } -yy637: +yy629: ++cur; -#line 325 "src/parser_scan.re" +#line 323 "src/parser_scan.re" { goto cpp_attribute; } -#line 10027 "src/parser_scan.c" -yy639: +#line 9648 "src/parser_scan.c" +yy631: ++cur; -#line 324 "src/parser_scan.re" +#line 322 "src/parser_scan.re" { NEWLINE(); goto cpp_attribute; } -#line 10032 "src/parser_scan.c" -yy641: +#line 9653 "src/parser_scan.c" +yy633: ++cur; -#line 322 "src/parser_scan.re" +#line 320 "src/parser_scan.re" { ++parens; goto cpp_attribute; } -#line 10037 "src/parser_scan.c" -yy643: +#line 9658 "src/parser_scan.c" +yy635: ++cur; -#line 323 "src/parser_scan.re" +#line 321 "src/parser_scan.re" { if (parens == 1) { NEWTOKEN(PSI_T_CPP_ATTRIBUTE); goto start; } else { --parens; goto cpp_attribute; } } -#line 10042 "src/parser_scan.c" +#line 9663 "src/parser_scan.c" } -#line 327 "src/parser_scan.re" +#line 325 "src/parser_scan.re" error: ; diff --git a/src/parser_scan.re b/src/parser_scan.re index 0ba9978..a02fdd0 100644 --- a/src/parser_scan.re +++ b/src/parser_scan.re @@ -172,7 +172,6 @@ struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input "..." { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } "?" { NEWTOKEN(PSI_T_IIF); goto start; } "pragma" { NEWTOKEN(PSI_T_PRAGMA); goto start; } - "pragma" W+ "once" { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } "__"? "inline" { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } "__restrict" { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } "__extension__" { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } diff --git a/src/types/cpp_exp.c b/src/types/cpp_exp.c index 4892ad2..6b21b75 100644 --- a/src/types/cpp_exp.c +++ b/src/types/cpp_exp.c @@ -51,6 +51,7 @@ struct psi_cpp_exp *psi_cpp_exp_init(token_t type, void *data) exp->data.tok = data; break; case PSI_T_DEFINE: + case PSI_T_PRAGMA: exp->data.decl = data; break; case PSI_T_IF: @@ -59,7 +60,6 @@ struct psi_cpp_exp *psi_cpp_exp_init(token_t type, void *data) break; case PSI_T_ENDIF: case PSI_T_ELSE: - case PSI_T_PRAGMA_ONCE: break; default: assert(0); @@ -87,6 +87,7 @@ void psi_cpp_exp_free(struct psi_cpp_exp **exp_ptr) psi_token_free(&exp->data.tok); break; case PSI_T_DEFINE: + case PSI_T_PRAGMA: psi_cpp_macro_decl_free(&exp->data.decl); break; case PSI_T_IF: @@ -131,6 +132,7 @@ void psi_cpp_exp_dump(struct psi_dump *dump, struct psi_cpp_exp *exp) } break; case PSI_T_DEFINE: + case PSI_T_PRAGMA: psi_cpp_macro_decl_dump(dump, exp->data.decl); break; case PSI_T_IF: @@ -218,6 +220,11 @@ void psi_cpp_exp_exec(struct psi_cpp_exp *exp, struct psi_cpp *cpp, struct psi_d exp->data.decl = NULL; } break; + case PSI_T_PRAGMA: + if (!cpp->skip) { + psi_cpp_pragma(cpp, exp->data.decl); + } + break; case PSI_T_IFDEF: ++cpp->level; if (!cpp->skip) { diff --git a/tests/calc/calc.psi b/tests/calc/calc.psi index c74809c..06d118f 100644 --- a/tests/calc/calc.psi +++ b/tests/calc/calc.psi @@ -1,5 +1,5 @@ #ifdef __linux__ -lib "crypt"; +#pragma lib "crypt"; #endif #include diff --git a/tests/idn/idn.psi b/tests/idn/idn.psi index 9b562c2..dbb4a6c 100644 --- a/tests/idn/idn.psi +++ b/tests/idn/idn.psi @@ -1,10 +1,10 @@ #ifdef __linux__ -lib "crypt"; +#pragma lib "crypt"; #endif #include -lib "idn"; +#pragma lib "idn"; #include function idn\utf8_to_ascii(string $host, string &$result, int $flags = 0) : int { diff --git a/tests/ndbm/gdbm.psi b/tests/ndbm/gdbm.psi index df51b32..034488f 100644 --- a/tests/ndbm/gdbm.psi +++ b/tests/ndbm/gdbm.psi @@ -1,2 +1,2 @@ -lib "gdbm"; +#pragma lib "gdbm"; #include diff --git a/tests/ndbm/ndbm.psi b/tests/ndbm/ndbm.psi index 8258796..9a0232c 100644 --- a/tests/ndbm/ndbm.psi +++ b/tests/ndbm/ndbm.psi @@ -1,6 +1,6 @@ #include -lib "gdbm_compat"; +#pragma lib "gdbm_compat"; #include diff --git a/tests/pipe/pipe.psi b/tests/pipe/pipe.psi index f0c0b1c..8bc0f8e 100644 --- a/tests/pipe/pipe.psi +++ b/tests/pipe/pipe.psi @@ -1,4 +1,4 @@ -lib "crypt"; +#pragma lib "crypt"; #include diff --git a/tests/sqlite/sqlite.psi b/tests/sqlite/sqlite.psi index e1c28ef..3cd48b8 100644 --- a/tests/sqlite/sqlite.psi +++ b/tests/sqlite/sqlite.psi @@ -1,4 +1,4 @@ -lib "sqlite3"; +#pragma lib "sqlite3"; #define NDEBUG 1 diff --git a/tests/yaml/yaml.psi b/tests/yaml/yaml.psi index cd1bc7f..a33ad49 100644 --- a/tests/yaml/yaml.psi +++ b/tests/yaml/yaml.psi @@ -1,4 +1,4 @@ -lib "yaml"; -lib "crypt"; +#pragma lib "yaml"; +#pragma lib "crypt"; #include -- 2.30.2