1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 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 189 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 222 223 224 225 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 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 550 551 552 553 554 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 597 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 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768
|
/* A Bison parser, made from parse.y with Bison version GNU Bison version 1.24
*/
#define YYBISON 1 /* Identify Bison output. */
#define IDENTIFIER 258
#define TYPENAME 259
#define SCSPEC 260
#define TYPESPEC 261
#define TYPE_QUAL 262
#define CONSTANT 263
#define STRING 264
#define ELLIPSIS 265
#define SIZEOF 266
#define ENUM 267
#define IF 268
#define ELSE 269
#define WHILE 270
#define DO 271
#define FOR 272
#define SWITCH 273
#define CASE 274
#define DEFAULT 275
#define BREAK 276
#define CONTINUE 277
#define RETURN 278
#define GOTO 279
#define ASM_KEYWORD 280
#define GCC_ASM_KEYWORD 281
#define TYPEOF 282
#define ALIGNOF 283
#define SIGOF 284
#define ATTRIBUTE 285
#define EXTENSION 286
#define LABEL 287
#define AGGR 288
#define VISSPEC 289
#define DELETE 290
#define NEW 291
#define OVERLOAD 292
#define THIS 293
#define OPERATOR 294
#define CXX_TRUE 295
#define CXX_FALSE 296
#define NAMESPACE 297
#define TYPENAME_KEYWORD 298
#define USING 299
#define LEFT_RIGHT 300
#define TEMPLATE 301
#define TYPEID 302
#define DYNAMIC_CAST 303
#define STATIC_CAST 304
#define REINTERPRET_CAST 305
#define CONST_CAST 306
#define SCOPE 307
#define EMPTY 308
#define PTYPENAME 309
#define NSNAME 310
#define THROW 311
#define ASSIGN 312
#define OROR 313
#define ANDAND 314
#define MIN_MAX 315
#define EQCOMPARE 316
#define ARITHCOMPARE 317
#define LSHIFT 318
#define RSHIFT 319
#define POINTSAT_STAR 320
#define DOT_STAR 321
#define UNARY 322
#define PLUSPLUS 323
#define MINUSMINUS 324
#define HYPERUNARY 325
#define PAREN_STAR_PAREN 326
#define POINTSAT 327
#define TRY 328
#define CATCH 329
#define TYPENAME_ELLIPSIS 330
#define PRE_PARSED_FUNCTION_DECL 331
#define EXTERN_LANG_STRING 332
#define ALL 333
#define PRE_PARSED_CLASS_DECL 334
#define TYPENAME_DEFN 335
#define IDENTIFIER_DEFN 336
#define PTYPENAME_DEFN 337
#define END_OF_LINE 338
#define END_OF_SAVED_INPUT 339
#line 29 "parse.y"
/* Cause the `yydebug' variable to be defined. */
#define YYDEBUG 1
#include "config.h"
#include <stdio.h>
#include <errno.h>
#include "tree.h"
#include "input.h"
#include "flags.h"
#include "lex.h"
#include "cp-tree.h"
#include "output.h"
/* Since parsers are distinct for each language, put the language string
definition here. (fnf) */
char *language_string = "GNU C++";
extern tree void_list_node;
extern struct obstack permanent_obstack;
#ifndef errno
extern int errno;
#endif
extern int end_of_file;
extern int current_class_depth;
/* FSF LOCAL dje prefix attributes */
extern tree strip_attrs PROTO((tree));
/* END FSF LOCAL */
void yyerror ();
/* Like YYERROR but do call yyerror. */
#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
#define OP0(NODE) (TREE_OPERAND (NODE, 0))
#define OP1(NODE) (TREE_OPERAND (NODE, 1))
/* Contains the statement keyword (if/while/do) to include in an
error message if the user supplies an empty conditional expression. */
static char *cond_stmt_keyword;
/* Nonzero if we have an `extern "C"' acting as an extern specifier. */
int have_extern_spec;
int used_extern_spec;
void yyhook ();
/* Cons up an empty parameter list. */
#ifdef __GNUC__
__inline
#endif
static tree
empty_parms ()
{
tree parms;
if (strict_prototype)
parms = void_list_node;
else
parms = NULL_TREE;
return parms;
}
#line 100 "parse.y"
typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
#line 278 "parse.y"
/* List of types and structure classes of the current declaration. */
static tree current_declspecs;
/* List of prefix attributes in effect.
Prefix attributes are parsed by the reserved_declspecs and declmods
rules. They create a list that contains *both* declspecs and attrs. */
/* ??? It is not clear yet that all cases where an attribute can now appear in
a declspec list have been updated. */
static tree prefix_attributes;
/* When defining an aggregate, this is the most recent one being defined. */
static tree current_aggr;
/* Tell yyparse how to print a token's value, if yydebug is set. */
#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
extern void yyprint ();
extern tree combine_strings PROTO((tree));
#ifndef YYLTYPE
typedef
struct yyltype
{
int timestamp;
int first_line;
int first_column;
int last_line;
int last_column;
char *text;
}
yyltype;
#define YYLTYPE yyltype
#endif
#include <stdio.h>
#ifndef __cplusplus
#ifndef __STDC__
#define const
#endif
#endif
#define YYFINAL 1399
#define YYFLAG -32768
#define YYNTBASE 109
#define YYTRANSLATE(x) ((unsigned)(x) <= 339 ? yytranslate[x] : 364)
static const char yytranslate[] = { 0,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 107, 2, 2, 2, 80, 68, 2, 91,
105, 78, 76, 57, 77, 90, 79, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 60, 58, 72,
62, 73, 63, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
92, 2, 108, 67, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 56, 66, 106, 86, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 1, 2, 3, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
59, 61, 64, 65, 69, 70, 71, 74, 75, 81,
82, 83, 84, 85, 87, 88, 89, 93, 94, 95,
96, 97, 98, 99, 100, 101, 102, 103, 104
};
#if YYDEBUG != 0
static const short yyprhs[] = { 0,
0, 1, 3, 4, 7, 10, 12, 13, 14, 15,
17, 19, 20, 23, 25, 27, 29, 31, 37, 42,
47, 52, 53, 60, 61, 67, 73, 76, 81, 84,
88, 92, 94, 96, 99, 102, 104, 107, 108, 114,
116, 120, 122, 125, 127, 130, 132, 136, 138, 142,
144, 148, 149, 155, 156, 162, 163, 169, 170, 176,
180, 184, 191, 199, 204, 208, 212, 214, 216, 218,
220, 222, 225, 229, 233, 237, 241, 244, 247, 250,
253, 256, 258, 260, 262, 263, 265, 268, 269, 271,
276, 277, 283, 287, 291, 294, 298, 302, 305, 307,
314, 319, 323, 327, 330, 333, 336, 341, 344, 348,
349, 350, 352, 356, 359, 363, 365, 370, 373, 378,
381, 386, 389, 391, 393, 395, 397, 399, 401, 403,
405, 407, 409, 413, 417, 420, 425, 430, 434, 438,
443, 447, 452, 453, 455, 459, 461, 463, 464, 471,
472, 474, 475, 478, 480, 482, 484, 486, 488, 490,
492, 494, 498, 500, 504, 505, 507, 509, 510, 519,
521, 523, 527, 532, 536, 539, 541, 545, 549, 553,
557, 559, 561, 563, 564, 568, 571, 574, 577, 580,
583, 586, 591, 594, 599, 602, 606, 610, 615, 620,
626, 632, 639, 642, 647, 653, 657, 661, 665, 667,
671, 674, 678, 683, 685, 688, 694, 696, 700, 704,
708, 712, 716, 720, 724, 728, 732, 736, 740, 744,
748, 752, 756, 760, 764, 768, 772, 778, 782, 786,
788, 791, 795, 797, 799, 801, 803, 805, 807, 809,
812, 815, 819, 821, 823, 827, 829, 831, 833, 835,
839, 843, 847, 848, 853, 854, 861, 864, 869, 872,
875, 877, 882, 884, 885, 886, 896, 897, 898, 908,
909, 910, 920, 921, 922, 932, 937, 942, 945, 948,
950, 955, 958, 961, 964, 970, 974, 980, 984, 989,
996, 999, 1001, 1004, 1006, 1009, 1011, 1013, 1015, 1018,
1019, 1022, 1025, 1029, 1033, 1037, 1041, 1045, 1048, 1051,
1053, 1055, 1057, 1060, 1063, 1066, 1069, 1071, 1073, 1075,
1077, 1080, 1083, 1087, 1091, 1095, 1100, 1102, 1105, 1108,
1111, 1113, 1115, 1117, 1120, 1123, 1126, 1128, 1130, 1133,
1136, 1140, 1142, 1145, 1147, 1149, 1151, 1156, 1161, 1166,
1171, 1173, 1175, 1177, 1179, 1183, 1185, 1189, 1191, 1195,
1196, 1201, 1202, 1210, 1215, 1216, 1224, 1229, 1230, 1238,
1243, 1244, 1252, 1257, 1258, 1260, 1262, 1265, 1272, 1274,
1278, 1279, 1281, 1286, 1293, 1298, 1300, 1302, 1304, 1306,
1308, 1312, 1313, 1316, 1318, 1321, 1325, 1330, 1332, 1334,
1338, 1343, 1350, 1354, 1360, 1361, 1369, 1374, 1375, 1382,
1386, 1389, 1392, 1395, 1400, 1402, 1403, 1405, 1406, 1408,
1410, 1413, 1416, 1419, 1422, 1426, 1429, 1431, 1434, 1438,
1442, 1446, 1449, 1450, 1452, 1456, 1459, 1462, 1464, 1466,
1467, 1470, 1474, 1476, 1481, 1483, 1487, 1489, 1494, 1499,
1502, 1505, 1509, 1513, 1515, 1516, 1518, 1523, 1527, 1529,
1532, 1535, 1538, 1541, 1544, 1547, 1550, 1552, 1555, 1558,
1564, 1567, 1569, 1579, 1587, 1589, 1590, 1592, 1596, 1597,
1599, 1603, 1605, 1607, 1609, 1611, 1617, 1622, 1628, 1633,
1637, 1643, 1648, 1654, 1659, 1663, 1665, 1669, 1671, 1675,
1678, 1680, 1687, 1688, 1691, 1693, 1696, 1697, 1700, 1705,
1710, 1713, 1718, 1722, 1726, 1729, 1732, 1736, 1738, 1740,
1742, 1745, 1749, 1754, 1758, 1762, 1765, 1767, 1771, 1775,
1778, 1781, 1785, 1787, 1791, 1795, 1798, 1801, 1805, 1807,
1811, 1815, 1820, 1824, 1826, 1829, 1832, 1834, 1837, 1842,
1847, 1850, 1852, 1854, 1856, 1859, 1862, 1865, 1868, 1870,
1873, 1875, 1878, 1881, 1885, 1887, 1891, 1894, 1898, 1901,
1904, 1908, 1910, 1914, 1919, 1923, 1926, 1929, 1931, 1935,
1938, 1941, 1943, 1946, 1950, 1952, 1956, 1958, 1964, 1968,
1973, 1977, 1982, 1985, 1988, 1992, 1995, 1997, 1999, 2002,
2005, 2008, 2009, 2010, 2011, 2013, 2015, 2018, 2022, 2024,
2027, 2032, 2033, 2034, 2041, 2043, 2047, 2049, 2051, 2053,
2056, 2057, 2058, 2065, 2067, 2068, 2069, 2077, 2078, 2079,
2087, 2088, 2089, 2090, 2091, 2106, 2107, 2108, 2118, 2119,
2125, 2126, 2134, 2135, 2140, 2143, 2146, 2149, 2153, 2160,
2169, 2180, 2193, 2198, 2202, 2205, 2208, 2210, 2212, 2213,
2214, 2221, 2222, 2223, 2229, 2230, 2231, 2232, 2233, 2243,
2245, 2247, 2251, 2255, 2258, 2261, 2264, 2267, 2269, 2272,
2273, 2275, 2276, 2278, 2280, 2281, 2283, 2285, 2289, 2294,
2296, 2300, 2301, 2303, 2305, 2307, 2310, 2313, 2316, 2318,
2320, 2323, 2326, 2329, 2332, 2334, 2338, 2341, 2344, 2349,
2352, 2355, 2358, 2361, 2364, 2367, 2369, 2372, 2375, 2377,
2379, 2380, 2381, 2383, 2384, 2389, 2392, 2394, 2396, 2400,
2401, 2405, 2409, 2413, 2415, 2418, 2421, 2424, 2427, 2430,
2433, 2436, 2439, 2442, 2445, 2448, 2451, 2454, 2457, 2460,
2463, 2466, 2469, 2472, 2475, 2478, 2481, 2484, 2488, 2491,
2494, 2497, 2500, 2504, 2507, 2510, 2515, 2520, 2524
};
static const short yyrhs[] = { -1,
110, 0, 0, 111, 116, 0, 110, 116, 0, 110,
0, 0, 0, 0, 25, 0, 26, 0, 0, 117,
118, 0, 141, 0, 137, 0, 131, 0, 129, 0,
115, 91, 200, 105, 58, 0, 123, 56, 112, 106,
0, 123, 113, 141, 114, 0, 123, 113, 137, 114,
0, 0, 42, 151, 56, 119, 112, 106, 0, 0,
42, 56, 120, 112, 106, 0, 42, 151, 62, 122,
58, 0, 121, 58, 0, 44, 42, 122, 58, 0,
44, 284, 0, 44, 294, 284, 0, 44, 294, 183,
0, 183, 0, 284, 0, 294, 284, 0, 294, 183,
0, 97, 0, 123, 97, 0, 0, 46, 72, 125,
126, 73, 0, 128, 0, 126, 57, 128, 0, 242,
0, 242, 151, 0, 43, 0, 43, 151, 0, 127,
0, 127, 62, 213, 0, 354, 0, 37, 130, 58,
0, 3, 0, 130, 57, 3, 0, 0, 124, 244,
56, 132, 58, 0, 0, 124, 245, 56, 133, 58,
0, 0, 124, 244, 60, 134, 58, 0, 0, 124,
245, 60, 135, 58, 0, 124, 244, 58, 0, 124,
245, 58, 0, 124, 281, 358, 218, 227, 136, 0,
124, 207, 204, 358, 218, 227, 136, 0, 124, 210,
281, 136, 0, 124, 1, 106, 0, 124, 1, 58,
0, 56, 0, 60, 0, 58, 0, 62, 0, 23,
0, 217, 58, 0, 210, 216, 58, 0, 210, 281,
58, 0, 207, 215, 58, 0, 207, 204, 58, 0,
210, 58, 0, 154, 58, 0, 207, 58, 0, 1,
58, 0, 1, 106, 0, 58, 0, 201, 0, 147,
0, 0, 146, 0, 146, 58, 0, 0, 104, 0,
143, 139, 138, 306, 0, 0, 143, 139, 329, 142,
140, 0, 207, 204, 1, 0, 210, 281, 1, 0,
281, 1, 0, 207, 204, 358, 0, 210, 281, 358,
0, 281, 358, 0, 96, 0, 207, 91, 349, 105,
272, 358, 0, 207, 45, 272, 358, 0, 207, 204,
358, 0, 210, 281, 358, 0, 281, 358, 0, 23,
3, 0, 145, 234, 0, 145, 91, 174, 105, 0,
145, 45, 0, 60, 148, 149, 0, 0, 0, 150,
0, 149, 57, 150, 0, 149, 1, 0, 91, 174,
105, 0, 45, 0, 152, 91, 174, 105, 0, 152,
45, 0, 291, 91, 174, 105, 0, 291, 45, 0,
285, 91, 174, 105, 0, 285, 45, 0, 3, 0,
4, 0, 54, 0, 55, 0, 3, 0, 54, 0,
55, 0, 101, 0, 100, 0, 102, 0, 46, 243,
162, 0, 46, 207, 204, 0, 46, 281, 0, 5,
46, 243, 162, 0, 5, 46, 207, 204, 0, 5,
46, 281, 0, 156, 157, 162, 0, 54, 72, 158,
73, 0, 54, 72, 73, 0, 4, 72, 158, 73,
0, 0, 159, 0, 158, 57, 159, 0, 206, 0,
181, 0, 0, 99, 251, 161, 256, 257, 106, 0,
0, 160, 0, 0, 160, 163, 0, 77, 0, 76,
0, 84, 0, 85, 0, 107, 0, 173, 0, 181,
0, 45, 0, 91, 165, 105, 0, 45, 0, 91,
169, 105, 0, 0, 169, 0, 1, 0, 0, 339,
204, 358, 218, 227, 62, 170, 235, 0, 165, 0,
106, 0, 303, 299, 106, 0, 303, 299, 1, 106,
0, 303, 1, 106, 0, 56, 171, 0, 313, 0,
181, 57, 181, 0, 181, 57, 1, 0, 173, 57,
181, 0, 173, 57, 1, 0, 181, 0, 173, 0,
186, 0, 0, 31, 176, 180, 0, 78, 180, 0,
68, 180, 0, 86, 180, 0, 164, 180, 0, 65,
151, 0, 11, 175, 0, 11, 91, 206, 105, 0,
28, 175, 0, 28, 91, 206, 105, 0, 197, 271,
0, 197, 271, 178, 0, 197, 177, 271, 0, 197,
177, 271, 178, 0, 197, 91, 206, 105, 0, 197,
91, 206, 105, 178, 0, 197, 177, 91, 206, 105,
0, 197, 177, 91, 206, 105, 178, 0, 198, 180,
0, 198, 92, 108, 180, 0, 198, 92, 165, 108,
180, 0, 91, 174, 105, 0, 56, 174, 106, 0,
91, 174, 105, 0, 45, 0, 91, 213, 105, 0,
62, 235, 0, 91, 206, 105, 0, 179, 91, 206,
105, 0, 175, 0, 179, 175, 0, 179, 56, 236,
240, 106, 0, 180, 0, 181, 81, 181, 0, 181,
82, 181, 0, 181, 76, 181, 0, 181, 77, 181,
0, 181, 78, 181, 0, 181, 79, 181, 0, 181,
80, 181, 0, 181, 74, 181, 0, 181, 75, 181,
0, 181, 71, 181, 0, 181, 72, 181, 0, 181,
73, 181, 0, 181, 70, 181, 0, 181, 69, 181,
0, 181, 68, 181, 0, 181, 66, 181, 0, 181,
67, 181, 0, 181, 65, 181, 0, 181, 64, 181,
0, 181, 63, 344, 60, 181, 0, 181, 62, 181,
0, 181, 61, 181, 0, 59, 0, 59, 181, 0,
86, 356, 151, 0, 363, 0, 3, 0, 54, 0,
55, 0, 182, 0, 4, 0, 182, 0, 78, 184,
0, 68, 184, 0, 91, 184, 105, 0, 283, 0,
182, 0, 91, 184, 105, 0, 182, 0, 8, 0,
199, 0, 200, 0, 91, 165, 105, 0, 91, 184,
105, 0, 91, 1, 105, 0, 0, 91, 187, 307,
105, 0, 0, 186, 91, 174, 105, 188, 163, 0,
186, 45, 0, 186, 92, 165, 108, 0, 186, 84,
0, 186, 85, 0, 38, 0, 7, 91, 174, 105,
0, 287, 0, 0, 0, 48, 72, 189, 206, 73,
190, 91, 165, 105, 0, 0, 0, 49, 72, 191,
206, 73, 192, 91, 165, 105, 0, 0, 0, 50,
72, 193, 206, 73, 194, 91, 165, 105, 0, 0,
0, 51, 72, 195, 206, 73, 196, 91, 165, 105,
0, 47, 91, 165, 105, 0, 47, 91, 206, 105,
0, 294, 3, 0, 294, 363, 0, 286, 0, 286,
91, 174, 105, 0, 286, 45, 0, 202, 183, 0,
202, 286, 0, 202, 183, 91, 174, 105, 0, 202,
183, 45, 0, 202, 286, 91, 174, 105, 0, 202,
286, 45, 0, 202, 86, 6, 45, 0, 202, 6,
52, 86, 6, 45, 0, 202, 1, 0, 36, 0,
294, 36, 0, 35, 0, 294, 198, 0, 40, 0,
41, 0, 9, 0, 200, 9, 0, 0, 186, 90,
0, 186, 89, 0, 213, 204, 58, 0, 207, 204,
58, 0, 213, 215, 58, 0, 207, 215, 58, 0,
210, 216, 58, 0, 207, 58, 0, 210, 58, 0,
277, 0, 281, 0, 45, 0, 205, 45, 0, 211,
297, 0, 273, 297, 0, 213, 297, 0, 211, 0,
273, 0, 211, 0, 208, 0, 210, 213, 0, 213,
209, 0, 213, 212, 209, 0, 210, 213, 209, 0,
210, 213, 212, 0, 210, 213, 212, 209, 0, 5,
0, 209, 214, 0, 209, 5, 0, 209, 228, 0,
228, 0, 273, 0, 5, 0, 210, 7, 0, 210,
5, 0, 210, 228, 0, 228, 0, 213, 0, 273,
213, 0, 213, 212, 0, 273, 213, 212, 0, 214,
0, 212, 214, 0, 237, 0, 6, 0, 291, 0,
27, 91, 165, 105, 0, 27, 91, 206, 105, 0,
29, 91, 165, 105, 0, 29, 91, 206, 105, 0,
6, 0, 7, 0, 237, 0, 219, 0, 215, 57,
221, 0, 223, 0, 216, 57, 221, 0, 225, 0,
217, 57, 221, 0, 0, 115, 91, 200, 105, 0,
0, 204, 358, 218, 227, 62, 220, 235, 0, 204,
358, 218, 227, 0, 0, 204, 358, 218, 227, 62,
222, 235, 0, 204, 358, 218, 227, 0, 0, 281,
358, 218, 227, 62, 224, 235, 0, 281, 358, 218,
227, 0, 0, 281, 358, 218, 227, 62, 226, 235,
0, 281, 358, 218, 227, 0, 0, 228, 0, 229,
0, 228, 229, 0, 30, 91, 91, 230, 105, 105,
0, 231, 0, 230, 57, 231, 0, 0, 232, 0,
232, 91, 3, 105, 0, 232, 91, 3, 57, 174,
105, 0, 232, 91, 174, 105, 0, 151, 0, 5,
0, 6, 0, 7, 0, 151, 0, 233, 57, 151,
0, 0, 62, 235, 0, 181, 0, 56, 106, 0,
56, 236, 106, 0, 56, 236, 57, 106, 0, 1,
0, 235, 0, 236, 57, 235, 0, 92, 181, 108,
235, 0, 236, 57, 19, 181, 60, 235, 0, 151,
60, 235, 0, 236, 57, 151, 60, 235, 0, 0,
12, 151, 56, 238, 269, 241, 106, 0, 12, 151,
56, 106, 0, 0, 12, 56, 239, 269, 241, 106,
0, 12, 56, 106, 0, 12, 151, 0, 12, 292,
0, 43, 292, 0, 250, 256, 257, 106, 0, 250,
0, 0, 57, 0, 0, 57, 0, 33, 0, 242,
5, 0, 242, 6, 0, 242, 7, 0, 242, 33,
0, 242, 156, 58, 0, 242, 151, 0, 243, 0,
242, 153, 0, 242, 156, 56, 0, 242, 156, 60,
0, 242, 289, 151, 0, 242, 155, 0, 0, 244,
0, 245, 247, 251, 0, 246, 251, 0, 242, 56,
0, 249, 0, 248, 0, 0, 60, 356, 0, 60,
356, 252, 0, 253, 0, 252, 57, 356, 253, 0,
254, 0, 255, 356, 254, 0, 291, 0, 29, 91,
165, 105, 0, 29, 91, 206, 105, 0, 34, 356,
0, 5, 356, 0, 255, 34, 356, 0, 255, 5,
356, 0, 56, 0, 0, 258, 0, 257, 34, 60,
258, 0, 257, 34, 60, 0, 259, 0, 258, 259,
0, 260, 58, 0, 260, 106, 0, 144, 60, 0,
144, 93, 0, 144, 23, 0, 144, 56, 0, 58,
0, 207, 261, 0, 210, 262, 0, 281, 358, 218,
227, 234, 0, 60, 181, 0, 1, 0, 207, 91,
349, 105, 272, 358, 218, 227, 234, 0, 207, 45,
272, 358, 218, 227, 234, 0, 121, 0, 0, 263,
0, 261, 57, 264, 0, 0, 266, 0, 262, 57,
268, 0, 265, 0, 266, 0, 267, 0, 268, 0,
277, 358, 218, 227, 234, 0, 4, 60, 181, 227,
0, 281, 358, 218, 227, 234, 0, 3, 60, 181,
227, 0, 60, 181, 227, 0, 277, 358, 218, 227,
234, 0, 4, 60, 181, 227, 0, 281, 358, 218,
227, 234, 0, 3, 60, 181, 227, 0, 60, 181,
227, 0, 270, 0, 269, 57, 270, 0, 151, 0,
151, 62, 181, 0, 339, 295, 0, 339, 0, 91,
206, 105, 92, 165, 108, 0, 0, 272, 7, 0,
7, 0, 273, 7, 0, 0, 274, 165, 0, 274,
91, 174, 105, 0, 274, 91, 349, 105, 0, 274,
45, 0, 274, 91, 1, 105, 0, 78, 273, 277,
0, 68, 273, 277, 0, 78, 277, 0, 68, 277,
0, 293, 272, 277, 0, 280, 0, 288, 0, 279,
0, 289, 288, 0, 280, 276, 272, 0, 280, 92,
275, 108, 0, 280, 92, 108, 0, 91, 277, 105,
0, 289, 288, 0, 288, 0, 78, 273, 281, 0,
68, 273, 281, 0, 78, 281, 0, 68, 281, 0,
293, 272, 281, 0, 185, 0, 78, 273, 281, 0,
68, 273, 281, 0, 78, 282, 0, 68, 282, 0,
293, 272, 281, 0, 283, 0, 185, 276, 272, 0,
91, 282, 105, 0, 185, 92, 275, 108, 0, 185,
92, 108, 0, 285, 0, 289, 183, 0, 289, 182,
0, 285, 0, 294, 285, 0, 213, 91, 174, 105,
0, 213, 91, 184, 105, 0, 213, 205, 0, 4,
0, 155, 0, 290, 0, 289, 290, 0, 4, 52,
0, 55, 52, 0, 155, 52, 0, 278, 0, 294,
278, 0, 279, 0, 294, 278, 0, 289, 78, 0,
294, 289, 78, 0, 52, 0, 78, 272, 295, 0,
78, 272, 0, 68, 272, 295, 0, 68, 272, 0,
293, 272, 0, 293, 272, 295, 0, 296, 0, 92,
165, 108, 0, 296, 92, 275, 108, 0, 78, 273,
297, 0, 78, 297, 0, 78, 273, 0, 78, 0,
68, 273, 297, 0, 68, 297, 0, 68, 273, 0,
68, 0, 293, 272, 0, 293, 272, 297, 0, 298,
0, 91, 297, 105, 0, 88, 0, 298, 91, 349,
105, 272, 0, 298, 45, 272, 0, 298, 92, 275,
108, 0, 298, 92, 108, 0, 91, 350, 105, 272,
0, 179, 272, 0, 205, 272, 0, 92, 275, 108,
0, 92, 108, 0, 312, 0, 300, 0, 299, 312,
0, 299, 300, 0, 1, 58, 0, 0, 0, 0,
304, 0, 305, 0, 304, 305, 0, 32, 233, 58,
0, 307, 0, 1, 307, 0, 56, 301, 171, 302,
0, 0, 0, 13, 309, 301, 167, 310, 311, 0,
307, 0, 301, 313, 302, 0, 307, 0, 313, 0,
203, 0, 165, 58, 0, 0, 0, 308, 14, 314,
311, 315, 302, 0, 308, 0, 0, 0, 15, 316,
301, 167, 317, 172, 302, 0, 0, 0, 16, 318,
311, 15, 319, 166, 58, 0, 0, 0, 0, 0,
17, 320, 91, 342, 321, 301, 168, 58, 322, 344,
105, 323, 172, 302, 0, 0, 0, 18, 301, 91,
169, 105, 324, 311, 325, 302, 0, 0, 19, 181,
60, 326, 312, 0, 0, 19, 181, 10, 181, 60,
327, 312, 0, 0, 20, 60, 328, 312, 0, 21,
58, 0, 22, 58, 0, 23, 58, 0, 23, 165,
58, 0, 115, 343, 91, 200, 105, 58, 0, 115,
343, 91, 200, 60, 345, 105, 58, 0, 115, 343,
91, 200, 60, 345, 60, 345, 105, 58, 0, 115,
343, 91, 200, 60, 345, 60, 345, 60, 348, 105,
58, 0, 24, 78, 165, 58, 0, 24, 151, 58,
0, 341, 312, 0, 341, 106, 0, 58, 0, 332,
0, 0, 0, 93, 330, 138, 306, 331, 335, 0,
0, 0, 93, 333, 307, 334, 335, 0, 0, 0,
0, 0, 335, 94, 301, 336, 340, 337, 307, 338,
302, 0, 211, 0, 273, 0, 91, 10, 105, 0,
91, 355, 105, 0, 3, 60, 0, 54, 60, 0,
4, 60, 0, 344, 58, 0, 203, 0, 56, 171,
0, 0, 7, 0, 0, 165, 0, 1, 0, 0,
346, 0, 347, 0, 346, 57, 347, 0, 9, 91,
165, 105, 0, 9, 0, 348, 57, 9, 0, 0,
350, 0, 206, 0, 351, 0, 352, 10, 0, 351,
10, 0, 206, 10, 0, 10, 0, 95, 0, 351,
95, 0, 206, 95, 0, 351, 60, 0, 206, 60,
0, 353, 0, 355, 62, 235, 0, 352, 354, 0,
352, 357, 0, 352, 357, 62, 235, 0, 351, 57,
0, 206, 57, 0, 208, 204, 0, 211, 204, 0,
213, 204, 0, 208, 297, 0, 208, 0, 210, 281,
0, 355, 234, 0, 353, 0, 206, 0, 0, 0,
281, 0, 0, 59, 91, 360, 105, 0, 59, 45,
0, 206, 0, 359, 0, 360, 57, 359, 0, 0,
78, 272, 361, 0, 68, 272, 361, 0, 293, 272,
361, 0, 39, 0, 362, 78, 0, 362, 79, 0,
362, 80, 0, 362, 76, 0, 362, 77, 0, 362,
68, 0, 362, 66, 0, 362, 67, 0, 362, 86,
0, 362, 57, 0, 362, 71, 0, 362, 72, 0,
362, 73, 0, 362, 70, 0, 362, 61, 0, 362,
62, 0, 362, 74, 0, 362, 75, 0, 362, 84,
0, 362, 85, 0, 362, 65, 0, 362, 64, 0,
362, 107, 0, 362, 63, 60, 0, 362, 69, 0,
362, 89, 0, 362, 81, 0, 362, 45, 0, 362,
92, 108, 0, 362, 36, 0, 362, 35, 0, 362,
36, 92, 108, 0, 362, 35, 92, 108, 0, 362,
339, 361, 0, 362, 1, 0
};
#endif
#if YYDEBUG != 0
static const short yyrline[] = { 0,
299, 300, 314, 316, 317, 321, 323, 326, 331, 335,
337, 340, 343, 347, 350, 352, 354, 355, 358, 360,
363, 366, 368, 370, 372, 374, 376, 378, 382, 385,
387, 391, 393, 394, 396, 400, 403, 409, 412, 416,
419, 423, 433, 435, 437, 441, 451, 453, 456, 461,
463, 467, 473, 473, 476, 476, 479, 479, 492, 492,
497, 502, 519, 540, 553, 554, 557, 558, 559, 560,
561, 564, 567, 570, 577, 582, 590, 592, 593, 613,
614, 615, 618, 621, 625, 627, 628, 631, 633, 636,
642, 647, 647, 649, 651, 655, 663, 669, 674, 682,
693, 700, 703, 706, 710, 718, 720, 722, 726, 739,
759, 762, 764, 765, 768, 774, 780, 782, 784, 786,
789, 793, 799, 801, 802, 803, 806, 808, 809, 812,
814, 815, 818, 821, 824, 826, 828, 831, 835, 840,
843, 845, 849, 854, 857, 861, 864, 867, 901, 919,
922, 926, 929, 933, 935, 937, 939, 941, 945, 947,
950, 955, 959, 964, 968, 971, 973, 977, 997, 1004,
1007, 1009, 1010, 1011, 1014, 1017, 1021, 1025, 1028, 1030,
1034, 1037, 1040, 1049, 1052, 1055, 1057, 1059, 1061, 1068,
1079, 1101, 1103, 1105, 1110, 1112, 1114, 1116, 1118, 1121,
1123, 1125, 1128, 1130, 1134, 1140, 1143, 1150, 1153, 1155,
1163, 1172, 1178, 1184, 1186, 1188, 1201, 1204, 1206, 1208,
1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228,
1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1247, 1254,
1256, 1273, 1276, 1277, 1278, 1279, 1282, 1284, 1287, 1289,
1291, 1293, 1297, 1299, 1300, 1304, 1324, 1325, 1326, 1328,
1336, 1344, 1346, 1354, 1375, 1380, 1387, 1394, 1396, 1405,
1410, 1433, 1477, 1478, 1480, 1482, 1485, 1487, 1489, 1492,
1494, 1496, 1499, 1501, 1503, 1506, 1508, 1511, 1550, 1557,
1559, 1561, 1563, 1566, 1569, 1585, 1601, 1613, 1626, 1635,
1645, 1690, 1692, 1696, 1698, 1702, 1705, 1710, 1712, 1716,
1729, 1731, 1738, 1749, 1760, 1766, 1771, 1773, 1778, 1785,
1787, 1791, 1795, 1801, 1804, 1806, 1808, 1810, 1819, 1821,
1824, 1827, 1829, 1831, 1833, 1835, 1840, 1846, 1848, 1853,
1855, 1864, 1867, 1869, 1872, 1878, 1880, 1890, 1893, 1895,
1897, 1901, 1904, 1912, 1913, 1914, 1915, 1919, 1923, 1937,
1955, 1956, 1957, 1960, 1962, 1965, 1967, 1970, 1972, 1975,
1978, 1982, 2000, 2002, 2021, 2027, 2028, 2034, 2043, 2045,
2055, 2064, 2066, 2078, 2081, 2085, 2088, 2092, 2097, 2100,
2104, 2107, 2109, 2111, 2113, 2120, 2122, 2123, 2124, 2128,
2131, 2135, 2138, 2141, 2143, 2146, 2149, 2152, 2158, 2161,
2164, 2166, 2168, 2170, 2174, 2178, 2182, 2185, 2188, 2192,
2195, 2197, 2199, 2202, 2250, 2260, 2262, 2265, 2267, 2271,
2272, 2274, 2276, 2278, 2282, 2291, 2294, 2297, 2300, 2306,
2310, 2313, 2317, 2321, 2324, 2331, 2339, 2344, 2344, 2346,
2349, 2351, 2355, 2357, 2361, 2388, 2418, 2420, 2442, 2466,
2468, 2472, 2498, 2507, 2573, 2576, 2583, 2594, 2603, 2607,
2622, 2625, 2630, 2632, 2634, 2636, 2638, 2642, 2648, 2650,
2653, 2655, 2666, 2673, 2680, 2686, 2689, 2690, 2701, 2704,
2705, 2716, 2718, 2721, 2723, 2726, 2733, 2741, 2748, 2754,
2762, 2766, 2771, 2775, 2778, 2787, 2789, 2793, 2796, 2801,
2804, 2808, 2817, 2820, 2824, 2827, 2834, 2838, 2844, 2847,
2849, 2851, 2857, 2860, 2862, 2864, 2866, 2870, 2873, 2887,
2890, 2895, 2898, 2900, 2902, 2904, 2908, 2914, 2917, 2919,
2921, 2923, 2927, 2930, 2933, 2935, 2937, 2939, 2943, 2946,
2949, 2951, 2953, 2955, 2964, 2970, 2976, 2978, 2982, 2985,
2987, 2991, 2993, 2996, 2998, 3004, 3007, 3009, 3023, 3025,
3029, 3031, 3035, 3038, 3044, 3050, 3053, 3055, 3057, 3059,
3063, 3067, 3071, 3074, 3079, 3082, 3084, 3086, 3088, 3090,
3092, 3094, 3096, 3100, 3104, 3108, 3112, 3113, 3115, 3117,
3119, 3121, 3123, 3125, 3127, 3129, 3137, 3139, 3140, 3141,
3144, 3151, 3159, 3167, 3169, 3174, 3176, 3179, 3193, 3196,
3199, 3203, 3206, 3210, 3212, 3215, 3219, 3222, 3225, 3228,
3241, 3244, 3246, 3247, 3253, 3258, 3260, 3263, 3267, 3270,
3276, 3288, 3292, 3295, 3299, 3312, 3320, 3324, 3325, 3350,
3350, 3382, 3382, 3398, 3398, 3402, 3406, 3409, 3414, 3421,
3430, 3439, 3448, 3451, 3457, 3459, 3463, 3465, 3468, 3475,
3479, 3485, 3489, 3492, 3495, 3497, 3500, 3502, 3504, 3506,
3508, 3511, 3524, 3529, 3537, 3539, 3543, 3546, 3547, 3552,
3556, 3560, 3563, 3564, 3570, 3572, 3575, 3577, 3581, 3586,
3589, 3599, 3606, 3607, 3614, 3620, 3625, 3629, 3634, 3641,
3645, 3649, 3654, 3665, 3679, 3682, 3684, 3686, 3688, 3692,
3694, 3702, 3722, 3724, 3726, 3729, 3732, 3737, 3742, 3744,
3747, 3769, 3775, 3782, 3785, 3787, 3791, 3796, 3798, 3805,
3808, 3810, 3812, 3818, 3822, 3825, 3827, 3829, 3831, 3833,
3835, 3837, 3839, 3841, 3843, 3845, 3847, 3849, 3851, 3853,
3855, 3857, 3859, 3861, 3863, 3865, 3867, 3869, 3871, 3873,
3875, 3877, 3879, 3881, 3883, 3885, 3887, 3890, 3892
};
static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
"TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
"ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
"RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","SIGOF","ATTRIBUTE",
"EXTENSION","LABEL","AGGR","VISSPEC","DELETE","NEW","OVERLOAD","THIS","OPERATOR",
"CXX_TRUE","CXX_FALSE","NAMESPACE","TYPENAME_KEYWORD","USING","LEFT_RIGHT","TEMPLATE",
"TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST","CONST_CAST","SCOPE",
"EMPTY","PTYPENAME","NSNAME","'{'","','","';'","THROW","':'","ASSIGN","'='",
"'?'","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE",
"'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR",
"DOT_STAR","UNARY","PLUSPLUS","MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN",
"POINTSAT","'.'","'('","'['","TRY","CATCH","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL",
"EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN",
"PTYPENAME_DEFN","END_OF_LINE","END_OF_SAVED_INPUT","')'","'}'","'!'","']'",
"program","extdefs","@1","extdefs_opt",".hush_warning",".warning_ok","asm_keyword",
"lang_extdef","@2","extdef","@3","@4","using_decl","any_id","extern_lang_string",
"template_header","@5","template_parm_list","template_type_parm","template_parm",
"overloaddef","ov_identifiers","template_def","@6","@7","@8","@9","fn_tmpl_end",
"datadef","ctor_initializer_opt","maybe_return_init","eat_saved_input","fndef",
"@10","fn.def1","fn.def2","return_id","return_init","base_init",".set_base_init",
"member_init_list","member_init","identifier","notype_identifier","identifier_defn",
"explicit_instantiation","template_type","template_type_name","tmpl.2","template_arg_list",
"template_arg","template_instantiate_once","@11","template_instantiation","template_instantiate_some",
"unop","expr","paren_expr_or_null","paren_cond_or_null","xcond","condition",
"@12","compstmtend","already_scoped_stmt","nontrivial_exprlist","nonnull_exprlist",
"unary_expr","@13","new_placement","new_initializer","regcast_or_absdcl","cast_expr",
"expr_no_commas","notype_unqualified_id","unqualified_id","expr_or_declarator",
"direct_notype_declarator","primary","@14","@15","@16","@17","@18","@19","@20",
"@21","@22","@23","new","delete","boolean.literal","string","nodecls","object",
"decl","declarator","fcast_or_absdcl","type_id","typed_declspecs","typed_declspecs1",
"reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
"typespecqual_reserved","initdecls","notype_initdecls","nomods_initdecls","maybeasm",
"initdcl0","@24","initdcl","@25","notype_initdcl0","@26","nomods_initdcl0","@27",
"maybe_attribute","attributes","attribute","attribute_list","attrib","any_word",
"identifiers_or_typenames","maybe_init","init","initlist","structsp","@28","@29",
"maybecomma","maybecomma_warn","aggr","specialization","named_class_head_sans_basetype",
"named_class_head_sans_basetype_defn","named_complex_class_head_sans_basetype",
"do_xref_defn","named_class_head","unnamed_class_head","class_head","maybe_base_class_list",
"base_class_list","base_class","base_class.1","base_class_access_list","left_curly",
"opt.component_decl_list","component_decl_list","component_decl","component_decl_1",
"components","notype_components","component_declarator0","component_declarator",
"after_type_component_declarator0","notype_component_declarator0","after_type_component_declarator",
"notype_component_declarator","enumlist","enumerator","new_type_id","type_quals",
"nonempty_type_quals","suspend_mom","nonmomentary_expr","maybe_parmlist","after_type_declarator",
"qualified_type_name","nested_type","direct_after_type_declarator","notype_declarator",
"complex_notype_declarator","complex_direct_notype_declarator","qualified_id",
"notype_qualified_id","overqualified_id","functional_cast","type_name","nested_name_specifier",
"nested_name_specifier_1","complete_type_name","complex_type_name","ptr_to_mem",
"global_scope","new_declarator","direct_new_declarator","absdcl","direct_abstract_declarator",
"stmts","errstmt",".pushlevel",".poplevel","maybe_label_decls","label_decls",
"label_decl","compstmt_or_error","compstmt","simple_if","@30","@31","implicitly_scoped_stmt",
"stmt","simple_stmt","@32","@33","@34","@35","@36","@37","@38","@39","@40","@41",
"@42","@43","@44","@45","@46","function_try_block","@47","@48","try_block","@49",
"@50","handler_seq","@51","@52","@53","type_specifier_seq","handler_args","label_colon",
"for.init.statement","maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands",
"asm_operand","asm_clobbers","parmlist","complex_parmlist","parms","parms_comma",
"named_parm","full_parm","parm","see_typename","bad_parm","exception_specification_opt",
"ansi_raise_identifier","ansi_raise_identifiers","conversion_declarator","operator",
"operator_name",""
};
#endif
static const short yyr1[] = { 0,
109, 109, 111, 110, 110, 112, 112, 113, 114, 115,
115, 117, 116, 118, 118, 118, 118, 118, 118, 118,
118, 119, 118, 120, 118, 118, 118, 118, 121, 121,
121, 122, 122, 122, 122, 123, 123, 125, 124, 126,
126, 127, 127, 127, 127, 128, 128, 128, 129, 130,
130, 132, 131, 133, 131, 134, 131, 135, 131, 131,
131, 131, 131, 131, 131, 131, 136, 136, 136, 136,
136, 137, 137, 137, 137, 137, 137, 137, 137, 137,
137, 137, 138, 138, 139, 139, 139, 140, 140, 141,
142, 141, 141, 141, 141, 143, 143, 143, 143, 144,
144, 144, 144, 144, 145, 146, 146, 146, 147, 148,
149, 149, 149, 149, 150, 150, 150, 150, 150, 150,
150, 150, 151, 151, 151, 151, 152, 152, 152, 153,
153, 153, 154, 154, 154, 154, 154, 154, 155, 156,
156, 156, 157, 158, 158, 159, 159, 161, 160, 162,
162, 163, 163, 164, 164, 164, 164, 164, 165, 165,
166, 166, 167, 167, 168, 168, 168, 170, 169, 169,
171, 171, 171, 171, 172, 172, 173, 173, 173, 173,
174, 174, 175, 176, 175, 175, 175, 175, 175, 175,
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
175, 175, 175, 175, 175, 177, 177, 178, 178, 178,
178, 179, 179, 180, 180, 180, 181, 181, 181, 181,
181, 181, 181, 181, 181, 181, 181, 181, 181, 181,
181, 181, 181, 181, 181, 181, 181, 181, 181, 181,
181, 182, 182, 182, 182, 182, 183, 183, 184, 184,
184, 184, 185, 185, 185, 186, 186, 186, 186, 186,
186, 186, 187, 186, 188, 186, 186, 186, 186, 186,
186, 186, 186, 189, 190, 186, 191, 192, 186, 193,
194, 186, 195, 196, 186, 186, 186, 186, 186, 186,
186, 186, 186, 186, 186, 186, 186, 186, 186, 186,
186, 197, 197, 198, 198, 199, 199, 200, 200, 201,
202, 202, 203, 203, 203, 203, 203, 203, 203, 204,
204, 205, 205, 206, 206, 206, 206, 206, 207, 207,
208, 208, 208, 208, 208, 208, 209, 209, 209, 209,
209, 210, 210, 210, 210, 210, 210, 211, 211, 211,
211, 212, 212, 213, 213, 213, 213, 213, 213, 213,
214, 214, 214, 215, 215, 216, 216, 217, 217, 218,
218, 220, 219, 219, 222, 221, 221, 224, 223, 223,
226, 225, 225, 227, 227, 228, 228, 229, 230, 230,
231, 231, 231, 231, 231, 232, 232, 232, 232, 233,
233, 234, 234, 235, 235, 235, 235, 235, 236, 236,
236, 236, 236, 236, 238, 237, 237, 239, 237, 237,
237, 237, 237, 237, 237, 240, 240, 241, 241, 242,
242, 242, 242, 242, 243, 244, 244, 245, 245, 245,
246, 246, 247, 248, 248, 248, 249, 250, 250, 251,
251, 251, 252, 252, 253, 253, 254, 254, 254, 255,
255, 255, 255, 256, 257, 257, 257, 257, 258, 258,
259, 259, 259, 259, 259, 259, 259, 260, 260, 260,
260, 260, 260, 260, 260, 261, 261, 261, 262, 262,
262, 263, 263, 264, 264, 265, 265, 266, 266, 266,
267, 267, 268, 268, 268, 269, 269, 270, 270, 271,
271, 271, 272, 272, 273, 273, 274, 275, 276, 276,
276, 276, 277, 277, 277, 277, 277, 277, 278, 278,
279, 280, 280, 280, 280, 280, 280, 281, 281, 281,
281, 281, 281, 282, 282, 282, 282, 282, 282, 283,
283, 283, 283, 283, 284, 285, 286, 286, 287, 287,
287, 288, 288, 289, 289, 290, 290, 290, 291, 291,
292, 292, 293, 293, 294, 295, 295, 295, 295, 295,
295, 295, 296, 296, 297, 297, 297, 297, 297, 297,
297, 297, 297, 297, 297, 298, 298, 298, 298, 298,
298, 298, 298, 298, 298, 298, 299, 299, 299, 299,
300, 301, 302, 303, 303, 304, 304, 305, 306, 306,
307, 309, 310, 308, 311, 311, 312, 312, 313, 313,
314, 315, 313, 313, 316, 317, 313, 318, 319, 313,
320, 321, 322, 323, 313, 324, 325, 313, 326, 313,
327, 313, 328, 313, 313, 313, 313, 313, 313, 313,
313, 313, 313, 313, 313, 313, 313, 313, 330, 331,
329, 333, 334, 332, 335, 336, 337, 338, 335, 339,
339, 340, 340, 341, 341, 341, 342, 342, 342, 343,
343, 344, 344, 344, 345, 345, 346, 346, 347, 348,
348, 349, 349, 349, 350, 350, 350, 350, 350, 350,
350, 350, 350, 350, 351, 351, 351, 351, 351, 352,
352, 353, 353, 353, 353, 353, 353, 354, 355, 355,
356, 357, 357, 358, 358, 358, 359, 360, 360, 361,
361, 361, 361, 362, 363, 363, 363, 363, 363, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363, 363,
363, 363, 363, 363, 363, 363, 363, 363, 363
};
static const short yyr2[] = { 0,
0, 1, 0, 2, 2, 1, 0, 0, 0, 1,
1, 0, 2, 1, 1, 1, 1, 5, 4, 4,
4, 0, 6, 0, 5, 5, 2, 4, 2, 3,
3, 1, 1, 2, 2, 1, 2, 0, 5, 1,
3, 1, 2, 1, 2, 1, 3, 1, 3, 1,
3, 0, 5, 0, 5, 0, 5, 0, 5, 3,
3, 6, 7, 4, 3, 3, 1, 1, 1, 1,
1, 2, 3, 3, 3, 3, 2, 2, 2, 2,
2, 1, 1, 1, 0, 1, 2, 0, 1, 4,
0, 5, 3, 3, 2, 3, 3, 2, 1, 6,
4, 3, 3, 2, 2, 2, 4, 2, 3, 0,
0, 1, 3, 2, 3, 1, 4, 2, 4, 2,
4, 2, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 3, 3, 2, 4, 4, 3, 3, 4,
3, 4, 0, 1, 3, 1, 1, 0, 6, 0,
1, 0, 2, 1, 1, 1, 1, 1, 1, 1,
1, 3, 1, 3, 0, 1, 1, 0, 8, 1,
1, 3, 4, 3, 2, 1, 3, 3, 3, 3,
1, 1, 1, 0, 3, 2, 2, 2, 2, 2,
2, 4, 2, 4, 2, 3, 3, 4, 4, 5,
5, 6, 2, 4, 5, 3, 3, 3, 1, 3,
2, 3, 4, 1, 2, 5, 1, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 5, 3, 3, 1,
2, 3, 1, 1, 1, 1, 1, 1, 1, 2,
2, 3, 1, 1, 3, 1, 1, 1, 1, 3,
3, 3, 0, 4, 0, 6, 2, 4, 2, 2,
1, 4, 1, 0, 0, 9, 0, 0, 9, 0,
0, 9, 0, 0, 9, 4, 4, 2, 2, 1,
4, 2, 2, 2, 5, 3, 5, 3, 4, 6,
2, 1, 2, 1, 2, 1, 1, 1, 2, 0,
2, 2, 3, 3, 3, 3, 3, 2, 2, 1,
1, 1, 2, 2, 2, 2, 1, 1, 1, 1,
2, 2, 3, 3, 3, 4, 1, 2, 2, 2,
1, 1, 1, 2, 2, 2, 1, 1, 2, 2,
3, 1, 2, 1, 1, 1, 4, 4, 4, 4,
1, 1, 1, 1, 3, 1, 3, 1, 3, 0,
4, 0, 7, 4, 0, 7, 4, 0, 7, 4,
0, 7, 4, 0, 1, 1, 2, 6, 1, 3,
0, 1, 4, 6, 4, 1, 1, 1, 1, 1,
3, 0, 2, 1, 2, 3, 4, 1, 1, 3,
4, 6, 3, 5, 0, 7, 4, 0, 6, 3,
2, 2, 2, 4, 1, 0, 1, 0, 1, 1,
2, 2, 2, 2, 3, 2, 1, 2, 3, 3,
3, 2, 0, 1, 3, 2, 2, 1, 1, 0,
2, 3, 1, 4, 1, 3, 1, 4, 4, 2,
2, 3, 3, 1, 0, 1, 4, 3, 1, 2,
2, 2, 2, 2, 2, 2, 1, 2, 2, 5,
2, 1, 9, 7, 1, 0, 1, 3, 0, 1,
3, 1, 1, 1, 1, 5, 4, 5, 4, 3,
5, 4, 5, 4, 3, 1, 3, 1, 3, 2,
1, 6, 0, 2, 1, 2, 0, 2, 4, 4,
2, 4, 3, 3, 2, 2, 3, 1, 1, 1,
2, 3, 4, 3, 3, 2, 1, 3, 3, 2,
2, 3, 1, 3, 3, 2, 2, 3, 1, 3,
3, 4, 3, 1, 2, 2, 1, 2, 4, 4,
2, 1, 1, 1, 2, 2, 2, 2, 1, 2,
1, 2, 2, 3, 1, 3, 2, 3, 2, 2,
3, 1, 3, 4, 3, 2, 2, 1, 3, 2,
2, 1, 2, 3, 1, 3, 1, 5, 3, 4,
3, 4, 2, 2, 3, 2, 1, 1, 2, 2,
2, 0, 0, 0, 1, 1, 2, 3, 1, 2,
4, 0, 0, 6, 1, 3, 1, 1, 1, 2,
0, 0, 6, 1, 0, 0, 7, 0, 0, 7,
0, 0, 0, 0, 14, 0, 0, 9, 0, 5,
0, 7, 0, 4, 2, 2, 2, 3, 6, 8,
10, 12, 4, 3, 2, 2, 1, 1, 0, 0,
6, 0, 0, 5, 0, 0, 0, 0, 9, 1,
1, 3, 3, 2, 2, 2, 2, 1, 2, 0,
1, 0, 1, 1, 0, 1, 1, 3, 4, 1,
3, 0, 1, 1, 1, 2, 2, 2, 1, 1,
2, 2, 2, 2, 1, 3, 2, 2, 4, 2,
2, 2, 2, 2, 2, 1, 2, 2, 1, 1,
0, 0, 1, 0, 4, 2, 1, 1, 3, 0,
3, 3, 3, 1, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 3, 2, 2,
2, 2, 3, 2, 2, 4, 4, 3, 2
};
static const short yydefact[] = { 3,
12, 12, 5, 0, 4, 0, 244, 562, 343, 355,
515, 0, 10, 11, 0, 0, 0, 430, 0, 744,
0, 0, 0, 0, 575, 245, 246, 82, 0, 0,
731, 0, 99, 36, 0, 13, 0, 8, 0, 17,
16, 15, 14, 85, 0, 563, 143, 254, 543, 0,
330, 0, 329, 348, 0, 368, 347, 386, 354, 0,
437, 444, 443, 450, 449, 448, 425, 342, 569, 530,
0, 253, 554, 529, 0, 564, 356, 513, 0, 0,
243, 80, 81, 566, 0, 0, 123, 124, 125, 126,
418, 421, 0, 571, 0, 422, 0, 0, 0, 0,
50, 0, 124, 125, 126, 24, 0, 0, 0, 0,
423, 0, 29, 0, 0, 343, 38, 0, 0, 437,
135, 0, 567, 0, 541, 0, 0, 0, 540, 0,
0, 0, 0, 254, 0, 517, 0, 253, 513, 0,
27, 3, 37, 0, 0, 0, 0, 444, 443, 734,
0, 310, 402, 86, 78, 568, 150, 517, 0, 513,
79, 0, 0, 0, 0, 0, 364, 320, 528, 321,
537, 0, 513, 345, 344, 77, 331, 0, 366, 346,
0, 337, 361, 362, 332, 350, 352, 341, 363, 0,
72, 387, 431, 432, 433, 434, 447, 131, 130, 132,
436, 438, 442, 143, 0, 450, 731, 446, 464, 0,
516, 349, 0, 95, 0, 98, 573, 556, 531, 565,
0, 570, 0, 779, 775, 774, 772, 754, 759, 760,
0, 766, 765, 751, 752, 750, 769, 758, 755, 756,
757, 761, 762, 748, 749, 745, 746, 747, 771, 763,
764, 753, 770, 0, 767, 680, 348, 681, 740, 515,
257, 308, 0, 0, 184, 304, 302, 271, 306, 307,
0, 0, 0, 0, 0, 240, 0, 0, 155, 154,
0, 156, 157, 0, 0, 158, 0, 144, 0, 214,
0, 217, 147, 256, 183, 0, 0, 258, 259, 0,
146, 327, 348, 328, 557, 290, 273, 0, 0, 0,
437, 138, 420, 0, 415, 572, 0, 159, 160, 0,
0, 0, 391, 0, 49, 3, 22, 0, 248, 0,
247, 32, 33, 0, 555, 31, 30, 0, 134, 450,
151, 133, 141, 0, 539, 0, 538, 242, 251, 0,
547, 250, 0, 546, 0, 255, 551, 0, 0, 12,
0, 0, 9, 9, 66, 65, 734, 0, 52, 60,
56, 54, 61, 58, 370, 105, 110, 669, 0, 84,
83, 91, 108, 0, 0, 106, 87, 139, 553, 0,
0, 521, 0, 550, 0, 526, 0, 525, 0, 0,
0, 0, 513, 93, 76, 96, 0, 75, 517, 513,
536, 0, 334, 335, 0, 73, 94, 74, 97, 339,
338, 340, 333, 353, 734, 369, 439, 435, 440, 441,
445, 451, 482, 0, 477, 0, 485, 0, 486, 489,
0, 0, 469, 0, 734, 351, 736, 0, 0, 384,
514, 542, 574, 0, 0, 768, 773, 350, 513, 513,
0, 513, 778, 0, 0, 0, 191, 0, 0, 193,
0, 0, 274, 277, 280, 283, 241, 190, 187, 186,
188, 0, 0, 0, 0, 0, 256, 0, 0, 0,
0, 142, 189, 0, 0, 215, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 267, 269,
270, 312, 311, 0, 0, 0, 0, 0, 195, 511,
0, 203, 309, 301, 0, 731, 293, 294, 0, 0,
322, 592, 588, 597, 0, 517, 513, 513, 513, 324,
595, 0, 561, 326, 0, 325, 292, 0, 288, 303,
305, 558, 0, 289, 137, 136, 508, 428, 506, 417,
0, 357, 0, 0, 358, 359, 360, 397, 398, 399,
396, 0, 389, 392, 51, 0, 3, 0, 28, 35,
34, 44, 0, 46, 40, 730, 726, 0, 327, 348,
42, 328, 729, 48, 402, 148, 140, 545, 544, 255,
548, 0, 19, 21, 20, 370, 71, 67, 69, 68,
70, 64, 0, 0, 0, 0, 384, 111, 310, 0,
612, 90, 619, 88, 408, 0, 404, 403, 182, 0,
181, 518, 552, 0, 709, 710, 0, 704, 348, 0,
703, 705, 732, 715, 0, 524, 523, 0, 0, 535,
0, 384, 365, 534, 0, 532, 527, 336, 367, 384,
370, 731, 0, 731, 452, 453, 455, 731, 457, 481,
475, 476, 473, 474, 244, 562, 513, 0, 702, 734,
478, 487, 492, 493, 734, 734, 479, 490, 734, 0,
424, 470, 471, 472, 104, 737, 348, 738, 0, 0,
383, 385, 777, 776, 740, 740, 740, 0, 0, 0,
561, 0, 185, 0, 0, 0, 0, 0, 0, 262,
0, 260, 261, 0, 212, 145, 244, 562, 245, 246,
0, 0, 409, 426, 0, 239, 238, 694, 693, 0,
236, 235, 233, 234, 232, 231, 230, 227, 228, 229,
225, 226, 220, 221, 222, 223, 224, 218, 219, 0,
0, 0, 0, 0, 0, 197, 209, 0, 0, 196,
513, 513, 0, 513, 510, 582, 0, 0, 0, 0,
296, 0, 298, 0, 591, 590, 587, 586, 730, 0,
0, 606, 0, 0, 603, 323, 604, 593, 513, 702,
517, 592, 588, 0, 0, 513, 0, 0, 0, 0,
429, 0, 428, 180, 179, 178, 177, 391, 0, 0,
25, 0, 26, 45, 0, 39, 0, 592, 588, 0,
722, 513, 725, 727, 723, 724, 436, 728, 0, 18,
384, 53, 57, 55, 59, 0, 127, 116, 128, 129,
0, 109, 112, 0, 0, 0, 0, 620, 614, 89,
92, 405, 0, 107, 522, 519, 708, 721, 714, 712,
0, 520, 707, 720, 713, 711, 706, 733, 717, 718,
0, 374, 533, 380, 384, 461, 0, 460, 731, 731,
731, 0, 0, 0, 734, 384, 529, 0, 0, 102,
0, 370, 370, 0, 370, 0, 384, 0, 735, 0,
381, 742, 741, 743, 272, 192, 194, 286, 287, 0,
0, 0, 0, 261, 264, 0, 0, 0, 0, 213,
0, 265, 268, 207, 206, 199, 0, 198, 211, 0,
0, 579, 577, 0, 580, 517, 204, 0, 0, 299,
0, 0, 589, 585, 596, 513, 605, 594, 599, 0,
601, 0, 559, 560, 0, 291, 509, 507, 419, 0,
390, 388, 244, 0, 23, 41, 47, 591, 587, 592,
588, 0, 513, 593, 0, 0, 62, 0, 114, 0,
118, 0, 122, 0, 120, 0, 670, 0, 171, 613,
0, 615, 616, 0, 406, 592, 588, 0, 256, 0,
557, 0, 716, 372, 378, 377, 0, 0, 0, 463,
462, 456, 384, 384, 101, 500, 531, 513, 244, 562,
0, 488, 494, 495, 734, 734, 384, 384, 491, 0,
402, 739, 371, 0, 275, 278, 281, 284, 0, 413,
0, 0, 410, 216, 237, 152, 0, 200, 201, 208,
210, 578, 576, 583, 581, 0, 205, 0, 295, 297,
602, 513, 600, 416, 0, 393, 395, 591, 587, 593,
0, 63, 115, 113, 0, 0, 0, 675, 400, 0,
621, 0, 244, 562, 622, 635, 638, 641, 612, 0,
0, 0, 0, 0, 0, 245, 667, 672, 690, 0,
629, 0, 0, 348, 0, 608, 627, 634, 607, 628,
668, 0, 617, 407, 0, 560, 719, 0, 0, 375,
458, 459, 454, 499, 497, 384, 734, 0, 0, 384,
370, 370, 402, 402, 480, 382, 0, 0, 0, 0,
411, 0, 0, 152, 266, 0, 202, 584, 300, 598,
0, 149, 117, 121, 119, 671, 0, 618, 611, 174,
684, 686, 612, 612, 612, 0, 0, 0, 653, 655,
656, 657, 0, 0, 0, 685, 0, 691, 0, 630,
318, 734, 0, 319, 0, 734, 0, 734, 0, 0,
172, 610, 609, 631, 666, 665, 261, 373, 379, 0,
402, 100, 384, 384, 505, 384, 384, 496, 498, 0,
0, 0, 0, 0, 414, 153, 512, 394, 612, 401,
0, 0, 0, 625, 0, 0, 0, 0, 649, 0,
658, 0, 664, 673, 0, 314, 370, 316, 317, 370,
0, 0, 0, 313, 315, 173, 612, 376, 484, 384,
504, 502, 402, 402, 0, 0, 0, 0, 412, 676,
163, 0, 623, 636, 613, 639, 614, 688, 642, 0,
170, 0, 348, 0, 0, 0, 654, 663, 675, 0,
632, 402, 501, 503, 276, 279, 282, 285, 0, 0,
612, 0, 626, 0, 689, 612, 687, 646, 734, 651,
650, 674, 695, 0, 613, 483, 0, 677, 164, 624,
614, 613, 176, 161, 0, 0, 0, 612, 370, 0,
0, 0, 696, 697, 659, 633, 0, 0, 0, 175,
637, 0, 640, 167, 0, 166, 647, 384, 652, 0,
695, 0, 0, 682, 683, 678, 162, 643, 613, 0,
0, 0, 660, 698, 613, 0, 648, 168, 699, 0,
0, 679, 0, 0, 700, 0, 661, 644, 169, 0,
0, 0, 701, 662, 613, 645, 0, 0, 0
};
static const short yydefgoto[] = { 1397,
360, 2, 361, 144, 614, 449, 3, 4, 36, 587,
326, 437, 330, 38, 39, 338, 593, 594, 595, 40,
102, 41, 623, 625, 624, 626, 622, 42, 379, 152,
871, 43, 634, 44, 438, 153, 154, 380, 628, 862,
863, 567, 864, 202, 45, 46, 47, 157, 287, 288,
341, 849, 342, 1165, 289, 1120, 1336, 1283, 1355, 1292,
1384, 1010, 1332, 318, 815, 290, 471, 528, 780, 291,
292, 319, 294, 332, 349, 49, 295, 489, 1066, 726,
1157, 727, 1158, 728, 1159, 729, 1160, 296, 297, 298,
299, 381, 300, 1121, 425, 548, 799, 1122, 51, 185,
598, 302, 186, 468, 187, 166, 178, 55, 662, 167,
1138, 426, 1220, 179, 1139, 56, 1054, 711, 57, 58,
582, 583, 584, 1100, 386, 743, 744, 59, 571, 314,
939, 822, 60, 61, 62, 63, 64, 206, 65, 66,
67, 208, 675, 676, 677, 678, 210, 441, 442, 443,
444, 691, 697, 692, 1042, 693, 694, 1043, 1044, 568,
569, 529, 805, 304, 390, 391, 160, 168, 69, 70,
169, 170, 137, 72, 113, 305, 306, 307, 74, 308,
76, 77, 111, 78, 309, 785, 786, 800, 551, 1125,
1126, 1243, 1101, 1011, 1012, 1013, 632, 1127, 1128, 1183,
1311, 1245, 1129, 1130, 1267, 1325, 1184, 1312, 1185, 1314,
1186, 1316, 1376, 1392, 1338, 1369, 1296, 1340, 1250, 382,
629, 1098, 1131, 1197, 1299, 1176, 1309, 1349, 1375, 1294,
1328, 1132, 1289, 1199, 750, 1342, 1343, 1344, 1386, 650,
801, 652, 653, 654, 604, 655, 130, 890, 1257, 708,
709, 463, 80, 81
};
static const short yypact[] = { 97,
116,-32768,-32768, 8850,-32768, 40,-32768, 288, 73,-32768,
-32768, 624,-32768,-32768, 296, 300, 313,-32768, 229,-32768,
835, 612, 1146, 4474,-32768, 164, 228,-32768, 2545, 2545,
-32768, 1682,-32768,-32768, 317,-32768, 183, 182, 2615,-32768,
-32768,-32768,-32768, 389, 243, 383,-32768,-32768, 414, 1529,
-32768, 3016,-32768, 1349, 217,-32768, 431,-32768,-32768, 1163,
-32768,-32768,-32768, 406,-32768,-32768, 420, 1796,-32768,-32768,
471,-32768,-32768,-32768, 359,-32768,-32768,-32768, 122, 5657,
-32768,-32768,-32768,-32768, 7811, 9178,-32768, 288, 164, 228,
382, 436, 383,-32768, 122,-32768, 122, 7811, 7811, 423,
-32768, 240,-32768,-32768,-32768,-32768, 395, 288, 164, 228,
-32768, 569,-32768, 644, 644,-32768,-32768, 3469, 4823, 250,
-32768, 7639,-32768, 2622,-32768, 786, 366, 2622,-32768, 685,
3130, 3130, 1682, 412, 415, 450, 442, 463,-32768, 572,
-32768, 472,-32768, 8910, 65, 3469, 9222, 603, 756, 543,
609, 177, 136, 548,-32768,-32768, 534, 537, 38,-32768,
-32768, 3202, 3202, 4066, 1043, 298,-32768,-32768, 445,-32768,
-32768, 359,-32768,-32768,-32768,-32768, 1349, 320,-32768, 431,
1739,-32768,-32768,-32768, 1424, 1349,-32768, 431,-32768, 3469,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768, 383, 800, 1016, 406,-32768,-32768,-32768, 1925,
-32768, 925, 122,-32768, 270, 885,-32768,-32768,-32768,-32768,
3282,-32768, 81,-32768, 547, 550,-32768,-32768,-32768,-32768,
598,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768, 562,-32768,-32768, 925, 1796, 506, 586,
-32768,-32768, 8417, 8503,-32768,-32768,-32768,-32768,-32768,-32768,
590, 601, 614, 618, 625, 7897, 685, 8589,-32768,-32768,
8589,-32768,-32768, 8589, 6100,-32768, 140,-32768, 8589,-32768,
7983,-32768, 9443,-32768, 1195, 704, 8069,-32768, 675, 1417,
-32768, 689, 2013, 3730,-32768, 338,-32768, 1008, 1105, 3469,
250,-32768,-32768, 685, 597,-32768, 604, 655, 9375, 633,
637, 640, 847, 745,-32768, 472,-32768, 569, 288, 692,
-32768,-32768,-32768, 644,-32768,-32768,-32768, 9332,-32768, 406,
-32768,-32768,-32768, 231,-32768, 218,-32768,-32768,-32768, 2622,
-32768,-32768, 2622,-32768, 665,-32768,-32768, 3282, 59, 695,
698, 9178,-32768,-32768,-32768,-32768, 543, 1176,-32768,-32768,
-32768,-32768,-32768,-32768, 457,-32768,-32768,-32768, 105,-32768,
-32768,-32768,-32768, 6186, 7897,-32768,-32768,-32768,-32768, 7897,
683,-32768, 5492, 801, 3787,-32768, 3787,-32768, 3853, 3853,
4066, 706,-32768,-32768,-32768, 885, 3469,-32768, 705,-32768,
-32768, 4278, 1424, 1349, 3469,-32768,-32768,-32768, 885,-32768,
-32768, 431, 1424,-32768, 543,-32768,-32768,-32768,-32768,-32768,
-32768, 1158,-32768, 612,-32768, 7897,-32768, 367, 881, 9014,
35, 4006,-32768, 124, 543, 925,-32768, 2527, 727, 431,
-32768,-32768,-32768, 724, 729,-32768,-32768, 925,-32768,-32768,
399,-32768,-32768, 7897, 586, 6100,-32768, 348, 6100,-32768,
8589, 7811,-32768,-32768,-32768,-32768, 9349,-32768,-32768,-32768,
-32768, 738, 8675, 8675, 6100, 757, 412, 766, 823, 778,
7811,-32768,-32768, 6008, 6100,-32768, 7897, 7897, 6272, 7897,
7897, 7897, 7897, 7897, 7897, 7897, 7897, 7897, 7897, 7897,
7897, 7897, 7897, 7897, 7897, 7897, 7897, 7897,-32768,-32768,
-32768,-32768,-32768, 7897, 7897, 7897, 7811, 4343, 284, 731,
6788,-32768,-32768,-32768, 840, 888, 424, 441, 1037, 366,
-32768, 2302, 2302,-32768, 3076, 791, 822, 872,-32768,-32768,
499, 7276, 1606,-32768, 444,-32768,-32768, 7897,-32768,-32768,
-32768,-32768, 57,-32768,-32768,-32768, 856, 862,-32768,-32768,
685,-32768, 6616, 6702,-32768,-32768,-32768,-32768,-32768,-32768,
-32768, 138,-32768, 838,-32768, 828, 472, 880,-32768,-32768,
-32768, 870, 308, 895,-32768,-32768, 1567, 9222, 1567, 2459,
1163, 2362,-32768,-32768, 898,-32768,-32768,-32768,-32768, 857,
-32768, 912,-32768,-32768,-32768, 457,-32768,-32768,-32768,-32768,
-32768,-32768, 913, 915, 917, 929, 431, 76, 930, 823,
-32768,-32768,-32768, 891,-32768, 5744, 9349,-32768, 655, 884,
9375,-32768,-32768, 896,-32768,-32768, 901, 189, 2792, 903,
-32768, 204, 9074, 943, 948,-32768,-32768, 3787, 3787,-32768,
4278, 431,-32768,-32768, 907, 801,-32768, 1424,-32768, 431,
457,-32768, 944,-32768, 964,-32768,-32768, 261,-32768, 9349,
-32768,-32768,-32768,-32768, 977, 622,-32768, 7897, 4673, 543,
986,-32768,-32768,-32768, 279, 452, 988,-32768, 543, 989,
-32768,-32768,-32768,-32768, 286,-32768, 4121,-32768, 145, 572,
992, 431,-32768,-32768, 364, 364, 364, 967, 972, 8159,
872, 973,-32768, 974, 976, 2527, 2527, 2527, 2527,-32768,
979,-32768,-32768, 980,-32768,-32768, 996, 712, 39, 328,
7897, 1022,-32768, 991, 984, 9349, 9349,-32768,-32768, 1033,
9461, 4349, 3589, 2144, 2250, 4153, 3772, 1437, 1437, 1437,
951, 951, 673, 673, 20, 20, 20,-32768,-32768, 990,
998, 1001, 993, 1005, 2527, 284,-32768, 6186, 7897,-32768,
-32768,-32768, 7897,-32768,-32768, 1021, 8589, 1006, 1029, 1072,
-32768, 7897,-32768, 7897, 2962,-32768, 2962,-32768, 115, 1017,
1020,-32768, 1018, 2527, 801,-32768, 801, 3172,-32768, 1854,
1023, 7459, 7459, 5294, 1028, 7983, 1030, 1105, 1041, 7897,
685, 1032, 862,-32768, 9349,-32768, 9349, 847, 1042, 8245,
-32768, 1036,-32768,-32768, 9332,-32768, 2560, 2025, 2025, 8970,
-32768,-32768,-32768,-32768,-32768,-32768, 337,-32768, 420,-32768,
431,-32768,-32768,-32768,-32768, 1176,-32768,-32768, 164, 228,
7897, 1092,-32768, 448, 464, 512, 105,-32768, 42,-32768,
-32768,-32768, 18,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
7369,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1102,
6186, 1103,-32768, 1109, 431,-32768, 7811,-32768,-32768,-32768,
-32768, 1154, 7897, 7897, 101, 9253,-32768, 359, 1049,-32768,
1932, 457, 457, 2678, 1027, 4779, 431, 2527,-32768, 63,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1101,
1107, 1108, 1116, 857,-32768, 9327, 6186, 5836, 1076,-32768,
7897,-32768,-32768,-32768,-32768, 379, 1085,-32768,-32768, 1086,
51, 255, 255, 1097, 255,-32768,-32768, 8589, 1187,-32768,
1106, 1110,-32768,-32768,-32768,-32768,-32768,-32768, 801, 1111,
-32768, 1099,-32768,-32768, 900,-32768, 9349,-32768,-32768, 1114,
-32768,-32768, 151, 1117,-32768,-32768,-32768, 2226, 2226, 2817,
2817, 8970,-32768, 2861, 1925, 1176,-32768, 1118,-32768, 76,
-32768, 7897,-32768, 7897,-32768, 7897,-32768, 685,-32768,-32768,
4927, 1182,-32768, 5922,-32768, 7549, 7549, 5387, 462, 1119,
552, 6186,-32768,-32768,-32768, 1159, 1121, 1122, 1158,-32768,
-32768,-32768, 9253, 9253, 286,-32768,-32768,-32768, 1169, 716,
7897,-32768,-32768,-32768, 543, 543, 431, 431,-32768, 5052,
898,-32768,-32768, 6186,-32768,-32768,-32768,-32768, 6186,-32768,
7897, 1170,-32768,-32768, 9349, 534, 7897,-32768, 379,-32768,
-32768,-32768,-32768,-32768,-32768, 1125,-32768, 1190,-32768,-32768,
801,-32768,-32768,-32768, 7897,-32768,-32768, 2226, 2226, 2861,
44,-32768,-32768,-32768, 1136, 1139, 1142,-32768,-32768, 468,
-32768, 149, 1189, 892,-32768,-32768,-32768,-32768,-32768, 7897,
1196, 1203, 1204, 7725, 150, 371,-32768,-32768, 1259, 1209,
-32768, 3379, 9118, 3564, 5203,-32768,-32768, 1256,-32768,-32768,
-32768, 6894,-32768,-32768, 1167, 1532,-32768, 6186, 6186,-32768,
-32768,-32768,-32768,-32768,-32768, 431, 101, 7897, 7897, 9253,
457, 457, 898, 898,-32768,-32768, 1183, 1184, 1185, 1186,
-32768, 9398, 6186, 534,-32768, 1165,-32768,-32768,-32768, 801,
1177,-32768,-32768,-32768,-32768, 1194, 685,-32768,-32768,-32768,
-32768,-32768,-32768,-32768, 823, 1192, 1200, 5113,-32768,-32768,
-32768,-32768, 1237, 7897, 1241,-32768, 823,-32768, 1211,-32768,
-32768, 559, 662,-32768, 740, 543, 8331, 776, 808, 154,
-32768,-32768,-32768,-32768,-32768,-32768, 560,-32768,-32768, 6186,
898, 286, 9253, 9253,-32768, 431, 431,-32768,-32768, 7897,
7897, 7897, 7897, 6186,-32768,-32768,-32768,-32768,-32768,-32768,
531, 531, 7185,-32768, 1285, 5597, 7811, 7897,-32768, 6999,
-32768, 1246,-32768,-32768, 572,-32768, 457,-32768,-32768, 457,
8761, 8761, 6358,-32768,-32768,-32768, 823,-32768,-32768, 431,
-32768,-32768, 898, 898, 1201, 1202, 1205, 1208,-32768,-32768,
-32768, 7811,-32768,-32768,-32768,-32768, 42,-32768,-32768, 1247,
-32768, 1213, 178, 3469, 9421, 6999,-32768,-32768,-32768, 50,
-32768, 898,-32768,-32768,-32768,-32768,-32768,-32768, 1218, 1215,
823, 7092,-32768, 555,-32768,-32768,-32768,-32768, 543,-32768,
-32768, 1194, 1307, 1266,-32768,-32768, 4597,-32768,-32768,-32768,
42,-32768,-32768,-32768, 7897, 1269, 6444, 823, 457, 6999,
1239, 143, 1271,-32768,-32768,-32768, 1227, 1230, 823,-32768,
-32768, 1232,-32768,-32768, 1282,-32768,-32768, 431,-32768, 7897,
1307, 1283, 1307,-32768,-32768,-32768,-32768,-32768,-32768, 1284,
1244, 208,-32768,-32768,-32768, 6530,-32768,-32768,-32768, 1343,
1295,-32768, 1252, 6186,-32768, 162,-32768,-32768,-32768, 1351,
1304, 7092,-32768,-32768,-32768,-32768, 1363, 1365,-32768
};
static const short yypgoto[] = {-32768,
1366,-32768, -294,-32768, 1003, 2, 1369,-32768,-32768,-32768,
-32768, 1368, 1045,-32768,-32768,-32768,-32768,-32768, 542,-32768,
-32768,-32768,-32768,-32768,-32768,-32768, -809, 1236, 752,-32768,
-32768, 1242,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
390, 223,-32768,-32768,-32768, 4560, -58,-32768, 1261, 904,
-1001,-32768, -118, 227,-32768, 297,-32768, 161,-32768, -1205,
-32768, -1165, 13, 1398, -199, -239,-32768,-32768, -715, 2893,
672, 2474, 3277, -48, 508, 186,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -305,-32768,
-139,-32768,-32768, 163, -34, -276, 141, 14, -231, -132,
5, 47, -169, -4, -72, -672, 285,-32768, -186,-32768,
-32768, -206,-32768,-32768,-32768,-32768,-32768, 669, 278, -43,
-32768, 579,-32768,-32768, -500, -159, 774, -12,-32768,-32768,
-32768, 592, -319, 4, 1374, 1377,-32768,-32768,-32768,-32768,
-32768, -144,-32768, 388, 517,-32768, 578, 439, 519, -439,
-32768,-32768,-32768,-32768,-32768,-32768, 997,-32768, 524, 869,
620, 914, 1273, 7, 11, -394, 1275, 1799, -56, 28,
-32768, 1690, -110, 582, -57, 3151, 1145,-32768, 3909, 1346,
210, -399, 1438, 3783, 2123, -126,-32768, 3654,-32768,-32768,
326, -614, -1038,-32768,-32768, 440, 588, -163,-32768,-32768,
-32768, -1194, -1062, -1209,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768, 167,-32768,-32768,-32768, -54,
-32768,-32768,-32768,-32768, -1197, 92,-32768, 99,-32768, -632,
-337,-32768,-32768, -333, 807, -331, -194,-32768, -61, 557,
-32768, 181,-32768, -297
};
#define YYLAST 9543
static const short yytable[] = { 54,
359, 204, 702, 561, 603, 35, 605, 414, 52, 216,
68, 564, 432, 192, 665, 165, 869, 50, 601, 54,
351, 354, 222, 467, 470, 259, 553, 120, 119, 450,
68, 586, 679, 1285, 54, 124, 128, 118, 388, 94,
316, 189, 446, 147, 413, 68, 997, 177, 1290, 94,
53, 496, 146, 423, 333, 651, 909, 337, 533, 159,
948, 431, 1213, 212, 1164, 335, 336, 533, 700, 1216,
53, 533, 1301, 1008, 1014, 257, 1310, 700, 857, 8,
303, 54, 392, 339, 8, 53, 258, 458, 375, 311,
119, 266, 68, 303, 303, 541, -1, 82, -125, 310,
517, 518, 1333, 406, 848, 630, 597, 451, 25, 1323,
122, 367, 421, 424, 177, -2, 1330, 303, 86, 419,
858, 1315, 365, 1015, 877, 8, 256, 25, 393, 859,
860, 1356, 53, 458, 109, 110, 192, 350, 353, 54,
701, 720, 177, 1357, 192, 83, 159, 1009, 52, 1172,
68, 803, 87, 103, 1324, 1071, 222, 50, 453, 215,
631, 597, 1164, 612, 189, 1350, 861, 1053, 395, 397,
366, 878, 189, 189, 879, 109, 110, 970, 1383, 159,
383, 703, 1333, 183, 184, 640, 1092, 1297, 627, 12,
53, 721, 566, 647, 828, 606, 491, 384, 877, 189,
663, 918, 1361, 104, 105, 54, 1179, 1085, 669, 880,
18, 1179, 492, 883, 440, 633, 68, 136, 1390, 735,
22, 108, 541, 439, 638, 301, 385, 1194, 866, 704,
1068, 101, 670, 1321, 92, 122, 377, 142, 320, 322,
141, 530, 829, 107, 189, 878, 1313, 1362, 879, 919,
-730, 537, 222, 212, 1180, 1086, 53, 561, 108, 1266,
884, 451, 301, 885, 718, 900, 1391, 1380, 720, 378,
333, 109, 110, 190, 191, 565, 591, 1359, 143, 123,
303, 668, 201, 880, 220, 590, 1346, 491, 351, 354,
189, 257, 832, 1351, 901, 453, 324, 325, 886, 212,
155, -320, 258, 607, 220, 616, 25, -150, 109, 110,
13, 14, 1381, 597, 447, -370, 136, 136, 136, 603,
597, 605, 781, 220, 770, 734, 772, 773, 777, 180,
1377, 188, 782, 600, -320, 220, 1382, 215, -320, 84,
421, 424, 256, -370, 602, 778, 783, -370, 340, 136,
421, 651, 348, 1167, 407, 408, 1396, 54, 819, 85,
448, 7, 8, 671, 835, 120, 119, 108, 68, 108,
451, -320, 553, 424, 779, 118, 415, 416, 192, 123,
836, 220, 557, 705, 599, 424, 98, -126, 649, 681,
99, -370, 541, -43, 317, 321, 180, 20, -43, 602,
189, 189, 108, 100, 690, 658, 659, 140, 53, -43,
189, 151, 26, 27, 220, 25, 972, 109, 110, 109,
110, 597, 682, 777, 180, 490, 683, 430, 558, 851,
1196, 459, 220, 189, 156, 177, 217, 54, 720, 599,
778, 460, 122, 707, 31, 189, 440, 8, 68, 1203,
327, 1209, 109, 110, 188, 439, 328, 597, -517, 684,
17, 303, 422, 188, 303, 207, 868, 303, 791, 779,
1067, 214, 651, 530, -321, 209, 217, 896, 596, 898,
303, 13, 14, 902, 895, 793, 303, 313, 53, -517,
303, 315, 1001, -734, 1187, -734, -734, 109, 110, 478,
-734, 603, 679, 605, -517, 158, -254, -321, 1003, 108,
215, -321, 561, 323, 792, 601, -249, 220, 917, 356,
564, 217, 303, 257, 1177, 1178, -734, -734, -734, 215,
-734, 794, -734, 648, 258, -517, 409, 458, 1002, 135,
600, 158, 204, 809, -321, 581, 357, 649, 795, 797,
1155, 602, -254, -254, 1004, 220, 1005, 25, 602, 109,
110, 1076, 841, -734, 845, 846, -249, -549, 1241, 1242,
920, 7, 329, 459, 256, 1281, 496, -7, 597, 950,
262, 486, 597, 460, 136, 136, 136, 189, 706, 810,
811, 599, 961, 177, 962, 421, -554, 212, 599, 1334,
866, 215, 1006, 597, -255, 387, 719, 20, 597, 722,
702, 376, 725, 138, 846, 108, 1256, 215, 949, 94,
25, 1282, 26, 27, 1280, 490, 87, 88, 910, 679,
984, 301, 340, 912, 913, 745, 189, 915, 454, 352,
355, 455, -554, -554, 389, 1335, 7, 329, 600, 597,
-255, -255, 1228, 1229, 31, 189, -554, 456, 369, 602,
370, 998, 371, 25, -252, 109, 110, 774, 192, 457,
220, 135, 473, 84, 721, 25, 464, 89, 90, 91,
472, 904, 20, 533, 600, 474, 642, 87, 103, 475,
422, 188, 108, 85, 189, 602, 476, 26, 27, 599,
422, 1337, 570, 633, 1029, 1030, 1031, 8, 572, 10,
11, 573, 138, 138, 138, 12, 742, 180, 407, 1258,
1269, 707, 707, 707, 707, 1047, 1048, 712, 1048, 31,
15, 1023, 16, 541, 108, 599, 18, 575, 104, 105,
25, 576, 109, 110, 577, 138, 22, 585, 220, 589,
514, 515, 516, 517, 518, 25, 542, 109, 110, 526,
597, 222, 486, 84, 220, 486, 543, 84, 724, 610,
707, -124, 1303, 1304, 951, 1149, 544, 1060, 1063, 545,
546, 486, 25, 85, 109, 110, 597, 85, 7, 108,
643, 486, 488, 596, 527, 749, 415, 1259, 781, 707,
-6, 1326, 1095, 613, 1096, 600, 1097, 451, 782, 649,
660, 372, 664, 373, 834, 374, 602, 710, 795, 797,
602, 771, 783, 847, 20, 1072, 1073, 788, 1075, 648,
600, 713, 987, 1264, 215, 600, 714, 87, 103, 26,
27, 602, 730, 1035, 988, 989, 602, 721, 1146, 87,
103, 578, 579, 580, 1063, 427, 599, 428, 742, 429,
599, 732, 1137, 217, 407, 1265, 930, 931, 932, 933,
733, 31, 87, 88, 136, 180, 649, 188, 631, 351,
354, 599, 735, 685, 686, 1171, 599, 602, 104, 105,
106, 789, 303, 790, 1156, 922, 923, 924, 802, 1161,
104, 105, 7, 8, 712, 351, 354, 352, 355, 13,
14, 54, 804, 707, -370, 947, 806, 820, 821, 20,
440, 25, 68, 89, 90, 687, 188, 599, 830, 439,
183, 184, 25, 831, 26, 27, 12, 833, 20, 712,
688, -370, -370, 84, 745, 422, -370, 712, 162, 479,
648, 1182, 480, 26, 27, 481, 837, 18, 163, 384,
493, -252, 53, 85, 1226, 1227, 31, 22, 532, 850,
852, 689, 853, 488, 854, 596, 488, 453, 1218, 1219,
138, 138, 138, 1151, 1152, 31, 855, 600, 874, 377,
54, 352, 731, 603, 870, 1348, 1088, 1089, 602, 440,
875, 68, 488, 1235, -729, 876, 1124, 882, 439, 891,
7, 8, 1119, 649, 893, 1123, 721, 68, 87, 88,
899, 1244, 1088, 1089, 602, 136, 512, 513, 514, 515,
516, 517, 518, 1254, 897, 1270, 903, 1028, 599, 7,
108, 53, 911, 404, 914, 54, 20, 938, 916, -103,
581, 13, 14, 921, 440, -123, 68, 53, 706, 817,
1268, 26, 27, 439, 599, -734, 136, -734, -734, 89,
90, 925, -734, 670, 1279, 20, 926, 927, 928, 954,
929, 937, -103, 934, 935, 1222, -103, 1202, 940, 1208,
26, 27, 941, 31, 942, 597, 53, 945, -734, -734,
405, 215, -734, 1244, -734, 943, 944, 559, 8, 946,
486, 189, 956, 958, 959, 1300, 960, 220, 177, -103,
1124, 965, 31, 458, 966, 967, 1119, 1124, 712, 1123,
971, 68, 973, 1119, 974, -734, 1123, 979, 68, 266,
560, 985, 723, 20, 1260, 976, 982, 1244, 1000, 108,
351, 354, 1358, 1038, 479, 480, 25, 8, 109, 110,
1062, 8, 672, 1022, 1024, 87, 88, 193, 194, 195,
1025, 53, 712, 1055, 1244, 136, 136, 136, 53, 1056,
1057, 1064, 673, 712, 220, 1366, 673, 112, 1058, 1069,
1070, 674, 1078, 1027, 712, 196, 135, 25, 617, 109,
110, 136, 136, 136, 1074, 25, 1083, 109, 110, 25,
1079, 109, 110, 1008, 1080, 1082, 89, 90, 197, 1084,
1140, 1087, 1093, 1136, 1389, 1141, 1142, 817, 1148, 1163,
1099, 618, 1168, 619, 1169, 620, 1062, 621, 1124, 519,
1173, 1124, 1293, 1174, 1119, 1124, 1175, 1123, 1181, 68,
1123, 1119, 68, 258, 1123, 1189, 68, 1339, 303, 1319,
1190, 1191, 198, 199, 200, 1198, 1200, 658, 659, 1214,
138, 1217, 1237, 1230, 1231, 1232, 1233, 1293, 520, 521,
189, 1238, 1246, 522, 523, 524, 525, 1239, 258, 53,
1247, 1124, 53, 256, 1251, 856, 53, 1119, 1253, 1286,
1123, 1255, 68, 1298, 1317, 1305, 1306, 1124, 1327, 1307,
712, 712, 1308, 1119, 486, 1341, 1123, 1318, 68, 1329,
352, 731, 600, 1345, 712, 712, 1353, 1363, 256, 1360,
892, 1364, 1293, 602, 1365, 1124, 1367, 1195, 894, 1368,
1373, 1119, 53, 258, 1123, 1378, 68, 135, 1379, 75,
221, 1385, 1387, 182, 183, 184, 1388, 95, 53, 1393,
12, 1394, 1398, 1166, 1399, 1, 615, 95, 114, 75,
5, 37, 588, 599, 126, 126, 986, 126, 17, 363,
867, 18, 344, 256, 75, 364, 53, 1124, 1020, 1094,
1236, 22, 136, 1119, 736, 172, 1123, 75, 68, 1240,
180, 188, 1284, 490, 1395, 205, 981, 1205, 1288, 873,
1193, 358, 148, 95, 980, 149, 1143, 534, 1032, 7,
329, 138, 535, 712, 223, 95, 995, 712, 420, 183,
184, 75, 394, 1091, 1050, 12, 698, 1049, 53, 823,
978, 776, 95, 410, 538, 412, 136, 136, 136, 96,
1212, 1133, 1372, 17, 1007, 20, 18, 114, 957, 889,
114, 1374, 138, 172, 95, 1322, 22, 596, 25, 126,
26, 27, 346, 126, 1052, 0, 126, 126, 126, 0,
0, 0, 0, 479, 480, 0, 0, 0, 0, 75,
1252, 172, 75, 0, 0, 0, 0, 0, 352, 355,
712, 712, 536, 712, 712, 0, 0, 172, 172, 172,
510, 511, 512, 513, 514, 515, 516, 517, 518, 996,
0, 0, 0, 0, 352, 1135, 1275, 1276, 1277, 1278,
0, 7, 8, 0, 0, 172, 0, 0, 0, 0,
0, -255, 749, 1291, 0, 0, 0, 712, 0, 0,
0, 0, 0, 0, 0, 75, -255, -255, 95, 486,
0, -255, 0, 1026, 0, 0, 126, 20, 0, 7,
8, 138, 138, 138, 1036, 0, -255, 0, 1291, 0,
25, 0, 26, 27, 0, 1051, 161, 0, -255, -255,
-255, -255, 0, -255, 0, 0, 162, 138, 138, 138,
0, 0, 0, 95, 461, 20, 163, 0, 0, 0,
0, 541, -513, 0, 31, -513, 0, 0, 25, 164,
26, 27, -255, -255, 0, 0, -255, 0, 0, 1077,
0, 1352, 0, 1291, 838, 712, -255, 0, 0, 0,
0, 95, 0, 0, 839, 539, 0, 461, 461, 555,
806, 0, 31, 0, 544, 172, 1371, 840, 546, 0,
0, 0, -513, 0, 0, -513, 0, -513, 0, 0,
0, 0, 749, 114, 0, 661, 0, 0, -513, 114,
0, 0, 666, 95, 7, 108, 0, 479, 480, 0,
0, 0, 0, 71, 0, 126, -513, -513, 126, 0,
-513, 1144, 1145, 126, 0, 0, 0, 75, 0, 0,
-513, 0, 0, 121, 1020, 1153, 1154, 0, 125, 129,
20, 0, 0, 0, 0, 0, 0, 0, 150, 0,
0, 715, 716, 25, 717, 26, 27, 0, 0, 417,
172, 181, 172, 0, 172, 172, 172, 0, 0, 131,
0, 0, 172, 0, 0, 0, 0, 172, 0, 132,
172, -734, 0, -734, -734, 0, 0, 31, -734, 352,
1135, 0, 133, 0, 0, 312, 0, 95, 0, 114,
0, 0, 639, 0, 172, 75, 0, 75, 138, 0,
639, 0, 0, 95, -734, -734, 418, 215, -734, 8,
-734, 10, 211, 0, 0, 0, 0, 12, 0, 0,
0, 0, 0, 345, 1221, 0, 0, 347, 1225, 0,
807, 808, 15, 0, 16, 807, 0, 0, 18, 0,
0, -734, 0, 71, 0, 0, 368, 0, 22, 0,
0, 0, 138, 138, 138, 0, 0, 25, 0, 109,
110, 125, 129, 0, 0, 0, 0, 8, 116, 10,
11, 639, 0, 645, 0, 12, 0, 0, 0, 0,
0, 0, 0, 95, 0, 461, 0, 0, 0, 0,
15, 0, 16, 17, 0, 539, 18, 461, 461, 0,
555, 1271, 1272, 0, 1273, 1274, 22, 75, 0, 445,
0, 0, 0, 0, 0, 25, 0, 109, 110, 0,
452, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 639, 0, 639, 639, 433, 0, 7, 8, 116,
10, 11, 479, 480, 1039, 1040, 12, 95, 1302, 0,
0, 0, 172, 75, 172, 172, 205, 555, 646, 639,
0, 15, 0, 16, 17, 639, 0, 18, -465, 905,
396, 398, 402, 20, 0, 0, 0, 22, 434, 0,
20, 0, 0, 0, 0, 0, 25, 0, 26, 27,
0, 0, 435, 25, 436, 26, 27, 0, 0, 0,
0, 1041, 29, 0, 172, 0, 0, 0, 75, 162,
0, 0, 30, 172, 172, 0, 172, 0, 0, 163,
31, 0, 0, 0, 0, 32, 108, 31, 183, 184,
0, 0, 164, 0, 12, 0, 1370, 7, 8, 0,
-465, 11, 0, 0, 908, 0, 0, 0, 0, 608,
0, 0, 609, 0, 0, 18, 0, 611, 0, 0,
0, 121, 461, 952, 953, 22, 955, 541, 0, 0,
461, 461, 461, 20, 25, 0, 109, 110, 0, 541,
0, 95, 95, 95, 95, 0, 25, 0, 26, 27,
542, 969, 0, 0, 345, 0, 347, 0, 0, 0,
543, 0, 838, 0, 0, 0, 0, 0, 0, 0,
544, 452, 839, 552, 546, 0, 0, 0, 0, 0,
31, 0, 544, 0, 994, 840, 546, 639, 0, 0,
95, 0, 0, 0, 0, 0, 79, 0, 696, 699,
0, 445, 0, 0, 97, 0, 0, 0, 0, 0,
461, 0, 461, 0, 97, 115, 79, 0, 0, 95,
0, 127, 127, 461, 127, 95, 0, 75, 75, 75,
0, 79, 0, 975, 0, 0, 0, 0, 0, 0,
0, 0, 127, 0, 79, 0, 639, 0, 0, 0,
95, 0, 95, 172, 172, 908, 0, 0, 0, 639,
213, 639, 0, 656, 0, 657, 0, 396, 398, 402,
0, 0, 213, 0, 0, 0, 0, 0, 79, 0,
667, 504, 505, 506, 507, 508, 509, 510, 511, 512,
513, 514, 515, 516, 517, 518, 908, 639, 7, 8,
0, 0, 211, 0, 334, 0, 0, 695, 1081, 0,
127, 213, 0, 0, 0, 0, 127, 95, 0, 0,
127, 0, 0, 127, 127, 127, 172, 0, 639, 126,
0, 75, 0, 95, 20, 1090, 79, 0, 127, 79,
541, 0, 0, 0, 0, 0, 0, 25, 639, 26,
27, 0, 0, 0, 127, 127, 127, 844, 0, 0,
0, 0, 0, 838, 0, 0, 0, 461, 461, 0,
461, 0, 0, 839, 0, 108, 0, 0, 11, 0,
1147, 31, 127, 544, 0, 0, 840, 546, 505, 506,
507, 508, 509, 510, 511, 512, 513, 514, 515, 516,
517, 518, 79, 172, 172, 172, 172, 908, 0, 172,
75, 0, 888, 127, 0, 0, 541, 608, 609, 0,
611, 0, 0, 25, 1170, 109, 110, 0, 0, 0,
0, 908, 908, 908, -342, 8, -342, 10, 211, 542,
0, 0, 0, 12, 95, 0, 0, 0, 0, 543,
213, 127, 0, 0, 0, 0, 0, 0, 15, 544,
16, -342, 545, 546, 18, 75, 0, 0, 0, 639,
-342, 639, 0, 639, 22, 0, 541, 0, 0, 0,
0, 0, 0, 25, 0, 109, 110, 0, 213, 0,
0, 0, 540, 0, 127, 127, 79, 0, 0, 542,
0, 563, 127, 172, 172, 172, 0, 0, 0, 543,
0, 0, 0, 0, 0, 0, 0, -342, 0, 544,
334, 0, 545, 546, 0, 0, 656, 657, 0, 667,
213, 7, 8, 182, 183, 184, 0, 172, 75, 172,
12, 0, 127, 0, 0, 127, 0, 0, 0, 0,
127, 0, 639, 0, 79, 0, 0, 402, 17, 0,
0, 18, 0, 0, 0, 0, 0, 20, 0, 0,
0, 22, 0, 541, 0, 0, 0, 0, 0, 0,
25, 0, 26, 27, 0, 0, 0, 127, 0, 127,
0, 127, 127, 127, 0, 0, 838, 125, 129, 127,
8, 0, 10, 11, 127, 0, 839, 127, 12, 0,
0, 0, 0, 0, 31, 0, 544, 7, 108, 840,
546, 11, 908, 15, 213, 16, 115, 0, 293, 18,
0, 127, 79, 8, 79, 10, 0, 0, 0, 22,
213, 12, 0, 0, 0, 0, 0, 0, 25, 0,
109, 110, 0, 20, 0, 0, 15, 0, 16, 0,
0, 0, 18, 0, 0, 293, 25, 0, 26, 27,
1046, 0, 22, 1046, 639, 445, 908, 908, 908, 0,
0, 25, 29, 109, 110, 145, 0, 7, 8, 116,
10, 11, 30, 0, 7, 108, 12, 0, 211, 0,
31, 0, 0, 0, 0, 32, 396, 398, 402, 172,
0, 15, 0, 16, 17, 0, 0, 18, 0, 0,
213, 0, 127, 20, 0, 0, 0, 22, 0, 0,
20, 0, 0, 0, 127, 127, 25, 79, 26, 27,
0, 0, 95, 25, 818, 26, 27, 345, 347, 402,
1039, 108, 29, 452, 445, 563, 0, 0, 0, 29,
0, 0, 30, 0, 0, 0, 0, 0, 0, 30,
31, 0, 0, 0, 0, 32, 0, 31, 0, 1045,
0, 0, 32, 0, 97, 0, 20, 0, 0, 127,
79, 127, 127, 0, 79, 0, 0, 0, 0, 25,
0, 26, 27, 0, 0, 0, 0, 1041, 0, 445,
0, 0, 0, 0, 0, 29, 0, 0, 0, 477,
213, 0, 0, 0, 0, 30, 0, 0, 0, 0,
0, 0, 0, 31, 0, 0, 0, 0, 32, 0,
0, 127, 0, 0, 0, 79, 0, 608, 609, 611,
127, 127, 0, 127, 0, 0, 656, 657, 396, 398,
402, 0, 667, 0, 7, 8, 182, 183, 184, 0,
0, 0, 0, 12, 0, 0, 0, 0, 0, 0,
0, 79, 1206, 0, 396, 398, 402, 0, 0, 7,
8, 17, 0, 11, 18, 0, 0, 0, 0, 127,
20, 0, 0, 0, 22, 0, 541, 127, 127, 127,
0, 0, 0, 25, 0, 26, 27, 0, 213, 213,
213, 213, 0, 0, 0, 20, 0, 637, 641, 838,
0, 541, 0, 7, 8, 0, 641, 451, 25, 839,
26, 27, 0, 0, 0, 0, 0, 31, 0, 544,
0, 0, 881, 546, 990, 0, 656, 657, 667, 0,
0, 0, 0, 0, 991, 0, 0, 213, 0, 20,
0, 0, 31, 0, 544, 541, 0, 992, 546, 680,
0, 0, 25, 0, 26, 27, 0, 127, 0, 127,
0, 0, 0, 0, 0, 0, 213, 0, 838, 0,
127, 0, 213, 0, 818, 818, 818, 641, 839, 0,
563, 0, 0, 0, 0, 0, 31, 0, 544, 0,
0, 840, 546, 0, 0, 0, 0, 213, 0, 213,
127, 127, 79, 0, 293, 108, 0, 637, 211, 0,
746, 747, 0, 751, 752, 753, 754, 755, 756, 757,
758, 759, 760, 761, 762, 763, 764, 765, 766, 767,
768, 769, 0, 0, 0, 0, 0, 641, 0, 641,
641, 0, 0, 818, 0, 402, 541, 0, 0, 0,
0, 0, 0, 25, 0, 109, 110, 0, 7, 8,
174, 10, 175, 0, 213, 641, 0, 12, 0, 542,
0, 641, 0, 127, 0, 0, 127, 0, 79, 543,
213, 0, 15, 0, 16, 17, 825, 827, 18, 544,
0, 0, 545, 546, 20, 0, 0, 0, 22, 396,
398, 402, 0, 0, 0, 0, 0, 25, 0, 26,
27, 0, 0, 176, 127, 127, 0, 127, 0, 8,
116, 10, 11, 29, 0, 645, 0, 12, 0, 0,
0, 0, 0, 30, 0, 0, 0, 0, 0, 0,
0, 31, 15, 0, 16, 17, 32, 0, 18, 637,
127, 127, 127, 127, 79, 0, 127, 79, 22, 0,
541, 0, 213, 0, 0, 0, 0, 25, 0, 109,
110, 0, 7, 108, 0, 0, 11, 0, 818, 818,
818, 0, 0, 542, 0, 0, 0, 0, 0, 0,
0, 213, 0, 543, 73, 0, 0, 0, 0, 0,
0, 906, 0, 544, 0, 0, 545, 546, 20, 0,
646, 0, 79, 0, 73, 108, 0, 0, 451, 73,
73, 25, 73, 26, 27, 0, 0, 0, 0, 73,
0, 0, 0, 641, 547, 547, 547, 131, 0, 0,
73, 0, 73, 0, 7, 8, 0, 132, 11, 0,
127, 127, 127, 0, 936, 31, 541, 0, 0, 0,
133, 0, 0, 25, 0, 109, 110, 0, 0, 0,
0, 0, 0, 0, 0, 0, 73, 0, 0, 542,
20, 0, 0, 0, 127, 79, 127, 0, 0, 543,
0, 637, 641, 25, 0, 26, 27, 0, 0, 544,
0, 0, 545, 546, 0, 641, 0, 641, 73, 162,
0, 0, 0, 0, 73, 0, 0, 0, 73, 163,
48, 73, 73, 73, 7, 108, 0, 31, 451, 0,
0, 0, 164, 977, 73, 0, 73, 73, 0, 0,
48, 0, 0, 641, 0, 48, 48, 0, 134, 0,
0, 0, 73, 73, 73, 48, 0, 0, 0, 0,
20, 0, 0, 0, 0, 0, 48, 0, 48, 818,
0, 0, 0, 25, 641, 26, 27, 0, 0, 0,
73, 0, 0, 0, 0, 0, 0, 0, 0, 29,
0, 218, 0, 0, 641, 0, 0, 0, 0, 30,
73, 0, 48, 0, 637, 0, 0, 31, 0, 0,
0, 73, 32, 0, 0, 0, 1033, 1034, 0, 0,
0, 7, 8, 818, 818, 818, 0, 0, 331, 0,
331, 331, 0, 0, 48, 0, 0, 0, 0, 0,
48, 0, 218, 0, 48, 0, 0, 134, 134, 134,
637, 637, 0, 0, 1065, 0, 127, 20, 0, 0,
48, 0, 48, 48, 0, 0, 0, 0, 0, 0,
25, 0, 26, 27, 547, 547, 1201, 547, 48, 48,
134, 0, 0, 0, 816, 0, 162, 0, 218, 213,
0, 0, 0, 0, 0, 0, 163, 0, 0, 562,
73, 0, 0, 0, 31, 0, 48, 0, 0, 164,
0, 7, 8, 0, 0, 641, 0, 641, 0, 641,
0, 0, 0, 0, 0, 0, 48, 637, 0, 547,
0, 547, 547, 0, 547, 637, 0, 48, 0, 0,
73, 0, 0, 73, 0, 0, 0, 20, 73, 0,
0, 0, 73, 0, 1150, 0, 0, 0, 0, 0,
25, 0, 26, 27, 0, 0, 0, 637, 0, 0,
0, 0, 637, 0, 1162, 0, 162, 0, 0, 0,
0, 547, 0, 0, 0, 73, 163, 73, 0, 73,
73, 73, 0, 0, 31, 0, 0, 73, 641, 164,
0, 487, 73, 0, 0, 73, 7, 8, 182, 183,
184, 0, 0, 0, 0, 12, 331, 0, 0, 0,
0, 0, 0, 1188, 218, 0, 48, 0, 0, 73,
73, 0, 73, 17, 0, 0, 18, 0, 0, 547,
0, 0, 20, 0, 331, 0, 22, 0, 541, 0,
331, 637, 637, 0, 0, 25, 0, 26, 27, 0,
0, 1223, 1224, 0, 0, 0, 48, 0, 0, 48,
0, 162, 0, 0, 48, 0, 637, 0, 48, 0,
0, 163, 0, 0, 0, 0, 0, 0, 0, 31,
0, 0, 0, 0, 1207, 503, 504, 505, 506, 507,
508, 509, 510, 511, 512, 513, 514, 515, 516, 517,
518, 48, 0, 48, 0, 134, 134, 134, 0, 0,
641, 0, 0, 48, 0, 0, 0, 547, 48, 547,
562, 48, 0, 637, 0, 0, 0, 0, 0, 0,
547, 0, 0, 0, 816, 816, 816, 637, 0, 0,
0, 0, 0, 0, 0, 48, 48, 0, 48, 0,
0, 1295, 0, 0, 0, 0, 0, 0, 0, 0,
547, 547, 547, 8, 0, 10, 211, 0, 0, 0,
0, 12, 487, 0, 0, 487, 0, 73, 73, 73,
73, 0, 0, 0, 0, 0, 15, 0, 16, 487,
487, 487, 18, 0, 0, 0, 0, 0, 0, 0,
0, 487, 22, 816, 541, 0, 0, 0, 865, 0,
0, 25, 0, 109, 110, 0, 0, 0, 0, 7,
8, 0, 0, 211, 0, 0, 0, 542, 0, 73,
0, 0, 0, 73, 0, 0, 0, 543, 73, 73,
0, 73, 0, 0, 139, 218, 0, 544, 0, 0,
545, 546, 0, 0, 0, 20, 0, 0, 487, 0,
0, 0, 173, 0, 0, 0, 0, 0, 25, 73,
26, 27, 507, 508, 509, 510, 511, 512, 513, 514,
515, 516, 517, 518, 162, 7, 8, 637, 0, 11,
0, 0, 0, 0, 163, 0, 0, 0, 0, 0,
0, 0, 31, 48, 48, 48, 48, 164, 0, 0,
547, 547, 547, 547, 547, 0, 547, 0, 0, 0,
0, 20, 0, 0, 0, 0, 0, 0, 0, 0,
173, 0, 0, 0, 25, 0, 26, 27, 816, 816,
816, 0, 0, 139, 139, 139, 0, 0, 0, 0,
399, 0, 0, 0, 0, 48, 0, 0, 173, 48,
400, 0, 0, 0, 48, 48, 0, 48, 31, 0,
0, 0, 0, 401, 173, 173, 403, 0, 0, 0,
0, 0, 0, 0, 0, 550, 554, 556, 171, 0,
0, 0, 0, 0, 0, 134, 0, 0, 562, 0,
0, 0, 173, 0, 0, 0, 0, 0, 0, 0,
547, 547, 547, 219, 0, 0, 0, 0, 73, 73,
73, 0, 0, 0, 0, 0, 487, 0, 0, 0,
0, 0, 0, 219, 0, 0, 433, 0, 7, 8,
116, 10, 11, 0, 0, 0, 0, 12, 0, 0,
0, 0, 0, 0, 0, 0, 171, 0, 0, 0,
0, 1021, 15, 0, 16, 17, 0, 0, 18, -466,
0, 462, 0, 0, 20, 0, 0, 0, 22, 434,
0, 0, 0, 0, 171, 0, 0, 25, 0, 26,
27, 73, 0, 435, 73, 436, 73, 0, 7, 8,
171, 171, 171, 29, 0, 0, 0, 0, 0, 0,
411, 0, 0, 30, 549, 549, 549, 0, 487, 487,
487, 31, 173, 0, 0, 0, 32, 0, 171, 0,
0, 0, 0, 0, 20, 0, 0, 0, 0, 0,
0, -466, 0, 0, 48, 48, 134, 25, 0, 26,
27, 0, 0, 0, 108, 0, 183, 184, 0, 0,
0, 219, 12, 399, 0, 0, 0, 0, 73, 73,
73, 73, 73, 400, 73, 73, 0, 0, 0, 0,
865, 31, 0, 18, 0, 0, 401, 1019, 0, 0,
0, 0, 0, 22, 0, 541, 1021, 1021, 1021, 0,
0, 0, 25, 0, 109, 110, 0, 173, 0, 173,
0, 403, 403, 403, 218, 0, 0, 48, 542, 173,
48, 0, 48, 0, 173, 796, 798, 173, 543, 0,
73, 0, 0, 0, 0, 0, 0, 0, 544, 0,
0, 545, 546, 0, 0, 0, 219, 0, 171, 0,
0, 173, 506, 507, 508, 509, 510, 511, 512, 513,
514, 515, 516, 517, 518, 0, 0, 0, 73, 73,
73, 0, 0, 0, 0, 0, 0, 0, 0, 0,
843, 218, 550, 554, 0, 556, 0, 0, 0, 0,
0, 0, 0, 0, 48, 48, 134, 134, 134, 0,
48, 48, 73, 73, 73, 0, 0, 0, 0, 0,
7, 8, 0, 0, 451, 0, 0, 0, 0, 0,
0, 0, 1019, 1019, 1019, 0, 0, 0, 0, 0,
0, 0, 554, 171, 0, 171, 0, 171, 171, 171,
0, 0, 784, 0, 0, 171, 20, 0, 0, 0,
171, 0, 0, 171, 549, 549, 48, 549, 0, 25,
0, 26, 27, 0, 549, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 162, 8, 171, 10, 11,
0, 0, 0, 0, 12, 163, 0, 1021, 0, 0,
554, 0, 0, 31, 48, 48, 48, 0, 164, 15,
0, 16, 0, 0, 0, 18, 0, 0, 0, 842,
0, 842, 842, 0, 549, 22, 0, 0, 0, 0,
0, 0, 0, 0, 25, 0, 109, 110, 48, 48,
48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1021, 1021, 1021, 502, 503, 504, 505, 506, 507,
508, 509, 510, 511, 512, 513, 514, 515, 516, 517,
518, 842, 0, 775, 0, 0, 0, 0, 0, 0,
173, 173, 0, 173, 73, 0, 0, 0, 963, 0,
964, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 968, 0, 219, 0, 796, 798, 0, 0, 0,
0, 403, 0, 0, 0, 0, 7, 8, 116, 10,
11, 0, 0, 1019, 0, 12, 0, 0, 0, 549,
0, 796, 798, 0, 0, 0, 0, 462, 462, 462,
15, 0, 16, 17, 0, 171, 18, 171, 171, 0,
0, 0, 20, 0, 0, 0, 22, 0, 0, 0,
0, 0, 0, 0, 0, 25, 0, 26, 27, 0,
0, 0, 0, 0, 0, 0, 0, 1019, 1019, 1019,
0, 29, 0, 0, 0, 117, 0, 0, 0, 0,
0, 30, 0, 0, 0, 0, 0, 171, 0, 31,
0, 0, 0, 0, 32, 0, 171, 171, 0, 171,
48, 93, 0, 0, 0, 0, 0, 549, 0, 549,
0, 93, 93, 0, 0, 0, 0, 0, 93, 93,
549, 93, 0, 0, 549, 549, 549, 907, 0, 0,
8, 116, 10, 11, 0, 0, 1347, 0, 12, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
842, 842, 993, 15, 0, 16, 17, 0, 0, 18,
0, 0, 0, 0, 0, 0, 0, 0, 0, 22,
0, 963, 964, 796, 798, 0, 0, 968, 25, 0,
109, 110, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 993, 0, 0, 0, 0, 0, 796,
798, 93, 0, 93, 93, 7, 8, 116, 10, 11,
0, 0, 645, 93, 12, 93, 93, 93, 0, 0,
93, 93, 93, 173, 0, 0, 0, 0, 0, 15,
0, 16, 17, 0, 0, 18, 0, 0, 0, 0,
0, 20, 0, 0, 0, 22, 0, 0, 0, 0,
0, 0, 0, 0, 25, 0, 26, 27, 0, 0,
0, 0, 0, 0, 784, 784, 0, 784, 0, 0,
399, 963, 964, 968, 0, 0, 171, 171, 907, 0,
400, 0, 0, 0, 0, 0, 0, 0, 31, 0,
0, 0, 0, 401, 93, 0, 0, 646, 0, 0,
842, 842, 993, 993, 993, 0, 842, 0, 0, 433,
93, 7, 8, 116, 10, 11, 0, 0, 0, 907,
12, 0, 0, 0, 0, 0, 0, 0, 993, 993,
993, 0, 0, 0, 0, 15, 0, 16, 17, 0,
0, 18, -468, 0, 0, 0, 1037, 20, 93, 171,
0, 22, 434, 0, 0, 0, 8, 174, 10, 175,
25, 0, 26, 27, 12, 0, 435, 0, 436, 0,
0, 0, 0, 0, 0, 0, 29, 0, 0, 15,
0, 16, 17, 0, 0, 18, 30, 0, 0, 93,
0, 93, 93, 0, 31, 22, 0, 0, 0, 32,
842, 842, 842, 0, 25, 0, 109, 110, 0, 0,
0, 0, 0, 219, -468, 0, 0, 93, 0, 0,
0, 0, 0, 93, 0, 0, 171, 171, 171, 171,
907, 0, 171, 0, 173, 93, 173, 0, 0, 93,
0, 0, 93, 0, 0, 0, 0, 93, 0, 0,
0, 0, 0, 0, 907, 907, 907, 1102, 0, 1103,
1104, 116, 10, 260, 261, 262, 0, 263, 12, 1105,
0, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114,
1115, 13, 14, 15, 264, 16, 17, 265, 0, 18,
0, 266, 267, 0, 268, 20, 269, 270, 0, 22,
0, 0, 0, 271, 272, 273, 274, 275, 25, 0,
1116, 27, 631, 0, 1117, 276, 0, 0, 0, 403,
0, 277, 0, 93, 278, 0, 171, 171, 171, 0,
0, 0, 279, 280, 281, 0, 0, 0, 0, 0,
282, 283, 284, 0, 0, 0, 0, 285, 0, 1118,
93, 0, 0, 0, 0, 0, 0, 0, 0, 0,
171, 0, 171, 286, 0, 0, 0, 0, 0, 0,
0, 0, 0, 403, 403, 403, 0, 0, 0, 0,
0, 0, 433, 0, 7, 8, 116, 10, 11, 0,
0, 0, 0, 12, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 173, 0, 15, 0,
16, 17, 0, 0, 18, -467, 0, 0, 0, 93,
20, 0, 0, 0, 22, 434, 0, 0, 93, 93,
0, 93, 93, 25, 0, 26, 27, 0, 0, 435,
0, 436, 0, 0, 0, 907, 0, 0, 0, 29,
0, 0, 1248, 0, 0, 0, 0, 0, 0, 30,
0, 0, 0, 0, 0, 0, 0, 31, 0, 0,
0, 0, 32, 0, 0, 0, 0, 0, 0, 0,
0, 93, 0, 0, 0, 0, 0, -467, 0, 0,
203, 0, 0, 0, 0, 0, 0, 0, 0, 907,
907, 907, 1249, 497, 498, 499, 500, 501, 502, 503,
504, 505, 506, 507, 508, 509, 510, 511, 512, 513,
514, 515, 516, 517, 518, 0, 0, 0, 0, 0,
0, 0, 171, 1210, 0, 1103, 1104, 116, 10, 260,
261, 262, 0, 263, 12, 1105, 0, 1106, 1107, 1108,
1109, 1110, 1111, 1112, 1113, 1114, 1115, 13, 14, 15,
264, 16, 17, 265, 0, 18, 0, 266, 267, 0,
268, 20, 269, 270, 0, 22, 0, 0, 0, 271,
272, 273, 274, 275, 25, 0, 1116, 27, 631, 0,
1117, 276, 0, 0, 0, 0, 93, 277, 0, 0,
278, 0, 0, 0, 93, 93, 93, 0, 279, 280,
281, 0, 0, 0, 0, 0, 282, 283, 284, 0,
0, 0, 0, 285, 482, 1118, 7, 8, 116, 10,
260, 261, 262, 645, 263, 12, 0, 0, 1211, 286,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
15, 264, 16, 17, 265, 0, 18, 0, 266, 267,
0, 268, 20, 269, 270, 0, 22, 0, 541, 0,
271, 272, 273, 274, 275, 25, 0, 26, 27, -263,
0, 0, 276, 0, 93, 0, 93, 0, 277, 0,
0, 812, 0, 0, 0, 0, 0, 93, 0, 279,
280, 813, 0, 0, 0, 0, 0, 282, 283, 284,
0, 544, 0, 0, 814, 546, 0, 482, 646, 7,
8, 116, 10, 260, 261, 262, 645, 263, 12, 0,
286, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 15, 264, 16, 17, 265, 0, 18,
0, 266, 267, 0, 268, 20, 269, 270, 0, 22,
0, 541, 0, 271, 272, 273, 274, 275, 25, 0,
26, 27, -263, 0, 0, 276, 0, 0, 0, 0,
0, 277, 0, 0, 1016, 0, 0, 0, 0, 0,
0, 0, 279, 280, 1017, 0, 0, 0, 0, 0,
282, 283, 284, 93, 544, 0, 0, 1018, 546, 0,
0, 646, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 644, 286, 7, 8, 116, 10, 260, 261,
262, 645, 263, 12, 0, 0, 0, 0, 0, 0,
0, 93, 93, 0, 93, 0, 0, 0, 15, 264,
16, 17, 265, 0, 18, 0, 266, 267, 0, 268,
20, 269, 270, 0, 22, 0, 0, 0, 271, 272,
273, 274, 275, 25, 0, 26, 27, 0, 0, 0,
276, 0, 0, 0, 0, 0, 277, 0, 0, 278,
0, 0, 0, 0, 0, 0, 0, 279, 280, 281,
0, 0, 0, 0, 0, 282, 283, 284, 0, 0,
0, 0, 285, 0, 0, 0, 646, 0, 0, 0,
0, 0, 0, 0, 0, 0, -702, 748, 286, 7,
8, 116, 10, 260, 261, 262, 0, 263, 12, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 15, 264, 16, 17, 265, 0, 18,
0, 266, 267, 0, 268, 20, 269, 270, 0, 22,
0, 0, 0, 271, 272, 273, 274, 275, 25, 0,
26, 27, 1287, 0, -692, 276, 0, 224, 0, 0,
8, 277, 10, 11, 278, 0, 0, 0, 12, 0,
0, 0, 279, 280, 281, 0, 0, 0, 0, 0,
282, 283, 284, 15, 0, 16, 0, 285, 0, 18,
0, 225, 226, 0, 0, 0, 0, 0, 0, 22,
0, 227, 0, 286, 0, 0, 0, 0, 25, 0,
109, 110, 0, 228, 0, 0, 0, 229, 230, 231,
232, 233, 234, 235, 236, 237, 238, 239, 240, 241,
242, 243, 244, 245, 246, 247, 248, 249, 0, 0,
250, 251, 252, 0, 635, 253, 737, 738, 254, 10,
465, 261, 262, 0, 263, 12, 0, 0, 0, 0,
0, 0, 0, 255, 0, 0, 0, 0, 0, 0,
15, 264, 16, 0, 265, 0, 18, 0, 266, 267,
0, 268, 20, 269, 270, 0, 22, 0, 0, 0,
271, 272, 273, 274, 275, 25, 0, 739, 740, 636,
0, 0, 276, 0, 0, 0, 0, 0, 277, 0,
0, 278, 0, 0, 0, 0, 0, 0, 0, 279,
280, 281, 0, 0, 0, 0, 0, 282, 283, 284,
0, 0, 0, 0, 285, 741, 635, 0, 737, 738,
0, 10, 465, 261, 262, 0, 263, 12, 0, 872,
286, 0, 0, 0, 1061, 0, 0, 0, 0, 0,
0, 0, 15, 264, 16, 0, 265, 0, 18, 0,
266, 267, 0, 268, 20, 269, 270, 0, 22, 0,
0, 0, 271, 272, 273, 274, 275, 25, 0, 739,
740, 636, 0, 0, 276, 0, 0, 0, 0, 0,
277, 0, 0, 278, 0, 0, 0, 0, 0, 0,
0, 279, 280, 281, 0, 0, 0, 0, 0, 282,
283, 284, 635, 0, 737, 738, 285, 10, 465, 261,
262, 0, 263, 12, 0, 0, 0, 0, 0, 0,
1061, -427, 286, 0, 0, 0, 0, 0, 15, 264,
16, 0, 265, 0, 18, 0, 266, 267, 0, 268,
20, 269, 270, 0, 22, 0, 0, 0, 271, 272,
273, 274, 275, 25, 0, 739, 740, 636, 0, 0,
276, 0, 0, 0, 0, 0, 277, 0, 0, 278,
0, 0, 0, 0, 0, 0, 0, 279, 280, 281,
0, 0, 0, 0, 0, 282, 283, 284, 635, 0,
737, 738, 285, 10, 465, 261, 262, 0, 263, 12,
0, 0, 0, 0, 0, 0, 0, 1134, 286, 0,
0, 0, 0, 0, 15, 264, 16, 0, 265, 0,
18, 0, 266, 267, 0, 268, 20, 269, 270, 0,
22, 0, 0, 0, 271, 272, 273, 274, 275, 25,
0, 739, 740, 636, 0, 0, 276, 0, 0, 0,
0, 0, 277, 0, 0, 278, 0, 0, 0, 0,
0, 0, 0, 279, 280, 281, 0, 0, 0, 0,
0, 282, 283, 284, 0, 0, 0, 0, 285, 741,
482, 0, 7, 8, 0, 10, 260, 261, 262, 0,
263, 12, 0, 0, 286, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 15, 264, 16, 0,
265, 0, 18, 0, 266, 267, 0, 268, 20, 269,
270, 0, 22, 0, 0, 0, 271, 272, 273, 274,
275, 25, 0, 26, 27, -263, 0, 0, 276, 0,
0, 0, 0, 0, 277, 0, 0, 483, 0, 0,
0, 0, 0, 0, 0, 279, 280, 484, 0, 0,
0, 0, 0, 282, 283, 284, 635, 0, 7, 8,
485, 10, 465, 261, 262, 0, 263, 12, 0, 0,
0, 0, 0, 0, 0, 0, 286, 0, 0, 0,
0, 0, 15, 264, 16, 0, 265, 0, 18, 0,
266, 267, 0, 268, 20, 269, 270, 0, 22, 0,
0, 0, 271, 272, 273, 274, 275, 25, 0, 26,
27, 636, 0, 0, 276, 0, 0, 0, 0, 0,
277, 0, 0, 278, 0, 0, 0, 0, 0, 0,
0, 279, 280, 281, 0, 0, 0, 0, 0, 282,
283, 284, 748, 0, 7, 8, 285, 10, 465, 261,
262, 0, 263, 12, 0, 0, 0, 0, 0, 0,
0, 0, 286, 0, 0, 0, 0, 0, 15, 264,
16, 0, 265, 0, 18, 0, 266, 267, 0, 268,
20, 269, 270, 0, 22, 0, 0, 0, 271, 272,
273, 274, 275, 25, 0, 26, 27, 0, 0, 0,
276, -692, 0, 0, 0, 0, 277, 0, 0, 278,
0, 0, 0, 0, 0, 0, 0, 279, 280, 281,
0, 0, 0, 0, 0, 282, 283, 284, 482, 0,
7, 8, 285, 10, 260, 261, 262, 0, 263, 12,
0, 0, 0, 0, 0, 0, 0, 0, 286, 0,
0, 0, 0, 0, 15, 264, 16, 0, 265, 0,
18, 0, 266, 267, 0, 268, 20, 269, 270, 0,
22, 0, 0, 0, 271, 272, 273, 274, 275, 25,
0, 26, 27, -263, 0, 0, 276, 0, 0, 0,
0, 0, 277, 0, 0, 1261, 0, 0, 0, 0,
0, 0, 0, 279, 280, 1262, 0, 0, 0, 0,
0, 282, 283, 284, 1354, 0, 7, 8, 1263, 10,
260, 261, 262, 0, 263, 12, 0, 0, 0, 0,
0, 0, 0, 0, 286, 0, 0, 0, 0, 0,
15, 264, 16, 0, 265, 0, 18, 0, 266, 267,
0, 268, 20, 269, 270, 0, 22, 0, 0, 0,
271, 272, 273, 274, 275, 25, 0, 26, 27, 0,
0, -165, 276, 0, 0, 0, 0, 0, 277, 0,
0, 278, 0, 0, 0, 0, 0, 0, 0, 279,
280, 281, 0, 0, 0, 0, 0, 282, 283, 284,
748, 0, 7, 8, 285, 10, 465, 261, 262, 0,
263, 12, 0, 0, 0, 0, 0, 0, 0, 0,
286, 0, 0, 0, 0, 0, 15, 264, 16, 0,
265, 0, 18, 0, 266, 267, 0, 268, 20, 269,
270, 0, 22, 0, 0, 0, 271, 272, 273, 274,
275, 25, 0, 26, 27, 0, 0, 0, 276, 0,
0, 0, 0, 0, 277, 0, 0, 278, 0, 0,
0, 0, 0, 0, 0, 279, 280, 281, 0, 0,
0, 0, 0, 282, 283, 284, 824, 0, 7, 8,
285, 10, 465, 261, 262, 0, 263, 12, 0, 0,
0, 0, 0, 0, -692, 0, 286, 0, 0, 0,
0, 0, 15, 264, 16, 0, 265, 0, 18, 0,
266, 267, 0, 268, 20, 269, 270, 0, 22, 0,
0, 0, 271, 272, 273, 274, 275, 25, 0, 26,
27, 0, 0, 0, 276, 0, 0, 0, 0, 0,
277, 0, 0, 278, 0, 0, 0, 0, 0, 0,
0, 279, 280, 281, 0, 0, 0, 0, 0, 282,
283, 284, 826, 0, 7, 8, 285, 10, 465, 261,
262, 0, 263, 12, 0, 0, 0, 0, 0, 0,
0, 0, 286, 0, 0, 0, 0, 0, 15, 264,
16, 0, 265, 0, 18, 0, 266, 267, 0, 268,
20, 269, 270, 0, 22, 0, 0, 0, 271, 272,
273, 274, 275, 25, 0, 26, 27, 0, 0, 0,
276, 0, 0, 0, 0, 0, 277, 0, 0, 278,
0, 0, 0, 0, 0, 0, 0, 279, 280, 281,
0, 0, 0, 0, 0, 282, 283, 284, 0, 0,
7, 8, 285, 10, 465, 261, 262, 0, 263, 12,
0, 0, 0, 0, 0, 0, 0, 0, 286, 0,
0, 0, 0, 0, 15, 264, 16, 0, 265, 0,
18, 0, 266, 267, 0, 268, 20, 269, 270, 0,
22, 0, 0, 0, 271, 272, 273, 274, 275, 25,
0, 26, 27, 0, 0, 0, 276, 0, 0, 0,
0, 0, 277, 0, 0, 278, 0, 0, 0, 0,
0, 0, 0, 279, 280, 281, 0, 0, 0, 0,
0, 282, 283, 284, 0, 0, 0, 0, 285, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 286, 787, 1103, 1104, 116, 10,
260, 261, 262, 0, 263, 12, 1105, 0, 1106, 1107,
1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 13, 14,
15, 264, 16, 17, 265, 0, 18, 0, 266, 267,
0, 268, 20, 269, 270, 0, 22, 0, 0, 0,
271, 272, 273, 274, 275, 25, 0, 1116, 27, 631,
0, 1117, 276, 0, 0, 0, 0, 0, 277, 0,
0, 278, 0, 0, 0, 0, 0, 0, 0, 279,
280, 281, 0, 0, 0, 0, 0, 282, 283, 284,
0, 0, 0, 0, 285, 0, 1118, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1215,
286, 1103, 1104, 116, 10, 260, 261, 262, 0, 263,
12, 1105, 0, 1106, 1107, 1108, 1109, 1110, 1111, 1112,
1113, 1114, 1115, 13, 14, 15, 264, 16, 17, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 0, 0, 271, 272, 273, 274, 275,
25, 0, 1116, 27, 631, 0, 1117, 276, 0, 0,
0, 0, 0, 277, 0, 0, 278, 0, 0, 0,
0, 0, 0, 0, 279, 280, 281, 0, 0, 0,
0, 0, 282, 283, 284, 0, 0, 0, 0, 285,
0, 1118, 0, 0, 1103, 1104, 116, 10, 260, 261,
262, 0, 263, 12, 1105, 286, 1106, 1107, 1108, 1109,
1110, 1111, 1112, 1113, 1114, 1115, 13, 14, 15, 264,
16, 17, 265, 0, 18, 0, 266, 267, 0, 268,
20, 269, 270, 0, 22, 0, 0, 0, 271, 272,
273, 274, 275, 25, 0, 1116, 27, 1331, 0, 1117,
276, 0, 0, 0, 0, 0, 277, 0, 0, 278,
0, 0, 0, 0, 0, 0, 0, 279, 280, 281,
0, 0, 0, 0, 0, 282, 283, 284, 0, 0,
0, 0, 285, 0, 1118, 0, 0, 1103, 1104, 116,
10, 260, 261, 262, 0, 263, 12, 1105, 286, 1106,
1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 13,
14, 15, 264, 16, 17, 265, 0, 18, 0, 266,
267, 0, 268, 20, 269, 270, 0, 22, 0, 0,
0, 271, 272, 273, 274, 275, 25, 0, 1116, 27,
0, 0, 1117, 276, 0, 0, 0, 0, 0, 277,
0, 0, 278, 0, 0, 0, 0, 0, 0, 0,
279, 280, 281, 0, 0, 0, 0, 0, 282, 283,
284, 0, 0, 0, 0, 285, 0, 1118, 7, 8,
116, 10, 260, 261, 262, 645, 263, 12, 0, 0,
0, 286, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 15, 264, 16, 17, 265, 0, 18, 0,
266, 267, 0, 268, 20, 269, 270, 0, 22, 0,
541, 0, 271, 272, 273, 274, 275, 25, 0, 26,
27, 0, 0, 0, 276, 0, 0, 0, 0, 0,
277, 0, 0, 812, 0, 0, 0, 0, 0, 0,
0, 279, 280, 813, 0, 0, 0, 0, 0, 282,
283, 284, 0, 544, 0, 0, 814, 546, 0, 0,
646, 7, 8, 116, 10, 260, 261, 262, 645, 263,
12, 0, 286, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 15, 264, 16, 17, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 541, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 276, 0, 0,
0, 0, 0, 277, 0, 0, 1016, 0, 0, 0,
0, 0, 0, 0, 279, 280, 1017, 0, 0, 0,
0, 0, 282, 283, 284, 0, 544, 0, 0, 1018,
546, 7, 8, 646, 10, 260, 261, 262, 0, 263,
12, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 541, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 0, 0, 0,
0, 0, 0, 277, 0, 0, 812, 0, 0, 0,
0, 0, 0, 0, 279, 280, 813, 0, 0, 0,
0, 0, 282, 283, 284, 0, 544, 0, 0, 814,
546, 7, 8, 0, 10, 260, 261, 262, 0, 263,
12, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 541, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 0, 0, 0,
0, 0, 0, 277, 0, 0, 1016, 0, 0, 0,
0, 0, 0, 0, 279, 280, 1017, 0, 0, 0,
0, 0, 282, 283, 284, 0, 544, 0, 0, 1018,
546, 7, 8, 0, 10, 260, 261, 262, 0, 263,
12, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 0, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 276, 0, 0,
0, 0, 0, 277, 0, 0, 278, 0, 0, 0,
0, 343, 0, 0, 279, 280, 281, 0, 0, 0,
0, 0, 282, 283, 284, 0, 0, 7, 8, 285,
10, 465, 261, 262, 0, 263, 12, 0, 0, 0,
0, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 15, 264, 16, 0, 265, 0, 18, 0, 266,
267, 0, 268, 20, 269, 270, 0, 22, 0, 0,
0, 271, 272, 273, 274, 275, 25, 0, 26, 27,
0, 0, 1192, 276, 0, 0, 0, 0, 0, 277,
0, 0, 278, 0, 0, 0, 0, 0, 0, 0,
279, 280, 281, 0, 0, 0, 0, 0, 282, 283,
284, 0, 0, 7, 8, 285, 10, 260, 261, 262,
0, 263, 12, 0, 0, 0, 0, 0, 0, 0,
0, 286, 0, 0, 0, 0, 0, 15, 264, 16,
0, 265, 0, 18, 0, 266, 267, 0, 268, 20,
269, 270, 0, 22, 0, 0, 0, 271, 272, 273,
274, 275, 25, 0, 26, 27, 0, 0, 0, 276,
0, 0, 0, 0, 0, 277, 0, 0, 278, 0,
0, 0, 0, 0, 0, 0, 279, 280, 281, 0,
0, 0, 0, 0, 282, 283, 284, 0, 0, 7,
8, 285, 10, 465, 261, 262, 0, 263, 12, 0,
0, 0, 0, 0, 0, 0, 0, 286, 0, 0,
0, 0, 0, 15, 264, 16, 0, 265, 0, 18,
0, 266, 267, 0, 268, 20, 269, 270, 0, 22,
0, 0, 0, 271, 272, 273, 274, 275, 25, 0,
26, 27, 0, 0, 0, 276, 0, 0, 0, 0,
0, 277, 0, 0, 278, 0, 0, 0, 0, 0,
0, 0, 279, 280, 281, 0, 0, 0, 0, 0,
282, 283, 284, 0, 0, 7, 8, 285, 10, 465,
261, 262, 0, 263, 12, 0, 0, 0, 0, 0,
0, 0, 0, 286, 0, 0, 0, 0, 0, 15,
264, 16, 0, 265, 0, 18, 0, 266, 267, 0,
268, 20, 269, 270, 0, 22, 0, 0, 0, 271,
272, 273, 274, 275, 25, 0, 26, 27, 494, 0,
0, 0, 0, 0, 0, 0, 0, 277, 0, 0,
278, 0, 0, 0, 0, 0, 0, 0, 279, 280,
281, 0, 0, 0, 0, 0, 282, 283, 284, 0,
0, 7, 8, 495, 10, 465, 261, 262, 0, 263,
12, 0, 0, 0, 0, 0, 0, 0, 0, 286,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 0, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 0, 0, 0,
0, 0, 0, 277, 0, 0, 278, 0, 0, 0,
0, 0, 0, 0, 279, 280, 281, 0, 0, 0,
0, 0, 282, 283, 284, 0, 0, 0, 0, 285,
531, 7, 8, 0, 10, 465, 261, 262, 0, 263,
12, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 0, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 276, 0, 0,
0, 0, 0, 277, 0, 0, 483, 0, 0, 0,
0, 0, 0, 0, 279, 280, 484, 0, 0, 0,
0, 0, 282, 283, 284, 0, 0, 983, 8, 485,
10, 465, 261, 262, 0, 263, 12, 0, 0, 0,
0, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 15, 264, 16, 0, 265, 0, 18, 0, 266,
267, 0, 268, 20, 269, 270, 0, 22, 0, 0,
0, 271, 272, 273, 274, 275, 25, 0, 26, 27,
0, 0, 0, 276, 0, 0, 0, 0, 0, 277,
0, 0, 278, 0, 0, 0, 0, 0, 0, 0,
279, 280, 281, 0, 0, 0, 0, 0, 282, 283,
284, 0, 0, 7, 8, 285, 10, 465, 261, 262,
0, 263, 12, 0, 0, 0, 0, 0, 0, 0,
0, 286, 0, 0, 0, 0, 0, 15, 264, 16,
0, 265, 0, 18, 0, 266, 267, 0, 268, 20,
269, 270, 0, 22, 0, 0, 0, 271, 272, 273,
274, 275, 25, 0, 26, 27, 0, 0, 0, 276,
0, 0, 0, 0, 0, 277, 0, 0, 1261, 0,
0, 0, 0, 0, 0, 0, 279, 280, 1262, 0,
0, 0, 0, 0, 282, 283, 284, 0, 0, 7,
8, 1263, 10, 465, 261, 262, 0, 263, 12, 0,
0, 0, 0, 0, 0, 0, 0, 286, 0, 0,
0, 0, 0, 15, 264, 16, 0, 265, 0, 18,
0, 266, 267, 0, 268, 20, 269, 270, 0, 22,
0, 0, 0, 271, 272, 273, 274, 275, 25, 0,
26, 27, 0, 0, 0, 0, 0, 0, 0, 0,
0, 277, 0, 0, 278, 0, 0, 0, 0, 0,
0, 0, 279, 280, 281, 0, 0, 0, 0, 0,
282, 283, 284, 0, 0, 7, 8, 466, 10, 465,
261, 262, 0, 263, 12, 0, 0, 0, 0, 0,
0, 0, 0, 286, 0, 0, 0, 0, 0, 15,
264, 16, 0, 265, 0, 18, 0, 266, 267, 0,
268, 20, 269, 270, 0, 22, 0, 0, 0, 271,
272, 273, 274, 275, 25, 0, 26, 27, 0, 0,
0, 0, 0, 0, 0, 0, 0, 277, 0, 0,
278, 0, 0, 0, 0, 0, 0, 0, 279, 280,
281, 0, 0, 0, 0, 0, 282, 283, 284, 0,
0, 7, 8, 469, 10, 465, 261, 262, 0, 263,
12, 0, 0, 0, 0, 0, 0, 0, 0, 286,
0, 0, 0, 0, 0, 15, 264, 16, 0, 265,
0, 18, 0, 266, 267, 0, 268, 20, 269, 270,
0, 22, 0, 0, 0, 271, 272, 273, 274, 275,
25, 0, 26, 27, 0, 0, 0, 0, 0, 0,
0, 0, 0, 277, 0, 0, 278, 0, 0, 0,
0, 0, 0, 0, 279, 280, 281, 0, 0, 0,
0, 0, 282, 283, 284, 0, 0, 7, 8, 285,
10, 465, 261, 262, 0, 263, 12, 0, 0, 0,
0, 0, 0, 0, 0, 286, 0, 0, 0, 0,
0, 15, 264, 16, 0, 265, 0, 18, 0, 266,
267, 0, 268, 20, 269, 270, 0, 22, 0, 0,
0, 271, 272, 273, 274, 275, 25, 0, 26, 27,
0, 0, 0, 0, 0, 0, 0, 0, 0, 277,
0, 0, 483, 0, 0, 0, 0, 0, 0, 0,
279, 280, 484, 0, 0, 0, 0, 0, 282, 283,
284, 0, 0, 7, 8, 485, 10, 260, 261, 262,
0, 263, 12, 0, 0, 0, 0, 0, 0, 0,
0, 286, 0, 0, 0, 0, 0, 15, 264, 16,
0, 265, 0, 18, 0, 266, 267, 0, 268, 20,
269, 270, 0, 22, 0, 0, 0, 271, 272, 273,
274, 275, 25, 0, 26, 27, 0, 0, 0, 0,
0, 0, 0, 0, 0, 277, 0, 0, 1261, 0,
0, 0, 0, 0, 0, 0, 279, 280, 1262, 0,
0, 0, 0, 0, 282, 283, 284, 0, 0, 0,
6, 1263, 7, 8, 9, 10, 11, 0, 0, 0,
0, 12, 0, 0, 0, 0, 0, 286, 0, 0,
0, 0, 0, 0, 13, 14, 15, 0, 16, 17,
0, 0, 18, 0, 0, 0, 19, 0, 20, 0,
0, 21, 22, 23, 0, 24, 0, 0, 0, 0,
0, 25, 0, 26, 27, 0, 0, 28, 0, 0,
6, 0, 7, 8, 9, 10, 11, 29, 0, 0,
0, 12, 0, 0, 0, 0, 0, 30, 0, 0,
0, 0, 0, 0, 0, 31, 15, 0, 16, 17,
32, 0, 18, 0, 0, 33, 34, 0, 20, 0,
0, 0, 22, 0, 0, 362, 0, 0, 0, 0,
0, 25, 0, 26, 27, 0, 0, 28, 0, 0,
0, 0, 7, 8, 116, 10, 11, 29, 0, 645,
0, 12, 0, 0, 0, 0, 0, 30, 0, 0,
0, 0, 0, 0, 0, 31, 15, 0, 16, 17,
32, 0, 18, 0, 0, 33, 0, 0, 20, 0,
0, 0, 22, 0, 541, 0, 685, 8, 174, 10,
175, 25, 0, 26, 27, 12, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 990, 0, 0,
15, 0, 16, 17, 0, 0, 18, 991, 0, 0,
0, 0, 20, 0, 0, 31, 22, 544, 0, 0,
992, 546, 0, 0, 646, 25, 0, 26, 27, 0,
0, 0, 0, 688, 0, 0, 7, 8, 116, 10,
11, 29, 0, 887, 0, 12, 0, 0, 0, 0,
0, 30, 0, 0, 0, 0, 0, 0, 0, 31,
15, 0, 16, 17, 32, 0, 18, 0, 0, 0,
0, 0, 20, 0, 0, 0, 22, 0, 0, 0,
7, 8, 174, 10, 175, 25, 0, 26, 27, 12,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 29, 0, 0, 15, 0, 16, 17, 0, 0,
18, 30, 0, 0, 0, 0, 20, 0, 0, 31,
22, 0, 0, 0, 32, 0, 0, 0, 0, 25,
0, 26, 27, 0, 0, 1204, 0, 0, 0, 0,
7, 8, 116, 10, 11, 29, 0, 0, 0, 12,
0, 0, 0, 0, 0, 30, 0, 0, 0, 0,
0, 0, 0, 31, 15, 0, 16, 17, 32, 0,
18, 0, 0, 0, 0, 0, 20, 0, 0, 0,
22, 0, 0, 0, 7, 8, 174, 10, 175, 25,
0, 26, 27, 12, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 0, 15, 0,
16, 17, 0, 0, 18, 30, 0, 0, 0, 0,
20, 0, 0, 31, 22, 0, 0, 0, 32, 0,
0, 0, 0, 25, 0, 26, 27, 0, 0, 0,
0, 0, 17, 0, 0, 0, 0, 0, 0, 29,
0, 0, 0, 0, 0, 0, 0, 0, 0, 30,
0, 0, 0, 0, 0, 0, 0, 31, 0, 0,
0, 0, 32, 497, 498, 499, 500, 501, 502, 503,
504, 505, 506, 507, 508, 509, 510, 511, 512, 513,
514, 515, 516, 517, 518, 8, 116, 10, 11, 0,
0, 0, 0, 12, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 15, 0,
16, 17, 0, 0, 18, 0, 0, 0, 0, 0,
0, 0, 0, 0, 592, 0, 0, 0, 0, 0,
0, 0, 0, 25, 0, 109, 110, 497, 498, 499,
500, 501, 502, 503, 504, 505, 506, 507, 508, 509,
510, 511, 512, 513, 514, 515, 516, 517, 518, 497,
498, 499, 500, 501, 502, 503, 504, 505, 506, 507,
508, 509, 510, 511, 512, 513, 514, 515, 516, 517,
518, 574, 0, 0, 1059, 497, 498, 499, 500, 501,
502, 503, 504, 505, 506, 507, 508, 509, 510, 511,
512, 513, 514, 515, 516, 517, 518, 1234, 497, 498,
499, 500, 501, 502, 503, 504, 505, 506, 507, 508,
509, 510, 511, 512, 513, 514, 515, 516, 517, 518,
1320, 497, 498, 499, 500, 501, 502, 503, 504, 505,
506, 507, 508, 509, 510, 511, 512, 513, 514, 515,
516, 517, 518, 497, 498, 499, 500, 501, 502, 503,
504, 505, 506, 507, 508, 0, 510, 511, 512, 513,
514, 515, 516, 517, 518, 501, 502, 503, 504, 505,
506, 507, 508, 509, 510, 511, 512, 513, 514, 515,
516, 517, 518
};
static const short yycheck[] = { 4,
140, 60, 442, 309, 338, 4, 338, 177, 4, 71,
4, 309, 207, 57, 409, 50, 631, 4, 338, 24,
131, 132, 79, 263, 264, 80, 303, 24, 24, 216,
24, 326, 432, 1243, 39, 29, 30, 24, 157, 12,
97, 54, 212, 39, 177, 39, 856, 52, 1246, 22,
4, 291, 39, 186, 112, 393, 689, 115, 9, 49,
776, 206, 1125, 68, 1066, 114, 115, 9, 34, 1132,
24, 9, 1267, 32, 57, 80, 1282, 34, 3, 4,
85, 86, 45, 118, 4, 39, 80, 257, 150, 86,
86, 35, 86, 98, 99, 45, 0, 58, 60, 86,
81, 82, 1312, 165, 605, 1, 338, 7, 52, 60,
72, 146, 185, 186, 119, 0, 1311, 122, 46, 181,
45, 1287, 58, 106, 10, 4, 80, 52, 91, 54,
55, 1337, 86, 303, 54, 55, 180, 131, 132, 144,
106, 91, 147, 1338, 188, 106, 136, 106, 144, 106,
144, 546, 3, 4, 105, 105, 213, 144, 78, 59,
56, 393, 1164, 105, 177, 1331, 91, 105, 162, 163,
106, 57, 185, 186, 60, 54, 55, 810, 1376, 169,
45, 58, 1392, 6, 7, 385, 996, 1250, 375, 12,
144, 468, 311, 393, 57, 340, 57, 62, 10, 212,
407, 57, 60, 54, 55, 210, 58, 57, 415, 95,
33, 58, 73, 10, 210, 379, 210, 32, 57, 105,
43, 4, 45, 210, 384, 85, 91, 78, 628, 106,
946, 3, 419, 1296, 12, 72, 60, 56, 98, 99,
58, 296, 105, 21, 257, 57, 1285, 105, 60, 105,
62, 300, 309, 258, 106, 105, 210, 563, 4, 106,
57, 7, 122, 60, 464, 5, 105, 60, 91, 93,
328, 54, 55, 57, 58, 310, 334, 1340, 97, 52,
285, 414, 60, 95, 75, 334, 1325, 57, 399, 400,
303, 296, 587, 1332, 34, 78, 57, 58, 95, 304,
58, 23, 296, 73, 95, 367, 52, 58, 54, 55,
25, 26, 105, 545, 45, 30, 131, 132, 133, 653,
552, 653, 68, 114, 524, 489, 526, 527, 45, 52,
1369, 54, 78, 338, 56, 126, 1375, 59, 60, 52,
413, 414, 296, 58, 338, 62, 92, 62, 99, 164,
423, 689, 130, 1069, 57, 58, 1395, 362, 558, 72,
91, 3, 4, 425, 57, 362, 362, 4, 362, 4,
7, 93, 649, 446, 91, 362, 57, 58, 422, 52,
73, 172, 45, 445, 338, 458, 91, 60, 393, 23,
91, 106, 45, 57, 98, 99, 119, 39, 62, 393,
413, 414, 4, 91, 439, 399, 400, 91, 362, 73,
423, 23, 54, 55, 205, 52, 811, 54, 55, 54,
55, 653, 56, 45, 147, 285, 60, 205, 91, 616,
60, 68, 223, 446, 52, 440, 78, 442, 91, 393,
62, 78, 72, 448, 86, 458, 442, 4, 442, 1122,
56, 1124, 54, 55, 177, 442, 62, 689, 45, 93,
30, 466, 185, 186, 469, 60, 630, 472, 45, 91,
92, 1, 810, 528, 23, 56, 78, 672, 338, 674,
485, 25, 26, 678, 671, 45, 491, 106, 442, 45,
495, 56, 45, 23, 1109, 25, 26, 54, 55, 277,
30, 835, 902, 835, 91, 92, 45, 56, 45, 4,
59, 60, 818, 91, 91, 835, 105, 308, 705, 105,
818, 78, 527, 528, 57, 58, 56, 57, 58, 59,
60, 91, 62, 393, 528, 91, 92, 707, 91, 32,
545, 92, 601, 45, 93, 323, 105, 552, 542, 543,
1051, 545, 91, 92, 91, 346, 45, 52, 552, 54,
55, 956, 597, 93, 599, 600, 105, 105, 1183, 1184,
710, 3, 4, 68, 528, 45, 816, 106, 810, 779,
9, 285, 814, 78, 399, 400, 401, 600, 448, 91,
92, 545, 792, 598, 794, 668, 45, 602, 552, 45,
1000, 59, 91, 835, 45, 58, 466, 39, 840, 469,
1050, 3, 472, 32, 649, 4, 58, 59, 778, 592,
52, 91, 54, 55, 1239, 485, 3, 4, 690, 1029,
830, 491, 99, 695, 696, 495, 649, 699, 92, 132,
133, 92, 91, 92, 108, 91, 3, 4, 653, 881,
91, 92, 1153, 1154, 86, 668, 105, 60, 56, 653,
58, 861, 60, 52, 105, 54, 55, 527, 712, 108,
461, 164, 72, 52, 951, 52, 91, 54, 55, 56,
91, 60, 39, 9, 689, 72, 390, 3, 4, 72,
413, 414, 4, 72, 707, 689, 72, 54, 55, 653,
423, 1316, 106, 867, 899, 900, 901, 4, 105, 6,
7, 57, 131, 132, 133, 12, 494, 440, 57, 58,
1221, 726, 727, 728, 729, 912, 913, 450, 915, 86,
27, 891, 29, 45, 4, 689, 33, 105, 54, 55,
52, 105, 54, 55, 105, 164, 43, 3, 539, 58,
78, 79, 80, 81, 82, 52, 68, 54, 55, 56,
992, 818, 466, 52, 555, 469, 78, 52, 472, 105,
775, 60, 1273, 1274, 779, 60, 88, 937, 938, 91,
92, 485, 52, 72, 54, 55, 1018, 72, 3, 4,
108, 495, 285, 653, 91, 499, 57, 58, 68, 804,
106, 1302, 1002, 106, 1004, 810, 1006, 7, 78, 814,
105, 56, 108, 58, 592, 60, 810, 91, 812, 813,
814, 525, 92, 601, 39, 952, 953, 531, 955, 689,
835, 108, 837, 58, 59, 840, 108, 3, 4, 54,
55, 835, 105, 905, 838, 839, 840, 1124, 1035, 3,
4, 5, 6, 7, 1014, 56, 810, 58, 636, 60,
814, 105, 1022, 78, 57, 58, 726, 727, 728, 729,
105, 86, 3, 4, 689, 598, 881, 600, 56, 990,
991, 835, 105, 3, 4, 1085, 840, 881, 54, 55,
56, 52, 897, 6, 1054, 715, 716, 717, 108, 1059,
54, 55, 3, 4, 627, 1016, 1017, 400, 401, 25,
26, 916, 91, 918, 30, 775, 45, 62, 57, 39,
916, 52, 916, 54, 55, 45, 649, 881, 91, 916,
6, 7, 52, 106, 54, 55, 12, 58, 39, 662,
60, 57, 58, 52, 804, 668, 62, 670, 68, 278,
810, 60, 281, 54, 55, 284, 62, 33, 78, 62,
289, 105, 916, 72, 1151, 1152, 86, 43, 297, 58,
58, 91, 58, 466, 58, 835, 469, 78, 1138, 1139,
399, 400, 401, 1045, 1046, 86, 58, 992, 105, 60,
995, 484, 485, 1327, 104, 1327, 990, 991, 992, 995,
105, 995, 495, 1163, 62, 105, 1011, 105, 995, 62,
3, 4, 1011, 1018, 108, 1011, 1293, 1011, 3, 4,
57, 1185, 1016, 1017, 1018, 840, 76, 77, 78, 79,
80, 81, 82, 1197, 91, 1222, 60, 897, 992, 3,
4, 995, 57, 1, 57, 1050, 39, 57, 60, 23,
828, 25, 26, 62, 1050, 60, 1050, 1011, 918, 552,
1220, 54, 55, 1050, 1018, 23, 881, 25, 26, 54,
55, 105, 30, 1260, 1234, 39, 105, 105, 105, 783,
105, 60, 56, 105, 105, 1147, 60, 1122, 105, 1124,
54, 55, 60, 86, 105, 1327, 1050, 105, 56, 57,
58, 59, 60, 1267, 62, 108, 106, 3, 4, 105,
814, 1124, 92, 108, 86, 1255, 45, 908, 1123, 93,
1125, 105, 86, 1293, 105, 108, 1125, 1132, 851, 1125,
108, 1125, 105, 1132, 105, 93, 1132, 106, 1132, 35,
36, 106, 471, 39, 1206, 105, 105, 1311, 57, 4,
1261, 1262, 1339, 105, 483, 484, 52, 4, 54, 55,
938, 4, 5, 62, 62, 3, 4, 5, 6, 7,
62, 1125, 895, 73, 1338, 990, 991, 992, 1132, 73,
73, 106, 29, 906, 975, 1349, 29, 42, 73, 105,
105, 34, 6, 897, 917, 33, 689, 52, 23, 54,
55, 1016, 1017, 1018, 108, 52, 108, 54, 55, 52,
105, 54, 55, 32, 105, 105, 54, 55, 56, 106,
62, 105, 105, 105, 1384, 105, 105, 720, 60, 60,
1008, 56, 108, 58, 45, 60, 1014, 62, 1243, 45,
105, 1246, 1247, 105, 1243, 1250, 105, 1243, 60, 1243,
1246, 1250, 1246, 1247, 1250, 60, 1250, 1319, 1263, 1294,
58, 58, 100, 101, 102, 7, 58, 1261, 1262, 14,
689, 105, 108, 91, 91, 91, 91, 1282, 84, 85,
1293, 105, 91, 89, 90, 91, 92, 94, 1282, 1243,
91, 1296, 1246, 1247, 58, 627, 1250, 1296, 58, 15,
1296, 91, 1296, 58, 58, 105, 105, 1312, 91, 105,
1033, 1034, 105, 1312, 1018, 9, 1312, 105, 1312, 105,
813, 814, 1327, 58, 1047, 1048, 58, 57, 1282, 91,
662, 105, 1337, 1327, 105, 1340, 105, 1115, 670, 58,
58, 1340, 1296, 1337, 1340, 62, 1340, 840, 105, 4,
78, 9, 58, 5, 6, 7, 105, 12, 1312, 9,
12, 58, 0, 1067, 0, 0, 364, 22, 23, 24,
2, 4, 328, 1327, 29, 30, 835, 32, 30, 144,
629, 33, 122, 1337, 39, 144, 1340, 1392, 881, 1000,
1164, 43, 1207, 1392, 491, 50, 1392, 52, 1392, 1177,
1123, 1124, 1242, 1263, 1392, 60, 828, 1123, 1246, 636,
1114, 139, 39, 68, 823, 39, 1029, 1, 902, 3,
4, 840, 6, 1146, 79, 80, 849, 1150, 5, 6,
7, 86, 160, 995, 916, 12, 440, 914, 1392, 571,
821, 528, 97, 169, 300, 173, 1261, 1262, 1263, 12,
1125, 1012, 1361, 30, 867, 39, 33, 112, 787, 653,
115, 1363, 881, 118, 119, 1299, 43, 1327, 52, 124,
54, 55, 127, 128, 918, -1, 131, 132, 133, -1,
-1, -1, -1, 812, 813, -1, -1, -1, -1, 144,
1194, 146, 147, -1, -1, -1, -1, -1, 991, 992,
1223, 1224, 86, 1226, 1227, -1, -1, 162, 163, 164,
74, 75, 76, 77, 78, 79, 80, 81, 82, 851,
-1, -1, -1, -1, 1017, 1018, 1230, 1231, 1232, 1233,
-1, 3, 4, -1, -1, 190, -1, -1, -1, -1,
-1, 10, 1246, 1247, -1, -1, -1, 1270, -1, -1,
-1, -1, -1, -1, -1, 210, 25, 26, 213, 1263,
-1, 30, -1, 895, -1, -1, 221, 39, -1, 3,
4, 990, 991, 992, 906, -1, 45, -1, 1282, -1,
52, -1, 54, 55, -1, 917, 58, -1, 57, 58,
59, 60, -1, 62, -1, -1, 68, 1016, 1017, 1018,
-1, -1, -1, 258, 259, 39, 78, -1, -1, -1,
-1, 45, 7, -1, 86, 10, -1, -1, 52, 91,
54, 55, 91, 92, -1, -1, 95, -1, -1, 958,
-1, 1335, -1, 1337, 68, 1358, 105, -1, -1, -1,
-1, 296, -1, -1, 78, 300, -1, 302, 303, 304,
45, -1, 86, -1, 88, 310, 1360, 91, 92, -1,
-1, -1, 57, -1, -1, 60, -1, 62, -1, -1,
-1, -1, 1376, 328, -1, 403, -1, -1, 73, 334,
-1, -1, 410, 338, 3, 4, -1, 1016, 1017, -1,
-1, -1, -1, 4, -1, 350, 91, 92, 353, -1,
95, 1033, 1034, 358, -1, -1, -1, 362, -1, -1,
105, -1, -1, 24, 1207, 1047, 1048, -1, 29, 30,
39, -1, -1, -1, -1, -1, -1, -1, 39, -1,
-1, 459, 460, 52, 462, 54, 55, -1, -1, 1,
395, 52, 397, -1, 399, 400, 401, -1, -1, 68,
-1, -1, 407, -1, -1, -1, -1, 412, -1, 78,
415, 23, -1, 25, 26, -1, -1, 86, 30, 1262,
1263, -1, 91, -1, -1, 86, -1, 432, -1, 434,
-1, -1, 385, -1, 439, 440, -1, 442, 1207, -1,
393, -1, -1, 448, 56, 57, 58, 59, 60, 4,
62, 6, 7, -1, -1, -1, -1, 12, -1, -1,
-1, -1, -1, 124, 1146, -1, -1, 128, 1150, -1,
548, 549, 27, -1, 29, 553, -1, -1, 33, -1,
-1, 93, -1, 144, -1, -1, 147, -1, 43, -1,
-1, -1, 1261, 1262, 1263, -1, -1, 52, -1, 54,
55, 162, 163, -1, -1, -1, -1, 4, 5, 6,
7, 464, -1, 10, -1, 12, -1, -1, -1, -1,
-1, -1, -1, 528, -1, 530, -1, -1, -1, -1,
27, -1, 29, 30, -1, 540, 33, 542, 543, -1,
545, 1223, 1224, -1, 1226, 1227, 43, 552, -1, 210,
-1, -1, -1, -1, -1, 52, -1, 54, 55, -1,
221, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 524, -1, 526, 527, 1, -1, 3, 4, 5,
6, 7, 1261, 1262, 3, 4, 12, 592, 1270, -1,
-1, -1, 597, 598, 599, 600, 601, 602, 95, 552,
-1, 27, -1, 29, 30, 558, -1, 33, 34, 687,
162, 163, 164, 39, -1, -1, -1, 43, 44, -1,
39, -1, -1, -1, -1, -1, 52, -1, 54, 55,
-1, -1, 58, 52, 60, 54, 55, -1, -1, -1,
-1, 60, 68, -1, 649, -1, -1, -1, 653, 68,
-1, -1, 78, 658, 659, -1, 661, -1, -1, 78,
86, -1, -1, -1, -1, 91, 4, 86, 6, 7,
-1, -1, 91, -1, 12, -1, 1358, 3, 4, -1,
106, 7, -1, -1, 689, -1, -1, -1, -1, 350,
-1, -1, 353, -1, -1, 33, -1, 358, -1, -1,
-1, 362, 707, 781, 782, 43, 784, 45, -1, -1,
715, 716, 717, 39, 52, -1, 54, 55, -1, 45,
-1, 726, 727, 728, 729, -1, 52, -1, 54, 55,
68, 809, -1, -1, 395, -1, 397, -1, -1, -1,
78, -1, 68, -1, -1, -1, -1, -1, -1, -1,
88, 412, 78, 91, 92, -1, -1, -1, -1, -1,
86, -1, 88, -1, 842, 91, 92, 720, -1, -1,
775, -1, -1, -1, -1, -1, 4, -1, 439, 440,
-1, 442, -1, -1, 12, -1, -1, -1, -1, -1,
795, -1, 797, -1, 22, 23, 24, -1, -1, 804,
-1, 29, 30, 808, 32, 810, -1, 812, 813, 814,
-1, 39, -1, 818, -1, -1, -1, -1, -1, -1,
-1, -1, 50, -1, 52, -1, 779, -1, -1, -1,
835, -1, 837, 838, 839, 840, -1, -1, -1, 792,
68, 794, -1, 395, -1, 397, -1, 399, 400, 401,
-1, -1, 80, -1, -1, -1, -1, -1, 86, -1,
412, 68, 69, 70, 71, 72, 73, 74, 75, 76,
77, 78, 79, 80, 81, 82, 881, 830, 3, 4,
-1, -1, 7, -1, 112, -1, -1, 439, 966, -1,
118, 119, -1, -1, -1, -1, 124, 902, -1, -1,
128, -1, -1, 131, 132, 133, 911, -1, 861, 914,
-1, 916, -1, 918, 39, 993, 144, -1, 146, 147,
45, -1, -1, -1, -1, -1, -1, 52, 881, 54,
55, -1, -1, -1, 162, 163, 164, 598, -1, -1,
-1, -1, -1, 68, -1, -1, -1, 952, 953, -1,
955, -1, -1, 78, -1, 4, -1, -1, 7, -1,
1038, 86, 190, 88, -1, -1, 91, 92, 69, 70,
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 210, 988, 989, 990, 991, 992, -1, 994,
995, -1, 653, 221, -1, -1, 45, 658, 659, -1,
661, -1, -1, 52, 1082, 54, 55, -1, -1, -1,
-1, 1016, 1017, 1018, 3, 4, 5, 6, 7, 68,
-1, -1, -1, 12, 1029, -1, -1, -1, -1, 78,
258, 259, -1, -1, -1, -1, -1, -1, 27, 88,
29, 30, 91, 92, 33, 1050, -1, -1, -1, 1002,
39, 1004, -1, 1006, 43, -1, 45, -1, -1, -1,
-1, -1, -1, 52, -1, 54, 55, -1, 296, -1,
-1, -1, 300, -1, 302, 303, 304, -1, -1, 68,
-1, 309, 310, 1088, 1089, 1090, -1, -1, -1, 78,
-1, -1, -1, -1, -1, -1, -1, 86, -1, 88,
328, -1, 91, 92, -1, -1, 658, 659, -1, 661,
338, 3, 4, 5, 6, 7, -1, 1122, 1123, 1124,
12, -1, 350, -1, -1, 353, -1, -1, -1, -1,
358, -1, 1085, -1, 362, -1, -1, 689, 30, -1,
-1, 33, -1, -1, -1, -1, -1, 39, -1, -1,
-1, 43, -1, 45, -1, -1, -1, -1, -1, -1,
52, -1, 54, 55, -1, -1, -1, 395, -1, 397,
-1, 399, 400, 401, -1, -1, 68, 838, 839, 407,
4, -1, 6, 7, 412, -1, 78, 415, 12, -1,
-1, -1, -1, -1, 86, -1, 88, 3, 4, 91,
92, 7, 1207, 27, 432, 29, 434, -1, 85, 33,
-1, 439, 440, 4, 442, 6, -1, -1, -1, 43,
448, 12, -1, -1, -1, -1, -1, -1, 52, -1,
54, 55, -1, 39, -1, -1, 27, -1, 29, -1,
-1, -1, 33, -1, -1, 122, 52, -1, 54, 55,
911, -1, 43, 914, 1207, 916, 1261, 1262, 1263, -1,
-1, 52, 68, 54, 55, 1, -1, 3, 4, 5,
6, 7, 78, -1, 3, 4, 12, -1, 7, -1,
86, -1, -1, -1, -1, 91, 838, 839, 840, 1294,
-1, 27, -1, 29, 30, -1, -1, 33, -1, -1,
528, -1, 530, 39, -1, -1, -1, 43, -1, -1,
39, -1, -1, -1, 542, 543, 52, 545, 54, 55,
-1, -1, 1327, 52, 552, 54, 55, 988, 989, 881,
3, 4, 68, 994, 995, 563, -1, -1, -1, 68,
-1, -1, 78, -1, -1, -1, -1, -1, -1, 78,
86, -1, -1, -1, -1, 91, -1, 86, -1, 911,
-1, -1, 91, -1, 592, -1, 39, -1, -1, 597,
598, 599, 600, -1, 602, -1, -1, -1, -1, 52,
-1, 54, 55, -1, -1, -1, -1, 60, -1, 1050,
-1, -1, -1, -1, -1, 68, -1, -1, -1, 276,
628, -1, -1, -1, -1, 78, -1, -1, -1, -1,
-1, -1, -1, 86, -1, -1, -1, -1, 91, -1,
-1, 649, -1, -1, -1, 653, -1, 1088, 1089, 1090,
658, 659, -1, 661, -1, -1, 988, 989, 990, 991,
992, -1, 994, -1, 3, 4, 5, 6, 7, -1,
-1, -1, -1, 12, -1, -1, -1, -1, -1, -1,
-1, 689, 1123, -1, 1016, 1017, 1018, -1, -1, 3,
4, 30, -1, 7, 33, -1, -1, -1, -1, 707,
39, -1, -1, -1, 43, -1, 45, 715, 716, 717,
-1, -1, -1, 52, -1, 54, 55, -1, 726, 727,
728, 729, -1, -1, -1, 39, -1, 384, 385, 68,
-1, 45, -1, 3, 4, -1, 393, 7, 52, 78,
54, 55, -1, -1, -1, -1, -1, 86, -1, 88,
-1, -1, 91, 92, 68, -1, 1088, 1089, 1090, -1,
-1, -1, -1, -1, 78, -1, -1, 775, -1, 39,
-1, -1, 86, -1, 88, 45, -1, 91, 92, 436,
-1, -1, 52, -1, 54, 55, -1, 795, -1, 797,
-1, -1, -1, -1, -1, -1, 804, -1, 68, -1,
808, -1, 810, -1, 812, 813, 814, 464, 78, -1,
818, -1, -1, -1, -1, -1, 86, -1, 88, -1,
-1, 91, 92, -1, -1, -1, -1, 835, -1, 837,
838, 839, 840, -1, 491, 4, -1, 494, 7, -1,
497, 498, -1, 500, 501, 502, 503, 504, 505, 506,
507, 508, 509, 510, 511, 512, 513, 514, 515, 516,
517, 518, -1, -1, -1, -1, -1, 524, -1, 526,
527, -1, -1, 881, -1, 1207, 45, -1, -1, -1,
-1, -1, -1, 52, -1, 54, 55, -1, 3, 4,
5, 6, 7, -1, 902, 552, -1, 12, -1, 68,
-1, 558, -1, 911, -1, -1, 914, -1, 916, 78,
918, -1, 27, -1, 29, 30, 573, 574, 33, 88,
-1, -1, 91, 92, 39, -1, -1, -1, 43, 1261,
1262, 1263, -1, -1, -1, -1, -1, 52, -1, 54,
55, -1, -1, 58, 952, 953, -1, 955, -1, 4,
5, 6, 7, 68, -1, 10, -1, 12, -1, -1,
-1, -1, -1, 78, -1, -1, -1, -1, -1, -1,
-1, 86, 27, -1, 29, 30, 91, -1, 33, 636,
988, 989, 990, 991, 992, -1, 994, 995, 43, -1,
45, -1, 1000, -1, -1, -1, -1, 52, -1, 54,
55, -1, 3, 4, -1, -1, 7, -1, 1016, 1017,
1018, -1, -1, 68, -1, -1, -1, -1, -1, -1,
-1, 1029, -1, 78, 4, -1, -1, -1, -1, -1,
-1, 688, -1, 88, -1, -1, 91, 92, 39, -1,
95, -1, 1050, -1, 24, 4, -1, -1, 7, 29,
30, 52, 32, 54, 55, -1, -1, -1, -1, 39,
-1, -1, -1, 720, 302, 303, 304, 68, -1, -1,
50, -1, 52, -1, 3, 4, -1, 78, 7, -1,
1088, 1089, 1090, -1, 741, 86, 45, -1, -1, -1,
91, -1, -1, 52, -1, 54, 55, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 86, -1, -1, 68,
39, -1, -1, -1, 1122, 1123, 1124, -1, -1, 78,
-1, 778, 779, 52, -1, 54, 55, -1, -1, 88,
-1, -1, 91, 92, -1, 792, -1, 794, 118, 68,
-1, -1, -1, -1, 124, -1, -1, -1, 128, 78,
4, 131, 132, 133, 3, 4, -1, 86, 7, -1,
-1, -1, 91, 820, 144, -1, 146, 147, -1, -1,
24, -1, -1, 830, -1, 29, 30, -1, 32, -1,
-1, -1, 162, 163, 164, 39, -1, -1, -1, -1,
39, -1, -1, -1, -1, -1, 50, -1, 52, 1207,
-1, -1, -1, 52, 861, 54, 55, -1, -1, -1,
190, -1, -1, -1, -1, -1, -1, -1, -1, 68,
-1, 75, -1, -1, 881, -1, -1, -1, -1, 78,
210, -1, 86, -1, 891, -1, -1, 86, -1, -1,
-1, 221, 91, -1, -1, -1, 903, 904, -1, -1,
-1, 3, 4, 1261, 1262, 1263, -1, -1, 112, -1,
114, 115, -1, -1, 118, -1, -1, -1, -1, -1,
124, -1, 126, -1, 128, -1, -1, 131, 132, 133,
937, 938, -1, -1, 941, -1, 1294, 39, -1, -1,
144, -1, 146, 147, -1, -1, -1, -1, -1, -1,
52, -1, 54, 55, 542, 543, 58, 545, 162, 163,
164, -1, -1, -1, 552, -1, 68, -1, 172, 1327,
-1, -1, -1, -1, -1, -1, 78, -1, -1, 309,
310, -1, -1, -1, 86, -1, 190, -1, -1, 91,
-1, 3, 4, -1, -1, 1002, -1, 1004, -1, 1006,
-1, -1, -1, -1, -1, -1, 210, 1014, -1, 597,
-1, 599, 600, -1, 602, 1022, -1, 221, -1, -1,
350, -1, -1, 353, -1, -1, -1, 39, 358, -1,
-1, -1, 362, -1, 1041, -1, -1, -1, -1, -1,
52, -1, 54, 55, -1, -1, -1, 1054, -1, -1,
-1, -1, 1059, -1, 1061, -1, 68, -1, -1, -1,
-1, 649, -1, -1, -1, 395, 78, 397, -1, 399,
400, 401, -1, -1, 86, -1, -1, 407, 1085, 91,
-1, 285, 412, -1, -1, 415, 3, 4, 5, 6,
7, -1, -1, -1, -1, 12, 300, -1, -1, -1,
-1, -1, -1, 1110, 308, -1, 310, -1, -1, 439,
440, -1, 442, 30, -1, -1, 33, -1, -1, 707,
-1, -1, 39, -1, 328, -1, 43, -1, 45, -1,
334, 1138, 1139, -1, -1, 52, -1, 54, 55, -1,
-1, 1148, 1149, -1, -1, -1, 350, -1, -1, 353,
-1, 68, -1, -1, 358, -1, 1163, -1, 362, -1,
-1, 78, -1, -1, -1, -1, -1, -1, -1, 86,
-1, -1, -1, -1, 91, 67, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
82, 395, -1, 397, -1, 399, 400, 401, -1, -1,
1207, -1, -1, 407, -1, -1, -1, 795, 412, 797,
540, 415, -1, 1220, -1, -1, -1, -1, -1, -1,
808, -1, -1, -1, 812, 813, 814, 1234, -1, -1,
-1, -1, -1, -1, -1, 439, 440, -1, 442, -1,
-1, 1248, -1, -1, -1, -1, -1, -1, -1, -1,
838, 839, 840, 4, -1, 6, 7, -1, -1, -1,
-1, 12, 466, -1, -1, 469, -1, 597, 598, 599,
600, -1, -1, -1, -1, -1, 27, -1, 29, 483,
484, 485, 33, -1, -1, -1, -1, -1, -1, -1,
-1, 495, 43, 881, 45, -1, -1, -1, 628, -1,
-1, 52, -1, 54, 55, -1, -1, -1, -1, 3,
4, -1, -1, 7, -1, -1, -1, 68, -1, 649,
-1, -1, -1, 653, -1, -1, -1, 78, 658, 659,
-1, 661, -1, -1, 32, 539, -1, 88, -1, -1,
91, 92, -1, -1, -1, 39, -1, -1, 552, -1,
-1, -1, 50, -1, -1, -1, -1, -1, 52, 689,
54, 55, 71, 72, 73, 74, 75, 76, 77, 78,
79, 80, 81, 82, 68, 3, 4, 1384, -1, 7,
-1, -1, -1, -1, 78, -1, -1, -1, -1, -1,
-1, -1, 86, 597, 598, 599, 600, 91, -1, -1,
988, 989, 990, 991, 992, -1, 994, -1, -1, -1,
-1, 39, -1, -1, -1, -1, -1, -1, -1, -1,
118, -1, -1, -1, 52, -1, 54, 55, 1016, 1017,
1018, -1, -1, 131, 132, 133, -1, -1, -1, -1,
68, -1, -1, -1, -1, 649, -1, -1, 146, 653,
78, -1, -1, -1, 658, 659, -1, 661, 86, -1,
-1, -1, -1, 91, 162, 163, 164, -1, -1, -1,
-1, -1, -1, -1, -1, 302, 303, 304, 50, -1,
-1, -1, -1, -1, -1, 689, -1, -1, 818, -1,
-1, -1, 190, -1, -1, -1, -1, -1, -1, -1,
1088, 1089, 1090, 75, -1, -1, -1, -1, 838, 839,
840, -1, -1, -1, -1, -1, 720, -1, -1, -1,
-1, -1, -1, 95, -1, -1, 1, -1, 3, 4,
5, 6, 7, -1, -1, -1, -1, 12, -1, -1,
-1, -1, -1, -1, -1, -1, 118, -1, -1, -1,
-1, 881, 27, -1, 29, 30, -1, -1, 33, 34,
-1, 259, -1, -1, 39, -1, -1, -1, 43, 44,
-1, -1, -1, -1, 146, -1, -1, 52, -1, 54,
55, 911, -1, 58, 914, 60, 916, -1, 3, 4,
162, 163, 164, 68, -1, -1, -1, -1, -1, -1,
172, -1, -1, 78, 302, 303, 304, -1, 812, 813,
814, 86, 310, -1, -1, -1, 91, -1, 190, -1,
-1, -1, -1, -1, 39, -1, -1, -1, -1, -1,
-1, 106, -1, -1, 838, 839, 840, 52, -1, 54,
55, -1, -1, -1, 4, -1, 6, 7, -1, -1,
-1, 223, 12, 68, -1, -1, -1, -1, 988, 989,
990, 991, 992, 78, 994, 995, -1, -1, -1, -1,
1000, 86, -1, 33, -1, -1, 91, 881, -1, -1,
-1, -1, -1, 43, -1, 45, 1016, 1017, 1018, -1,
-1, -1, 52, -1, 54, 55, -1, 395, -1, 397,
-1, 399, 400, 401, 908, -1, -1, 911, 68, 407,
914, -1, 916, -1, 412, 542, 543, 415, 78, -1,
1050, -1, -1, -1, -1, -1, -1, -1, 88, -1,
-1, 91, 92, -1, -1, -1, 308, -1, 310, -1,
-1, 439, 70, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, -1, -1, -1, 1088, 1089,
1090, -1, -1, -1, -1, -1, -1, -1, -1, -1,
597, 975, 599, 600, -1, 602, -1, -1, -1, -1,
-1, -1, -1, -1, 988, 989, 990, 991, 992, -1,
994, 995, 1122, 1123, 1124, -1, -1, -1, -1, -1,
3, 4, -1, -1, 7, -1, -1, -1, -1, -1,
-1, -1, 1016, 1017, 1018, -1, -1, -1, -1, -1,
-1, -1, 649, 395, -1, 397, -1, 399, 400, 401,
-1, -1, 530, -1, -1, 407, 39, -1, -1, -1,
412, -1, -1, 415, 542, 543, 1050, 545, -1, 52,
-1, 54, 55, -1, 552, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 68, 4, 439, 6, 7,
-1, -1, -1, -1, 12, 78, -1, 1207, -1, -1,
707, -1, -1, 86, 1088, 1089, 1090, -1, 91, 27,
-1, 29, -1, -1, -1, 33, -1, -1, -1, 597,
-1, 599, 600, -1, 602, 43, -1, -1, -1, -1,
-1, -1, -1, -1, 52, -1, 54, 55, 1122, 1123,
1124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 1261, 1262, 1263, 66, 67, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
82, 649, -1, 91, -1, -1, -1, -1, -1, -1,
658, 659, -1, 661, 1294, -1, -1, -1, 795, -1,
797, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 808, -1, 555, -1, 812, 813, -1, -1, -1,
-1, 689, -1, -1, -1, -1, 3, 4, 5, 6,
7, -1, -1, 1207, -1, 12, -1, -1, -1, 707,
-1, 838, 839, -1, -1, -1, -1, 715, 716, 717,
27, -1, 29, 30, -1, 597, 33, 599, 600, -1,
-1, -1, 39, -1, -1, -1, 43, -1, -1, -1,
-1, -1, -1, -1, -1, 52, -1, 54, 55, -1,
-1, -1, -1, -1, -1, -1, -1, 1261, 1262, 1263,
-1, 68, -1, -1, -1, 72, -1, -1, -1, -1,
-1, 78, -1, -1, -1, -1, -1, 649, -1, 86,
-1, -1, -1, -1, 91, -1, 658, 659, -1, 661,
1294, 12, -1, -1, -1, -1, -1, 795, -1, 797,
-1, 22, 23, -1, -1, -1, -1, -1, 29, 30,
808, 32, -1, -1, 812, 813, 814, 689, -1, -1,
4, 5, 6, 7, -1, -1, 10, -1, 12, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
838, 839, 840, 27, -1, 29, 30, -1, -1, 33,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 43,
-1, 988, 989, 990, 991, -1, -1, 994, 52, -1,
54, 55, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 881, -1, -1, -1, -1, -1, 1016,
1017, 112, -1, 114, 115, 3, 4, 5, 6, 7,
-1, -1, 10, 124, 12, 126, 127, 128, -1, -1,
131, 132, 133, 911, -1, -1, -1, -1, -1, 27,
-1, 29, 30, -1, -1, 33, -1, -1, -1, -1,
-1, 39, -1, -1, -1, 43, -1, -1, -1, -1,
-1, -1, -1, -1, 52, -1, 54, 55, -1, -1,
-1, -1, -1, -1, 952, 953, -1, 955, -1, -1,
68, 1088, 1089, 1090, -1, -1, 838, 839, 840, -1,
78, -1, -1, -1, -1, -1, -1, -1, 86, -1,
-1, -1, -1, 91, 205, -1, -1, 95, -1, -1,
988, 989, 990, 991, 992, -1, 994, -1, -1, 1,
221, 3, 4, 5, 6, 7, -1, -1, -1, 881,
12, -1, -1, -1, -1, -1, -1, -1, 1016, 1017,
1018, -1, -1, -1, -1, 27, -1, 29, 30, -1,
-1, 33, 34, -1, -1, -1, 908, 39, 259, 911,
-1, 43, 44, -1, -1, -1, 4, 5, 6, 7,
52, -1, 54, 55, 12, -1, 58, -1, 60, -1,
-1, -1, -1, -1, -1, -1, 68, -1, -1, 27,
-1, 29, 30, -1, -1, 33, 78, -1, -1, 300,
-1, 302, 303, -1, 86, 43, -1, -1, -1, 91,
1088, 1089, 1090, -1, 52, -1, 54, 55, -1, -1,
-1, -1, -1, 975, 106, -1, -1, 328, -1, -1,
-1, -1, -1, 334, -1, -1, 988, 989, 990, 991,
992, -1, 994, -1, 1122, 346, 1124, -1, -1, 350,
-1, -1, 353, -1, -1, -1, -1, 358, -1, -1,
-1, -1, -1, -1, 1016, 1017, 1018, 1, -1, 3,
4, 5, 6, 7, 8, 9, -1, 11, 12, 13,
-1, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, -1, 33,
-1, 35, 36, -1, 38, 39, 40, 41, -1, 43,
-1, -1, -1, 47, 48, 49, 50, 51, 52, -1,
54, 55, 56, -1, 58, 59, -1, -1, -1, 1207,
-1, 65, -1, 434, 68, -1, 1088, 1089, 1090, -1,
-1, -1, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, 86, -1, -1, -1, -1, 91, -1, 93,
461, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1122, -1, 1124, 107, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 1261, 1262, 1263, -1, -1, -1, -1,
-1, -1, 1, -1, 3, 4, 5, 6, 7, -1,
-1, -1, -1, 12, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 1294, -1, 27, -1,
29, 30, -1, -1, 33, 34, -1, -1, -1, 530,
39, -1, -1, -1, 43, 44, -1, -1, 539, 540,
-1, 542, 543, 52, -1, 54, 55, -1, -1, 58,
-1, 60, -1, -1, -1, 1207, -1, -1, -1, 68,
-1, -1, 10, -1, -1, -1, -1, -1, -1, 78,
-1, -1, -1, -1, -1, -1, -1, 86, -1, -1,
-1, -1, 91, -1, -1, -1, -1, -1, -1, -1,
-1, 592, -1, -1, -1, -1, -1, 106, -1, -1,
601, -1, -1, -1, -1, -1, -1, -1, -1, 1261,
1262, 1263, 60, 61, 62, 63, 64, 65, 66, 67,
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, -1, -1, -1, -1, -1,
-1, -1, 1294, 1, -1, 3, 4, 5, 6, 7,
8, 9, -1, 11, 12, 13, -1, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
28, 29, 30, 31, -1, 33, -1, 35, 36, -1,
38, 39, 40, 41, -1, 43, -1, -1, -1, 47,
48, 49, 50, 51, 52, -1, 54, 55, 56, -1,
58, 59, -1, -1, -1, -1, 707, 65, -1, -1,
68, -1, -1, -1, 715, 716, 717, -1, 76, 77,
78, -1, -1, -1, -1, -1, 84, 85, 86, -1,
-1, -1, -1, 91, 1, 93, 3, 4, 5, 6,
7, 8, 9, 10, 11, 12, -1, -1, 106, 107,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
27, 28, 29, 30, 31, -1, 33, -1, 35, 36,
-1, 38, 39, 40, 41, -1, 43, -1, 45, -1,
47, 48, 49, 50, 51, 52, -1, 54, 55, 56,
-1, -1, 59, -1, 795, -1, 797, -1, 65, -1,
-1, 68, -1, -1, -1, -1, -1, 808, -1, 76,
77, 78, -1, -1, -1, -1, -1, 84, 85, 86,
-1, 88, -1, -1, 91, 92, -1, 1, 95, 3,
4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
107, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
-1, 35, 36, -1, 38, 39, 40, 41, -1, 43,
-1, 45, -1, 47, 48, 49, 50, 51, 52, -1,
54, 55, 56, -1, -1, 59, -1, -1, -1, -1,
-1, 65, -1, -1, 68, -1, -1, -1, -1, -1,
-1, -1, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, 86, 914, 88, -1, -1, 91, 92, -1,
-1, 95, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 1, 107, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, -1, -1, -1, -1, -1, -1,
-1, 952, 953, -1, 955, -1, -1, -1, 27, 28,
29, 30, 31, -1, 33, -1, 35, 36, -1, 38,
39, 40, 41, -1, 43, -1, -1, -1, 47, 48,
49, 50, 51, 52, -1, 54, 55, -1, -1, -1,
59, -1, -1, -1, -1, -1, 65, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, 76, 77, 78,
-1, -1, -1, -1, -1, 84, 85, 86, -1, -1,
-1, -1, 91, -1, -1, -1, 95, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 105, 1, 107, 3,
4, 5, 6, 7, 8, 9, -1, 11, 12, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 27, 28, 29, 30, 31, -1, 33,
-1, 35, 36, -1, 38, 39, 40, 41, -1, 43,
-1, -1, -1, 47, 48, 49, 50, 51, 52, -1,
54, 55, 56, -1, 58, 59, -1, 1, -1, -1,
4, 65, 6, 7, 68, -1, -1, -1, 12, -1,
-1, -1, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, 86, 27, -1, 29, -1, 91, -1, 33,
-1, 35, 36, -1, -1, -1, -1, -1, -1, 43,
-1, 45, -1, 107, -1, -1, -1, -1, 52, -1,
54, 55, -1, 57, -1, -1, -1, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 80, 81, -1, -1,
84, 85, 86, -1, 1, 89, 3, 4, 92, 6,
7, 8, 9, -1, 11, 12, -1, -1, -1, -1,
-1, -1, -1, 107, -1, -1, -1, -1, -1, -1,
27, 28, 29, -1, 31, -1, 33, -1, 35, 36,
-1, 38, 39, 40, 41, -1, 43, -1, -1, -1,
47, 48, 49, 50, 51, 52, -1, 54, 55, 56,
-1, -1, 59, -1, -1, -1, -1, -1, 65, -1,
-1, 68, -1, -1, -1, -1, -1, -1, -1, 76,
77, 78, -1, -1, -1, -1, -1, 84, 85, 86,
-1, -1, -1, -1, 91, 92, 1, -1, 3, 4,
-1, 6, 7, 8, 9, -1, 11, 12, -1, 106,
107, -1, -1, -1, 19, -1, -1, -1, -1, -1,
-1, -1, 27, 28, 29, -1, 31, -1, 33, -1,
35, 36, -1, 38, 39, 40, 41, -1, 43, -1,
-1, -1, 47, 48, 49, 50, 51, 52, -1, 54,
55, 56, -1, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
-1, 76, 77, 78, -1, -1, -1, -1, -1, 84,
85, 86, 1, -1, 3, 4, 91, 6, 7, 8,
9, -1, 11, 12, -1, -1, -1, -1, -1, -1,
19, 106, 107, -1, -1, -1, -1, -1, 27, 28,
29, -1, 31, -1, 33, -1, 35, 36, -1, 38,
39, 40, 41, -1, 43, -1, -1, -1, 47, 48,
49, 50, 51, 52, -1, 54, 55, 56, -1, -1,
59, -1, -1, -1, -1, -1, 65, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, 76, 77, 78,
-1, -1, -1, -1, -1, 84, 85, 86, 1, -1,
3, 4, 91, 6, 7, 8, 9, -1, 11, 12,
-1, -1, -1, -1, -1, -1, -1, 106, 107, -1,
-1, -1, -1, -1, 27, 28, 29, -1, 31, -1,
33, -1, 35, 36, -1, 38, 39, 40, 41, -1,
43, -1, -1, -1, 47, 48, 49, 50, 51, 52,
-1, 54, 55, 56, -1, -1, 59, -1, -1, -1,
-1, -1, 65, -1, -1, 68, -1, -1, -1, -1,
-1, -1, -1, 76, 77, 78, -1, -1, -1, -1,
-1, 84, 85, 86, -1, -1, -1, -1, 91, 92,
1, -1, 3, 4, -1, 6, 7, 8, 9, -1,
11, 12, -1, -1, 107, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 27, 28, 29, -1,
31, -1, 33, -1, 35, 36, -1, 38, 39, 40,
41, -1, 43, -1, -1, -1, 47, 48, 49, 50,
51, 52, -1, 54, 55, 56, -1, -1, 59, -1,
-1, -1, -1, -1, 65, -1, -1, 68, -1, -1,
-1, -1, -1, -1, -1, 76, 77, 78, -1, -1,
-1, -1, -1, 84, 85, 86, 1, -1, 3, 4,
91, 6, 7, 8, 9, -1, 11, 12, -1, -1,
-1, -1, -1, -1, -1, -1, 107, -1, -1, -1,
-1, -1, 27, 28, 29, -1, 31, -1, 33, -1,
35, 36, -1, 38, 39, 40, 41, -1, 43, -1,
-1, -1, 47, 48, 49, 50, 51, 52, -1, 54,
55, 56, -1, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
-1, 76, 77, 78, -1, -1, -1, -1, -1, 84,
85, 86, 1, -1, 3, 4, 91, 6, 7, 8,
9, -1, 11, 12, -1, -1, -1, -1, -1, -1,
-1, -1, 107, -1, -1, -1, -1, -1, 27, 28,
29, -1, 31, -1, 33, -1, 35, 36, -1, 38,
39, 40, 41, -1, 43, -1, -1, -1, 47, 48,
49, 50, 51, 52, -1, 54, 55, -1, -1, -1,
59, 60, -1, -1, -1, -1, 65, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, 76, 77, 78,
-1, -1, -1, -1, -1, 84, 85, 86, 1, -1,
3, 4, 91, 6, 7, 8, 9, -1, 11, 12,
-1, -1, -1, -1, -1, -1, -1, -1, 107, -1,
-1, -1, -1, -1, 27, 28, 29, -1, 31, -1,
33, -1, 35, 36, -1, 38, 39, 40, 41, -1,
43, -1, -1, -1, 47, 48, 49, 50, 51, 52,
-1, 54, 55, 56, -1, -1, 59, -1, -1, -1,
-1, -1, 65, -1, -1, 68, -1, -1, -1, -1,
-1, -1, -1, 76, 77, 78, -1, -1, -1, -1,
-1, 84, 85, 86, 1, -1, 3, 4, 91, 6,
7, 8, 9, -1, 11, 12, -1, -1, -1, -1,
-1, -1, -1, -1, 107, -1, -1, -1, -1, -1,
27, 28, 29, -1, 31, -1, 33, -1, 35, 36,
-1, 38, 39, 40, 41, -1, 43, -1, -1, -1,
47, 48, 49, 50, 51, 52, -1, 54, 55, -1,
-1, 58, 59, -1, -1, -1, -1, -1, 65, -1,
-1, 68, -1, -1, -1, -1, -1, -1, -1, 76,
77, 78, -1, -1, -1, -1, -1, 84, 85, 86,
1, -1, 3, 4, 91, 6, 7, 8, 9, -1,
11, 12, -1, -1, -1, -1, -1, -1, -1, -1,
107, -1, -1, -1, -1, -1, 27, 28, 29, -1,
31, -1, 33, -1, 35, 36, -1, 38, 39, 40,
41, -1, 43, -1, -1, -1, 47, 48, 49, 50,
51, 52, -1, 54, 55, -1, -1, -1, 59, -1,
-1, -1, -1, -1, 65, -1, -1, 68, -1, -1,
-1, -1, -1, -1, -1, 76, 77, 78, -1, -1,
-1, -1, -1, 84, 85, 86, 1, -1, 3, 4,
91, 6, 7, 8, 9, -1, 11, 12, -1, -1,
-1, -1, -1, -1, 105, -1, 107, -1, -1, -1,
-1, -1, 27, 28, 29, -1, 31, -1, 33, -1,
35, 36, -1, 38, 39, 40, 41, -1, 43, -1,
-1, -1, 47, 48, 49, 50, 51, 52, -1, 54,
55, -1, -1, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
-1, 76, 77, 78, -1, -1, -1, -1, -1, 84,
85, 86, 1, -1, 3, 4, 91, 6, 7, 8,
9, -1, 11, 12, -1, -1, -1, -1, -1, -1,
-1, -1, 107, -1, -1, -1, -1, -1, 27, 28,
29, -1, 31, -1, 33, -1, 35, 36, -1, 38,
39, 40, 41, -1, 43, -1, -1, -1, 47, 48,
49, 50, 51, 52, -1, 54, 55, -1, -1, -1,
59, -1, -1, -1, -1, -1, 65, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, 76, 77, 78,
-1, -1, -1, -1, -1, 84, 85, 86, -1, -1,
3, 4, 91, 6, 7, 8, 9, -1, 11, 12,
-1, -1, -1, -1, -1, -1, -1, -1, 107, -1,
-1, -1, -1, -1, 27, 28, 29, -1, 31, -1,
33, -1, 35, 36, -1, 38, 39, 40, 41, -1,
43, -1, -1, -1, 47, 48, 49, 50, 51, 52,
-1, 54, 55, -1, -1, -1, 59, -1, -1, -1,
-1, -1, 65, -1, -1, 68, -1, -1, -1, -1,
-1, -1, -1, 76, 77, 78, -1, -1, -1, -1,
-1, 84, 85, 86, -1, -1, -1, -1, 91, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 107, 108, 3, 4, 5, 6,
7, 8, 9, -1, 11, 12, 13, -1, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, -1, 35, 36,
-1, 38, 39, 40, 41, -1, 43, -1, -1, -1,
47, 48, 49, 50, 51, 52, -1, 54, 55, 56,
-1, 58, 59, -1, -1, -1, -1, -1, 65, -1,
-1, 68, -1, -1, -1, -1, -1, -1, -1, 76,
77, 78, -1, -1, -1, -1, -1, 84, 85, 86,
-1, -1, -1, -1, 91, -1, 93, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 106,
107, 3, 4, 5, 6, 7, 8, 9, -1, 11,
12, 13, -1, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, -1, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, 56, -1, 58, 59, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, -1, -1, -1, 91,
-1, 93, -1, -1, 3, 4, 5, 6, 7, 8,
9, -1, 11, 12, 13, 107, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, -1, 33, -1, 35, 36, -1, 38,
39, 40, 41, -1, 43, -1, -1, -1, 47, 48,
49, 50, 51, 52, -1, 54, 55, 56, -1, 58,
59, -1, -1, -1, -1, -1, 65, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, 76, 77, 78,
-1, -1, -1, -1, -1, 84, 85, 86, -1, -1,
-1, -1, 91, -1, 93, -1, -1, 3, 4, 5,
6, 7, 8, 9, -1, 11, 12, 13, 107, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, -1, 33, -1, 35,
36, -1, 38, 39, 40, 41, -1, 43, -1, -1,
-1, 47, 48, 49, 50, 51, 52, -1, 54, 55,
-1, -1, 58, 59, -1, -1, -1, -1, -1, 65,
-1, -1, 68, -1, -1, -1, -1, -1, -1, -1,
76, 77, 78, -1, -1, -1, -1, -1, 84, 85,
86, -1, -1, -1, -1, 91, -1, 93, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, -1, -1,
-1, 107, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 27, 28, 29, 30, 31, -1, 33, -1,
35, 36, -1, 38, 39, 40, 41, -1, 43, -1,
45, -1, 47, 48, 49, 50, 51, 52, -1, 54,
55, -1, -1, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
-1, 76, 77, 78, -1, -1, -1, -1, -1, 84,
85, 86, -1, 88, -1, -1, 91, 92, -1, -1,
95, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, -1, 107, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, 30, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, 45, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, 59, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, 88, -1, -1, 91,
92, 3, 4, 95, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, 45, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, 88, -1, -1, 91,
92, 3, 4, -1, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, 45, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, 88, -1, -1, 91,
92, 3, 4, -1, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, -1, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, 59, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, 73, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, -1, 3, 4, 91,
6, 7, 8, 9, -1, 11, 12, -1, -1, -1,
-1, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, 27, 28, 29, -1, 31, -1, 33, -1, 35,
36, -1, 38, 39, 40, 41, -1, 43, -1, -1,
-1, 47, 48, 49, 50, 51, 52, -1, 54, 55,
-1, -1, 58, 59, -1, -1, -1, -1, -1, 65,
-1, -1, 68, -1, -1, -1, -1, -1, -1, -1,
76, 77, 78, -1, -1, -1, -1, -1, 84, 85,
86, -1, -1, 3, 4, 91, 6, 7, 8, 9,
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
-1, 107, -1, -1, -1, -1, -1, 27, 28, 29,
-1, 31, -1, 33, -1, 35, 36, -1, 38, 39,
40, 41, -1, 43, -1, -1, -1, 47, 48, 49,
50, 51, 52, -1, 54, 55, -1, -1, -1, 59,
-1, -1, -1, -1, -1, 65, -1, -1, 68, -1,
-1, -1, -1, -1, -1, -1, 76, 77, 78, -1,
-1, -1, -1, -1, 84, 85, 86, -1, -1, 3,
4, 91, 6, 7, 8, 9, -1, 11, 12, -1,
-1, -1, -1, -1, -1, -1, -1, 107, -1, -1,
-1, -1, -1, 27, 28, 29, -1, 31, -1, 33,
-1, 35, 36, -1, 38, 39, 40, 41, -1, 43,
-1, -1, -1, 47, 48, 49, 50, 51, 52, -1,
54, 55, -1, -1, -1, 59, -1, -1, -1, -1,
-1, 65, -1, -1, 68, -1, -1, -1, -1, -1,
-1, -1, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, 86, -1, -1, 3, 4, 91, 6, 7,
8, 9, -1, 11, 12, -1, -1, -1, -1, -1,
-1, -1, -1, 107, -1, -1, -1, -1, -1, 27,
28, 29, -1, 31, -1, 33, -1, 35, 36, -1,
38, 39, 40, 41, -1, 43, -1, -1, -1, 47,
48, 49, 50, 51, 52, -1, 54, 55, 56, -1,
-1, -1, -1, -1, -1, -1, -1, 65, -1, -1,
68, -1, -1, -1, -1, -1, -1, -1, 76, 77,
78, -1, -1, -1, -1, -1, 84, 85, 86, -1,
-1, 3, 4, 91, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, -1, -1, -1, -1, 107,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, -1, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, -1, -1, -1, 91,
92, 3, 4, -1, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, -1, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, 59, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, -1, 3, 4, 91,
6, 7, 8, 9, -1, 11, 12, -1, -1, -1,
-1, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, 27, 28, 29, -1, 31, -1, 33, -1, 35,
36, -1, 38, 39, 40, 41, -1, 43, -1, -1,
-1, 47, 48, 49, 50, 51, 52, -1, 54, 55,
-1, -1, -1, 59, -1, -1, -1, -1, -1, 65,
-1, -1, 68, -1, -1, -1, -1, -1, -1, -1,
76, 77, 78, -1, -1, -1, -1, -1, 84, 85,
86, -1, -1, 3, 4, 91, 6, 7, 8, 9,
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
-1, 107, -1, -1, -1, -1, -1, 27, 28, 29,
-1, 31, -1, 33, -1, 35, 36, -1, 38, 39,
40, 41, -1, 43, -1, -1, -1, 47, 48, 49,
50, 51, 52, -1, 54, 55, -1, -1, -1, 59,
-1, -1, -1, -1, -1, 65, -1, -1, 68, -1,
-1, -1, -1, -1, -1, -1, 76, 77, 78, -1,
-1, -1, -1, -1, 84, 85, 86, -1, -1, 3,
4, 91, 6, 7, 8, 9, -1, 11, 12, -1,
-1, -1, -1, -1, -1, -1, -1, 107, -1, -1,
-1, -1, -1, 27, 28, 29, -1, 31, -1, 33,
-1, 35, 36, -1, 38, 39, 40, 41, -1, 43,
-1, -1, -1, 47, 48, 49, 50, 51, 52, -1,
54, 55, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 65, -1, -1, 68, -1, -1, -1, -1, -1,
-1, -1, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, 86, -1, -1, 3, 4, 91, 6, 7,
8, 9, -1, 11, 12, -1, -1, -1, -1, -1,
-1, -1, -1, 107, -1, -1, -1, -1, -1, 27,
28, 29, -1, 31, -1, 33, -1, 35, 36, -1,
38, 39, 40, 41, -1, 43, -1, -1, -1, 47,
48, 49, 50, 51, 52, -1, 54, 55, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 65, -1, -1,
68, -1, -1, -1, -1, -1, -1, -1, 76, 77,
78, -1, -1, -1, -1, -1, 84, 85, 86, -1,
-1, 3, 4, 91, 6, 7, 8, 9, -1, 11,
12, -1, -1, -1, -1, -1, -1, -1, -1, 107,
-1, -1, -1, -1, -1, 27, 28, 29, -1, 31,
-1, 33, -1, 35, 36, -1, 38, 39, 40, 41,
-1, 43, -1, -1, -1, 47, 48, 49, 50, 51,
52, -1, 54, 55, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
-1, -1, -1, -1, 76, 77, 78, -1, -1, -1,
-1, -1, 84, 85, 86, -1, -1, 3, 4, 91,
6, 7, 8, 9, -1, 11, 12, -1, -1, -1,
-1, -1, -1, -1, -1, 107, -1, -1, -1, -1,
-1, 27, 28, 29, -1, 31, -1, 33, -1, 35,
36, -1, 38, 39, 40, 41, -1, 43, -1, -1,
-1, 47, 48, 49, 50, 51, 52, -1, 54, 55,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 65,
-1, -1, 68, -1, -1, -1, -1, -1, -1, -1,
76, 77, 78, -1, -1, -1, -1, -1, 84, 85,
86, -1, -1, 3, 4, 91, 6, 7, 8, 9,
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
-1, 107, -1, -1, -1, -1, -1, 27, 28, 29,
-1, 31, -1, 33, -1, 35, 36, -1, 38, 39,
40, 41, -1, 43, -1, -1, -1, 47, 48, 49,
50, 51, 52, -1, 54, 55, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 65, -1, -1, 68, -1,
-1, -1, -1, -1, -1, -1, 76, 77, 78, -1,
-1, -1, -1, -1, 84, 85, 86, -1, -1, -1,
1, 91, 3, 4, 5, 6, 7, -1, -1, -1,
-1, 12, -1, -1, -1, -1, -1, 107, -1, -1,
-1, -1, -1, -1, 25, 26, 27, -1, 29, 30,
-1, -1, 33, -1, -1, -1, 37, -1, 39, -1,
-1, 42, 43, 44, -1, 46, -1, -1, -1, -1,
-1, 52, -1, 54, 55, -1, -1, 58, -1, -1,
1, -1, 3, 4, 5, 6, 7, 68, -1, -1,
-1, 12, -1, -1, -1, -1, -1, 78, -1, -1,
-1, -1, -1, -1, -1, 86, 27, -1, 29, 30,
91, -1, 33, -1, -1, 96, 97, -1, 39, -1,
-1, -1, 43, -1, -1, 46, -1, -1, -1, -1,
-1, 52, -1, 54, 55, -1, -1, 58, -1, -1,
-1, -1, 3, 4, 5, 6, 7, 68, -1, 10,
-1, 12, -1, -1, -1, -1, -1, 78, -1, -1,
-1, -1, -1, -1, -1, 86, 27, -1, 29, 30,
91, -1, 33, -1, -1, 96, -1, -1, 39, -1,
-1, -1, 43, -1, 45, -1, 3, 4, 5, 6,
7, 52, -1, 54, 55, 12, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 68, -1, -1,
27, -1, 29, 30, -1, -1, 33, 78, -1, -1,
-1, -1, 39, -1, -1, 86, 43, 88, -1, -1,
91, 92, -1, -1, 95, 52, -1, 54, 55, -1,
-1, -1, -1, 60, -1, -1, 3, 4, 5, 6,
7, 68, -1, 10, -1, 12, -1, -1, -1, -1,
-1, 78, -1, -1, -1, -1, -1, -1, -1, 86,
27, -1, 29, 30, 91, -1, 33, -1, -1, -1,
-1, -1, 39, -1, -1, -1, 43, -1, -1, -1,
3, 4, 5, 6, 7, 52, -1, 54, 55, 12,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 68, -1, -1, 27, -1, 29, 30, -1, -1,
33, 78, -1, -1, -1, -1, 39, -1, -1, 86,
43, -1, -1, -1, 91, -1, -1, -1, -1, 52,
-1, 54, 55, -1, -1, 58, -1, -1, -1, -1,
3, 4, 5, 6, 7, 68, -1, -1, -1, 12,
-1, -1, -1, -1, -1, 78, -1, -1, -1, -1,
-1, -1, -1, 86, 27, -1, 29, 30, 91, -1,
33, -1, -1, -1, -1, -1, 39, -1, -1, -1,
43, -1, -1, -1, 3, 4, 5, 6, 7, 52,
-1, 54, 55, 12, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 68, -1, -1, 27, -1,
29, 30, -1, -1, 33, 78, -1, -1, -1, -1,
39, -1, -1, 86, 43, -1, -1, -1, 91, -1,
-1, -1, -1, 52, -1, 54, 55, -1, -1, -1,
-1, -1, 30, -1, -1, -1, -1, -1, -1, 68,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 78,
-1, -1, -1, -1, -1, -1, -1, 86, -1, -1,
-1, -1, 91, 61, 62, 63, 64, 65, 66, 67,
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, 4, 5, 6, 7, -1,
-1, -1, -1, 12, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 27, -1,
29, 30, -1, -1, 33, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 43, -1, -1, -1, -1, -1,
-1, -1, -1, 52, -1, 54, 55, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 80, 81, 82, 61,
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
82, 57, -1, -1, 108, 61, 62, 63, 64, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
76, 77, 78, 79, 80, 81, 82, 60, 61, 62,
63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
80, 81, 82, 61, 62, 63, 64, 65, 66, 67,
68, 69, 70, 71, 72, -1, 74, 75, 76, 77,
78, 79, 80, 81, 82, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
80, 81, 82
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/lib/bison.simple"
/* Skeleton output parser for bison,
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
#ifndef alloca
#ifdef __GNUC__
#define alloca __builtin_alloca
#else /* not GNU C. */
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
#include <alloca.h>
#else /* not sparc */
#if defined (MSDOS) && !defined (__TURBOC__)
#include <malloc.h>
#else /* not MSDOS, or __TURBOC__ */
#if defined(_AIX)
#include <malloc.h>
#pragma alloca
#else /* not MSDOS, __TURBOC__, or _AIX */
#ifdef __hpux
#ifdef __cplusplus
extern "C" {
void *alloca (unsigned int);
};
#else /* not __cplusplus */
void *alloca ();
#endif /* not __cplusplus */
#endif /* __hpux */
#endif /* not _AIX */
#endif /* not MSDOS, or __TURBOC__ */
#endif /* not sparc. */
#endif /* not GNU C. */
#endif /* alloca not defined. */
/* This is the parser code that is written into each bison parser
when the %semantic_parser declaration is not specified in the grammar.
It was written by Richard Stallman by simplifying the hairy parser
used when %semantic_parser is specified. */
/* Note: there must be only one dollar sign in this file.
It is replaced by the list of actions, each action
as one case of the switch. */
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY -2
#define YYEOF 0
#define YYACCEPT return(0)
#define YYABORT return(1)
#define YYERROR goto yyerrlab1
/* Like YYERROR except do call yyerror.
This remains here temporarily to ease the
transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. */
#define YYFAIL goto yyerrlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(token, value) \
do \
if (yychar == YYEMPTY && yylen == 1) \
{ yychar = (token), yylval = (value); \
yychar1 = YYTRANSLATE (yychar); \
YYPOPSTACK; \
goto yybackup; \
} \
else \
{ yyerror ("syntax error: cannot back up"); YYERROR; } \
while (0)
#define YYTERROR 1
#define YYERRCODE 256
#ifndef YYPURE
#define YYLEX yylex()
#endif
#ifdef YYPURE
#ifdef YYLSP_NEEDED
#ifdef YYLEX_PARAM
#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
#else
#define YYLEX yylex(&yylval, &yylloc)
#endif
#else /* not YYLSP_NEEDED */
#ifdef YYLEX_PARAM
#define YYLEX yylex(&yylval, YYLEX_PARAM)
#else
#define YYLEX yylex(&yylval)
#endif
#endif /* not YYLSP_NEEDED */
#endif
/* If nonreentrant, generate the variables here */
#ifndef YYPURE
int yychar; /* the lookahead symbol */
YYSTYPE yylval; /* the semantic value of the */
/* lookahead symbol */
#ifdef YYLSP_NEEDED
YYLTYPE yylloc; /* location data for the lookahead */
/* symbol */
#endif
int yynerrs; /* number of parse errors so far */
#endif /* not YYPURE */
#if YYDEBUG != 0
int yydebug; /* nonzero means print parse trace */
/* Since this is uninitialized, it does not stop multiple parsers
from coexisting. */
#endif
/* YYINITDEPTH indicates the initial size of the parser's stacks */
#ifndef YYINITDEPTH
#define YYINITDEPTH 200
#endif
/* YYMAXDEPTH is the maximum size the stacks can grow to
(effective only if the built-in stack extension method is used). */
#if YYMAXDEPTH == 0
#undef YYMAXDEPTH
#endif
#ifndef YYMAXDEPTH
#define YYMAXDEPTH 10000
#endif
/* Prevent warning if -Wstrict-prototypes. */
#ifdef __GNUC__
int yyparse (void);
#endif
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
#define __yy_memcpy(FROM,TO,COUNT) __builtin_memcpy(TO,FROM,COUNT)
#else /* not GNU C or C++ */
#ifndef __cplusplus
/* This is the most reliable way to avoid incompatibilities
in available built-in functions on various systems. */
static void
__yy_memcpy (from, to, count)
char *from;
char *to;
int count;
{
register char *f = from;
register char *t = to;
register int i = count;
while (i-- > 0)
*t++ = *f++;
}
#else /* __cplusplus */
/* This is the most reliable way to avoid incompatibilities
in available built-in functions on various systems. */
static void
__yy_memcpy (char *from, char *to, int count)
{
register char *f = from;
register char *t = to;
register int i = count;
while (i-- > 0)
*t++ = *f++;
}
#endif
#endif
#line 192 "/usr/lib/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *.
It should actually point to an object.
Grammar actions can access the variable by casting it
to the proper pointer type. */
#ifdef YYPARSE_PARAM
#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
#else
#define YYPARSE_PARAM
#define YYPARSE_PARAM_DECL
#endif
int
yyparse(YYPARSE_PARAM)
YYPARSE_PARAM_DECL
{
register int yystate;
register int yyn;
register short *yyssp;
register YYSTYPE *yyvsp;
int yyerrstatus; /* number of tokens to shift before error messages enabled */
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
short yyssa[YYINITDEPTH]; /* the state stack */
YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
short *yyss = yyssa; /* refer to the stacks thru separate pointers */
YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
#ifdef YYLSP_NEEDED
YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
YYLTYPE *yyls = yylsa;
YYLTYPE *yylsp;
#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
#else
#define YYPOPSTACK (yyvsp--, yyssp--)
#endif
int yystacksize = YYINITDEPTH;
#ifdef YYPURE
int yychar;
YYSTYPE yylval;
int yynerrs;
#ifdef YYLSP_NEEDED
YYLTYPE yylloc;
#endif
#endif
YYSTYPE yyval; /* the variable used to return */
/* semantic values from the action */
/* routines */
int yylen;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Starting parse\n");
#endif
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
yyssp = yyss - 1;
yyvsp = yyvs;
#ifdef YYLSP_NEEDED
yylsp = yyls;
#endif
/* Push a new state, which is found in yystate . */
/* In all cases, when you get here, the value and location stacks
have just been pushed. so pushing a state here evens the stacks. */
yynewstate:
*++yyssp = yystate;
if (yyssp >= yyss + yystacksize - 1)
{
/* Give user a chance to reallocate the stack */
/* Use copies of these so that the &'s don't force the real ones into memory. */
YYSTYPE *yyvs1 = yyvs;
short *yyss1 = yyss;
#ifdef YYLSP_NEEDED
YYLTYPE *yyls1 = yyls;
#endif
/* Get the current used size of the three stacks, in elements. */
int size = yyssp - yyss + 1;
#ifdef yyoverflow
/* Each stack pointer address is followed by the size of
the data in use in that stack, in bytes. */
#ifdef YYLSP_NEEDED
/* This used to be a conditional around just the two extra args,
but that might be undefined if yyoverflow is a macro. */
yyoverflow("parser stack overflow",
&yyss1, size * sizeof (*yyssp),
&yyvs1, size * sizeof (*yyvsp),
&yyls1, size * sizeof (*yylsp),
&yystacksize);
#else
yyoverflow("parser stack overflow",
&yyss1, size * sizeof (*yyssp),
&yyvs1, size * sizeof (*yyvsp),
&yystacksize);
#endif
yyss = yyss1; yyvs = yyvs1;
#ifdef YYLSP_NEEDED
yyls = yyls1;
#endif
#else /* no yyoverflow */
/* Extend the stack our own way. */
if (yystacksize >= YYMAXDEPTH)
{
yyerror("parser stack overflow");
return 2;
}
yystacksize *= 2;
if (yystacksize > YYMAXDEPTH)
yystacksize = YYMAXDEPTH;
yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
__yy_memcpy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
__yy_memcpy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
#ifdef YYLSP_NEEDED
yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
__yy_memcpy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
#endif
#endif /* no yyoverflow */
yyssp = yyss + size - 1;
yyvsp = yyvs + size - 1;
#ifdef YYLSP_NEEDED
yylsp = yyls + size - 1;
#endif
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Stack size increased to %d\n", yystacksize);
#endif
if (yyssp >= yyss + yystacksize - 1)
YYABORT;
}
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Entering state %d\n", yystate);
#endif
goto yybackup;
yybackup:
/* Do appropriate processing given the current state. */
/* Read a lookahead token if we need one and don't already have one. */
/* yyresume: */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yyn == YYFLAG)
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* yychar is either YYEMPTY or YYEOF
or a valid token in external form. */
if (yychar == YYEMPTY)
{
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Reading a token: ");
#endif
yychar = YYLEX;
}
/* Convert token to internal form (in yychar1) for indexing tables with */
if (yychar <= 0) /* This means end of input. */
{
yychar1 = 0;
yychar = YYEOF; /* Don't call YYLEX any more */
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Now at end of input.\n");
#endif
}
else
{
yychar1 = YYTRANSLATE(yychar);
#if YYDEBUG != 0
if (yydebug)
{
fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
/* Give the individual parser a way to print the precise meaning
of a token, for further debugging info. */
#ifdef YYPRINT
YYPRINT (stderr, yychar, yylval);
#endif
fprintf (stderr, ")\n");
}
#endif
}
yyn += yychar1;
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
goto yydefault;
yyn = yytable[yyn];
/* yyn is what to do for this token type in this state.
Negative => reduce, -yyn is rule number.
Positive => shift, yyn is new state.
New state is final state => don't bother to shift,
just return success.
0, or most negative number => error. */
if (yyn < 0)
{
if (yyn == YYFLAG)
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
else if (yyn == 0)
goto yyerrlab;
if (yyn == YYFINAL)
YYACCEPT;
/* Shift the lookahead token. */
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
#endif
/* Discard the token being shifted unless it is eof. */
if (yychar != YYEOF)
yychar = YYEMPTY;
*++yyvsp = yylval;
#ifdef YYLSP_NEEDED
*++yylsp = yylloc;
#endif
/* count tokens shifted since error; after three, turn off error status. */
if (yyerrstatus) yyerrstatus--;
yystate = yyn;
goto yynewstate;
/* Do the default action for the current state. */
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
/* Do a reduction. yyn is the number of a rule to reduce with. */
yyreduce:
yylen = yyr2[yyn];
if (yylen > 0)
yyval = yyvsp[1-yylen]; /* implement default value of the action */
#if YYDEBUG != 0
if (yydebug)
{
int i;
fprintf (stderr, "Reducing via rule %d (line %d), ",
yyn, yyrline[yyn]);
/* Print the symbols being reduced, and their result. */
for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
fprintf (stderr, "%s ", yytname[yyrhs[i]]);
fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
}
#endif
switch (yyn) {
case 2:
#line 301 "parse.y"
{
/* In case there were missing closebraces,
get us back to the global binding level. */
while (! global_bindings_p ())
poplevel (0, 0, 0);
finish_file ();
;
break;}
case 3:
#line 315 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 4:
#line 316 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 5:
#line 318 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 8:
#line 327 "parse.y"
{ have_extern_spec = 1;
used_extern_spec = 0;
yyval.ttype = NULL_TREE; ;
break;}
case 9:
#line 332 "parse.y"
{ have_extern_spec = 0; ;
break;}
case 12:
#line 341 "parse.y"
{ if (pending_lang_change) do_pending_lang_change(); ;
break;}
case 13:
#line 343 "parse.y"
{ if (! toplevel_bindings_p () && ! pseudo_global_level_p())
pop_everything (); ;
break;}
case 14:
#line 349 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 15:
#line 351 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 16:
#line 353 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 18:
#line 356 "parse.y"
{ if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
assemble_asm (yyvsp[-2].ttype); ;
break;}
case 19:
#line 359 "parse.y"
{ pop_lang_context (); ;
break;}
case 20:
#line 361 "parse.y"
{ if (pending_inlines) do_pending_inlines ();
pop_lang_context (); ;
break;}
case 21:
#line 364 "parse.y"
{ if (pending_inlines) do_pending_inlines ();
pop_lang_context (); ;
break;}
case 22:
#line 367 "parse.y"
{ push_namespace (yyvsp[-1].ttype); ;
break;}
case 23:
#line 369 "parse.y"
{ pop_namespace (); ;
break;}
case 24:
#line 371 "parse.y"
{ push_namespace (NULL_TREE); ;
break;}
case 25:
#line 373 "parse.y"
{ pop_namespace (); ;
break;}
case 26:
#line 375 "parse.y"
{ do_namespace_alias (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 27:
#line 377 "parse.y"
{ do_toplevel_using_decl (yyvsp[-1].ttype); ;
break;}
case 28:
#line 379 "parse.y"
{ do_using_directive (yyvsp[-1].ttype); ;
break;}
case 29:
#line 384 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 30:
#line 386 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 31:
#line 388 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 34:
#line 395 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 35:
#line 397 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 36:
#line 402 "parse.y"
{ push_lang_context (yyvsp[0].ttype); ;
break;}
case 37:
#line 404 "parse.y"
{ if (current_lang_name != yyvsp[0].ttype)
cp_error ("use of linkage spec `%D' is different from previous spec `%D'", yyvsp[0].ttype, current_lang_name);
pop_lang_context (); push_lang_context (yyvsp[0].ttype); ;
break;}
case 38:
#line 411 "parse.y"
{ begin_template_parm_list (); ;
break;}
case 39:
#line 413 "parse.y"
{ yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
break;}
case 40:
#line 418 "parse.y"
{ yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 41:
#line 420 "parse.y"
{ yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 42:
#line 425 "parse.y"
{
yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
ttpa:
if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
sorry ("signature as template type parameter");
else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
pedwarn ("template type parameters must use the keyword `class'");
;
break;}
case 43:
#line 434 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
break;}
case 44:
#line 436 "parse.y"
{ yyval.ttype = build_tree_list (class_type_node, NULL_TREE); ;
break;}
case 45:
#line 438 "parse.y"
{ yyval.ttype = build_tree_list (class_type_node, yyvsp[0].ttype); ;
break;}
case 46:
#line 450 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 47:
#line 452 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
break;}
case 49:
#line 458 "parse.y"
{ warning ("use of `overload' is an anachronism"); ;
break;}
case 50:
#line 462 "parse.y"
{ declare_overloaded (yyvsp[0].ttype); ;
break;}
case 51:
#line 464 "parse.y"
{ declare_overloaded (yyvsp[0].ttype); ;
break;}
case 52:
#line 471 "parse.y"
{ yychar = '{'; goto template1; ;
break;}
case 54:
#line 474 "parse.y"
{ yychar = '{'; goto template1; ;
break;}
case 56:
#line 477 "parse.y"
{ yychar = ':'; goto template1; ;
break;}
case 58:
#line 480 "parse.y"
{
yychar = ':';
template1:
if (current_aggr == signature_type_node)
sorry ("template type defining a signature");
/* Maybe pedantic warning for union?
How about an enum? :-) */
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
yychar = YYEMPTY;
;
break;}
case 60:
#line 493 "parse.y"
{
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
/* declare $2 as template name with $1 parm list */
;
break;}
case 61:
#line 498 "parse.y"
{
end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
/* declare $2 as template name with $1 parm list */
;
break;}
case 62:
#line 505 "parse.y"
{
tree d;
int momentary;
int def = (yyvsp[0].itype != ';');
momentary = suspend_momentary ();
d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
yyvsp[-3].ttype);
cplus_decl_attributes (d, yyvsp[-1].ttype, /*prefix_attributes*/NULL_TREE);
cp_finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0, 0);
end_template_decl (yyvsp[-5].ttype, d, 0, def);
if (def)
reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
resume_momentary (momentary);
;
break;}
case 63:
#line 522 "parse.y"
{
tree d, specs, attrs;
int momentary;
int def = (yyvsp[0].itype != ';');
split_specs_attrs (yyvsp[-5].ttype, &specs, &attrs);
momentary = suspend_momentary ();
d = start_decl (yyvsp[-4].ttype, specs, 0, yyvsp[-3].ttype);
cplus_decl_attributes (d, yyvsp[-1].ttype, attrs);
cp_finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0, 0);
end_template_decl (yyvsp[-6].ttype, d, 0, def);
if (def)
{
reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
yychar = YYEMPTY;
}
note_list_got_semicolon (yyvsp[-5].ttype);
resume_momentary (momentary);
;
break;}
case 64:
#line 541 "parse.y"
{
tree d, specs, attrs;
int def = (yyvsp[0].itype != ';');
split_specs_attrs (yyvsp[-2].ttype, &specs, &attrs);
d = start_decl (yyvsp[-1].ttype, specs, 0, NULL_TREE);
cplus_decl_attributes (d, NULL_TREE, attrs);
cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
end_template_decl (yyvsp[-3].ttype, d, 0, def);
if (def)
reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
;
break;}
case 65:
#line 553 "parse.y"
{ end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
break;}
case 66:
#line 554 "parse.y"
{ end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
break;}
case 67:
#line 557 "parse.y"
{ yyval.itype = '{'; ;
break;}
case 68:
#line 558 "parse.y"
{ yyval.itype = ':'; ;
break;}
case 69:
#line 559 "parse.y"
{ yyval.itype = ';'; ;
break;}
case 70:
#line 560 "parse.y"
{ yyval.itype = '='; ;
break;}
case 71:
#line 561 "parse.y"
{ yyval.itype = RETURN; ;
break;}
case 72:
#line 566 "parse.y"
{;
break;}
case 73:
#line 568 "parse.y"
{;
break;}
case 74:
#line 571 "parse.y"
{ tree d, specs, attrs;
split_specs_attrs (yyvsp[-2].ttype, &specs, &attrs);
d = start_decl (yyvsp[-1].ttype, specs, 0, NULL_TREE);
cplus_decl_attributes (d, NULL_TREE, attrs);
cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
;
break;}
case 75:
#line 578 "parse.y"
{
note_list_got_semicolon (yyval.ttype);
;
break;}
case 76:
#line 583 "parse.y"
{ tree d, specs, attrs;
split_specs_attrs (yyvsp[-2].ttype, &specs, &attrs);
d = start_decl (yyvsp[-1].ttype, specs, 0, NULL_TREE);
cplus_decl_attributes (d, NULL_TREE, attrs);
cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
note_list_got_semicolon (yyval.ttype);
;
break;}
case 77:
#line 591 "parse.y"
{ pedwarn ("empty declaration"); ;
break;}
case 79:
#line 594 "parse.y"
{
tree t, attrs;
split_specs_attrs (yyvsp[-1].ttype, &t, &attrs);
shadow_tag (t);
if (TREE_CODE (t) == TREE_LIST
&& TREE_PURPOSE (t) == NULL_TREE)
{
t = TREE_VALUE (t);
if (IS_AGGR_TYPE (t)
&& IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
{
if (CLASSTYPE_USE_TEMPLATE (t) == 0)
SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
error ("override declaration for already-expanded template");
}
}
note_list_got_semicolon (yyval.ttype);
;
break;}
case 83:
#line 620 "parse.y"
{ yyval.itype = 0; ;
break;}
case 84:
#line 622 "parse.y"
{ yyval.itype = 1; ;
break;}
case 90:
#line 638 "parse.y"
{
finish_function (lineno, (int)yyvsp[-1].itype, 0);
if (yyval.ttype) process_next_inline (yyval.ttype);
;
break;}
case 91:
#line 643 "parse.y"
{
if (yyval.ttype) process_next_inline (yyval.ttype);
;
break;}
case 93:
#line 648 "parse.y"
{;
break;}
case 94:
#line 650 "parse.y"
{;
break;}
case 95:
#line 652 "parse.y"
{;
break;}
case 96:
#line 657 "parse.y"
{ tree specs, attrs;
split_specs_attrs (yyvsp[-2].ttype, &specs, &attrs);
if (! start_function (specs, yyvsp[-1].ttype, yyvsp[0].ttype, attrs, 0))
YYERROR1;
reinit_parse_for_function ();
yyval.ttype = NULL_TREE; ;
break;}
case 97:
#line 664 "parse.y"
{ tree specs = strip_attrs (yyvsp[-2].ttype);
if (! start_function (specs, yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, 0))
YYERROR1;
reinit_parse_for_function ();
yyval.ttype = NULL_TREE; ;
break;}
case 98:
#line 670 "parse.y"
{ if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, NULL_TREE, 0))
YYERROR1;
reinit_parse_for_function ();
yyval.ttype = NULL_TREE; ;
break;}
case 99:
#line 675 "parse.y"
{ start_function (NULL_TREE, TREE_VALUE (yyval.ttype),
NULL_TREE, NULL_TREE, 1);
reinit_parse_for_function (); ;
break;}
case 100:
#line 684 "parse.y"
{ tree specs = strip_attrs (yyvsp[-5].ttype);
yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (specs), yyvsp[-3].ttype, yyvsp[-1].ttype);
yyval.ttype = start_method (TREE_CHAIN (specs), yyval.ttype, yyvsp[0].ttype);
rest_of_mdef:
if (! yyval.ttype)
YYERROR1;
if (yychar == YYEMPTY)
yychar = YYLEX;
reinit_parse_for_method (yychar, yyval.ttype); ;
break;}
case 101:
#line 694 "parse.y"
{ tree specs = strip_attrs (yyvsp[-3].ttype);
yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (specs),
empty_parms (), yyvsp[-1].ttype);
yyval.ttype = start_method (TREE_CHAIN (specs), yyval.ttype, yyvsp[0].ttype);
goto rest_of_mdef;
;
break;}
case 102:
#line 701 "parse.y"
{ tree specs = strip_attrs (yyvsp[-2].ttype);
yyval.ttype = start_method (specs, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 103:
#line 704 "parse.y"
{ tree specs = strip_attrs (yyvsp[-2].ttype);
yyval.ttype = start_method (specs, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 104:
#line 707 "parse.y"
{ yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 105:
#line 711 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 106:
#line 719 "parse.y"
{ store_return_init (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 107:
#line 721 "parse.y"
{ store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 108:
#line 723 "parse.y"
{ store_return_init (yyval.ttype, NULL_TREE); ;
break;}
case 109:
#line 728 "parse.y"
{
if (yyvsp[0].itype == 0)
error ("no base initializers given following ':'");
setup_vtbl_ptr ();
/* Always keep the BLOCK node associated with the outermost
pair of curley braces of a function. These are needed
for correct operation of dwarfout.c. */
keep_next_level ();
;
break;}
case 110:
#line 741 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
if (DECL_CONSTRUCTOR_P (current_function_decl))
{
/* Make a contour for the initializer list. */
pushlevel (0);
clear_last_expr ();
expand_start_bindings (0);
}
else if (current_class_type == NULL_TREE)
error ("base initializers not allowed for non-member functions");
else if (! DECL_CONSTRUCTOR_P (current_function_decl))
error ("only constructors take base initializers");
;
break;}
case 111:
#line 761 "parse.y"
{ yyval.itype = 0; ;
break;}
case 112:
#line 763 "parse.y"
{ yyval.itype = 1; ;
break;}
case 115:
#line 769 "parse.y"
{
if (current_class_name && !flag_traditional)
pedwarn ("anachronistic old style base class initializer");
expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
;
break;}
case 116:
#line 775 "parse.y"
{
if (current_class_name && !flag_traditional)
pedwarn ("anachronistic old style base class initializer");
expand_member_init (C_C_D, NULL_TREE, void_type_node);
;
break;}
case 117:
#line 781 "parse.y"
{ expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 118:
#line 783 "parse.y"
{ expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
break;}
case 119:
#line 785 "parse.y"
{ expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 120:
#line 787 "parse.y"
{ expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
break;}
case 121:
#line 790 "parse.y"
{
do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
;
break;}
case 122:
#line 794 "parse.y"
{
do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
;
break;}
case 133:
#line 820 "parse.y"
{ do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 134:
#line 822 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
do_function_instantiation (specs, yyvsp[0].ttype, NULL_TREE); ;
break;}
case 135:
#line 825 "parse.y"
{ do_function_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
break;}
case 136:
#line 827 "parse.y"
{ do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
break;}
case 137:
#line 829 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
do_function_instantiation (specs, yyvsp[0].ttype, yyvsp[-3].ttype); ;
break;}
case 138:
#line 832 "parse.y"
{ do_function_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype); ;
break;}
case 139:
#line 837 "parse.y"
{ if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
break;}
case 140:
#line 842 "parse.y"
{ yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 141:
#line 844 "parse.y"
{ yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
break;}
case 142:
#line 846 "parse.y"
{ yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 143:
#line 851 "parse.y"
{ yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
break;}
case 144:
#line 856 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 145:
#line 858 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 146:
#line 863 "parse.y"
{ yyval.ttype = groktypename (yyval.ttype); ;
break;}
case 148:
#line 869 "parse.y"
{
tree t, decl, tmpl;
tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
set_current_level_tags_transparency (1);
my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
|| TREE_CODE (t) == UNION_TYPE, 257);
yyval.ttype = t;
/* Now, put a copy of the decl in global scope, to avoid
recursive expansion. */
decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
if (!decl)
decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
/* Now, put a copy of the decl in global scope, to avoid
recursive expansion. */
if (decl)
{
/* Need to copy it to clear the chain pointer,
and need to get it into permanent storage. */
my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
push_obstacks (&permanent_obstack, &permanent_obstack);
decl = copy_node (decl);
if (DECL_LANG_SPECIFIC (decl))
copy_lang_decl (decl);
pop_obstacks ();
pushdecl_top_level (decl);
}
/* Kludge; see instantiate_class_template. */
TYPE_BEING_DEFINED (t) = 0;
;
break;}
case 149:
#line 902 "parse.y"
{
tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
pop_obstacks ();
end_template_instantiation (yyvsp[-5].ttype);
repo_template_used (t);
/* Now go after the methods & class data. */
instantiate_member_templates (yyvsp[-5].ttype);
pop_tinst_level();
CLASSTYPE_GOT_SEMICOLON (t) = 1;
;
break;}
case 150:
#line 921 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 151:
#line 923 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 152:
#line 928 "parse.y"
{ yyval.ttype = NULL_TREE; /* never used from here... */;
break;}
case 153:
#line 930 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
break;}
case 154:
#line 934 "parse.y"
{ yyval.code = NEGATE_EXPR; ;
break;}
case 155:
#line 936 "parse.y"
{ yyval.code = CONVERT_EXPR; ;
break;}
case 156:
#line 938 "parse.y"
{ yyval.code = PREINCREMENT_EXPR; ;
break;}
case 157:
#line 940 "parse.y"
{ yyval.code = PREDECREMENT_EXPR; ;
break;}
case 158:
#line 942 "parse.y"
{ yyval.code = TRUTH_NOT_EXPR; ;
break;}
case 159:
#line 946 "parse.y"
{ yyval.ttype = build_x_compound_expr (yyval.ttype); ;
break;}
case 161:
#line 952 "parse.y"
{ error ("ANSI C++ forbids an empty condition for `%s'",
cond_stmt_keyword);
yyval.ttype = integer_zero_node; ;
break;}
case 162:
#line 956 "parse.y"
{ yyval.ttype = condition_conversion (yyvsp[-1].ttype); ;
break;}
case 163:
#line 961 "parse.y"
{ error ("ANSI C++ forbids an empty condition for `%s'",
cond_stmt_keyword);
yyval.ttype = integer_zero_node; ;
break;}
case 164:
#line 965 "parse.y"
{ yyval.ttype = condition_conversion (yyvsp[-1].ttype); ;
break;}
case 165:
#line 970 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 166:
#line 972 "parse.y"
{ yyval.ttype = condition_conversion (yyval.ttype); ;
break;}
case 167:
#line 974 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 168:
#line 979 "parse.y"
{ {
tree d;
for (d = getdecls (); d; d = TREE_CHAIN (d))
if (TREE_CODE (d) == TYPE_DECL) {
tree s = TREE_TYPE (d);
if (TREE_CODE (s) == RECORD_TYPE)
cp_error ("definition of class `%T' in condition", s);
else if (TREE_CODE (s) == ENUMERAL_TYPE)
cp_error ("definition of enum `%T' in condition", s);
}
}
current_declspecs = yyvsp[-5].ttype;
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype,
/*prefix_attributes*/ NULL_TREE);
;
break;}
case 169:
#line 997 "parse.y"
{
cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0, LOOKUP_ONLYCONVERTING);
resume_momentary (yyvsp[-2].itype);
yyval.ttype = yyvsp[-1].ttype;
if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
cp_error ("definition of array `%#D' in condition", yyval.ttype);
;
break;}
case 175:
#line 1016 "parse.y"
{ finish_stmt (); ;
break;}
case 177:
#line 1023 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype,
build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 178:
#line 1026 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype,
build_tree_list (NULL_TREE, error_mark_node)); ;
break;}
case 179:
#line 1029 "parse.y"
{ chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 180:
#line 1031 "parse.y"
{ chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
break;}
case 181:
#line 1036 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 183:
#line 1042 "parse.y"
{
#if 0
if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
#endif
;
break;}
case 184:
#line 1050 "parse.y"
{ yyvsp[0].itype = pedantic;
pedantic = 0; ;
break;}
case 185:
#line 1053 "parse.y"
{ yyval.ttype = yyvsp[0].ttype;
pedantic = yyvsp[-2].itype; ;
break;}
case 186:
#line 1056 "parse.y"
{ yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
break;}
case 187:
#line 1058 "parse.y"
{ yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
break;}
case 188:
#line 1060 "parse.y"
{ yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
break;}
case 189:
#line 1062 "parse.y"
{ yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
TREE_NEGATED_INT (yyval.ttype) = 1;
overflow_warning (yyval.ttype);
;
break;}
case 190:
#line 1069 "parse.y"
{ tree label = lookup_label (yyvsp[0].ttype);
if (label == NULL_TREE)
yyval.ttype = null_pointer_node;
else
{
TREE_USED (label) = 1;
yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
TREE_CONSTANT (yyval.ttype) = 1;
}
;
break;}
case 191:
#line 1080 "parse.y"
{ if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
&& DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
error ("sizeof applied to a bit-field");
/* ANSI says arrays and functions are converted inside comma.
But we can't really convert them in build_compound_expr
because that would break commas in lvalues.
So do the conversion here if operand was a comma. */
if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
&& (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
|| TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
{
tree t = TREE_VALUE (yyvsp[0].ttype);
if (t != NULL_TREE
&& ((TREE_TYPE (t)
&& TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
|| is_overloaded_fn (t)))
pedwarn ("ANSI C++ forbids taking the sizeof a function type");
}
yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
break;}
case 192:
#line 1102 "parse.y"
{ yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
break;}
case 193:
#line 1104 "parse.y"
{ yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
break;}
case 194:
#line 1106 "parse.y"
{ yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
break;}
case 195:
#line 1111 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
break;}
case 196:
#line 1113 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
break;}
case 197:
#line 1115 "parse.y"
{ yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
break;}
case 198:
#line 1117 "parse.y"
{ yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
break;}
case 199:
#line 1119 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
NULL_TREE, yyvsp[-3].itype); ;
break;}
case 200:
#line 1122 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
break;}
case 201:
#line 1124 "parse.y"
{ yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
break;}
case 202:
#line 1126 "parse.y"
{ yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
break;}
case 203:
#line 1129 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
break;}
case 204:
#line 1131 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
if (yychar == YYEMPTY)
yychar = YYLEX; ;
break;}
case 205:
#line 1135 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
if (yychar == YYEMPTY)
yychar = YYLEX; ;
break;}
case 206:
#line 1142 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 207:
#line 1144 "parse.y"
{
yyval.ttype = yyvsp[-1].ttype;
pedwarn ("old style placement syntax, use () instead");
;
break;}
case 208:
#line 1152 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 209:
#line 1154 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 210:
#line 1156 "parse.y"
{
cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
yyval.ttype = error_mark_node;
;
break;}
case 211:
#line 1164 "parse.y"
{
if (pedantic)
pedwarn ("ANSI C++ forbids initialization of new expression with `='");
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 212:
#line 1174 "parse.y"
{ yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
TREE_PARMLIST (yyvsp[-1].ttype) = 1;
yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype,
NULL_TREE); ;
break;}
case 213:
#line 1179 "parse.y"
{ yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
TREE_PARMLIST (yyvsp[-1].ttype) = 1;
yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 215:
#line 1187 "parse.y"
{ yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 216:
#line 1189 "parse.y"
{
tree init = build_nt (CONSTRUCTOR, NULL_TREE,
nreverse (yyvsp[-2].ttype));
if (pedantic)
pedwarn ("ANSI C++ forbids constructor-expressions");
/* Indicate that this was a GNU C constructor expression. */
TREE_HAS_CONSTRUCTOR (init) = 1;
yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
;
break;}
case 218:
#line 1205 "parse.y"
{ yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 219:
#line 1207 "parse.y"
{ yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 220:
#line 1209 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 221:
#line 1211 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 222:
#line 1213 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 223:
#line 1215 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 224:
#line 1217 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 225:
#line 1219 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 226:
#line 1221 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 227:
#line 1223 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 228:
#line 1225 "parse.y"
{ yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 229:
#line 1227 "parse.y"
{ yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 230:
#line 1229 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 231:
#line 1231 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 232:
#line 1233 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 233:
#line 1235 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 234:
#line 1237 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 235:
#line 1239 "parse.y"
{ yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 236:
#line 1241 "parse.y"
{ yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 237:
#line 1243 "parse.y"
{ yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 238:
#line 1245 "parse.y"
{ yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype);
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
break;}
case 239:
#line 1248 "parse.y"
{ register tree rval;
if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
make_node (yyvsp[-1].code))))
yyval.ttype = rval;
else
yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
break;}
case 240:
#line 1255 "parse.y"
{ yyval.ttype = build_throw (NULL_TREE); ;
break;}
case 241:
#line 1257 "parse.y"
{ yyval.ttype = build_throw (yyvsp[0].ttype); ;
break;}
case 242:
#line 1275 "parse.y"
{ yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
break;}
case 250:
#line 1290 "parse.y"
{ yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
break;}
case 251:
#line 1292 "parse.y"
{ yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
break;}
case 252:
#line 1294 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 255:
#line 1301 "parse.y"
{ yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
break;}
case 256:
#line 1306 "parse.y"
{
if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
else if (IDENTIFIER_OPNAME_P (yyval.ttype))
{
tree op = yyval.ttype;
yyval.ttype = lookup_name (op, 0);
if (yyval.ttype == NULL_TREE)
{
if (op != ansi_opname[ERROR_MARK])
error ("operator %s not defined",
operator_name_string (op));
yyval.ttype = error_mark_node;
}
}
else
yyval.ttype = do_identifier (yyval.ttype);
;
break;}
case 259:
#line 1327 "parse.y"
{ yyval.ttype = combine_strings (yyval.ttype); ;
break;}
case 260:
#line 1329 "parse.y"
{ char class;
yyval.ttype = yyvsp[-1].ttype;
class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
if (class == 'e' || class == '1'
|| class == '2' || class == '<')
/* This inhibits warnings in truthvalue_conversion. */
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
break;}
case 261:
#line 1337 "parse.y"
{ char class;
yyval.ttype = reparse_decl_as_expr (NULL_TREE, yyvsp[-1].ttype);
class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
if (class == 'e' || class == '1'
|| class == '2' || class == '<')
/* This inhibits warnings in truthvalue_conversion. */
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
break;}
case 262:
#line 1345 "parse.y"
{ yyval.ttype = error_mark_node; ;
break;}
case 263:
#line 1347 "parse.y"
{ if (current_function_decl == 0)
{
error ("braced-group within expression allowed only inside a function");
YYERROR;
}
keep_next_level ();
yyval.ttype = expand_start_stmt_expr (); ;
break;}
case 264:
#line 1355 "parse.y"
{ tree rtl_exp;
if (pedantic)
pedwarn ("ANSI C++ forbids braced-groups within expressions");
rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
/* The statements have side effects, so the group does. */
TREE_SIDE_EFFECTS (rtl_exp) = 1;
if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
{
/* Make a BIND_EXPR for the BLOCK already made. */
yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
NULL_TREE, rtl_exp, yyvsp[-1].ttype);
/* Remove the block from the tree at this point.
It gets put back at the proper place
when the BIND_EXPR is expanded. */
delete_block (yyvsp[-1].ttype);
}
else
yyval.ttype = yyvsp[-1].ttype;
;
break;}
case 265:
#line 1376 "parse.y"
{ /* [eichin:19911016.1902EST] */
yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl);
/* here we instantiate_class_template as needed... */
do_pending_templates ();
;
break;}
case 266:
#line 1380 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
&& TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
yyval.ttype = require_complete_type (yyvsp[-1].ttype);
else
yyval.ttype = yyvsp[-1].ttype;
;
break;}
case 267:
#line 1388 "parse.y"
{
yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
if (TREE_CODE (yyval.ttype) == CALL_EXPR
&& TREE_TYPE (yyval.ttype) != void_type_node)
yyval.ttype = require_complete_type (yyval.ttype);
;
break;}
case 268:
#line 1395 "parse.y"
{ yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 269:
#line 1397 "parse.y"
{ /* If we get an OFFSET_REF, turn it into what it really
means (e.g., a COMPONENT_REF). This way if we've got,
say, a reference to a static member that's being operated
on, we don't end up trying to find a member operator for
the class it's in. */
if (TREE_CODE (yyval.ttype) == OFFSET_REF)
yyval.ttype = resolve_offset_ref (yyval.ttype);
yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
break;}
case 270:
#line 1406 "parse.y"
{ if (TREE_CODE (yyval.ttype) == OFFSET_REF)
yyval.ttype = resolve_offset_ref (yyval.ttype);
yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
break;}
case 271:
#line 1411 "parse.y"
{ if (current_class_decl)
{
#ifdef WARNING_ABOUT_CCD
TREE_USED (current_class_decl) = 1;
#endif
yyval.ttype = current_class_decl;
}
else if (current_function_decl
&& DECL_STATIC_FUNCTION_P (current_function_decl))
{
error ("`this' is unavailable for static member functions");
yyval.ttype = error_mark_node;
}
else
{
if (current_function_decl)
error ("invalid use of `this' in non-member function");
else
error ("invalid use of `this' at top level");
yyval.ttype = error_mark_node;
}
;
break;}
case 272:
#line 1434 "parse.y"
{
tree type;
tree id = yyval.ttype;
/* This is a C cast in C++'s `functional' notation. */
if (yyvsp[-1].ttype == error_mark_node)
{
yyval.ttype = error_mark_node;
break;
}
#if 0
if (yyvsp[-1].ttype == NULL_TREE)
{
error ("cannot cast null list to type `%s'",
IDENTIFIER_POINTER (TYPE_NAME (id)));
yyval.ttype = error_mark_node;
break;
}
#endif
#if 0
/* type is not set! (mrs) */
if (type == error_mark_node)
yyval.ttype = error_mark_node;
else
#endif
{
if (id == ridpointers[(int) RID_CONST])
type = build_type_variant (integer_type_node, 1, 0);
else if (id == ridpointers[(int) RID_VOLATILE])
type = build_type_variant (integer_type_node, 0, 1);
#if 0
/* should not be able to get here (mrs) */
else if (id == ridpointers[(int) RID_FRIEND])
{
error ("cannot cast expression to `friend' type");
yyval.ttype = error_mark_node;
break;
}
#endif
else my_friendly_abort (79);
yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype), 1);
}
;
break;}
case 274:
#line 1479 "parse.y"
{ dont_allow_type_definitions = "inside dynamic_cast"; ;
break;}
case 275:
#line 1481 "parse.y"
{ dont_allow_type_definitions = 0; ;
break;}
case 276:
#line 1483 "parse.y"
{ tree type = groktypename (yyvsp[-5].ttype);
yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
break;}
case 277:
#line 1486 "parse.y"
{ dont_allow_type_definitions = "inside static_cast"; ;
break;}
case 278:
#line 1488 "parse.y"
{ dont_allow_type_definitions = 0; ;
break;}
case 279:
#line 1490 "parse.y"
{ tree type = groktypename (yyvsp[-5].ttype);
yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
break;}
case 280:
#line 1493 "parse.y"
{ dont_allow_type_definitions = "inside reinterpret_cast"; ;
break;}
case 281:
#line 1495 "parse.y"
{ dont_allow_type_definitions = 0; ;
break;}
case 282:
#line 1497 "parse.y"
{ tree type = groktypename (yyvsp[-5].ttype);
yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
break;}
case 283:
#line 1500 "parse.y"
{ dont_allow_type_definitions = "inside const_cast"; ;
break;}
case 284:
#line 1502 "parse.y"
{ dont_allow_type_definitions = 0; ;
break;}
case 285:
#line 1504 "parse.y"
{ tree type = groktypename (yyvsp[-5].ttype);
yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
break;}
case 286:
#line 1507 "parse.y"
{ yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
break;}
case 287:
#line 1509 "parse.y"
{ tree type = groktypename (yyvsp[-1].ttype);
yyval.ttype = get_typeid (TYPE_MAIN_VARIANT (type)); ;
break;}
case 288:
#line 1512 "parse.y"
{
do_scoped_id:
yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
if (yychar == YYEMPTY)
yychar = YYLEX;
if (! yyval.ttype)
{
if (yychar == '(' || yychar == LEFT_RIGHT)
yyval.ttype = implicitly_declare (yyvsp[0].ttype);
else
{
if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
error ("undeclared variable `%s' (first use here)",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = error_mark_node;
/* Prevent repeated error messages. */
IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
}
}
else
{
if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
assemble_external (TREE_OPERAND (yyval.ttype, 0));
else
assemble_external (yyval.ttype);
TREE_USED (yyval.ttype) = 1;
}
if (TREE_CODE (yyval.ttype) == CONST_DECL)
{
/* XXX CHS - should we set TREE_USED of the constant? */
yyval.ttype = DECL_INITIAL (yyval.ttype);
/* This is to prevent an enum whose value is 0
from being considered a null pointer constant. */
yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
TREE_CONSTANT (yyval.ttype) = 1;
}
;
break;}
case 289:
#line 1551 "parse.y"
{
got_scope = NULL_TREE;
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
goto do_scoped_id;
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 290:
#line 1558 "parse.y"
{ yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
break;}
case 291:
#line 1560 "parse.y"
{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
break;}
case 292:
#line 1562 "parse.y"
{ yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
break;}
case 293:
#line 1564 "parse.y"
{ got_object = NULL_TREE;
yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 294:
#line 1567 "parse.y"
{ got_object = NULL_TREE;
yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
break;}
case 295:
#line 1570 "parse.y"
{
got_object = NULL_TREE;
#if 0
/* This is a future direction of this code, but because
build_x_function_call cannot always undo what is done
in build_component_ref entirely yet, we cannot do this. */
yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
if (TREE_CODE (yyval.ttype) == CALL_EXPR
&& TREE_TYPE (yyval.ttype) != void_type_node)
yyval.ttype = require_complete_type (yyval.ttype);
#else
yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
(LOOKUP_NORMAL|LOOKUP_AGGR));
#endif
;
break;}
case 296:
#line 1586 "parse.y"
{
got_object = NULL_TREE;
#if 0
/* This is a future direction of this code, but because
build_x_function_call cannot always undo what is done
in build_component_ref entirely yet, we cannot do this. */
yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
if (TREE_CODE (yyval.ttype) == CALL_EXPR
&& TREE_TYPE (yyval.ttype) != void_type_node)
yyval.ttype = require_complete_type (yyval.ttype);
#else
yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
(LOOKUP_NORMAL|LOOKUP_AGGR));
#endif
;
break;}
case 297:
#line 1602 "parse.y"
{
got_object = NULL_TREE;
if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
{
warning ("signature name in scope resolution ignored");
yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
(LOOKUP_NORMAL|LOOKUP_AGGR));
}
else
yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
;
break;}
case 298:
#line 1614 "parse.y"
{
got_object = NULL_TREE;
if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
{
warning ("signature name in scope resolution ignored");
yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
(LOOKUP_NORMAL|LOOKUP_AGGR));
}
else
yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
;
break;}
case 299:
#line 1627 "parse.y"
{
got_object = NULL_TREE;
if (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype)
&& (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype))
!= TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype)))))
cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
;
break;}
case 300:
#line 1636 "parse.y"
{
got_object = NULL_TREE;
if (yyvsp[-4].ttype != yyvsp[-1].ttype)
cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
!= TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
;
break;}
case 301:
#line 1646 "parse.y"
{
got_object = NULL_TREE;
yyval.ttype = error_mark_node;
;
break;}
case 302:
#line 1691 "parse.y"
{ yyval.itype = 0; ;
break;}
case 303:
#line 1693 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
case 304:
#line 1697 "parse.y"
{ yyval.itype = 0; ;
break;}
case 305:
#line 1699 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
case 306:
#line 1704 "parse.y"
{ yyval.ttype = boolean_true_node; ;
break;}
case 307:
#line 1706 "parse.y"
{ yyval.ttype = boolean_false_node; ;
break;}
case 309:
#line 1713 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 310:
#line 1718 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
setup_vtbl_ptr ();
/* Always keep the BLOCK node associated with the outermost
pair of curley braces of a function. These are needed
for correct operation of dwarfout.c. */
keep_next_level ();
;
break;}
case 311:
#line 1730 "parse.y"
{ got_object = TREE_TYPE (yyval.ttype); ;
break;}
case 312:
#line 1732 "parse.y"
{
yyval.ttype = build_x_arrow (yyval.ttype);
got_object = TREE_TYPE (yyval.ttype);
;
break;}
case 313:
#line 1741 "parse.y"
{ tree d = get_decl_list (yyvsp[-2].ttype);
int yes = suspend_momentary ();
d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
resume_momentary (yes);
if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
note_got_semicolon (yyvsp[-2].ttype);
;
break;}
case 314:
#line 1750 "parse.y"
{ tree d, specs, attrs;
int yes;
split_specs_attrs (yyvsp[-2].ttype, &specs, &attrs);
yes = suspend_momentary ();
d = start_decl (yyvsp[-1].ttype, specs, 0, NULL_TREE);
cplus_decl_attributes (d, NULL_TREE, attrs);
cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
resume_momentary (yes);
note_list_got_semicolon (yyvsp[-2].ttype);
;
break;}
case 315:
#line 1761 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
note_got_semicolon (yyvsp[-2].ttype);
;
break;}
case 316:
#line 1767 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
note_list_got_semicolon (yyvsp[-2].ttype);
;
break;}
case 317:
#line 1772 "parse.y"
{ resume_momentary (yyvsp[-1].itype); ;
break;}
case 318:
#line 1774 "parse.y"
{
shadow_tag (yyvsp[-1].ttype);
note_list_got_semicolon (yyvsp[-1].ttype);
;
break;}
case 319:
#line 1779 "parse.y"
{ warning ("empty declaration"); ;
break;}
case 322:
#line 1793 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
NULL_TREE); ;
break;}
case 323:
#line 1796 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (),
NULL_TREE); ;
break;}
case 324:
#line 1803 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 325:
#line 1805 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 326:
#line 1807 "parse.y"
{ yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
break;}
case 327:
#line 1809 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
case 328:
#line 1811 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
case 331:
#line 1826 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 332:
#line 1828 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 333:
#line 1830 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, chainon (yyvsp[-1].ttype, yyvsp[0].ttype)); ;
break;}
case 334:
#line 1832 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
case 335:
#line 1834 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
case 336:
#line 1836 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype,
chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
break;}
case 337:
#line 1842 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
case 338:
#line 1847 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 339:
#line 1849 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 340:
#line 1854 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 341:
#line 1856 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
break;}
case 342:
#line 1866 "parse.y"
{ TREE_STATIC (yyval.ttype) = 1; ;
break;}
case 343:
#line 1868 "parse.y"
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
break;}
case 344:
#line 1870 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = 1; ;
break;}
case 345:
#line 1873 "parse.y"
{ if (extra_warnings && TREE_STATIC (yyval.ttype))
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
break;}
case 346:
#line 1879 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 347:
#line 1881 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
break;}
case 348:
#line 1892 "parse.y"
{ yyval.ttype = get_decl_list (yyval.ttype); ;
break;}
case 349:
#line 1894 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 350:
#line 1896 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 351:
#line 1898 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
break;}
case 352:
#line 1903 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
case 353:
#line 1905 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 357:
#line 1916 "parse.y"
{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
if (pedantic && !in_system_header)
pedwarn ("ANSI C++ forbids `typeof'"); ;
break;}
case 358:
#line 1920 "parse.y"
{ yyval.ttype = groktypename (yyvsp[-1].ttype);
if (pedantic && !in_system_header)
pedwarn ("ANSI C++ forbids `typeof'"); ;
break;}
case 359:
#line 1924 "parse.y"
{ tree type = TREE_TYPE (yyvsp[-1].ttype);
if (IS_AGGR_TYPE (type))
{
sorry ("sigof type specifier");
yyval.ttype = type;
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ttype = error_mark_node;
}
;
break;}
case 360:
#line 1938 "parse.y"
{ tree type = groktypename (yyvsp[-1].ttype);
if (IS_AGGR_TYPE (type))
{
sorry ("sigof type specifier");
yyval.ttype = type;
}
else
{
error("`sigof' applied to non-aggregate type");
yyval.ttype = error_mark_node;
}
;
break;}
case 370:
#line 1977 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 371:
#line 1979 "parse.y"
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 372:
#line 1984 "parse.y"
{ split_specs_attrs (yyvsp[-5].ttype, ¤t_declspecs,
&prefix_attributes);
if (TREE_CODE (current_declspecs) != TREE_LIST)
current_declspecs = get_decl_list (current_declspecs);
if (have_extern_spec && !used_extern_spec)
{
current_declspecs = decl_tree_cons
(NULL_TREE, get_identifier ("extern"),
current_declspecs);
used_extern_spec = 1;
}
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
break;}
case 373:
#line 2000 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
yyval.itype = yyvsp[-2].itype; ;
break;}
case 374:
#line 2003 "parse.y"
{ tree d;
split_specs_attrs (yyvsp[-4].ttype, ¤t_declspecs,
&prefix_attributes);
if (TREE_CODE (current_declspecs) != TREE_LIST)
current_declspecs = get_decl_list (current_declspecs);
if (have_extern_spec && !used_extern_spec)
{
current_declspecs = decl_tree_cons
(NULL_TREE, get_identifier ("extern"),
current_declspecs);
used_extern_spec = 1;
}
yyval.itype = suspend_momentary ();
d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
break;}
case 375:
#line 2023 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
break;}
case 376:
#line 2027 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING); ;
break;}
case 377:
#line 2029 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes);
cp_finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
break;}
case 378:
#line 2036 "parse.y"
{ split_specs_attrs (yyvsp[-5].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
break;}
case 379:
#line 2043 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
yyval.itype = yyvsp[-2].itype; ;
break;}
case 380:
#line 2046 "parse.y"
{ tree d;
split_specs_attrs (yyvsp[-4].ttype, ¤t_declspecs,
&prefix_attributes);
yyval.itype = suspend_momentary ();
d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
break;}
case 381:
#line 2057 "parse.y"
{ current_declspecs = NULL_TREE;
prefix_attributes = NULL_TREE;
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
break;}
case 382:
#line 2064 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
yyval.itype = yyvsp[-2].itype; ;
break;}
case 383:
#line 2067 "parse.y"
{ tree d;
current_declspecs = NULL_TREE;
prefix_attributes = NULL_TREE;
yyval.itype = suspend_momentary ();
d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
break;}
case 384:
#line 2080 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 385:
#line 2082 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 386:
#line 2087 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 387:
#line 2089 "parse.y"
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 388:
#line 2094 "parse.y"
{ yyval.ttype = yyvsp[-2].ttype; ;
break;}
case 389:
#line 2099 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 390:
#line 2101 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 391:
#line 2106 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 392:
#line 2108 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 393:
#line 2110 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
break;}
case 394:
#line 2112 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
break;}
case 395:
#line 2114 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 400:
#line 2130 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 401:
#line 2132 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 402:
#line 2137 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 403:
#line 2139 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 405:
#line 2144 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 406:
#line 2147 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 407:
#line 2150 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 408:
#line 2153 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 409:
#line 2160 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 410:
#line 2162 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 411:
#line 2165 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 412:
#line 2167 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 413:
#line 2169 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 414:
#line 2171 "parse.y"
{ yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 415:
#line 2176 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
break;}
case 416:
#line 2179 "parse.y"
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
resume_momentary ((int) yyvsp[-4].itype);
check_for_missing_semicolon (yyvsp[-3].ttype); ;
break;}
case 417:
#line 2183 "parse.y"
{ yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
check_for_missing_semicolon (yyval.ttype); ;
break;}
case 418:
#line 2186 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (make_anon_name ()); ;
break;}
case 419:
#line 2189 "parse.y"
{ yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
resume_momentary ((int) yyvsp[-5].itype);
check_for_missing_semicolon (yyvsp[-3].ttype); ;
break;}
case 420:
#line 2193 "parse.y"
{ yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
check_for_missing_semicolon (yyval.ttype); ;
break;}
case 421:
#line 2196 "parse.y"
{ yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 422:
#line 2198 "parse.y"
{ yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 423:
#line 2200 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 424:
#line 2203 "parse.y"
{
int semi;
tree id;
#if 0
/* Need to rework class nesting in the
presence of nested classes, etc. */
shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
#endif
if (yychar == YYEMPTY)
yychar = YYLEX;
semi = yychar == ';';
/* finish_struct nukes this anyway; if
finish_exception does too, then it can go. */
if (semi)
note_got_semicolon (yyval.ttype);
if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
/* $$ = $1 from default rule. */;
else
{
yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
if (semi) note_got_semicolon (yyval.ttype);
}
pop_obstacks ();
id = TYPE_IDENTIFIER (yyval.ttype);
if (id && IDENTIFIER_TEMPLATE (id))
{
tree decl;
/* I don't know if the copying of this TYPE_DECL is
* really needed. However, it's such a small per-
* formance penalty that the extra safety is a bargain.
* - niklas@appli.se
*/
push_obstacks (&permanent_obstack, &permanent_obstack);
decl = copy_node (lookup_name (id, 0));
if (DECL_LANG_SPECIFIC (decl))
copy_lang_decl (decl);
pop_obstacks ();
undo_template_name_overload (id, 0);
pushdecl_top_level (decl);
}
if (! semi)
check_for_missing_semicolon (yyval.ttype); ;
break;}
case 425:
#line 2251 "parse.y"
{
/* struct B: public A; is not accepted by the WP grammar. */
if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype)
&& ! TYPE_BEING_DEFINED (yyval.ttype))
cp_error ("base clause without member specification for `%#T'",
yyval.ttype);
;
break;}
case 429:
#line 2268 "parse.y"
{ if (pedantic) pedwarn ("comma at end of enumerator list"); ;
break;}
case 431:
#line 2273 "parse.y"
{ error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 432:
#line 2275 "parse.y"
{ error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 433:
#line 2277 "parse.y"
{ error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 434:
#line 2279 "parse.y"
{ error ("no body nor ';' separates two class, struct or union declarations"); ;
break;}
case 435:
#line 2284 "parse.y"
{
yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype;
if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
instantiate_class_template (yyval.ttype, 2);
;
break;}
case 436:
#line 2293 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 438:
#line 2299 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 439:
#line 2301 "parse.y"
{ yyungetc ('{', 1);
aggr2:
current_aggr = yyval.ttype;
yyval.ttype = yyvsp[-1].ttype;
overload_template_name (yyval.ttype, 0); ;
break;}
case 440:
#line 2307 "parse.y"
{ yyungetc (':', 1); goto aggr2; ;
break;}
case 441:
#line 2312 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 442:
#line 2314 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 443:
#line 2318 "parse.y"
{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 0); ;
break;}
case 444:
#line 2323 "parse.y"
{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 445:
#line 2326 "parse.y"
{
yyval.ttype = yyvsp[-1].ttype;
if (yyvsp[0].ttype)
xref_basetypes (current_aggr, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 446:
#line 2332 "parse.y"
{
yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
if (yyvsp[0].ttype)
xref_basetypes (current_aggr, yyvsp[-1].ttype, TREE_TYPE (yyvsp[-1].ttype), yyvsp[0].ttype);
;
break;}
case 447:
#line 2340 "parse.y"
{ yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
yyungetc ('{', 1); ;
break;}
case 450:
#line 2348 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 451:
#line 2350 "parse.y"
{ yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
break;}
case 452:
#line 2352 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 454:
#line 2358 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 455:
#line 2363 "parse.y"
{
tree type;
type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
if (! is_aggr_typedef (yyval.ttype, 1))
yyval.ttype = NULL_TREE;
else if (current_aggr == signature_type_node
&& (! type) && (! IS_SIGNATURE (type)))
{
error ("class name not allowed as base signature");
yyval.ttype = NULL_TREE;
}
else if (current_aggr == signature_type_node)
{
sorry ("signature inheritance, base type `%s' ignored",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
}
else if (type && IS_SIGNATURE (type))
{
error ("signature name not allowed as base class");
yyval.ttype = NULL_TREE;
}
else
yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
;
break;}
case 456:
#line 2389 "parse.y"
{
tree type;
type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
if (current_aggr == signature_type_node)
error ("access and source specifiers not allowed in signature");
if (! is_aggr_typedef (yyvsp[0].ttype, 1))
yyval.ttype = NULL_TREE;
else if (current_aggr == signature_type_node
&& (! type) && (! IS_SIGNATURE (type)))
{
error ("class name not allowed as base signature");
yyval.ttype = NULL_TREE;
}
else if (current_aggr == signature_type_node)
{
sorry ("signature inheritance, base type `%s' ignored",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
}
else if (type && IS_SIGNATURE (type))
{
error ("signature name not allowed as base class");
yyval.ttype = NULL_TREE;
}
else
yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
;
break;}
case 458:
#line 2421 "parse.y"
{
if (current_aggr == signature_type_node)
{
if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
{
sorry ("`sigof' as base signature specifier");
/* need to return some dummy signature identifier */
yyval.ttype = yyvsp[-1].ttype;
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ttype = error_mark_node;
}
}
else
{
error ("`sigof' in struct or class declaration");
yyval.ttype = error_mark_node;
}
;
break;}
case 459:
#line 2443 "parse.y"
{
if (current_aggr == signature_type_node)
{
if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
{
sorry ("`sigof' as base signature specifier");
/* need to return some dummy signature identifier */
yyval.ttype = yyvsp[-1].ttype;
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ttype = error_mark_node;
}
}
else
{
error ("`sigof' in struct or class declaration");
yyval.ttype = error_mark_node;
}
;
break;}
case 461:
#line 2469 "parse.y"
{ if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
sorry ("non-virtual access");
yyval.itype = access_default_virtual; ;
break;}
case 462:
#line 2473 "parse.y"
{ int err = 0;
if (yyvsp[-1].itype == access_protected)
{
warning ("`protected' access not implemented");
yyvsp[-1].itype = access_public;
err++;
}
else if (yyvsp[-1].itype == access_public)
{
if (yyvsp[-2].itype == access_private)
{
mixed:
error ("base class cannot be public and private");
}
else if (yyvsp[-2].itype == access_default_virtual)
yyval.itype = access_public_virtual;
}
else /* $2 == access_private */
{
if (yyvsp[-2].itype == access_public)
goto mixed;
else if (yyvsp[-2].itype == access_default_virtual)
yyval.itype = access_private_virtual;
}
;
break;}
case 463:
#line 2499 "parse.y"
{ if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL])
sorry ("non-virtual access");
if (yyval.itype == access_public)
yyval.itype = access_public_virtual;
else if (yyval.itype == access_private)
yyval.itype = access_private_virtual; ;
break;}
case 464:
#line 2508 "parse.y"
{ tree t = yyvsp[-1].ttype;
push_obstacks_nochange ();
end_temporary_allocation ();
if (! IS_AGGR_TYPE (t))
{
t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
TYPE_NAME (t) = get_identifier ("erroneous type");
}
if (TYPE_SIZE (t))
duplicate_tag_error (t);
if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
{
t = make_lang_type (TREE_CODE (t));
pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
yyvsp[-1].ttype = t;
}
pushclass (t, 0);
TYPE_BEING_DEFINED (t) = 1;
/* Reset the interface data, at the earliest possible
moment, as it might have been set via a class foo;
before. */
/* Don't change signatures. */
if (! IS_SIGNATURE (t))
{
extern tree pending_vtables;
int needs_writing;
tree name = TYPE_IDENTIFIER (t);
if (! ANON_AGGRNAME_P (name))
{
CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
SET_CLASSTYPE_INTERFACE_UNKNOWN_X
(t, interface_unknown);
}
/* Record how to set the access of this class's
virtual functions. If write_virtuals == 2 or 3, then
inline virtuals are ``extern inline''. */
switch (write_virtuals)
{
case 0:
case 1:
needs_writing = 1;
break;
case 2:
needs_writing = !! value_member (name, pending_vtables);
break;
case 3:
needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
&& CLASSTYPE_INTERFACE_KNOWN (t);
break;
default:
needs_writing = 0;
}
CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
}
#if 0
t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
if (t && IDENTIFIER_TEMPLATE (t))
overload_template_name (t, 1);
#endif
;
break;}
case 465:
#line 2575 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 466:
#line 2577 "parse.y"
{
if (current_aggr == signature_type_node)
yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
else
yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
;
break;}
case 467:
#line 2584 "parse.y"
{
tree visspec = (tree) yyvsp[-2].itype;
if (current_aggr == signature_type_node)
{
error ("access specifier not allowed in signature");
visspec = (tree) access_public;
}
yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
;
break;}
case 468:
#line 2595 "parse.y"
{
if (current_aggr == signature_type_node)
error ("access specifier not allowed in signature");
;
break;}
case 469:
#line 2605 "parse.y"
{ if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE;
;
break;}
case 470:
#line 2608 "parse.y"
{ /* In pushdecl, we created a reverse list of names
in this binding level. Make sure that the chain
of what we're trying to add isn't the item itself
(which can happen with what pushdecl's doing). */
if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
{
if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
else
yyval.ttype = yyvsp[0].ttype;
}
;
break;}
case 471:
#line 2624 "parse.y"
{ ;
break;}
case 472:
#line 2626 "parse.y"
{ error ("missing ';' before right brace");
yyungetc ('}', 0); ;
break;}
case 473:
#line 2631 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 474:
#line 2633 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 475:
#line 2635 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 476:
#line 2637 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 477:
#line 2639 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 478:
#line 2647 "parse.y"
{ yyval.ttype = grok_x_components (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 479:
#line 2649 "parse.y"
{ yyval.ttype = grok_x_components (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 480:
#line 2651 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
break;}
case 481:
#line 2654 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
break;}
case 482:
#line 2656 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 483:
#line 2667 "parse.y"
{ tree specs, attrs;
split_specs_attrs (yyvsp[-8].ttype, &specs, &attrs);
yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (specs),
yyvsp[-6].ttype, yyvsp[-4].ttype);
yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (specs), yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, attrs)); ;
break;}
case 484:
#line 2674 "parse.y"
{ tree specs, attrs;
split_specs_attrs (yyvsp[-6].ttype, &specs, &attrs);
yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (specs),
empty_parms (), yyvsp[-4].ttype);
yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (specs), yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, attrs)); ;
break;}
case 485:
#line 2681 "parse.y"
{ yyval.ttype = do_class_using_decl (yyvsp[0].ttype); ;
break;}
case 486:
#line 2688 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 488:
#line 2691 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
if (yyval.ttype == void_type_node)
yyval.ttype = yyvsp[0].ttype;
else
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
case 489:
#line 2703 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 491:
#line 2706 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
if (yyval.ttype == void_type_node)
yyval.ttype = yyvsp[0].ttype;
else
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
case 496:
#line 2728 "parse.y"
{ split_specs_attrs (yyvsp[-5].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[-5].ttype = current_declspecs;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 497:
#line 2734 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 498:
#line 2743 "parse.y"
{ split_specs_attrs (yyvsp[-5].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[-5].ttype = current_declspecs;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 499:
#line 2749 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 500:
#line 2755 "parse.y"
{ split_specs_attrs (yyvsp[-3].ttype, ¤t_declspecs,
&prefix_attributes);
yyvsp[-3].ttype = current_declspecs;
yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 501:
#line 2764 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 502:
#line 2767 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 503:
#line 2773 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 504:
#line 2776 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 505:
#line 2779 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 507:
#line 2790 "parse.y"
{ TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 508:
#line 2795 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
break;}
case 509:
#line 2797 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 510:
#line 2803 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 511:
#line 2805 "parse.y"
{ yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
break;}
case 512:
#line 2809 "parse.y"
{
if (pedantic)
pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
;
break;}
case 513:
#line 2819 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 514:
#line 2821 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 515:
#line 2826 "parse.y"
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
break;}
case 516:
#line 2828 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 517:
#line 2835 "parse.y"
{ yyval.itype = suspend_momentary (); ;
break;}
case 518:
#line 2840 "parse.y"
{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
break;}
case 519:
#line 2846 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 520:
#line 2848 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 521:
#line 2850 "parse.y"
{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = empty_parms (); ;
break;}
case 522:
#line 2852 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = NULL_TREE; ;
break;}
case 523:
#line 2859 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 524:
#line 2861 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 525:
#line 2863 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 526:
#line 2865 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 527:
#line 2867 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 529:
#line 2875 "parse.y"
{
/* Remember that this name has been used in the class
definition, as per [class.scope0] */
if (current_class_type
&& TYPE_BEING_DEFINED (current_class_type)
&& ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
{
tree t = lookup_name (yyval.ttype, -2);
if (t)
pushdecl_class_level (t);
}
;
break;}
case 531:
#line 2892 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 532:
#line 2897 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 533:
#line 2899 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 534:
#line 2901 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 535:
#line 2903 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 536:
#line 2905 "parse.y"
{ push_nested_class (TREE_TYPE (yyval.ttype), 3);
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
break;}
case 538:
#line 2916 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 539:
#line 2918 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 540:
#line 2920 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 541:
#line 2922 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 542:
#line 2924 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 544:
#line 2932 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 545:
#line 2934 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 546:
#line 2936 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 547:
#line 2938 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 548:
#line 2940 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 550:
#line 2948 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 551:
#line 2950 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 552:
#line 2952 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 553:
#line 2954 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 554:
#line 2956 "parse.y"
{ if (TREE_TYPE (OP0 (yyval.ttype)) != current_class_type)
{
push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth;
}
;
break;}
case 555:
#line 2966 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 556:
#line 2972 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 558:
#line 2979 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 559:
#line 2984 "parse.y"
{ yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 560:
#line 2986 "parse.y"
{ yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 561:
#line 2988 "parse.y"
{ yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 565:
#line 2999 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 566:
#line 3006 "parse.y"
{ got_scope = TREE_TYPE (yyval.ttype); ;
break;}
case 567:
#line 3008 "parse.y"
{ got_scope = yyval.ttype; ;
break;}
case 568:
#line 3010 "parse.y"
{ got_scope = TREE_TYPE (yyval.ttype); ;
break;}
case 570:
#line 3026 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 572:
#line 3032 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 573:
#line 3037 "parse.y"
{ got_scope = NULL_TREE; ;
break;}
case 574:
#line 3039 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
break;}
case 575:
#line 3046 "parse.y"
{ got_scope = void_type_node; ;
break;}
case 576:
#line 3052 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 577:
#line 3054 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 578:
#line 3056 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 579:
#line 3058 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 580:
#line 3060 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
case 581:
#line 3064 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 583:
#line 3073 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 584:
#line 3075 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 585:
#line 3081 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 586:
#line 3083 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 587:
#line 3085 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 588:
#line 3087 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 589:
#line 3089 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 590:
#line 3091 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 591:
#line 3093 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 592:
#line 3095 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 593:
#line 3097 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
case 594:
#line 3101 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 596:
#line 3110 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 598:
#line 3114 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 599:
#line 3116 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
break;}
case 600:
#line 3118 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 601:
#line 3120 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 602:
#line 3122 "parse.y"
{ yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 603:
#line 3124 "parse.y"
{ TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
break;}
case 604:
#line 3126 "parse.y"
{ TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
break;}
case 605:
#line 3128 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 606:
#line 3130 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
break;}
case 612:
#line 3152 "parse.y"
{ emit_line_note (input_filename, lineno);
pushlevel (0);
clear_last_expr ();
push_momentary ();
expand_start_bindings (0); ;
break;}
case 613:
#line 3160 "parse.y"
{ expand_end_bindings (getdecls (), kept_level_p (), 1);
yyval.ttype = poplevel (kept_level_p (), 1, 0);
pop_momentary (); ;
break;}
case 615:
#line 3170 "parse.y"
{ if (pedantic)
pedwarn ("ANSI C++ forbids label declarations"); ;
break;}
case 618:
#line 3181 "parse.y"
{ tree link;
for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
{
tree label = shadow_label (TREE_VALUE (link));
C_DECLARED_LABEL_FLAG (label) = 1;
declare_nonlocal_label (label);
}
;
break;}
case 619:
#line 3195 "parse.y"
{;
break;}
case 621:
#line 3200 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 622:
#line 3205 "parse.y"
{ cond_stmt_keyword = "if"; ;
break;}
case 623:
#line 3207 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_start_cond (yyvsp[0].ttype, 0); ;
break;}
case 625:
#line 3214 "parse.y"
{ finish_stmt (); ;
break;}
case 626:
#line 3216 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 627:
#line 3221 "parse.y"
{ finish_stmt (); ;
break;}
case 629:
#line 3227 "parse.y"
{ finish_stmt (); ;
break;}
case 630:
#line 3229 "parse.y"
{
tree expr = yyvsp[-1].ttype;
emit_line_note (input_filename, lineno);
/* Do default conversion if safe and possibly important,
in case within ({...}). */
if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
&& lvalue_p (expr))
|| TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
expr = default_conversion (expr);
cplus_expand_expr_stmt (expr);
clear_momentary ();
finish_stmt (); ;
break;}
case 631:
#line 3242 "parse.y"
{ expand_start_else (); ;
break;}
case 632:
#line 3244 "parse.y"
{ expand_end_cond (); ;
break;}
case 633:
#line 3246 "parse.y"
{ finish_stmt (); ;
break;}
case 634:
#line 3248 "parse.y"
{ expand_end_cond ();
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
pop_momentary ();
finish_stmt (); ;
break;}
case 635:
#line 3254 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop (1);
cond_stmt_keyword = "while"; ;
break;}
case 636:
#line 3259 "parse.y"
{ expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
break;}
case 637:
#line 3261 "parse.y"
{ expand_end_loop ();
finish_stmt (); ;
break;}
case 638:
#line 3264 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop_continue_elsewhere (1); ;
break;}
case 639:
#line 3268 "parse.y"
{ expand_loop_continue_here ();
cond_stmt_keyword = "do"; ;
break;}
case 640:
#line 3271 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_exit_loop_if_false (0, yyvsp[-1].ttype);
expand_end_loop ();
clear_momentary ();
finish_stmt (); ;
break;}
case 641:
#line 3277 "parse.y"
{ emit_line_note (input_filename, lineno);
if (flag_new_for_scope > 0)
{
/* Conditionalize .pushlevel */
pushlevel (0);
note_level_for_for ();
clear_last_expr ();
push_momentary ();
expand_start_bindings (0);
}
;
break;}
case 642:
#line 3289 "parse.y"
{ emit_nop ();
emit_line_note (input_filename, lineno);
expand_start_loop_continue_elsewhere (1); ;
break;}
case 643:
#line 3293 "parse.y"
{ emit_line_note (input_filename, lineno);
if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
break;}
case 644:
#line 3298 "parse.y"
{ push_momentary (); ;
break;}
case 645:
#line 3300 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_loop_continue_here ();
if (yyvsp[-4].ttype) cplus_expand_expr_stmt (yyvsp[-4].ttype);
pop_momentary ();
expand_end_loop ();
if (flag_new_for_scope > 0)
{
expand_end_bindings (getdecls (), kept_level_p (), 1);
poplevel (kept_level_p (), 1, 0);
pop_momentary ();
}
finish_stmt (); ;
break;}
case 646:
#line 3313 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_start_case (yyvsp[-1].ttype);
push_switch ();
/* Don't let the tree nodes for $4 be discarded by
clear_momentary during the parsing of the next stmt. */
push_momentary (); ;
break;}
case 647:
#line 3320 "parse.y"
{ expand_end_case (yyvsp[-3].ttype);
pop_momentary ();
pop_switch (); ;
break;}
case 648:
#line 3324 "parse.y"
{ finish_stmt (); ;
break;}
case 649:
#line 3326 "parse.y"
{ register tree value = check_cp_case_value (yyvsp[-1].ttype);
register tree label
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
if (value != error_mark_node)
{
tree duplicate;
int success = pushcase (value, convert_and_check,
label, &duplicate);
if (success == 1)
cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
else if (success == 2)
{
cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
cp_error_at ("previously used here", duplicate);
}
else if (success == 3)
warning ("case value out of range");
else if (success == 5)
cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
}
define_case_label (label);
;
break;}
case 651:
#line 3351 "parse.y"
{ register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
register tree label
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
if (pedantic)
pedwarn ("ANSI C++ forbids range expressions in switch statement");
if (value1 != error_mark_node
&& value2 != error_mark_node)
{
tree duplicate;
int success = pushcase_range (value1, value2,
convert_and_check, label,
&duplicate);
if (success == 1)
error ("case label not within a switch statement");
else if (success == 2)
{
error ("duplicate (or overlapping) case value");
error_with_decl (duplicate, "this is the first entry overlapping that value");
}
else if (success == 3)
warning ("case value out of range");
else if (success == 4)
warning ("empty range specified");
else if (success == 5)
error ("case label within scope of cleanup or variable array");
}
define_case_label (label);
;
break;}
case 653:
#line 3383 "parse.y"
{
tree duplicate;
register tree label
= build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
int success = pushcase (NULL_TREE, 0, label, &duplicate);
if (success == 1)
error ("default label not within a switch statement");
else if (success == 2)
{
error ("multiple default labels in one switch");
error_with_decl (duplicate, "this is the first default label");
}
define_case_label (NULL_TREE);
;
break;}
case 655:
#line 3399 "parse.y"
{ emit_line_note (input_filename, lineno);
if ( ! expand_exit_something ())
error ("break statement not within loop or switch"); ;
break;}
case 656:
#line 3403 "parse.y"
{ emit_line_note (input_filename, lineno);
if (! expand_continue_loop (0))
error ("continue statement not within a loop"); ;
break;}
case 657:
#line 3407 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_return (NULL_TREE); ;
break;}
case 658:
#line 3410 "parse.y"
{ emit_line_note (input_filename, lineno);
c_expand_return (yyvsp[-1].ttype);
finish_stmt ();
;
break;}
case 659:
#line 3415 "parse.y"
{ if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
emit_line_note (input_filename, lineno);
expand_asm (yyvsp[-2].ttype);
finish_stmt ();
;
break;}
case 660:
#line 3422 "parse.y"
{ if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
emit_line_note (input_filename, lineno);
c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
input_filename, lineno);
finish_stmt ();
;
break;}
case 661:
#line 3431 "parse.y"
{ if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
emit_line_note (input_filename, lineno);
c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
input_filename, lineno);
finish_stmt ();
;
break;}
case 662:
#line 3441 "parse.y"
{ if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
emit_line_note (input_filename, lineno);
c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
input_filename, lineno);
finish_stmt ();
;
break;}
case 663:
#line 3449 "parse.y"
{ emit_line_note (input_filename, lineno);
expand_computed_goto (yyvsp[-1].ttype); ;
break;}
case 664:
#line 3452 "parse.y"
{ tree decl;
emit_line_note (input_filename, lineno);
decl = lookup_label (yyvsp[-1].ttype);
TREE_USED (decl) = 1;
expand_goto (decl); ;
break;}
case 665:
#line 3458 "parse.y"
{ finish_stmt (); ;
break;}
case 666:
#line 3460 "parse.y"
{ error ("label must be followed by statement");
yyungetc ('}', 0);
finish_stmt (); ;
break;}
case 667:
#line 3464 "parse.y"
{ finish_stmt (); ;
break;}
case 669:
#line 3470 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
expand_start_early_try_stmts ();
;
break;}
case 670:
#line 3476 "parse.y"
{ expand_end_try_stmts ();
expand_start_all_catch (); ;
break;}
case 671:
#line 3479 "parse.y"
{
expand_end_all_catch ();
finish_function (lineno, (int)yyvsp[-3].itype, 0);
;
break;}
case 672:
#line 3487 "parse.y"
{ expand_start_try_stmts (); ;
break;}
case 673:
#line 3489 "parse.y"
{ expand_end_try_stmts ();
expand_start_all_catch (); ;
break;}
case 674:
#line 3492 "parse.y"
{ expand_end_all_catch (); ;
break;}
case 676:
#line 3498 "parse.y"
{ dont_allow_type_definitions = "inside exception declarations"; ;
break;}
case 677:
#line 3500 "parse.y"
{ dont_allow_type_definitions = 0; ;
break;}
case 678:
#line 3502 "parse.y"
{ expand_end_catch_block (); ;
break;}
case 682:
#line 3513 "parse.y"
{ expand_start_catch_block (NULL_TREE, NULL_TREE); ;
break;}
case 683:
#line 3525 "parse.y"
{ expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
TREE_VALUE (yyvsp[-1].ttype)); ;
break;}
case 684:
#line 3531 "parse.y"
{ tree label;
do_label:
label = define_label (input_filename, lineno, yyvsp[-1].ttype);
if (label)
expand_label (label);
;
break;}
case 685:
#line 3538 "parse.y"
{ goto do_label; ;
break;}
case 686:
#line 3540 "parse.y"
{ goto do_label; ;
break;}
case 687:
#line 3545 "parse.y"
{ if (yyvsp[-1].ttype) cplus_expand_expr_stmt (yyvsp[-1].ttype); ;
break;}
case 690:
#line 3554 "parse.y"
{ emit_line_note (input_filename, lineno);
yyval.ttype = NULL_TREE; ;
break;}
case 691:
#line 3557 "parse.y"
{ emit_line_note (input_filename, lineno); ;
break;}
case 692:
#line 3562 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 694:
#line 3565 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 695:
#line 3571 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 698:
#line 3578 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 699:
#line 3583 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 700:
#line 3588 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
break;}
case 701:
#line 3590 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 702:
#line 3600 "parse.y"
{
if (strict_prototype)
yyval.ttype = void_list_node;
else
yyval.ttype = NULL_TREE;
;
break;}
case 704:
#line 3608 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1; ;
break;}
case 705:
#line 3616 "parse.y"
{
yyval.ttype = chainon (yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 706:
#line 3621 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 707:
#line 3626 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 708:
#line 3630 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 709:
#line 3635 "parse.y"
{
/* ARM $8.2.5 has this as a boxed-off comment. */
if (pedantic)
warning ("use of `...' without a first argument is non-portable");
yyval.ttype = NULL_TREE;
;
break;}
case 710:
#line 3642 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 711:
#line 3646 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 712:
#line 3650 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 713:
#line 3655 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
parenthesis. */
yyerror ("possibly missing ')'");
yyval.ttype = chainon (yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
yyungetc (':', 0);
yychar = ')';
;
break;}
case 714:
#line 3666 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
parenthesis. */
yyerror ("possibly missing ')'");
yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
yyungetc (':', 0);
yychar = ')';
;
break;}
case 715:
#line 3681 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 716:
#line 3683 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
break;}
case 717:
#line 3685 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 718:
#line 3687 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 719:
#line 3689 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
break;}
case 721:
#line 3695 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 722:
#line 3720 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = build_tree_list (specs, yyvsp[0].ttype); ;
break;}
case 723:
#line 3723 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 724:
#line 3725 "parse.y"
{ yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
break;}
case 725:
#line 3727 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = build_tree_list (specs, yyvsp[0].ttype); ;
break;}
case 726:
#line 3730 "parse.y"
{ tree specs = strip_attrs (yyvsp[0].ttype);
yyval.ttype = build_tree_list (specs, NULL_TREE); ;
break;}
case 727:
#line 3733 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = build_tree_list (specs, yyvsp[0].ttype); ;
break;}
case 728:
#line 3739 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
break;}
case 731:
#line 3748 "parse.y"
{ see_typename (); ;
break;}
case 732:
#line 3771 "parse.y"
{
error ("type specifier omitted for parameter");
yyval.ttype = build_tree_list (integer_type_node, NULL_TREE);
;
break;}
case 733:
#line 3776 "parse.y"
{
error ("type specifier omitted for parameter");
yyval.ttype = build_tree_list (integer_type_node, yyval.ttype);
;
break;}
case 734:
#line 3784 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 735:
#line 3786 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 736:
#line 3788 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, NULL_TREE); ;
break;}
case 737:
#line 3793 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, groktypename(yyval.ttype)); ;
break;}
case 739:
#line 3799 "parse.y"
{
TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 740:
#line 3807 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 741:
#line 3809 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 742:
#line 3811 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 743:
#line 3813 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 744:
#line 3819 "parse.y"
{ got_scope = NULL_TREE; ;
break;}
case 745:
#line 3824 "parse.y"
{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
break;}
case 746:
#line 3826 "parse.y"
{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
break;}
case 747:
#line 3828 "parse.y"
{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
break;}
case 748:
#line 3830 "parse.y"
{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
break;}
case 749:
#line 3832 "parse.y"
{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
break;}
case 750:
#line 3834 "parse.y"
{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
break;}
case 751:
#line 3836 "parse.y"
{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
break;}
case 752:
#line 3838 "parse.y"
{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
break;}
case 753:
#line 3840 "parse.y"
{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
break;}
case 754:
#line 3842 "parse.y"
{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
break;}
case 755:
#line 3844 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 756:
#line 3846 "parse.y"
{ yyval.ttype = ansi_opname[LT_EXPR]; ;
break;}
case 757:
#line 3848 "parse.y"
{ yyval.ttype = ansi_opname[GT_EXPR]; ;
break;}
case 758:
#line 3850 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 759:
#line 3852 "parse.y"
{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
break;}
case 760:
#line 3854 "parse.y"
{ yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
break;}
case 761:
#line 3856 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 762:
#line 3858 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 763:
#line 3860 "parse.y"
{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
break;}
case 764:
#line 3862 "parse.y"
{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
break;}
case 765:
#line 3864 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
break;}
case 766:
#line 3866 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
break;}
case 767:
#line 3868 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
break;}
case 768:
#line 3870 "parse.y"
{ yyval.ttype = ansi_opname[COND_EXPR]; ;
break;}
case 769:
#line 3872 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 770:
#line 3874 "parse.y"
{ yyval.ttype = ansi_opname[COMPONENT_REF]; ;
break;}
case 771:
#line 3876 "parse.y"
{ yyval.ttype = ansi_opname[MEMBER_REF]; ;
break;}
case 772:
#line 3878 "parse.y"
{ yyval.ttype = ansi_opname[CALL_EXPR]; ;
break;}
case 773:
#line 3880 "parse.y"
{ yyval.ttype = ansi_opname[ARRAY_REF]; ;
break;}
case 774:
#line 3882 "parse.y"
{ yyval.ttype = ansi_opname[NEW_EXPR]; ;
break;}
case 775:
#line 3884 "parse.y"
{ yyval.ttype = ansi_opname[DELETE_EXPR]; ;
break;}
case 776:
#line 3886 "parse.y"
{ yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
break;}
case 777:
#line 3888 "parse.y"
{ yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
break;}
case 778:
#line 3891 "parse.y"
{ yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 779:
#line 3893 "parse.y"
{ yyval.ttype = ansi_opname[ERROR_MARK]; ;
break;}
}
/* the action file gets copied in in place of this dollarsign */
#line 487 "/usr/lib/bison.simple"
yyvsp -= yylen;
yyssp -= yylen;
#ifdef YYLSP_NEEDED
yylsp -= yylen;
#endif
#if YYDEBUG != 0
if (yydebug)
{
short *ssp1 = yyss - 1;
fprintf (stderr, "state stack now");
while (ssp1 != yyssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
*++yyvsp = yyval;
#ifdef YYLSP_NEEDED
yylsp++;
if (yylen == 0)
{
yylsp->first_line = yylloc.first_line;
yylsp->first_column = yylloc.first_column;
yylsp->last_line = (yylsp-1)->last_line;
yylsp->last_column = (yylsp-1)->last_column;
yylsp->text = 0;
}
else
{
yylsp->last_line = (yylsp+yylen-1)->last_line;
yylsp->last_column = (yylsp+yylen-1)->last_column;
}
#endif
/* Now "shift" the result of the reduction.
Determine what state that goes to,
based on the state we popped back to
and the rule number reduced by. */
yyn = yyr1[yyn];
yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
yystate = yytable[yystate];
else
yystate = yydefgoto[yyn - YYNTBASE];
goto yynewstate;
yyerrlab: /* here on detecting error */
if (! yyerrstatus)
/* If not already recovering from an error, report this error. */
{
++yynerrs;
#ifdef YYERROR_VERBOSE
yyn = yypact[yystate];
if (yyn > YYFLAG && yyn < YYLAST)
{
int size = 0;
char *msg;
int x, count;
count = 0;
/* Start X at -yyn if nec to avoid negative indexes in yycheck. */
for (x = (yyn < 0 ? -yyn : 0);
x < (sizeof(yytname) / sizeof(char *)); x++)
if (yycheck[x + yyn] == x)
size += strlen(yytname[x]) + 15, count++;
msg = (char *) malloc(size + 15);
if (msg != 0)
{
strcpy(msg, "parse error");
if (count < 5)
{
count = 0;
for (x = (yyn < 0 ? -yyn : 0);
x < (sizeof(yytname) / sizeof(char *)); x++)
if (yycheck[x + yyn] == x)
{
strcat(msg, count == 0 ? ", expecting `" : " or `");
strcat(msg, yytname[x]);
strcat(msg, "'");
count++;
}
}
yyerror(msg);
free(msg);
}
else
yyerror ("parse error; also virtual memory exceeded");
}
else
#endif /* YYERROR_VERBOSE */
yyerror("parse error");
}
goto yyerrlab1;
yyerrlab1: /* here on error raised explicitly by an action */
if (yyerrstatus == 3)
{
/* if just tried and failed to reuse lookahead token after an error, discard it. */
/* return failure if at end of input */
if (yychar == YYEOF)
YYABORT;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
#endif
yychar = YYEMPTY;
}
/* Else will try to reuse lookahead token
after shifting the error token. */
yyerrstatus = 3; /* Each real token shifted decrements this */
goto yyerrhandle;
yyerrdefault: /* current state does not do anything special for the error token. */
#if 0
/* This is wrong; only states that explicitly want error tokens
should shift them. */
yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
if (yyn) goto yydefault;
#endif
yyerrpop: /* pop the current state because it cannot handle the error token */
if (yyssp == yyss) YYABORT;
yyvsp--;
yystate = *--yyssp;
#ifdef YYLSP_NEEDED
yylsp--;
#endif
#if YYDEBUG != 0
if (yydebug)
{
short *ssp1 = yyss - 1;
fprintf (stderr, "Error: state stack now");
while (ssp1 != yyssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
yyerrhandle:
yyn = yypact[yystate];
if (yyn == YYFLAG)
goto yyerrdefault;
yyn += YYTERROR;
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
goto yyerrdefault;
yyn = yytable[yyn];
if (yyn < 0)
{
if (yyn == YYFLAG)
goto yyerrpop;
yyn = -yyn;
goto yyreduce;
}
else if (yyn == 0)
goto yyerrpop;
if (yyn == YYFINAL)
YYACCEPT;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Shifting error token, ");
#endif
*++yyvsp = yylval;
#ifdef YYLSP_NEEDED
*++yylsp = yylloc;
#endif
yystate = yyn;
goto yynewstate;
}
#line 3896 "parse.y"
#ifdef SPEW_DEBUG
const char *
debug_yytranslate (value)
int value;
{
return yytname[YYTRANSLATE (value)];
}
#endif
|