File size: 154,146 Bytes
8e32295 |
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 |
idx_to_ef = {
"0": 0.14156871,
"1": 0.36841186,
"2": 0.44637766,
"3": 0.11669762,
"4": 0.90444911,
"5": 0.89166172,
"6": 1.3269935,
"7": 1.6128597,
"8": 1.1449589,
"9": 0.1142553499999999,
"10": 0.47474488,
"11": 0.6286931299999999,
"12": 0.4571949999999999,
"13": 0.11669762,
"14": 0.94251642,
"15": 0.43228172,
"16": 3.6272486,
"17": 5.69437,
"18": 0.4571949999999999,
"19": 0.65728362,
"20": 0.21173782,
"21": 0.47474488,
"22": 0.47474488,
"23": 0.64627035,
"24": 0.11669762,
"25": 0.5451449899999999,
"26": 1.3269935,
"27": 1.3295576,
"28": 0.11669762,
"29": 0.94251642,
"30": 0.17057189,
"31": 0.16441423,
"32": 0.11669762,
"33": 0.45645563,
"34": 0.37646693,
"35": 0.37646693,
"36": 1.0915759,
"37": 0.11026717,
"38": 0.093231189,
"39": 0.11669762,
"40": 0.18898055,
"41": 0.20699059,
"42": 0.19353798,
"43": 0.21109516,
"44": 0.13825558,
"45": 0.11669762,
"46": 0.11669762,
"47": 0.30793915,
"48": 0.53370947,
"49": 0.5350989399999999,
"50": 0.21628091,
"51": 0.064652051,
"52": 0.1315805599999999,
"53": 0.090675554,
"54": 1.3171905,
"55": 0.1309453,
"56": 0.24452345,
"57": 0.14632883,
"58": 0.41928163,
"59": 0.4289488099999999,
"60": 0.30998072,
"61": 0.1854396,
"62": 1.3175941,
"63": 0.08333266,
"64": 0.078543661,
"65": 0.18660839,
"66": 1.3171905,
"67": 0.29599382,
"68": 0.10351305,
"69": 0.7169294900000001,
"70": 1.3171905,
"71": 0.12981155,
"72": 0.11462818,
"73": 0.39723177,
"74": 0.1315805599999999,
"75": 0.39723177,
"76": 0.39723177,
"77": 0.39723177,
"78": 0.39723177,
"79": 0.39723177,
"80": 1.3171905,
"81": 1.3171905,
"82": 0.3180959299999999,
"83": 0.078543661,
"84": 0.41928163,
"85": 0.41928163,
"86": 0.14350739,
"87": 1.3171905,
"88": 0.18940731,
"89": 1.3159399,
"90": 0.13499323,
"91": 0.45353566,
"92": 0.83199636,
"93": 0.078543661,
"94": 0.40053848,
"95": 0.4556189,
"96": 0.39723177,
"97": 1.3171905,
"98": 0.25075894,
"99": 0.12981155,
"100": 0.1315805599999999,
"101": 0.1315805599999999,
"102": 0.1315805599999999,
"103": 0.0766040009999999,
"104": 1.3171905,
"105": 1.3171905,
"106": 0.45353566,
"107": 0.078543661,
"108": 0.078543661,
"109": 1.2260253,
"110": 1.2260253,
"111": 1.3171905,
"112": 1.3171905,
"113": 0.12700261,
"114": 0.18660839,
"115": 0.11462818,
"116": 0.1315805599999999,
"117": 0.1089281399999999,
"118": 0.25075894,
"119": 0.22231964,
"120": 0.2188708499999999,
"121": 0.5505116800000001,
"122": 0.099173538,
"123": 0.6400357299999999,
"124": 0.17205267,
"125": 0.40061439,
"126": 0.3862236799999999,
"127": 0.29005398,
"128": 1.2062024,
"129": 0.1377233199999999,
"130": 0.36934632,
"131": 0.51603263,
"132": 0.22682843,
"133": 0.60989951,
"134": 0.29431851,
"135": 0.11483607,
"136": 0.46087836,
"137": 0.23536279,
"138": 0.46087836,
"139": 0.24321725,
"140": 0.53902641,
"141": 0.23237477,
"142": 0.23237477,
"143": 0.16365917,
"144": 0.27348936,
"145": 0.18389249,
"146": 0.3821898999999999,
"147": 0.56386302,
"148": 0.21355444,
"149": 2.0695637,
"150": 0.21446629,
"151": 0.17437803,
"152": 0.44865308,
"153": 0.19344109,
"154": 0.45353566,
"155": 0.38901562,
"156": 0.46087836,
"157": 0.53545403,
"158": 0.1441159099999999,
"159": 0.45353566,
"160": 0.45353566,
"161": 0.37338009,
"162": 0.183557,
"163": 0.23843279,
"164": 0.40061918,
"165": 0.20198804,
"166": 0.2006914,
"167": 0.44865308,
"168": 0.18940731,
"169": 0.14353725,
"170": 0.21748254,
"171": 0.38026368,
"172": 0.22008005,
"173": 0.48520639,
"174": 0.5032995,
"175": 0.48520639,
"176": 0.4921586699999999,
"177": 0.50636509,
"178": 0.46899117,
"179": 0.48801722,
"180": 0.47384505,
"181": 0.47858485,
"182": 0.46899117,
"183": 0.46253896,
"184": 0.50712366,
"185": 0.45665574,
"186": 0.4839935,
"187": 0.4839935,
"188": 0.50611153,
"189": 0.49514017,
"190": 0.46837622,
"191": 0.49324822,
"192": 0.46558584,
"193": 0.49886867,
"194": 0.4959452899999999,
"195": 0.50174754,
"196": 0.44146274,
"197": 0.47946118,
"198": 0.45070746,
"199": 0.47741036,
"200": 0.69902156,
"201": 0.47741036,
"202": 0.5726676700000001,
"203": 0.58389027,
"204": 0.56226694,
"205": 0.57459387,
"206": 0.5807905,
"207": 0.57535793,
"208": 0.57800376,
"209": 0.57800376,
"210": 0.66728113,
"211": 0.57478522,
"212": 0.4839935,
"213": 0.57150082,
"214": 0.4839935,
"215": 0.4839935,
"216": 0.46212319,
"217": 0.4839935,
"218": 0.42775139,
"219": 0.5774568099999999,
"220": 0.53240512,
"221": 0.7656641000000001,
"222": 0.5167100299999999,
"223": 0.4959452899999999,
"224": 0.50712366,
"225": 0.50737582,
"226": 0.50863154,
"227": 0.48004045,
"228": 0.5140568400000001,
"229": 0.4959452899999999,
"230": 0.5129767599999999,
"231": 0.5498466,
"232": 0.5498466,
"233": 0.55638425,
"234": 0.55638425,
"235": 0.58023706,
"236": 0.55336438,
"237": 0.56350108,
"238": 0.55531186,
"239": 0.5726676700000001,
"240": 0.5883395100000001,
"241": 0.53837211,
"242": 0.58115836,
"243": 0.55358186,
"244": 0.66728113,
"245": 0.50885278,
"246": 0.55183419,
"247": 0.50885278,
"248": 0.50885278,
"249": 0.5335662800000001,
"250": 0.52874515,
"251": 0.52512851,
"252": 0.52512851,
"253": 0.55467747,
"254": 1.0576641999999998,
"255": 0.53184931,
"256": 0.90551398,
"257": 0.93926619,
"258": 0.9055138,
"259": 0.74800281,
"260": 0.8380091900000001,
"261": 0.87507933,
"262": 0.8267582099999999,
"263": 1.119279,
"264": 0.83465212,
"265": 1.119279,
"266": 0.69902156,
"267": 0.60449872,
"268": 1.006771,
"269": 1.0967774,
"270": 1.1642821,
"271": 1.1642821,
"272": 1.006771,
"273": 1.006771,
"274": 0.95051699,
"275": 0.9055138,
"276": 0.95051699,
"277": 0.91676459,
"278": 0.8830122,
"279": 0.97301858,
"280": 0.11235591,
"281": 0.38921189,
"282": 0.1788394499999999,
"283": 0.33159514,
"284": 0.23374772,
"285": 0.54893393,
"286": 0.17081395,
"287": 0.078235919,
"288": 0.35221175,
"289": 0.21634628,
"290": 0.56613579,
"291": 0.12976961,
"292": 0.3160788,
"293": 0.11161584,
"294": 0.072805715,
"295": 0.23123566,
"296": 0.27443628,
"297": 0.16879149,
"298": 0.18233194,
"299": 0.20074017,
"300": 0.15098172,
"301": 0.28264034,
"302": 0.2759608899999999,
"303": 0.14783424,
"304": 0.099888397,
"305": 0.087689974,
"306": 0.12185375,
"307": 0.51852116,
"308": 2.005173,
"309": 0.0816986869999999,
"310": 0.0816986869999999,
"311": 0.26133073,
"312": 0.075658608,
"313": 0.064749708,
"314": 0.087689974,
"315": 0.33731186,
"316": 0.12016768,
"317": 0.13753738,
"318": 0.064749708,
"319": 0.55947387,
"320": 0.5160091,
"321": 0.087689974,
"322": 0.12376491,
"323": 0.1128955,
"324": 0.5182849500000001,
"325": 0.47096846,
"326": 0.0816986869999999,
"327": 0.65884955,
"328": 4.3370642,
"329": 0.20149326,
"330": 0.1738727199999999,
"331": 0.11733174,
"332": 0.34902781,
"333": 0.20808625,
"334": 0.38450612,
"335": 0.13091212,
"336": 0.34235437,
"337": 0.1244643199999999,
"338": 0.12861913,
"339": 0.11179913,
"340": 0.11179913,
"341": 0.19936392,
"342": 0.18700214,
"343": 0.1705831,
"344": 0.1705831,
"345": 0.1705831,
"346": 0.54733219,
"347": 0.54733219,
"348": 0.19103592,
"349": 0.19103592,
"350": 0.19103592,
"351": 0.14668747,
"352": 0.2572604,
"353": 0.15231792,
"354": 0.15231792,
"355": 0.10049641,
"356": 0.10049641,
"357": 0.24769773,
"358": 0.1504433399999999,
"359": 0.24990806,
"360": 0.1504433399999999,
"361": 0.3230584999999999,
"362": 0.18128989,
"363": 0.1064407,
"364": 0.3160788,
"365": 0.7603475399999999,
"366": 0.5807957600000001,
"367": 0.5807957600000001,
"368": 0.85461776,
"369": 0.94698476,
"370": 0.42884659,
"371": 0.42884659,
"372": 0.6018362100000001,
"373": 0.6946515400000001,
"374": 1.0186144,
"375": 0.4003384299999999,
"376": 0.3902179799999999,
"377": 0.42884659,
"378": 0.35331665,
"379": 0.44500815,
"380": 0.6786686599999999,
"381": 0.50054009,
"382": 0.4681698,
"383": 0.94698476,
"384": 0.49656791,
"385": 0.5807957600000001,
"386": 0.90993325,
"387": 0.90993325,
"388": 0.8717691999999999,
"389": 0.8717691999999999,
"390": 0.87687937,
"391": 0.56267905,
"392": 1.0186144,
"393": 0.5807957600000001,
"394": 1.0186144,
"395": 0.36275497,
"396": 0.7603475399999999,
"397": 0.7603475399999999,
"398": 0.90993325,
"399": 0.6946515400000001,
"400": 0.4003384299999999,
"401": 0.90993325,
"402": 0.8717691999999999,
"403": 0.44500815,
"404": 0.44500815,
"405": 0.87687937,
"406": 0.56267905,
"407": 0.56435503,
"408": 0.48218279,
"409": 0.53269903,
"410": 1.2913296,
"411": 0.39703826,
"412": 0.3826330599999999,
"413": 0.42616987,
"414": 0.4645357699999999,
"415": 0.73447905,
"416": 0.7343835599999999,
"417": 0.7292086600000001,
"418": 0.7292086600000001,
"419": 0.73447905,
"420": 0.6779845,
"421": 0.67537667,
"422": 0.59382404,
"423": 0.2060567,
"424": 0.2060567,
"425": 0.21117884,
"426": 0.21117884,
"427": 0.3665766199999999,
"428": 0.32998889,
"429": 0.4934383899999999,
"430": 0.44487444,
"431": 0.23750199,
"432": 0.22305725,
"433": 0.22620459,
"434": 0.2809783899999999,
"435": 0.29149888,
"436": 0.29289599,
"437": 0.2795141599999999,
"438": 0.27978115,
"439": 0.21260035,
"440": 0.33573054,
"441": 0.33573054,
"442": 0.29353404,
"443": 0.29353404,
"444": 0.98179023,
"445": 1.364513,
"446": 0.33071262,
"447": 0.8829519100000001,
"448": 0.6608056,
"449": 0.4780442099999999,
"450": 1.5696508,
"451": 0.59092455,
"452": 0.17988682,
"453": 0.33071262,
"454": 0.3675406899999999,
"455": 0.3956131699999999,
"456": 0.18493479,
"457": 0.18493479,
"458": 0.18493479,
"459": 0.36954531,
"460": 0.40730957,
"461": 1.8358611,
"462": 0.11146884,
"463": 4.339617700000001,
"464": 0.086264229,
"465": 0.17267454,
"466": 0.050783593,
"467": 0.086264229,
"468": 0.086264229,
"469": 0.10104288,
"470": 0.086264229,
"471": 0.15410196,
"472": 0.086264229,
"473": 0.072478918,
"474": 0.012940545,
"475": 0.050783593,
"476": 0.012940545,
"477": 0.09913837,
"478": 0.086264229,
"479": 0.050783593,
"480": 0.050783593,
"481": 0.072478918,
"482": 0.086264229,
"483": 0.086264229,
"484": 0.097630551,
"485": 0.062999031,
"486": 0.072478918,
"487": 0.021063881,
"488": 0.086264229,
"489": 0.10104288,
"490": 0.086264229,
"491": 0.086264229,
"492": 4.4554581,
"493": 0.1146654,
"494": 0.11146884,
"495": 0.26426993,
"496": 0.25751296,
"497": 0.10104288,
"498": 0.086264229,
"499": 1.2630745,
"500": 1.3067005,
"501": 0.13206598,
"502": 0.1322457199999999,
"503": 0.0611398829999999,
"504": 2.0715283,
"505": 0.0646810449999999,
"506": 0.020121354,
"507": 0.2942368,
"508": 0.012940545,
"509": 0.012940545,
"510": 0.012940545,
"511": 1.0294469,
"512": 0.14368608,
"513": 0.2942368,
"514": 1.0337388,
"515": 1.3067005,
"516": 1.3067005,
"517": 0.10571732,
"518": 0.09913837,
"519": 0.09913837,
"520": 0.09913837,
"521": 0.050783593,
"522": 0.2191643,
"523": 0.086264229,
"524": 0.050783593,
"525": 0.079432842,
"526": 0.079432842,
"527": 0.035859011,
"528": 0.04389879,
"529": 0.046553064,
"530": 0.046553064,
"531": 0.046553064,
"532": 0.061251508,
"533": 0.07778404,
"534": 0.14577517,
"535": 0.13163249,
"536": 0.14466459,
"537": 0.14466459,
"538": 1.527918,
"539": 0.13790575,
"540": 0.13790575,
"541": 0.23057785,
"542": 0.23057785,
"543": 0.12136178,
"544": 0.12136178,
"545": 0.12136178,
"546": 1.527918,
"547": 0.10998779,
"548": 0.10998779,
"549": 1.527918,
"550": 0.12136178,
"551": 0.15316255,
"552": 0.15316255,
"553": 0.20474611,
"554": 0.20474611,
"555": 0.20474611,
"556": 0.25736379,
"557": 0.35363011,
"558": 0.34052576,
"559": 0.1773132899999999,
"560": 0.23867078,
"561": 0.2516305399999999,
"562": 0.2005544,
"563": 0.21617512,
"564": 0.46212319,
"565": 0.21617512,
"566": 0.21617512,
"567": 0.1825948,
"568": 0.27344677,
"569": 0.24319805,
"570": 0.29345753,
"571": 0.24987562,
"572": 0.2429906399999999,
"573": 0.25652759,
"574": 0.15902364,
"575": 0.16552284,
"576": 0.25652759,
"577": 0.39203084,
"578": 0.24987562,
"579": 0.24987562,
"580": 0.24987562,
"581": 0.24987562,
"582": 0.4339906,
"583": 0.24987562,
"584": 0.2196269,
"585": 0.2196269,
"586": 0.22306491,
"587": 0.16182397,
"588": 0.47744366,
"589": 0.16607235,
"590": 0.1864433499999999,
"591": 0.22005549,
"592": 0.17599937,
"593": 0.1833877,
"594": 0.1833877,
"595": 0.16607235,
"596": 0.19255465,
"597": 0.23329664,
"598": 0.1833877,
"599": 0.17513803,
"600": 0.21517113,
"601": 0.1690294399999999,
"602": 0.16196083,
"603": 0.32179502,
"604": 0.16196083,
"605": 0.2178597,
"606": 0.11571428,
"607": 0.33939459,
"608": 0.12205852,
"609": 0.10330874,
"610": 1.6408773,
"611": 0.1524854699999999,
"612": 0.1675925499999999,
"613": 0.36116558,
"614": 0.2196269,
"615": 0.58997661,
"616": 0.12914324,
"617": 0.10766449,
"618": 0.058016574,
"619": 0.13004784,
"620": 0.11435665,
"621": 0.11290793,
"622": 0.055678036,
"623": 0.075220957,
"624": 0.1317427,
"625": 0.080990062,
"626": 0.11685771,
"627": 0.25900404,
"628": 0.057580939,
"629": 0.19467484,
"630": 0.1171618,
"631": 0.0816052529999999,
"632": 0.069254115,
"633": 0.12060346,
"634": 0.087694697,
"635": 0.11270856,
"636": 0.18034017,
"637": 0.1620015,
"638": 0.12057694,
"639": 0.0999990489999999,
"640": 0.063478954,
"641": 0.10920413,
"642": 0.17736716,
"643": 0.14720212,
"644": 0.12057694,
"645": 0.096268121,
"646": 0.14942252,
"647": 0.10775027,
"648": 0.13286672,
"649": 0.0857193429999999,
"650": 0.056485064,
"651": 0.11290793,
"652": 0.091555741,
"653": 0.067171448,
"654": 0.1873779,
"655": 0.17004208,
"656": 0.20218634,
"657": 0.10833489,
"658": 0.35387889,
"659": 0.070759189,
"660": 0.086921607,
"661": 0.065009058,
"662": 0.093692418,
"663": 0.067048247,
"664": 0.045614261,
"665": 0.082130335,
"666": 0.086711419,
"667": 0.11066476,
"668": 0.17581615,
"669": 0.17688504,
"670": 0.065149565,
"671": 0.17887801,
"672": 0.18886892,
"673": 0.37947959,
"674": 0.084219901,
"675": 0.2081478299999999,
"676": 0.099743728,
"677": 0.19643111,
"678": 0.11517949,
"679": 0.11689278,
"680": 0.12060854,
"681": 0.12461145,
"682": 0.09196516,
"683": 0.15557494,
"684": 0.10775027,
"685": 0.16283514,
"686": 0.10775027,
"687": 0.16283514,
"688": 0.056485064,
"689": 0.1583464,
"690": 0.055678036,
"691": 0.12071682,
"692": 0.12244954,
"693": 0.062847785,
"694": 0.12057694,
"695": 0.2480420099999999,
"696": 0.082851833,
"697": 0.15722083,
"698": 0.10078276,
"699": 0.087245337,
"700": 0.064906277,
"701": 0.091555741,
"702": 0.025462227,
"703": 0.1562460899999999,
"704": 0.1924154,
"705": 0.10116413,
"706": 0.1339098,
"707": 0.083475063,
"708": 0.29148773,
"709": 0.0857193429999999,
"710": 0.0857193429999999,
"711": 0.10775027,
"712": 0.18886892,
"713": 0.19957021,
"714": 0.088233683,
"715": 0.087245337,
"716": 0.0857193429999999,
"717": 0.084219901,
"718": 0.10775027,
"719": 0.13071537,
"720": 0.10282916,
"721": 0.12057694,
"722": 0.067171448,
"723": 0.12786703,
"724": 1.1531033,
"725": 0.065009058,
"726": 0.10116413,
"727": 0.26223191,
"728": 1.7886035,
"729": 0.098073159,
"730": 0.12471866,
"731": 0.059416504,
"732": 0.21866577,
"733": 0.12057694,
"734": 0.088351565,
"735": 0.065009058,
"736": 0.1648699099999999,
"737": 0.16966704,
"738": 0.11704113,
"739": 0.10737264,
"740": 0.1566852,
"741": 0.16643406,
"742": 0.12057694,
"743": 0.078907625,
"744": 0.12914324,
"745": 0.1317427,
"746": 0.18769747,
"747": 0.15722083,
"748": 0.10737264,
"749": 0.12849974,
"750": 0.14177126,
"751": 0.10153115,
"752": 0.1669104,
"753": 0.1420707,
"754": 0.1477471,
"755": 0.12969343,
"756": 0.12969343,
"757": 0.14036472,
"758": 0.14734724,
"759": 0.14734724,
"760": 0.14734724,
"761": 0.073046465,
"762": 0.14734724,
"763": 1.7886035,
"764": 0.15407227,
"765": 0.14110744,
"766": 0.12323943,
"767": 0.10282916,
"768": 0.091371027,
"769": 0.16576199,
"770": 0.2480420099999999,
"771": 0.110881,
"772": 0.1138539599999999,
"773": 0.11870113,
"774": 0.2483247699999999,
"775": 0.59047339,
"776": 0.12471866,
"777": 0.60669791,
"778": 0.045614261,
"779": 0.13222913,
"780": 0.1583464,
"781": 0.16576199,
"782": 0.16576199,
"783": 0.12258637,
"784": 0.0862555729999999,
"785": 0.29795998,
"786": 0.12592509,
"787": 0.080990062,
"788": 0.29795998,
"789": 0.15893464,
"790": 0.13540264,
"791": 0.080888138,
"792": 0.16721612,
"793": 0.1911705799999999,
"794": 0.19467484,
"795": 0.06895598,
"796": 0.060146251,
"797": 0.11466736,
"798": 0.12600813,
"799": 0.16576199,
"800": 0.057279032,
"801": 0.12044629,
"802": 0.055852634,
"803": 0.057279032,
"804": 0.12919732,
"805": 0.0594822069999999,
"806": 0.056508331,
"807": 0.064081574,
"808": 0.1361811799999999,
"809": 0.14123716,
"810": 0.1326182699999999,
"811": 0.057279032,
"812": 0.12288009,
"813": 0.13991406,
"814": 0.12406383,
"815": 0.12406383,
"816": 0.12919732,
"817": 0.13966843,
"818": 0.12406383,
"819": 0.096560059,
"820": 0.13510677,
"821": 0.057279032,
"822": 0.25055317,
"823": 0.15324359,
"824": 0.12919732,
"825": 0.069839348,
"826": 0.069839348,
"827": 0.12406383,
"828": 0.12690721,
"829": 0.057279032,
"830": 0.5872776900000001,
"831": 0.12919732,
"832": 0.12919732,
"833": 0.0594822069999999,
"834": 0.068037891,
"835": 0.19467484,
"836": 0.19467484,
"837": 0.19467484,
"838": 0.82242627,
"839": 0.083376628,
"840": 0.1806219,
"841": 0.16463054,
"842": 0.088937617,
"843": 0.12205852,
"844": 0.16063863,
"845": 0.27608062,
"846": 0.2630390999999999,
"847": 0.13058063,
"848": 1.2260253,
"849": 1.1994911,
"850": 1.2260253,
"851": 1.2260253,
"852": 1.1994911,
"853": 1.2260253,
"854": 1.1994911,
"855": 1.1994911,
"856": 1.2260253,
"857": 3.6590455,
"858": 2.9924439,
"859": 4.5756975,
"860": 4.5769943,
"861": 3.6590455,
"862": 5.7963682,
"863": 4.5769943,
"864": 4.5769943,
"865": 4.5769943,
"866": 4.5769943,
"867": 4.5769943,
"868": 0.53566533,
"869": 0.5937076600000001,
"870": 0.5936229000000001,
"871": 0.5467776200000001,
"872": 0.6046253899999999,
"873": 0.61913036,
"874": 0.68663114,
"875": 0.53566533,
"876": 0.68642094,
"877": 0.5815279600000001,
"878": 0.5800042000000001,
"879": 0.56782073,
"880": 0.3060124999999999,
"881": 0.31470525,
"882": 0.474877,
"883": 0.31470652,
"884": 0.45234435,
"885": 0.29873593,
"886": 0.23643074,
"887": 0.5299960199999999,
"888": 0.41017763,
"889": 0.5269709499999999,
"890": 0.6507024299999999,
"891": 0.3032856799999999,
"892": 0.474877,
"893": 0.42950113,
"894": 0.25107946,
"895": 0.57176369,
"896": 0.1619503299999999,
"897": 0.23061747,
"898": 0.44904233,
"899": 0.44712912,
"900": 0.18368603,
"901": 0.36435356,
"902": 0.36435356,
"903": 0.36435356,
"904": 0.39136905,
"905": 0.39004497,
"906": 0.4018700799999999,
"907": 0.39136905,
"908": 0.39004497,
"909": 0.39136905,
"910": 0.38507549,
"911": 0.38507549,
"912": 0.26209727,
"913": 0.38402999,
"914": 0.38507549,
"915": 0.29098813,
"916": 0.29098813,
"917": 0.2377281799999999,
"918": 0.2820775,
"919": 0.31020492,
"920": 0.30930408,
"921": 0.30907901,
"922": 0.38506824,
"923": 0.23318043,
"924": 0.35655629,
"925": 0.34774,
"926": 0.19628213,
"927": 0.29502643,
"928": 0.21953473,
"929": 0.2107478,
"930": 0.38506824,
"931": 0.2312973,
"932": 0.51824938,
"933": 0.55734009,
"934": 0.23169875,
"935": 0.2524981599999999,
"936": 0.18188683,
"937": 0.25904115,
"938": 0.59531277,
"939": 0.60153009,
"940": 0.29009869,
"941": 0.29009869,
"942": 0.33808467,
"943": 0.069471586,
"944": 0.47507809,
"945": 0.47507809,
"946": 0.052343884,
"947": 0.21624926,
"948": 0.030553053,
"949": 0.22346006,
"950": 0.22346006,
"951": 0.1146135599999999,
"952": 0.25222575,
"953": 0.25222575,
"954": 0.21470569,
"955": 0.2141644899999999,
"956": 0.2141644899999999,
"957": 0.2141644899999999,
"958": 0.3690157,
"959": 0.23696844,
"960": 0.29992885,
"961": 0.40438101,
"962": 0.28944619,
"963": 0.35238069,
"964": 0.21828622,
"965": 0.22932974,
"966": 0.24977559,
"967": 0.40155622,
"968": 0.3126626999999999,
"969": 0.37905946,
"970": 0.31454391,
"971": 0.31470652,
"972": 0.50274315,
"973": 0.60153009,
"974": 0.60153009,
"975": 0.31470652,
"976": 0.35136729,
"977": 0.34482349,
"978": 0.34482349,
"979": 0.31569195,
"980": 0.34482349,
"981": 0.30698672,
"982": 0.42364268,
"983": 0.17428117,
"984": 0.41693712,
"985": 0.25263582,
"986": 0.5154371999999999,
"987": 0.4599157599999999,
"988": 0.25263582,
"989": 0.48752893,
"990": 0.34482349,
"991": 0.34482349,
"992": 0.4599157599999999,
"993": 0.30698672,
"994": 0.5154371999999999,
"995": 0.30698672,
"996": 0.4599157599999999,
"997": 0.34482349,
"998": 0.3693335499999999,
"999": 0.4599157599999999,
"1000": 0.4599157599999999,
"1001": 0.4599157599999999,
"1002": 0.4599157599999999,
"1003": 0.30698672,
"1004": 0.48752893,
"1005": 0.34482349,
"1006": 0.31569195,
"1007": 0.32160574,
"1008": 0.34335945,
"1009": 0.30228693,
"1010": 0.4599157599999999,
"1011": 0.4599157599999999,
"1012": 0.4599157599999999,
"1013": 0.30698672,
"1014": 0.34482349,
"1015": 0.5154371999999999,
"1016": 0.48752893,
"1017": 0.34482349,
"1018": 0.30698672,
"1019": 0.66996182,
"1020": 0.66996182,
"1021": 0.5154371999999999,
"1022": 0.31569195,
"1023": 0.41693712,
"1024": 0.31938193,
"1025": 0.48752893,
"1026": 0.38754546,
"1027": 0.4267796199999999,
"1028": 0.5737486700000001,
"1029": 0.27715321,
"1030": 0.30946805,
"1031": 0.30946805,
"1032": 0.35655629,
"1033": 0.5255633000000001,
"1034": 0.23892082,
"1035": 0.30698672,
"1036": 0.30698672,
"1037": 0.30698672,
"1038": 0.37132882,
"1039": 0.34482349,
"1040": 0.30714932,
"1041": 0.31569195,
"1042": 0.34482349,
"1043": 0.11436633,
"1044": 1.5480003,
"1045": 0.086461256,
"1046": 0.3147339,
"1047": 1.0917965,
"1048": 0.29487688,
"1049": 1.6026965,
"1050": 0.21048483,
"1051": 0.31239423,
"1052": 0.36182434,
"1053": 0.2147779199999999,
"1054": 0.58162732,
"1055": 2.2907913,
"1056": 1.4093466,
"1057": 0.19033582,
"1058": 0.18580579,
"1059": 0.31847513,
"1060": 0.84048809,
"1061": 0.7089422200000001,
"1062": 2.1029315,
"1063": 0.60652178,
"1064": 0.4611749699999999,
"1065": 0.73152536,
"1066": 0.54320732,
"1067": 0.58438665,
"1068": 1.2541093,
"1069": 0.51489982,
"1070": 0.79909053,
"1071": 0.40092352,
"1072": 0.30188109,
"1073": 0.18315419,
"1074": 0.5891359199999999,
"1075": 0.5955832600000001,
"1076": 2.3045214,
"1077": 0.3890320399999999,
"1078": 1.7808887,
"1079": 0.96259975,
"1080": 0.31735693,
"1081": 2.6045077,
"1082": 1.7723592,
"1083": 0.99763514,
"1084": 0.4651659199999999,
"1085": 1.6259404,
"1086": 0.30647885,
"1087": 0.34209571,
"1088": 0.30348724,
"1089": 0.36177966,
"1090": 0.39970849,
"1091": 1.458966,
"1092": 1.458966,
"1093": 0.34930143,
"1094": 0.12646281,
"1095": 0.53619984,
"1096": 0.4651659199999999,
"1097": 1.4513234,
"1098": 0.34930143,
"1099": 1.4180682,
"1100": 1.4180682,
"1101": 0.19033582,
"1102": 2.9796759,
"1103": 1.3890033000000002,
"1104": 0.42628472,
"1105": 1.7723221,
"1106": 0.8885229,
"1107": 0.34930143,
"1108": 0.34930143,
"1109": 0.25015199,
"1110": 0.5153952799999999,
"1111": 0.43747882,
"1112": 0.33586807,
"1113": 0.33586807,
"1114": 0.33586807,
"1115": 0.6831037,
"1116": 0.25835766,
"1117": 0.27889518,
"1118": 0.21048483,
"1119": 0.34263915,
"1120": 0.2112380999999999,
"1121": 0.27889518,
"1122": 0.73445025,
"1123": 1.5139134,
"1124": 0.2112380999999999,
"1125": 1.1407868,
"1126": 0.30647885,
"1127": 0.30647885,
"1128": 0.12284477,
"1129": 0.3471162,
"1130": 0.23948601,
"1131": 0.28864411,
"1132": 0.20996622,
"1133": 0.35552577,
"1134": 0.50854427,
"1135": 0.4563713199999999,
"1136": 1.3216288,
"1137": 0.8007360800000001,
"1138": 0.22689262,
"1139": 0.5577787599999999,
"1140": 0.5240642999999999,
"1141": 0.5240642999999999,
"1142": 0.4644064499999999,
"1143": 0.57703759,
"1144": 1.7034247,
"1145": 1.7187724,
"1146": 1.2909168,
"1147": 0.31020567,
"1148": 1.0410813,
"1149": 0.25606932,
"1150": 0.52717881,
"1151": 0.3326944599999999,
"1152": 0.60098631,
"1153": 1.3541202,
"1154": 0.38441922,
"1155": 0.91253695,
"1156": 0.53959713,
"1157": 0.4284266799999999,
"1158": 0.3770227399999999,
"1159": 0.60797659,
"1160": 0.39247252,
"1161": 0.25606932,
"1162": 0.44906788,
"1163": 0.76026177,
"1164": 0.834032,
"1165": 0.34964328,
"1166": 0.33665327,
"1167": 0.34376403,
"1168": 0.34376403,
"1169": 0.5335307100000001,
"1170": 0.42372065,
"1171": 0.37337736,
"1172": 0.4581105,
"1173": 0.44949524,
"1174": 0.45182353,
"1175": 0.12046376,
"1176": 0.5768649800000001,
"1177": 0.28569852,
"1178": 0.28569852,
"1179": 0.60400325,
"1180": 1.1795419,
"1181": 3.317215,
"1182": 0.63510533,
"1183": 0.38167737,
"1184": 0.12046376,
"1185": 0.5865514,
"1186": 0.8437435799999999,
"1187": 0.31569412,
"1188": 0.63878181,
"1189": 0.32848308,
"1190": 0.44121856,
"1191": 0.5768649800000001,
"1192": 0.19889005,
"1193": 0.15679996,
"1194": 0.14641667,
"1195": 0.25154618,
"1196": 0.33170796,
"1197": 0.31399628,
"1198": 0.31399628,
"1199": 0.28783752,
"1200": 0.37337736,
"1201": 0.63878181,
"1202": 0.7298973799999999,
"1203": 2.3588962,
"1204": 5.7993625,
"1205": 0.50835729,
"1206": 0.37337736,
"1207": 0.5318544199999999,
"1208": 0.50854427,
"1209": 0.44149942,
"1210": 0.2775610899999999,
"1211": 0.35334658,
"1212": 0.8437435799999999,
"1213": 0.5792542,
"1214": 0.34214555,
"1215": 0.42077521,
"1216": 0.25389468,
"1217": 0.60797659,
"1218": 1.4782097,
"1219": 0.25606932,
"1220": 0.51184111,
"1221": 0.56350608,
"1222": 0.97482646,
"1223": 0.97319849,
"1224": 0.6031572199999999,
"1225": 0.5335307100000001,
"1226": 0.14798405,
"1227": 0.37337736,
"1228": 0.38441922,
"1229": 0.5768649800000001,
"1230": 0.4581105,
"1231": 0.5240642999999999,
"1232": 0.60098631,
"1233": 0.60098631,
"1234": 0.60098631,
"1235": 0.60064918,
"1236": 0.18315419,
"1237": 0.30481652,
"1238": 0.2754951699999999,
"1239": 0.27719081,
"1240": 0.166435,
"1241": 0.15609557,
"1242": 0.80365382,
"1243": 2.7235316000000003,
"1244": 0.12057694,
"1245": 0.41125763,
"1246": 0.57516931,
"1247": 0.1317535299999999,
"1248": 0.4365331999999999,
"1249": 2.0843046000000003,
"1250": 0.33250448,
"1251": 0.22176119,
"1252": 0.39588761,
"1253": 0.31411394,
"1254": 0.16880909,
"1255": 0.48494777,
"1256": 0.36873916,
"1257": 0.37292967,
"1258": 0.38902304,
"1259": 0.071351924,
"1260": 0.01801179,
"1261": 0.081792313,
"1262": 1.4356884,
"1263": 0.1165787,
"1264": 0.068280389,
"1265": 0.14934996,
"1266": 0.26227712,
"1267": 0.45485217,
"1268": 0.072774873,
"1269": 0.062795882,
"1270": 0.50279571,
"1271": 0.1033774,
"1272": 0.138159,
"1273": 1.4701742,
"1274": 0.44705246,
"1275": 0.50720487,
"1276": 0.10306978,
"1277": 0.01801179,
"1278": 0.014999437,
"1279": 0.23864954,
"1280": 0.1248385499999999,
"1281": 0.09758649,
"1282": 0.48955574,
"1283": 0.29702344,
"1284": 0.1040531,
"1285": 0.014534356,
"1286": 0.015283788,
"1287": 0.1248385499999999,
"1288": 0.18412135,
"1289": 0.1388345399999999,
"1290": 0.41233945,
"1291": 0.2388486199999999,
"1292": 0.11564571,
"1293": 0.14811579,
"1294": 0.13975506,
"1295": 0.071351924,
"1296": 0.062795882,
"1297": 0.20389026,
"1298": 0.29896796,
"1299": 0.2438799699999999,
"1300": 1.8887829,
"1301": 0.30163713,
"1302": 0.30163713,
"1303": 0.37936161,
"1304": 2.3202734,
"1305": 1.8887829,
"1306": 0.3868164799999999,
"1307": 0.36934513,
"1308": 2.3173587,
"1309": 2.33483,
"1310": 0.8670672599999999,
"1311": 1.3720007,
"1312": 1.4617315,
"1313": 1.4584465,
"1314": 0.8670672599999999,
"1315": 0.8670672599999999,
"1316": 0.7224471699999999,
"1317": 1.0329441,
"1318": 0.91066644,
"1319": 1.2041743,
"1320": 0.86774937,
"1321": 0.91053722,
"1322": 1.8887829,
"1323": 1.1373759,
"1324": 1.0915701,
"1325": 1.209417,
"1326": 0.2934340099999999,
"1327": 1.8887829,
"1328": 0.7223413399999999,
"1329": 1.4675417,
"1330": 1.8887829,
"1331": 1.8887829,
"1332": 1.2350042,
"1333": 0.7223413399999999,
"1334": 0.2447339599999999,
"1335": 0.85211002,
"1336": 1.8926601,
"1337": 1.4861231,
"1338": 1.8460746,
"1339": 0.29661917,
"1340": 0.8108275500000001,
"1341": 0.2447339599999999,
"1342": 0.90655912,
"1343": 0.29076484,
"1344": 1.8926601,
"1345": 1.8861137,
"1346": 1.3648377,
"1347": 1.8887829,
"1348": 0.90655912,
"1349": 0.90655912,
"1350": 1.8887829,
"1351": 1.2350042,
"1352": 1.4861231,
"1353": 1.8887829,
"1354": 1.2350042,
"1355": 1.4861231,
"1356": 1.2350042,
"1357": 0.2934340099999999,
"1358": 1.1633433,
"1359": 1.8887829,
"1360": 0.90648635,
"1361": 2.3377455,
"1362": 1.8887829,
"1363": 1.8887829,
"1364": 0.97992681,
"1365": 0.3273509,
"1366": 0.8108275500000001,
"1367": 1.8887829,
"1368": 1.8887829,
"1369": 3.0712124,
"1370": 1.8887829,
"1371": 0.2447339599999999,
"1372": 1.8926601,
"1373": 0.29661917,
"1374": 1.6328881,
"1375": 0.67985252,
"1376": 0.2934340099999999,
"1377": 0.25081535,
"1378": 1.2350042,
"1379": 1.5667808,
"1380": 1.8926601,
"1381": 1.8887829,
"1382": 0.8931951,
"1383": 0.91066644,
"1384": 0.8670672599999999,
"1385": 1.1417634,
"1386": 2.33483,
"1387": 1.0915701,
"1388": 0.77375618,
"1389": 0.85209972,
"1390": 1.348515,
"1391": 0.97532005,
"1392": 1.1291034,
"1393": 0.13216675,
"1394": 0.12960361,
"1395": 0.093432454,
"1396": 0.093432454,
"1397": 0.52717881,
"1398": 0.48494777,
"1399": 0.46245379,
"1400": 0.27665825,
"1401": 0.34376403,
"1402": 0.4284266799999999,
"1403": 0.40451397,
"1404": 0.5335307100000001,
"1405": 0.4284266799999999,
"1406": 1.2459604999999998,
"1407": 1.3648377,
"1408": 1.8926601,
"1409": 5.3935651,
"1410": 1.3648377,
"1411": 1.3648377,
"1412": 1.5385859,
"1413": 1.1686396,
"1414": 1.4566141,
"1415": 1.4566141,
"1416": 1.4639868,
"1417": 1.8715098,
"1418": 1.507724,
"1419": 1.4639868,
"1420": 1.8808234,
"1421": 1.4566141,
"1422": 1.8715098,
"1423": 1.4639868,
"1424": 1.4566141,
"1425": 1.8715098,
"1426": 1.8715098,
"1427": 1.4566141,
"1428": 1.4566141,
"1429": 1.8715098,
"1430": 1.4566141,
"1431": 1.4639868,
"1432": 1.8808234,
"1433": 1.8715098,
"1434": 1.4566141,
"1435": 1.8715098,
"1436": 0.86527927,
"1437": 1.4566141,
"1438": 1.4639868,
"1439": 1.4566141,
"1440": 1.4566141,
"1441": 1.4566141,
"1442": 0.86527927,
"1443": 0.8658079200000001,
"1444": 1.9336215,
"1445": 1.124502,
"1446": 0.37315735,
"1447": 0.46261514,
"1448": 1.124502,
"1449": 0.96866364,
"1450": 0.86527927,
"1451": 1.124502,
"1452": 0.97649216,
"1453": 1.9336215,
"1454": 1.9336215,
"1455": 2.4202142,
"1456": 0.96866364,
"1457": 1.9336215,
"1458": 1.9336215,
"1459": 2.4202142,
"1460": 2.4202142,
"1461": 2.4202142,
"1462": 2.4202142,
"1463": 2.4202142,
"1464": 0.96866364,
"1465": 0.96866364,
"1466": 0.96866364,
"1467": 1.2140168999999998,
"1468": 0.96866364,
"1469": 0.96866364,
"1470": 0.96866364,
"1471": 0.96866364,
"1472": 0.96866364,
"1473": 1.2140168999999998,
"1474": 0.96866364,
"1475": 0.96866364,
"1476": 0.96866364,
"1477": 1.1795419,
"1478": 0.8672376900000001,
"1479": 1.2140168999999998,
"1480": 0.8672376900000001,
"1481": 0.8672376900000001,
"1482": 1.1795419,
"1483": 1.5318759,
"1484": 0.95754979,
"1485": 1.5318759,
"1486": 1.2386832,
"1487": 0.69955347,
"1488": 0.69955347,
"1489": 1.1360937,
"1490": 1.1360937,
"1491": 1.1360937,
"1492": 2.0222485,
"1493": 0.69955347,
"1494": 1.1360937,
"1495": 1.5405715,
"1496": 1.597093,
"1497": 0.73821523,
"1498": 2.5638316000000003,
"1499": 2.8637397,
"1500": 2.5638316000000003,
"1501": 3.3080757,
"1502": 4.0398115,
"1503": 1.10418,
"1504": 0.69955347,
"1505": 0.29742265,
"1506": 0.84279555,
"1507": 0.84279555,
"1508": 0.84279555,
"1509": 0.84279555,
"1510": 0.85151765,
"1511": 0.85151765,
"1512": 0.87422758,
"1513": 0.84279555,
"1514": 0.87422758,
"1515": 0.84279555,
"1516": 0.84279555,
"1517": 0.85151765,
"1518": 0.84279555,
"1519": 1.4337616,
"1520": 1.0960993,
"1521": 0.87422758,
"1522": 0.63145099,
"1523": 0.99031542,
"1524": 0.73821523,
"1525": 1.3612617,
"1526": 1.3612617,
"1527": 2.0222485,
"1528": 0.73821523,
"1529": 0.73821523,
"1530": 1.2950216,
"1531": 1.2950216,
"1532": 1.2950216,
"1533": 1.2950216,
"1534": 0.5002285,
"1535": 0.4358990199999999,
"1536": 0.3022480899999999,
"1537": 0.40957762,
"1538": 0.76670782,
"1539": 0.8790444900000001,
"1540": 0.17548354,
"1541": 0.76670782,
"1542": 0.74293636,
"1543": 0.48849828,
"1544": 0.2174335299999999,
"1545": 0.21729678,
"1546": 0.12167386,
"1547": 0.38316151,
"1548": 0.76670782,
"1549": 0.76670782,
"1550": 0.27171723,
"1551": 0.74293636,
"1552": 0.8790444900000001,
"1553": 0.53454217,
"1554": 0.44443681,
"1555": 0.24601642,
"1556": 0.2198397399999999,
"1557": 0.40957762,
"1558": 0.19701414,
"1559": 0.63403619,
"1560": 0.17806018,
"1561": 0.20927222,
"1562": 0.6859472,
"1563": 0.6859472,
"1564": 0.12167386,
"1565": 0.21532586,
"1566": 0.22604733,
"1567": 0.20394478,
"1568": 0.34285401,
"1569": 0.6859472,
"1570": 0.13946158,
"1571": 0.6859472,
"1572": 0.40094924,
"1573": 0.3022480899999999,
"1574": 0.8790444900000001,
"1575": 0.3022480899999999,
"1576": 0.8790444900000001,
"1577": 0.48849828,
"1578": 0.8790444900000001,
"1579": 0.20522869,
"1580": 0.76670782,
"1581": 0.8790444900000001,
"1582": 0.40957762,
"1583": 0.76670782,
"1584": 0.8790444900000001,
"1585": 0.66153065,
"1586": 0.6859472,
"1587": 0.1332347499999999,
"1588": 0.3022480899999999,
"1589": 0.48849828,
"1590": 0.47217271,
"1591": 0.31924367,
"1592": 0.47217271,
"1593": 0.47217271,
"1594": 0.27171723,
"1595": 0.31924367,
"1596": 0.49978588,
"1597": 0.6258812600000001,
"1598": 0.61362431,
"1599": 0.6258812600000001,
"1600": 0.6258812600000001,
"1601": 0.61362431,
"1602": 0.61362431,
"1603": 0.61362431,
"1604": 0.61362431,
"1605": 0.61362431,
"1606": 0.61362431,
"1607": 0.61362431,
"1608": 0.6258812600000001,
"1609": 0.61362431,
"1610": 0.6258812600000001,
"1611": 0.6258812600000001,
"1612": 0.61362431,
"1613": 0.6258812600000001,
"1614": 0.6258812600000001,
"1615": 0.6258812600000001,
"1616": 0.26397846,
"1617": 0.26388947,
"1618": 0.26397846,
"1619": 0.26397846,
"1620": 0.26397846,
"1621": 0.26397846,
"1622": 0.6258812600000001,
"1623": 0.6258812600000001,
"1624": 0.6258812600000001,
"1625": 0.26397846,
"1626": 0.6258812600000001,
"1627": 0.6258812600000001,
"1628": 0.6258812600000001,
"1629": 0.6258812600000001,
"1630": 0.26397846,
"1631": 0.32561393,
"1632": 0.87831147,
"1633": 1.1942020999999998,
"1634": 0.87831147,
"1635": 0.87831147,
"1636": 0.87831147,
"1637": 0.70009928,
"1638": 1.1942020999999998,
"1639": 0.95827238,
"1640": 1.1942020999999998,
"1641": 0.87831147,
"1642": 0.87831147,
"1643": 0.70009928,
"1644": 0.8672376900000001,
"1645": 1.1795419,
"1646": 0.87831147,
"1647": 0.87831147,
"1648": 0.87831147,
"1649": 0.87831147,
"1650": 0.8437435799999999,
"1651": 0.8672376900000001,
"1652": 1.1942020999999998,
"1653": 1.1795419,
"1654": 1.1942020999999998,
"1655": 0.91876221,
"1656": 1.1915104,
"1657": 0.88379581,
"1658": 1.1942020999999998,
"1659": 0.87831147,
"1660": 1.1942020999999998,
"1661": 0.87831147,
"1662": 0.87831147,
"1663": 1.1795419,
"1664": 0.70009928,
"1665": 0.70009928,
"1666": 0.95827238,
"1667": 0.8672376900000001,
"1668": 0.87831147,
"1669": 0.8770146600000001,
"1670": 1.1795419,
"1671": 0.87831147,
"1672": 0.85109148,
"1673": 0.87831147,
"1674": 1.1942020999999998,
"1675": 0.87831147,
"1676": 0.8672376900000001,
"1677": 0.87831147,
"1678": 0.18368603,
"1679": 0.14641667,
"1680": 0.35297858,
"1681": 0.21726477,
"1682": 0.2193900899999999,
"1683": 0.2193900899999999,
"1684": 0.2193900899999999,
"1685": 0.2193900899999999,
"1686": 0.2193900899999999,
"1687": 0.2193900899999999,
"1688": 0.2193900899999999,
"1689": 0.2193900899999999,
"1690": 0.2193900899999999,
"1691": 0.47256509,
"1692": 0.2193900899999999,
"1693": 0.2193900899999999,
"1694": 0.4436778899999999,
"1695": 0.13408819,
"1696": 0.25208133,
"1697": 0.6917782600000001,
"1698": 0.2356241,
"1699": 0.6917782600000001,
"1700": 0.323069,
"1701": 0.28577745,
"1702": 0.24923736,
"1703": 0.16483943,
"1704": 0.23782742,
"1705": 0.16352058,
"1706": 0.34005467,
"1707": 0.36116558,
"1708": 0.17513803,
"1709": 0.27547884,
"1710": 0.63355534,
"1711": 0.2919549,
"1712": 0.23787706,
"1713": 0.17513803,
"1714": 0.17513803,
"1715": 0.2198397399999999,
"1716": 0.2198397399999999,
"1717": 0.24178273,
"1718": 0.2198397399999999,
"1719": 0.2198397399999999,
"1720": 0.2198397399999999,
"1721": 0.2198397399999999,
"1722": 0.2198397399999999,
"1723": 0.2198397399999999,
"1724": 0.2198397399999999,
"1725": 0.2198397399999999,
"1726": 0.2198397399999999,
"1727": 0.2198397399999999,
"1728": 0.2198397399999999,
"1729": 0.21087747,
"1730": 0.14631794,
"1731": 0.2198397399999999,
"1732": 0.2198397399999999,
"1733": 0.2198397399999999,
"1734": 0.24547348,
"1735": 0.2198397399999999,
"1736": 0.21492564,
"1737": 0.16151603,
"1738": 0.1040302,
"1739": 0.26998269,
"1740": 1.6900811,
"1741": 0.088322463,
"1742": 0.21726515,
"1743": 2.062746,
"1744": 0.21891965,
"1745": 0.26998269,
"1746": 1.6900811,
"1747": 0.053396256,
"1748": 2.3914053,
"1749": 2.062746,
"1750": 1.6900811,
"1751": 0.21891965,
"1752": 0.21891965,
"1753": 0.21891965,
"1754": 0.40149941,
"1755": 0.21891965,
"1756": 0.3315069,
"1757": 0.26998269,
"1758": 0.21891965,
"1759": 0.21891965,
"1760": 0.36688274,
"1761": 0.088322463,
"1762": 0.093358548,
"1763": 0.1528796999999999,
"1764": 0.15793447,
"1765": 0.15793447,
"1766": 0.15793447,
"1767": 0.2698077,
"1768": 2.3480393,
"1769": 2.062746,
"1770": 2.858854,
"1771": 0.26998269,
"1772": 0.41558681,
"1773": 0.1214977999999999,
"1774": 0.04326028,
"1775": 0.11249718,
"1776": 0.20776007,
"1777": 0.074902178,
"1778": 0.1872291099999999,
"1779": 2.1157887000000004,
"1780": 0.23574926,
"1781": 0.33154102,
"1782": 0.55380317,
"1783": 0.076760042,
"1784": 0.21726515,
"1785": 0.21726515,
"1786": 0.19022619,
"1787": 2.062746,
"1788": 0.26998269,
"1789": 2.3914053,
"1790": 1.6900811,
"1791": 0.31088256,
"1792": 0.21077889,
"1793": 0.1231100899999999,
"1794": 0.1872291099999999,
"1795": 0.15983085,
"1796": 0.18807073,
"1797": 2.5816198,
"1798": 0.21891965,
"1799": 0.035928205,
"1800": 0.080547573,
"1801": 0.11670115,
"1802": 0.26721741,
"1803": 0.26721741,
"1804": 0.26721741,
"1805": 0.26721741,
"1806": 0.52721804,
"1807": 0.32670323,
"1808": 0.32670323,
"1809": 0.32670323,
"1810": 0.32670323,
"1811": 0.1227087799999999,
"1812": 0.1227087799999999,
"1813": 0.1227087799999999,
"1814": 0.1129505,
"1815": 0.1129505,
"1816": 0.14270208,
"1817": 0.14270208,
"1818": 0.1227087799999999,
"1819": 0.1227087799999999,
"1820": 0.1227087799999999,
"1821": 0.14270208,
"1822": 0.14270208,
"1823": 0.1227087799999999,
"1824": 0.17774155,
"1825": 0.2299527499999999,
"1826": 0.14528612,
"1827": 0.183838,
"1828": 0.183838,
"1829": 0.18905958,
"1830": 0.183838,
"1831": 0.17285696,
"1832": 0.11293187,
"1833": 0.19143359,
"1834": 0.16599104,
"1835": 0.066395212,
"1836": 0.07708359,
"1837": 0.1222654599999999,
"1838": 0.17341859,
"1839": 0.18197443,
"1840": 2.6121148,
"1841": 3.317215,
"1842": 2.601041,
"1843": 2.6121148,
"1844": 3.317215,
"1845": 2.601041,
"1846": 2.601041,
"1847": 2.6121148,
"1848": 2.601041,
"1849": 2.601041,
"1850": 2.6582468,
"1851": 2.6121148,
"1852": 2.601041,
"1853": 3.317215,
"1854": 3.317215,
"1855": 2.601041,
"1856": 2.6023379,
"1857": 2.601041,
"1858": 3.317215,
"1859": 2.601041,
"1860": 3.317215,
"1861": 2.601041,
"1862": 3.317215,
"1863": 2.601041,
"1864": 4.1426872,
"1865": 3.2166977,
"1866": 4.0779579,
"1867": 3.2166977,
"1868": 4.0779579,
"1869": 3.2166977,
"1870": 4.0779579,
"1871": 3.2166977,
"1872": 1.6072008999999998,
"1873": 3.2544887,
"1874": 4.1369706,
"1875": 1.7459059,
"1876": 1.3941748,
"1877": 1.7348321,
"1878": 1.7348321,
"1879": 1.7348321,
"1880": 2.1496213,
"1881": 2.1496213,
"1882": 1.3941748,
"1883": 2.1717275000000003,
"1884": 1.3941748,
"1885": 1.7459059,
"1886": 2.2312431,
"1887": 1.7459059,
"1888": 1.7459059,
"1889": 0.10040847,
"1890": 0.098207729,
"1891": 0.12191397,
"1892": 0.10040847,
"1893": 0.10040847,
"1894": 0.10040847,
"1895": 0.10900353,
"1896": 0.10067584,
"1897": 0.10067584,
"1898": 0.19157953,
"1899": 0.19157953,
"1900": 0.18843288,
"1901": 0.09237119,
"1902": 0.10362007,
"1903": 0.2149474099999999,
"1904": 0.10040847,
"1905": 0.16026935,
"1906": 0.1411717599999999,
"1907": 0.19157953,
"1908": 0.15130702,
"1909": 0.21655878,
"1910": 0.2176056999999999,
"1911": 0.18889495,
"1912": 0.11748159,
"1913": 0.22810921,
"1914": 0.1335530999999999,
"1915": 0.21062532,
"1916": 0.10040847,
"1917": 0.10067584,
"1918": 0.09942153,
"1919": 0.12778036,
"1920": 0.12778036,
"1921": 0.12778036,
"1922": 0.12778036,
"1923": 0.12778036,
"1924": 0.39551242,
"1925": 0.39551242,
"1926": 0.10965702,
"1927": 0.20430183,
"1928": 0.17617593,
"1929": 0.1873785399999999,
"1930": 0.19143315,
"1931": 0.19143315,
"1932": 0.10161974,
"1933": 0.4436778899999999,
"1934": 0.4436778899999999,
"1935": 0.1543319,
"1936": 0.20648782,
"1937": 0.035859011,
"1938": 0.20648782,
"1939": 0.26403923,
"1940": 0.3390033,
"1941": 0.28782702,
"1942": 0.28055886,
"1943": 0.2788219,
"1944": 0.38747417,
"1945": 0.38747417,
"1946": 0.31310717,
"1947": 0.4471077,
"1948": 0.4471077,
"1949": 0.3103332,
"1950": 0.38278974,
"1951": 0.38278974,
"1952": 0.38278974,
"1953": 0.37808998,
"1954": 0.38278974,
"1955": 0.43985374,
"1956": 0.19456717,
"1957": 0.1575859899999999,
"1958": 0.5743370299999999,
"1959": 0.1575859899999999,
"1960": 0.26694645,
"1961": 0.7605308700000001,
"1962": 0.7605308700000001,
"1963": 0.7605308700000001,
"1964": 0.7605308700000001,
"1965": 0.7605308700000001,
"1966": 0.7605308700000001,
"1967": 0.7605308700000001,
"1968": 0.42946648,
"1969": 1.2034104,
"1970": 0.42946648,
"1971": 1.2034104,
"1972": 1.2441833,
"1973": 0.27267011,
"1974": 0.22106957,
"1975": 0.7605308700000001,
"1976": 0.7605308700000001,
"1977": 0.7605308700000001,
"1978": 0.96755137,
"1979": 0.80582851,
"1980": 0.8185328500000001,
"1981": 0.7605308700000001,
"1982": 0.42498533,
"1983": 1.3313476,
"1984": 1.3313476,
"1985": 0.19259256,
"1986": 0.19023968,
"1987": 0.28105557,
"1988": 0.7605308700000001,
"1989": 0.7605308700000001,
"1990": 0.77323521,
"1991": 0.77323521,
"1992": 0.88181873,
"1993": 0.7605308700000001,
"1994": 0.7605308700000001,
"1995": 1.5032449,
"1996": 1.5925721,
"1997": 1.2017628,
"1998": 0.6862883799999999,
"1999": 0.30410215,
"2000": 2.0536805,
"2001": 2.0536805,
"2002": 2.0536805,
"2003": 2.0222485,
"2004": 2.0222485,
"2005": 2.2040399,
"2006": 2.2040399,
"2007": 1.9580764,
"2008": 0.22904209,
"2009": 0.22904209,
"2010": 2.0222485,
"2011": 0.6567514999999999,
"2012": 0.7443735300000001,
"2013": 0.77580556,
"2014": 0.85520116,
"2015": 0.82376912,
"2016": 0.32165465,
"2017": 0.14016608,
"2018": 0.061709498,
"2019": 0.10387694,
"2020": 0.14016608,
"2021": 0.14016608,
"2022": 0.074831241,
"2023": 0.063134881,
"2024": 0.060622233,
"2025": 0.20425219,
"2026": 0.20425219,
"2027": 0.97413834,
"2028": 0.97413834,
"2029": 0.97413834,
"2030": 0.4439754099999999,
"2031": 0.4439754099999999,
"2032": 0.4439754099999999,
"2033": 0.97413834,
"2034": 0.97413834,
"2035": 1.6323897,
"2036": 0.97413834,
"2037": 0.12224862,
"2038": 0.1691862,
"2039": 0.18740252,
"2040": 0.23403871,
"2041": 0.23259643,
"2042": 0.26382935,
"2043": 0.22115631,
"2044": 0.12714977,
"2045": 0.12050533,
"2046": 0.1378297,
"2047": 0.78735036,
"2048": 1.1966895999999998,
"2049": 0.53078771,
"2050": 0.14016608,
"2051": 0.10403492,
"2052": 0.14016608,
"2053": 0.099819152,
"2054": 0.098761749,
"2055": 0.098772307,
"2056": 0.098772307,
"2057": 0.098772307,
"2058": 0.098772307,
"2059": 0.098772307,
"2060": 0.098794759,
"2061": 0.15376344,
"2062": 0.1681118,
"2063": 1.1459199999999998,
"2064": 0.10571839,
"2065": 0.10571839,
"2066": 0.10571839,
"2067": 0.15376344,
"2068": 0.13110098,
"2069": 0.13826364,
"2070": 0.15098129,
"2071": 0.62036477,
"2072": 0.13666047,
"2073": 0.2299527499999999,
"2074": 0.1028142,
"2075": 0.2299527499999999,
"2076": 0.1028775399999999,
"2077": 0.043475704,
"2078": 0.12609868,
"2079": 0.070828431,
"2080": 0.49341556,
"2081": 0.18368603,
"2082": 0.2299527499999999,
"2083": 0.14016608,
"2084": 0.063134946,
"2085": 0.27598916,
"2086": 0.1347042199999999,
"2087": 0.23004197,
"2088": 0.26391586,
"2089": 0.26177113,
"2090": 0.1166663499999999,
"2091": 0.2579192899999999,
"2092": 0.26177113,
"2093": 0.1346346699999999,
"2094": 0.23523808,
"2095": 0.41233748,
"2096": 0.36280025
}
idx_to_classname = {
"0": "Mixed red fruits juice, pure juice",
"1": "Strawberry, coulis",
"2": "Raspberry, coulis",
"3": "Pastis (anise-flavoured spirit)",
"4": "Squid, raw",
"5": "Squid fritter, Roman-style",
"6": "Scallop, with coral, raw",
"7": "Scallop, with coral, cooked",
"8": "Shrimp or prawn, cooked",
"9": "Clear fruit brandy or eau-de-vie",
"10": "Oyster, raw",
"11": "Mussel, boiled/cooked in water",
"12": "Mussel, common, raw",
"13": "Gin",
"14": "Shrimp or prawn, raw",
"15": "Shrimp fritters",
"16": "Norway lobster, raw",
"17": "Crab, boiled/cooked in water",
"18": "Mediterranean mussel, raw",
"19": "Mussel, canned, drained",
"20": "Liqueur",
"21": "Pacific oyster, raw",
"22": "European oyster, raw",
"23": "Shrimp, frozen, raw",
"24": "Rum",
"25": "Snail in parsley butter, cooked",
"26": "Scallop, without coral, raw",
"27": "Peru sea scallop, without coral, raw",
"28": "Whisky",
"29": "deep water pink shrimp, raw",
"30": "Wine, white, sweet",
"31": "Wine-based aperitif",
"32": "Vodka",
"33": "Mussels, in Catalan-style sauce or marinade (tomatoes), canned, drained",
"34": "Mussels, in a shallot and white wine broth",
"35": "Mussels, filled (fat, parsley and garlic\u2026)",
"36": "Squid, fried or pan-fried with fat",
"37": "Rum-based cocktail",
"38": "Whiskey-based cocktail",
"39": "Pure alcohol",
"40": "Marsala wine",
"41": "Sangria",
"42": "Champagne kir (Cocktail of champagne with red fruit liqueur)",
"43": "Blackcurrant liqueur",
"44": "Cocktail, punch type, 16% alcohol",
"45": "Spirit made from wine, armagnac or cognac type",
"46": "Sake or rice wine",
"47": "Plant-based spread-cheese type, with soybean, prepacked",
"48": "Plant-based cheese, without soybean, prepacked, sliced",
"49": "Plant-based cheese, without soybean, prepacked, shredded",
"50": "Plant-based ham, prepacked",
"51": "Garlic, fresh",
"52": "Chervil, fresh",
"53": "Chive or spring onion, fresh",
"54": "Curry, powder",
"55": "Ginger, powder",
"56": "Gelatine, dried",
"57": "Ketchup",
"58": "Nutritional yeast",
"59": "Baker's yeast, compressed",
"60": "Mustard",
"61": "Parsley, fresh",
"62": "Black pepper, powder",
"63": "Horseradish, fresh",
"64": "Salt, white, for human consumption (sea, igneous or rock), no enrichment",
"65": "Vinegar",
"66": "White pepper, powder",
"67": "Mustard, with grains",
"68": "Garlic, powder, dried",
"69": "Parsley, dried",
"70": "Cinnamon, powder",
"71": "Coriander, seed",
"72": "Mint, fresh",
"73": "Basil, dried",
"74": "Basil, fresh",
"75": "Marjoram, dried",
"76": "Oregano, dried",
"77": "Rosemary, dried",
"78": "Sage, dried",
"79": "Thyme, dried",
"80": "Saffron",
"81": "Cumin, seed",
"82": "Tapenade (a puree of capers, pitted black olives, anchovy and herbs, with olive oil and lemon juice",
"83": "Celery salt",
"84": "Baker's yeast, dehydrated",
"85": "Baking powder or raising agent",
"86": "Nutmeg",
"87": "Paprika",
"88": "Tartare sauce, prepacked",
"89": "Cloves",
"90": "Bay, leaves",
"91": "Mayonnaise (70% fat and more)",
"92": "Mix of 4 spices",
"93": "Salt, white, for human consumption (sea, igneous or rock), iodine added, no other enrichment",
"94": "Provence herbs, dried",
"95": "Poppy, seed",
"96": "Savory, dried",
"97": "Caraway, seed",
"98": "Vanilla, alcoholic extract",
"99": "Fennel, seed",
"100": "Rosemary, fresh",
"101": "Sage, fresh",
"102": "Thyme, fresh",
"103": "Ginger, raw",
"104": "Cardamom, powder",
"105": "Fenugreek, seed",
"106": "Mayonnaise, reduced fat or light mayonnaise",
"107": "Pure sea salt, no enrichment",
"108": "Sea salt, grey, no enrichment",
"109": "Seaweed, agar, raw",
"110": "Spirulina, (spirulina sp.), dried",
"111": "Cayenne pepper",
"112": "Turmeric, powder",
"113": "Vinegar, cider",
"114": "Vinegar, balsamic",
"115": "Tarragon, fresh",
"116": "Dill, fresh",
"117": "Coriander, fresh",
"118": "Vanilla, aqueous extract",
"119": "Barbecue sauce, prepacked",
"120": "Bechamel sauce, prepacked",
"121": "Bearnaise sauce, prepacked",
"122": "Soy sauce, prepacked",
"123": "Hollandaise sauce, prepacked",
"124": "Tomato sauce, with onions, prepacked",
"125": "Salad dressing, (50-75% of oil), prepacked",
"126": "Armorican-style sauce, prepacked",
"127": "Harissa (hot spicy sauce), prepacked",
"128": "Tomato sauce, with meat or Bolognese sauce, prepacked",
"129": "Green pepper sauce, prepacked",
"130": "Burgundy-style sauce, prepacked",
"131": "Madeira wine sauce, prepacked",
"132": "Cream sauce with shallots, prepacked",
"133": "Carbonara sauce (cream sauce with lardoons), prepacked",
"134": "Hunter-style sauce (a garnish of mushrooms, shallots and tomatoes in white wine sauce), prepacked",
"135": "Curry sauce, prepacked",
"136": "White butter sauce, prepacked",
"137": "Mustard sauce prepacked",
"138": "Sauce, butter, prepacked",
"139": "Cream sauce",
"140": "Mushroom sauce, prepacked",
"141": "Cream sauce with spices",
"142": "Cream sauce with herbs",
"143": "Sweet and sour sauce, prepacked",
"144": "Red wine sauce",
"145": "Yogurt sauce",
"146": "American-style sauce, prepacked",
"147": "Aioli sauce (garlic and olive oil mayonnaise), prepacked",
"148": "Basque-style sauce or tomato sauce with sweet peppers, prepacked",
"149": "Aromatic stock cube, for fish, dehydrated",
"150": "Tomato sauce, w mushrooms, prepacked",
"151": "Tomato sauce, w olives, prepacked",
"152": "Sauce, pesto, prepacked",
"153": "Sauce, pepper, prepacked",
"154": "Salad dressing, prepacked",
"155": "Cheese sauce for risotto or pasta, prepacked",
"156": "Roquefort (blue cheese) sauce, prepacked",
"157": "Cream sauce with mushrooms, prepacked",
"158": "Nuoc mam sauce or fish sauce, prepacked",
"159": "Burger sauce, prepacked",
"160": "Salad dressing, reduced fat, prepacked",
"161": "Grand veneur sauce (a reduction of red wine with garlic, shallots and red currant jelly), prepacked",
"162": "Indian-style sauce, tandoori or garam masala type, prepacked",
"163": "Kebab sauce, prepacked",
"164": "Mayonnaise flavoured with garlic, chilli pepper and fish broth, prepacked",
"165": "Tomato sauce, w vegetables, prepacked",
"166": "Tomato sauce, w cheese, prepacked",
"167": "Sauce, pesto rosso, prepacked",
"168": "Sauce, pepper, prepacked",
"169": "Soy \"cream\" preparation",
"170": "Vegetable Bolognese sauce",
"171": "Chocolate sauce",
"172": "Sodium bicarbonate",
"173": "Camembert cheese, from cow's milk",
"174": "Soft-ripened cheese with bloomy rind (Camembert-type cheese)",
"175": "Camembert cheese, from cow's milk, from raw milk",
"176": "Soft-ripened cheese, double cream, around 30% fat",
"177": "Coulommiers cheese, from cow's milk",
"178": "Soft-ripened round cheese with bloomy rind, around 5% fat, Camembert-type cheese, reduced fat",
"179": "Brie cheese, from cow's milk",
"180": "Brie de Meaux cheese, from cow's milk",
"181": "Brie de Melun cheese, from cow's milk",
"182": "Carr\u00e9 de l'Est cheese, from cow's milk",
"183": "Chaource cheese, from cow's milk",
"184": "Maroilles \"fermier\" cheese",
"185": "Neufch\u00e2tel cheese, from cow's milk",
"186": "Soft-ripened cheese, triple cream, around 40% fat",
"187": "Soft-ripened washed-rind cheese, reduced fat, around 13% fat",
"188": "Maroilles cheese, from cow's milk",
"189": "Livarot cheese, from cow's milk",
"190": "\u00c9poisses cheese, from cow's milk",
"191": "Munster cheese, from cow's milk",
"192": "Langres cheese, from cow's milk",
"193": "Pont l'Ev\u00eaque cheese, from cow's milk",
"194": "Reblochon cheese, from cow's milk",
"195": "Soft-ripened washed-rind cheese, from pasteurised milk (Vieux pan\u00e9-type cheese)",
"196": "Saint-Marcellin cheese, from cow's milk",
"197": "Vacherin cheese or Mont d'or cheese, from cow's milk",
"198": "Saint-Felicien cheese, from cow's milk",
"199": "Feta-type cheese from cow's milk",
"200": "Feta cheese, from ewe's milk",
"201": "Feta-type cheese from cow's milk, in oil and spices",
"202": "Beaufort cheese, from cow's milk",
"203": "Comt\u00e9 cheese, from cow's milk",
"204": "Abondance cheese, from cow's milk",
"205": "Gruyere cheese, France, Protected Geographical Indication, from cow's milk",
"206": "Gruyere cheese, from cow's milk",
"207": "Emmental cheese, from cow's milk",
"208": "Hard cheese, emmental-type cheese, reduced fat",
"209": "Emmental cheese, grated, from cow's milk",
"210": "Ossau-Iraty cheese, from ewe's milk",
"211": "Parmesan cheese, from cow's milk",
"212": "Fontina cheese, from cow's milk",
"213": "Grana Padano cheese, from cow's milk",
"214": "Processed cheese, in slices",
"215": "Processed cheese, around 20% fat, in wedges or cubes",
"216": "Uncured soft cheese, spreadable, around 25% fat, in a tub",
"217": "Processed cheese, double cream, around 31% fat",
"218": "Uncured soft cheese, spreadable, around 20% fat, in a tub",
"219": "Processed cheese with fresh cream cheese and walnuts",
"220": "Processed cheese snack w breadsticks, for children",
"221": "Roquefort cheese, from ewe's milk",
"222": "Fourme de Montbrison cheese",
"223": "Blue cheese, from cow's milk",
"224": "Auvergne blue cheese, from cow's milk",
"225": "Fourme d'Ambert cheese, from cow's milk",
"226": "Causses blue cheese, from cow's milk",
"227": "Gorgonzola cheese, from cow's milk",
"228": "Gex blue cheese, or Jura blue cheese or Septmoncel blue cheese, from cow's milk",
"229": "Bresse blue cheese, from cow's milk",
"230": "Firm cheese, around 14% fat, Maasdam-type cheese, reduced fat",
"231": "Provolone cheese, from cow's milk",
"232": "Cantal cheese, half matured, from cow's milk",
"233": "Cantal, Salers or Laguiole cheese, from cow's milk",
"234": "Salers cheese, from cow's milk",
"235": "Cheddar cheese, from cow's milk",
"236": "Edam cheese, from cow's milk",
"237": "Mimolette cheese, young, from cow's milk",
"238": "Gouda cheese, from cow's milk",
"239": "Mimolette cheese, half-old, from cow's milk",
"240": "Mimolette cheese, old, from cow's milk",
"241": "Mimolette cheese, from cow's milk",
"242": "Mimolette cheese, extra old, from cow's milk",
"243": "Morbier cheese, from cow's milk",
"244": "Pyr\u00e9n\u00e9es cheese, from ewe's milk",
"245": "Saint-Nectaire cheese, from cow's milk, milks collected in many farms",
"246": "Raclette cheese, from cow's milk",
"247": "Saint-Nectaire cheese, from cow's milk, milk collected in an unique farm",
"248": "Saint-Nectaire cheese, from cow's milk",
"249": "Saint-Paulin cheese, from cow's milk (semi-hard cheese)",
"250": "Tomme cheese, from cow's milk",
"251": "Tomme cheese, from mountain or Savoy",
"252": "Tomme cheese, reduced fat, around 13% fat",
"253": "Asiago cheese, from cow's milk",
"254": "Corsica soft ripened cheese, from ewe's milk",
"255": "Tomme cheese (PDO) from the French Bauges munntains",
"256": "Cheese, from goat's milk, fresh, from pasteurised milk",
"257": "Cheese, from goat's milk, from raw milk",
"258": "Cheese, from goat's milk, from pasteurised milk",
"259": "Cheese, from goat's milk, fresh, from raw milk",
"260": "Cheese, from goat's milk, fresh",
"261": "Cheese, semi-dry, from goat's milk",
"262": "Cheese, buche, from goat's milk",
"263": "Soft-ripened cheese, from goat's milk, from pasteurised milk",
"264": "Cheese, dry, from goat's milk",
"265": "Soft-ripened cheese with bloomy rind, from goat's milk, Camembert-type cheese",
"266": "Soft ripened cheese with bloomy rind, from ewe's milk, Camembert-type cheese",
"267": "Semi-hard cheese, from ewe's milk",
"268": "Chabichou cheese, from goat's milk",
"269": "P\u00e9lardon cheese, from goat's milk",
"270": "Crottin cheese, from goat's milk, from raw milk",
"271": "Crottin cheese, from goat's milk",
"272": "Crottin de Chavignol cheese, from goat's milk",
"273": "Picodon cheese, from goat's milk",
"274": "Pouligny Saint-Pierre cheese, from goat's milk",
"275": "Sainte Maure cheese, from goat's milk",
"276": "Selles-sur-Cher cheese, from goat's milk",
"277": "Chevrot cheese, from goat's milk",
"278": "Rocamadour cheese, from goat's milk",
"279": "Valen\u00e7ay cheese, from goat's milk",
"280": "Apricot, pitted, raw",
"281": "Apricot, pitted, dried",
"282": "Pineapple, pulp, raw",
"283": "Avocado, pulp, raw",
"284": "Black currant, raw",
"285": "Cherry, pitted, raw",
"286": "Lemon, pulp, raw",
"287": "Quince, raw",
"288": "Date, pulp and peel, dried",
"289": "Fig, raw",
"290": "Fig, dried",
"291": "Strawberry, raw",
"292": "Raspberry, raw",
"293": "Passion fruit, pulp and pips, raw",
"294": "Pomegranate, pulp and pips, raw",
"295": "Red currant, raw",
"296": "Gooseberry, raw",
"297": "Kiwi fruit, pulp and seeds, raw",
"298": "Lychee, pulp, raw",
"299": "Mango, pulp, raw",
"300": "Melon, cantaloupe (ex Cavaillon or Charentais melon), pulp, raw",
"301": "Blueberry, raw",
"302": "Blackberry, raw",
"303": "Orange, pulp, raw",
"304": "Papaya, pulp, raw",
"305": "Pear, pulp and peel, raw",
"306": "Apple compote",
"307": "Greengage plum, raw",
"308": "Prune",
"309": "Grape, white, raw",
"310": "Grape, red, raw",
"311": "Raisin",
"312": "Rhubarb, stalk, raw",
"313": "Apple, pulp, raw",
"314": "Prickly pear, pulp and seeds, raw",
"315": "Black mulberry, raw",
"316": "Tamarind, mature fruit, pulp, raw",
"317": "Guava, pulp, raw",
"318": "Apple, Canada, pulp, raw",
"319": "Banana, pulp, dried",
"320": "Plum, raw",
"321": "Pear, peeled, raw",
"322": "Fruits compote, miscellaneous",
"323": "Fruits compote, miscellaneous, reduced sugar",
"324": "Morello cherry, raw",
"325": "Apple, dried",
"326": "Grape, raw",
"327": "Cranberry, raw",
"328": "Peach, dried",
"329": "Lemon zest, raw",
"330": "Elderberry, berries, raw",
"331": "Fruits compote, miscellaneous, reduced sugar, refrigerated",
"332": "Blueberry, frozen, raw",
"333": "Fruit salad, raw",
"334": "Raspberry, frozen, raw",
"335": "Olive, green, stuffed (anchovy, sweet peppers, etc\u2026)",
"336": "Blackberry, frozen, raw",
"337": "Fruits dessert, all types (fruits dessert's sugar content is less than fruits compote but more than fruits compote reduced sugar)",
"338": "Fruits puree, without sugar added",
"339": "Baby food jar with banana",
"340": "Baby food jar without banana",
"341": "Fruit-based beverage for baby from 4/6 months",
"342": "Dairy cereal-based beverage with fruits for baby's snack from 4/6 months",
"343": "Dairy dessert for baby, custard type",
"344": "Dairy dessert for baby, with rice or semolina",
"345": "Dairy dessert for baby, plain with sugar or with fruits",
"346": "Instant cereal (powder to be reconstituted) for baby from 4/6 months",
"347": "Instant cereal (powder to be reconstituted) for baby from 6 months",
"348": "Dairy cereal-based beverage for baby's breakfast from 8/9 months",
"349": "Dairy cereal-based beverage for baby's breakfast from 12 months",
"350": "Dairy cereal-based beverage for baby's breakfast",
"351": "Kumquat, without pips, raw",
"352": "Fruit cocktail or salad, canned in syrup, drained",
"353": "Fruit cocktail or salad, canned in syrup, not drained",
"354": "Fruit cocktail or salad, canned in light syrup, not drained",
"355": "Apricot, canned in light syrup, not drained",
"356": "Apricot, in syrup, canned, not drained",
"357": "Pineapple, in pineapple juice and syrup, canned, drained",
"358": "Pineapple, in pineapple juice and syrup, canned, not drained",
"359": "Pineapple, in light syrup, canned, drained",
"360": "Pineapple, in light syrup, canned, not drained",
"361": "Peach, canned in light syrup, drained",
"362": "Peach, canned in light syrup, not drained",
"363": "Pear, canned in light syrup, not drained",
"364": "Red berries (raspberries, strawberries, red currants, black currants) , raw",
"365": "Almond, (with peel)",
"366": "Peanut",
"367": "Peanut, grilled, salted",
"368": "Hazelnut",
"369": "Walnut, dried, husked",
"370": "Coconut, ripe kernel, fresh",
"371": "Coconut, kernel, dried",
"372": "Brazil nut",
"373": "Pistachio nut, grilled, salted",
"374": "Sesame seed",
"375": "Sunflower seed",
"376": "Chestnut cream",
"377": "Coconut, immature kernel, fresh",
"378": "Chestnut cream, vanilla flavoured, canned",
"379": "Mix of salted grains/nuts and raisins",
"380": "Cashew nut, grilled, salted",
"381": "Chestnut, boiled/cooked in water",
"382": "Chestnut, grilled",
"383": "Walnut, fresh",
"384": "Chestnut, raw",
"385": "Pine nuts",
"386": "Pecan nut",
"387": "Macadamia nut",
"388": "Cucurbitacea, seed",
"389": "Alphalfa seeds, raw",
"390": "Hazelnut, grilled",
"391": "Flaxseed",
"392": "Sesame seed, husked",
"393": "Peanut, grilled",
"394": "Sesame seed, grilled, husked",
"395": "Chestnut, canned",
"396": "Almond, peeled, unpeeled or blanched",
"397": "Almond, grilled, salted",
"398": "Macadamia nut, grilled, salted",
"399": "Pistachio nut, grilled",
"400": "Sunflower seed, grilled, salted",
"401": "Pecan nut, salted",
"402": "Seeds, chia, dried",
"403": "Mix of unsalted grains/nuts and dried fruit",
"404": "Mix of unsalted grains/nuts and raisins",
"405": "Hazelnut, grilled, salted",
"406": "Flaxseed, brown",
"407": "Almond paste or marzipan, prepacked",
"408": "Peanut butter or peanut paste",
"409": "Tahini (sesame paste)",
"410": "Cocoa butter",
"411": "Solid vegetable fat (margarine type), for frying",
"412": "Frying oil",
"413": "Palm oil",
"414": "Palm oil, refined",
"415": "Butter, 82% fat, unsalted",
"416": "Butter oil or concentrated butter",
"417": "Butter, 80% fat, lightly salted",
"418": "Butter, 80% fat, salted",
"419": "Butter, 82% fat, unsalted, easy-to-spread",
"420": "Butter, 60-62% fat, light, unsalted",
"421": "Butter, 60-62% fat, light, lightly salted",
"422": "Butter, light, 39-41% fat, unsalted",
"423": "Lard or pork fat",
"424": "Pork fat, raw",
"425": "Duck fat",
"426": "Goose fat",
"427": "Vegetable fat (like margarine), 80% fat, salted",
"428": "Vegetable fat (margarine type), 70% fat, unsalted",
"429": "Dairy fat 25% fat, light, spreadable, unsalted",
"430": "Dairy fat 20% fat, light, spreadable, unsalted",
"431": "Vegetable fat (margarine type), spreadable, 30-40% fat, light, unsalted",
"432": "Vegetable fat (margarine type), spreadable, 30-40% fat, light, lightly salted",
"433": "Vegetable fat (margarine type), spreadable, 30-40% fat, light, unsalted, rich in omega 3",
"434": "Vegetable fat (margarine type), spreadable, 50-63% fat, light, unsalted, rich in omega 3",
"435": "Vegetable fat (margarine type), 50-63% fat, light, lightly salted",
"436": "Vegetable fat (margarine type), spreadable, 50-63% fat, light, unsalted, with plant sterols esters",
"437": "Vegetable fat (margarine type), spreadable, 50-63% fat, light, lightly salted, rich in omega 3",
"438": "Vegetable fat (margarine type), spreadable, 50-63% fat, light, unsalted",
"439": "Vegetable fat (margarine type), spreadable, 30-40% fat, light, lightly salted, with plant sterols esters",
"440": "Blended fat (vegetable and animal origins), 50-63% fat",
"441": "Blended fat (vegetable and animal origins), 50-63% fat, lightly salted",
"442": "Blended fat (vegetable and animal origins), spreadable, 30-40% fat",
"443": "Blended fat (vegetable and animal origins), spreadable, 30-40% fat, lightly salted",
"444": "Peanut oil",
"445": "Avocado oil",
"446": "Rapeseed oil",
"447": "Cottonseed oil",
"448": "Linseed oil",
"449": "Maize/corn oil",
"450": "Hazelnut oil",
"451": "Olive oil, extra virgin",
"452": "Grapeseed oil",
"453": "Sesame oil",
"454": "Soy oil",
"455": "Sunflower oil",
"456": "Cod liver oil",
"457": "Sardine oil",
"458": "Salmon oil",
"459": "Combined oil (blended vegetable oils)",
"460": "Combined oil (mix of olive oil and seeds oil)",
"461": "Coffee, ground",
"462": "Not instant coffee, without sugar, ready-to-drink",
"463": "Coffee, powder, instant, non rehydrated",
"464": "Lemonade, with sugar",
"465": "Coconut water",
"466": "Bottled water, flavoured, w sugar",
"467": "Tonic drink, without sugar, with artificial sweetener(s)",
"468": "Tonic drink, with sugar and artificial sweetener(s)",
"469": "Still soft drink with tea extract, with sugar and artificial sweetener(s)",
"470": "Lemonade, with sugar and artificial sweetener(s)",
"471": "Syrup, with sugar (to be diluted)",
"472": "Cola, with sugar",
"473": "Fruit soft drink, carbonated (10-50% of fruit juice), with sugar",
"474": "Tea, brewed, without sugar",
"475": "Fruit soft drink, still (less than 10% of fruit juice), without sugar and with artificial sweetener(s)",
"476": "Infusion, brewed, without sugar",
"477": "Fruit soft drink, still (less than 10% of fruit juice), with sugar",
"478": "Soft drink, carbonated, without fruit juice, with sugar",
"479": "Bottled water, flavoured, without sugar and artificial sweeteners",
"480": "Bottled water, flavoured, without sugar and with artificial sweeteners",
"481": "Fruit soft drink, carbonated (less than 10% of fruit juice), with sugar and artificial sweetener(s)",
"482": "Lemonade, without sugar, with artificial sweetener(s)",
"483": "Cola, with sugar and artificial sweetener(s)",
"484": "Lemonade with a flavoured syrup",
"485": "Coconut milk or coconut cream",
"486": "Fruit soft drink, carbonated (less than 10% of fruit juice), with sugar",
"487": "Syrup (mint, strawberries flavouredetc.), with sugar diluted in water",
"488": "Cola, without sugar and with artificial sweetener(s)",
"489": "Still soft drink with tea extract, flavoured, without sugar and with artificial sweeteners",
"490": "Cola, with sugar and without caffeine",
"491": "Cola, without sugar, with artificial sweetener(s) and with caffeine",
"492": "Decaffeinated coffee, powder, instant, non rehydrated",
"493": "Decaffeinated not instant coffee, without sugar, ready-to-drink",
"494": "Espresso coffee, not instant coffee, without sugar, ready-to-drink",
"495": "Decaffeinated instant coffee, without sugar, ready-to-drink",
"496": "Instant coffee, without sugar, ready-to-drink",
"497": "Still soft drink with tea extract, flavoured, with sugar",
"498": "Soft drink, carbonated, without fruit juice, with sugar and artificial sweetener(s)",
"499": "Cocoa powder, without sugar, powder, instant, non rehydrated",
"500": "Cocoa or chocolate powder, for beverages, with sugar, non rehydrated",
"501": "Instant cocoa or chocolate beverage, with sugar, ready-to-drink (reconstituted with standard semi-skimmed milk)",
"502": "Instant cocoa or chocolate beverage, with sugar, fortified with vitamins and chemical elements, ready-to-drink (reconstituted with standard semi-skimm",
"503": "Almond drink not sweet, not fortified, prepacked",
"504": "Mix of chicory and coffee, powder, instant, non rehydrated",
"505": "Coffee with milk or white coffee or cappuccino, instant coffee or not, without sugar, ready-to-drink",
"506": "Chicory, powder, instant, ready-to-drink",
"507": "Mix of chicory and coffee, instant, without sugar, ready-to-drink (reconstituted with standard semi-skimmed milk)",
"508": "Black tea, brewed, without sugar",
"509": "Green tea, brewed, without sugar",
"510": "Oolong tea, brewed, without sugar",
"511": "Coffee with milk or Cappuccino, powder, instant, non rehydrated",
"512": "Instant chicory, without sugar and artificial sweeteners, ready-to-drink (reconstituted with standard semi-skimmed milk)",
"513": "Mix of chicory and coffee, instant, without sugar, ready-to-drink (reconstituted with water)",
"514": "Coffee with milk or Cappuccino with chocolate, powder, instant, non rehydrated",
"515": "Cocoa or chocolate powder, for beverages, with sugar, fortified with vitamins and chemical elements, non rehydrated",
"516": "Cocoa or chocolate powder, for beverages, with sugar, fortified with vitamins, non rehydrated",
"517": "Lemon or lime base, for beverage, without sugar (to be diluted)",
"518": "Fruit soft drink, still (10-50% of fruit juice), reduced sugar",
"519": "Fruit soft drink, still (fruit juice content unspecified), with sugar",
"520": "Fruit soft drink, still (10-50% of fruit juice), with sugar",
"521": "Fruit soft drink, carbonated (less than 10% of fruit juice), without sugar and with artificial sweetener(s)",
"522": "Fruit juice with milk",
"523": "Tonic drink, with sugar",
"524": "Fruit soft drink, carbonated (less than 10% of fruit juice), without sugar and artificial sweetener(s)",
"525": "Energy drink, with sugar",
"526": "Energy drink, without sugar and with artificial sweetener(s)",
"527": "Water, bottled",
"528": "Soy drink, plain, prepacked",
"529": "Soy drink, plain, fortified with calcium",
"530": "Soy drink, flavoured, with sugar",
"531": "Soy drink, flavoured, enriched in calcium, w sugar or fruit concentrate",
"532": "Rice-based drink, plain",
"533": "Oat-based drink, plain, prepacked",
"534": "Coconut-based drink, plain, prepacked",
"535": "Baby milk, growing up milk, ready to feed",
"536": "Baby milk, first milk, ready to feed",
"537": "Baby milk, follow on milk, ready to feed",
"538": "Milk, powder, whole, non rehydrated",
"539": "Milk, whole, UHT",
"540": "Milk, whole, pasteurised",
"541": "Condensed milk, without sugar, whole",
"542": "Condensed milk, with sugar, whole",
"543": "Milk, semi-skimmed, vitamin D fortified, UHT",
"544": "Milk, semi-skimmed, UHT",
"545": "Milk, semi-skimmed, pasteurised",
"546": "Milk, powder, semi-skimmed, non rehydrated",
"547": "Milk, skimmed, UHT",
"548": "Milk, skimmed, pasteurised",
"549": "Milk, powder, skimmed, non rehydrated",
"550": "Milk, semi-skimmed, reduced lactose",
"551": "Chocolate flavoured milk, with sugar, partially skimmed, fortified with vitamins and chemicals elements",
"552": "Strawberry flavoured milk, with sugar, partially skimmed, fortified with vitamins D",
"553": "Goat milk, whole, UHT",
"554": "Goat milk, half skimmed, UHT pasteurized",
"555": "Goat milk, whole, raw",
"556": "Sheep milk, whole",
"557": "Thick cream 30% fat, refrigerated",
"558": "Liquid cream 30% fat, UHT",
"559": "Whipped cream or Chantilly cream, under pressure, UHT",
"560": "Liquid cream, light, 15-20% fat, UHT",
"561": "Thick cream, light, 15-20% fat, refrigerated",
"562": "cream, light, 4 to 8% fat, liquid or thick",
"563": "Dairy drink or fermented milk or yogurt, flavoured, with sugar",
"564": "Uncured soft cheese, spreadable, around 30-40% fat, flavoured (ex : garlic and herbs)",
"565": "Dairy drink or fermented milk or yogurt, with fruits, with sugar",
"566": "Dairy drink or fermented milk or yogurt, plain, with sugar, with L Casei",
"567": "Fermented milk or dairy specialty, yogurt type, flavoured, with sugar, with bifidus",
"568": "Fermented milk or dairy specialty, yogurt type, with fruits, with sugar, with bifidus",
"569": "Fermented milk or dairy specialty, yogurt type, plain, with bifidus",
"570": "Yogurt, Greek-style, ewe's milk",
"571": "Yogurt, Greek-style, on a bed of fruits",
"572": "Yogurt, goat's milk, plain, around 5% fat",
"573": "Yogurt, fermented milk or dairy specialty, with cereals, fat free",
"574": "Yogurt, fermented milk or dairy specialty, flavoured, with sugar",
"575": "Yogurt, fermented milk or dairy specialty, flavoured, w sugar, with cream",
"576": "Yogurt, fermented milk or dairy specialty, w cereals",
"577": "Yogurt, fermented milk or dairy specialty, with chocolate shavings, with cream, with sugar",
"578": "Yogurt, fermented milk or dairy specialty, with fruits, with sweetener, fat free",
"579": "Yogurt, fermented milk or dairy specialty, with fruits, with sweetener, fat free, fortified with vitamin D",
"580": "Yogurt, fermented milk or dairy specialty, w fruits, with sugar",
"581": "Yogurt, fermented milk or dairy specialty, w fruits, with sugar, with cream",
"582": "Mozzarella cheese, from cow's milk",
"583": "Yogurt, fermented milk or dairy specialty, with fruits, with sugar, fortified with vitamin D",
"584": "Yogurt, fermented milk or dairy specialty, plain",
"585": "Yogurt, fermented milk or dairy specialty, plain, fat free",
"586": "Yogurt, fermented milk or dairy specialty, plain, w cream",
"587": "Yogurt, fermented milk or dairy specialty, plain, w sugar",
"588": "Drained soft fresh cheese, around 6% fat",
"589": "Fresh cream cheese, plain, fat free",
"590": "Fresh cream cheese, plain, around 3% fat",
"591": "Fresh cream cheese, plain, creamy, around 8% fat",
"592": "Fresh cream cheese, with fruits, creamy, with sugar, around 7% fat",
"593": "Petit-Suisse, fresh cream cheese type, with fruits, 2-3% fat",
"594": "Petit-Suisse, fresh cream cheese type, with fruits, 2-3% fat, fortified with calcium and vitamin D",
"595": "Petit-Suisse, fresh cream cheese type, plain, fat free",
"596": "Petit-Suisse, fresh cream cheese type, plain, around 4% fat",
"597": "Petit-Suisse like fresh cream cheese, plain, around 9% fat",
"598": "Petit-Suisse, fresh cream cheese type, fruits flavoured, 2-3% fat, fortified with calcium and vitamin D",
"599": "Custard dessert, reduced fat, refrigerated",
"600": "Flan with eggs, refrigerated",
"601": "Renneted milk, flavoured, refrigerated",
"602": "Milk jelly, flavoured, refrigerated",
"603": "Custard topped with whipped cream (chocolate, coffee, caramel or vanilla custard), refrigerated",
"604": "Milk jelly, flavoured, reduced fat and sugar, refrigerated",
"605": "Panna cotta, refrigerated",
"606": "Rum baba, prepacked",
"607": "Cheesecake, refrigerated",
"608": "Soy dessert, w fruits, refrigerated",
"609": "Soy dessert, plain, refrigerated",
"610": "Tiramisu, refrigerated",
"611": "Fermented milk drink, plain, skimmed milk",
"612": "Fermented milk drink, plain, whole milk",
"613": "Chestnut mousse, refrigerated",
"614": "Yogurt, Greek-style, plain",
"615": "Pineapple juice, reconstituted from a concentrate",
"616": "Artichoke, globe, cooked",
"617": "Beetroot, cooked",
"618": "Swiss chard, raw",
"619": "Broccoli, cooked",
"620": "Carrot, canned, drained",
"621": "Carrot, cooked",
"622": "Carrot, raw",
"623": "Red cabbage, raw",
"624": "Green cabbage, boiled/cooked in water",
"625": "Cauliflower, raw",
"626": "Cauliflower, cooked",
"627": "Palm heart, canned, drained",
"628": "Cucumber, pulp and peel, raw",
"629": "Mixed fruits juice, pure juice, multivitamin",
"630": "Courgette or zucchini, pulp and peel, cooked",
"631": "Watercress, raw",
"632": "Celery stalk, raw",
"633": "Chicory, raw",
"634": "Spinach, cooked",
"635": "Fennel, raw",
"636": "Mung bean, sprouted or soy spouts, canned, drained",
"637": "French bean, cooked",
"638": "Lettuce, raw",
"639": "Turnip, cooked",
"640": "Onion, raw",
"641": "Onion, cooked",
"642": "Garden peas, canned, drained",
"643": "Garden peas, cooked",
"644": "Dandelion, raw",
"645": "Leek, raw",
"646": "Leek, cooked",
"647": "Sweet pepper, green, yellow or red, raw",
"648": "Pumpkin, canned, drained",
"649": "Pumpkin, raw",
"650": "Radish, raw",
"651": "Salsify, cooked",
"652": "Tomato, raw",
"653": "Tomato, in season, raw",
"654": "Tomato, off season, raw",
"655": "Tomato, peeled, canned, drained",
"656": "Sweet corn, on the cob, cooked",
"657": "Diced mixed vegetables, canned, drained",
"658": "Artichoke, globe, raw",
"659": "Eggplant, raw",
"660": "Cardoon, raw",
"661": "Celeriac, raw",
"662": "Broccoli, raw",
"663": "Brussels sprout, raw",
"664": "Spinach, raw",
"665": "Carrot juice, pure juice",
"666": "Spinach, canned, drained",
"667": "French bean, raw",
"668": "French bean, canned, drained",
"669": "Butter bean or yellow bean, canned, drained",
"670": "Turnip cabbage, raw",
"671": "Sweet corn, canned, drained",
"672": "Artichoke, canned, drained",
"673": "Tomato paste, concentrated, canned",
"674": "Green cabbage, raw",
"675": "French bean, frozen, cooked",
"676": "Garden peas, raw",
"677": "Asparagus, canned, drained",
"678": "Brussels sprout, canned, drained",
"679": "Cocktail, alcohol-free (juices and syrup-based cocktail)",
"680": "Salsify, canned, drained",
"681": "Cauliflower, frozen, raw",
"682": "Spinach, frozen, raw",
"683": "Garden peas, frozen, raw",
"684": "Sweet pepper, green, raw",
"685": "Sweet pepper, green, cooked",
"686": "Sweet pepper, red, raw",
"687": "Sweet pepper, red, cooked",
"688": "Radish, black, raw",
"689": "Escaroles",
"690": "Beetroot, raw",
"691": "Garden peas and carrots, canned, drained",
"692": "Red cabbage, boiled/cooked in water",
"693": "Shallot, raw",
"694": "Lamb's lettuce, raw",
"695": "Mixed vegetables, frozen, raw",
"696": "Morel, raw",
"697": "Sweet corn, on the cob, frozen, raw",
"698": "Mixed fruits juice, orange based, multivitamin",
"699": "Sorrel, raw",
"700": "White cabbage, raw",
"701": "Tomato, green, raw",
"702": "Orange juice, reconstituted from a concentrate",
"703": "Cauliflower, frozen, cooked",
"704": "Garden peas, frozen, cooked",
"705": "Lima bean, raw",
"706": "Orange juice, home-made",
"707": "Red kuri squash, pulp, raw",
"708": "Leeks fondue or slow-simmered leeks",
"709": "Squash, butternut, pulp, raw",
"710": "Squash, all types, raw",
"711": "Chili pepper, raw",
"712": "Artichoke, heart, canned, drained",
"713": "Artichoke base, canned, drained",
"714": "Grape juice, pure juice",
"715": "Green endive, raw",
"716": "Pumpkin, pulp, raw",
"717": "Chinese cabbage (nappa cabbage or bok choy), raw",
"718": "Sweet pepper, yellow, raw",
"719": "Tomato pulp, canned",
"720": "Tomato puree, canned",
"721": "Cos or romaine lettuce, raw",
"722": "Tomato, cherry, raw",
"723": "Snow pea, raw",
"724": "Onion, dried",
"725": "Parsnip, raw",
"726": "Mung bean, sprouted or soy spouts, raw",
"727": "Bamboo shoots, canned, drained",
"728": "Tomato, dried",
"729": "Haricot beans with tomato sauce, canned",
"730": "Butter bean or yellow bean, raw",
"731": "Jerusalem artichoke, raw",
"732": "Bamboo shoots, raw",
"733": "Garden cress, raw",
"734": "Iceberg lettuce, raw",
"735": "Rutabaga or Swede, raw",
"736": "Butter bean or yellow bean, frozen, raw",
"737": "Broccoli, frozen, cooked",
"738": "Brussels sprout, frozen, raw",
"739": "Carrot, frozen, raw",
"740": "Garden peas and carrots, frozen, raw",
"741": "Garden peas and carrots, frozen, cooked",
"742": "Roman rocket, raw",
"743": "Curly kale, raw",
"744": "Curly kale, cooked",
"745": "Chinese cabbage (nappa cabbage or bok choy), cooked",
"746": "Artichoke base, frozen, raw",
"747": "Sweet corn, frozen, raw",
"748": "Turnip, frozen, raw",
"749": "Onion, frozen, raw",
"750": "Leek, frozen, raw",
"751": "Salsify, frozen, raw",
"752": "Piperade, Basque-style (fondue of sweet peppers and tomatoes flavoured with onions and garlics)",
"753": "Cardoon, cooked",
"754": "Tomato, pulp and peel, boiled/cooked in water",
"755": "Baby food jar with vegetables, from 4-6 months",
"756": "Baby food jar with vegetables and starch, from 4-6 months",
"757": "Vegetable dish for baby, with starch, from 6-8 months",
"758": "Vegetable dish for baby, with milk/cream and starch, from 6-8 months",
"759": "Vegetable dish for baby, with milk/cream and starch, from 8-12 months",
"760": "Vegetable dish for baby, with milk/cream and starch, from 12 months",
"761": "Soup for baby, with vegetables and potatoes",
"762": "Vegetable dish for baby, with milk/cream and starch, from 18 months",
"763": "Tomato, dried, in oil",
"764": "French bean, puree",
"765": "Vegetables (3-4 types), mashed",
"766": "Broccoli, puree",
"767": "Tomato coulis, canned (tomato puree semi-reduced 11%)",
"768": "Carrots, puree",
"769": "Vegetables pan-fried without mushrooms, frozen, raw",
"770": "Mixed vegetables for soups, frozen, raw",
"771": "Courgettes, puree",
"772": "Thinly-shredded or diced vegetables, frozen, raw",
"773": "Mixed vegetables for ratatouille, frozen",
"774": "Spring vegetables, frozen, raw (French beans, carrots, potatoes, green peas, onions)",
"775": "Tomato paste, double concentrate, canned",
"776": "Flat bean, raw",
"777": "Grapefruit juice, pure juice",
"778": "Spinach, young leaves, raw",
"779": "Mixed diced vegetables, frozen",
"780": "Mesclun or salads, mix of baby leaves",
"781": "Vegetables pan-fried or stir-fried, Asian-style, frozen, raw",
"782": "Grilled vegetables pan-fried, Mediterranean-style, frozen, raw",
"783": "Sweet pepper, red, canned, drained",
"784": "Celeriac, puree",
"785": "Asparagus, green, raw",
"786": "Lemon juice, pure juice",
"787": "Romanesco cauliflower or romanesco broccoli, raw",
"788": "Asparagus, white or purple, peeled, raw",
"789": "Glasswort (Salicornia sp.), fresh",
"790": "Green peas, puree",
"791": "Spinach, puree",
"792": "Tomato, roasted/baked, with skin",
"793": "Plant-based sausage with tofu (vegan)",
"794": "Mixed fruits juice, pure juice",
"795": "Apricot nectar",
"796": "Fruit juice, mixed - apple base, standard",
"797": "Mixed vegetables for couscous, frozen, raw",
"798": "Mixed vegetables for couscous, cooked",
"799": "Vegetables pan-fried with mushrooms (country-style), frozen",
"800": "Broad bean, cooked",
"801": "Haricot bean, dry",
"802": "Haricot bean, cooked",
"803": "Red kidney bean, cooked",
"804": "Lentil, dried",
"805": "Lentil, cooked",
"806": "Split pea, cooked",
"807": "Chick pea, cooked",
"808": "Flageolet bean, canned, drained",
"809": "Lentil, seasoned, canned, drained",
"810": "Haricot bean, canned, drained",
"811": "Flageolet bean, cooked",
"812": "Split pea, dried",
"813": "Chick pea, dried",
"814": "Broad bean, to shell, fresh",
"815": "Broad bean, dried",
"816": "Lentils, sprouted",
"817": "Red kidney bean, canned, drained",
"818": "Red kidney bean, dried",
"819": "Tomato juice, pure juice (average)",
"820": "Beans, mung, mature, seeds, dry",
"821": "Mung bean, cooked",
"822": "Chick pea, canned, drained",
"823": "lupin grain, raw",
"824": "Lentil, pink or red, dried",
"825": "Broad bean, fresh, frozen",
"826": "flageolet bean, frozen",
"827": "Flageolet bean, green, dried",
"828": "Pear nectar",
"829": "Flageolet bean, green, cooked",
"830": "Peanut, boiled/cooked in water, w salt",
"831": "Lentil, green, dried",
"832": "Lentil, blond, dried",
"833": "Green lentil, cooked",
"834": "Soy protein, textured, rehydrated, from soy flour",
"835": "Mixed fruits nectar, multivitamin",
"836": "Mixed fruits nectar",
"837": "Mixed fruits juice, reconstituted from a concentrate, multivitamin",
"838": "Pineapple juice, pure juice",
"839": "Apple juice, pure juice",
"840": "Soya flour",
"841": "Soybean, whole grain",
"842": "Tofu, plain",
"843": "Soy dessert, flavoured, refrigerated",
"844": "Tofu, smoked",
"845": "Soy patty or vegetable escalope",
"846": "Miso",
"847": "Tempeh",
"848": "Wakame (Undaria pinnatifida), dried or dehydrated",
"849": "Sea lettuce (ulva sp.), dried or dehydrated)",
"850": "Sea belt (Saccharina latissima), dried or dehydrated",
"851": "Laver (Porphyra sp.), dried or dehydrated",
"852": "Dulse (Palmaria palmata), dried or dehydrated",
"853": "Kombu or Japanese kelp (Laminaria japonica), dried or dehydrated",
"854": "Tangle (Laminaria digitata), dried or dehydrated",
"855": "Sea thong (Himanthalia elongata), dried or dehydrated",
"856": "Sea lettuce (Enteromorpha sp.), dried or dehydrated",
"857": "Mutton, meat, raw",
"858": "Sheep, foot, raw",
"859": "Lamb, cutlet, raw",
"860": "Lamb, leg, raw",
"861": "Lamb, shoulder, raw",
"862": "Lamb, rib chop, grilled/pan-fried",
"863": "Lamb, neck, raw",
"864": "Lamb, saddle, raw",
"865": "Lamb, chop fillet, raw",
"866": "Lamb, rib chop, raw",
"867": "Young goat, raw",
"868": "Egg, raw",
"869": "Egg white, raw",
"870": "Egg yolk, raw",
"871": "Egg white, powder",
"872": "Egg, hard-boiled",
"873": "Egg, poached",
"874": "Egg, powder",
"875": "Duck egg, raw",
"876": "Egg, scrambled, with added fat",
"877": "Egg, fried without added fat",
"878": "Omelette, with cheese",
"879": "Omelette, with herbs",
"880": "Spanish-style tortilla with onions (omelette with potatoes and onions)",
"881": "Chou pastry with praline flavoured creme",
"882": "Sponge cake w chocolate w or wo cherry",
"883": "Sponge cake w fruit mousse",
"884": "Dessert, Opera cake type",
"885": "Sponge sandwich cake filled and topped with strawberries or raspberries",
"886": "Canel\u00e9 cake",
"887": "Macaron filled with jam or cream",
"888": "Macaroon",
"889": "Christmas log cake",
"890": "Brownie (chocolate cake)",
"891": "Rock-shaped coconut cake",
"892": "Savoy-style sponge cake",
"893": "Pound cake, prepacked",
"894": "Lemon cake, all types",
"895": "Breton pudding cake with prunes",
"896": "Buttered and caramelized milk bread cake",
"897": "Gingerbread",
"898": "Baklava (oriental pastry with almonds and syrup)",
"899": "Gazelle horn (oriental pastry with almonds and syrup)",
"900": "Thin-crust pizza shell, raw",
"901": "Short crust pastry, raw",
"902": "Pastry, short crust, baked",
"903": "Short crust pastry, pure butter, raw",
"904": "Puff pastry, raw",
"905": "Puff pastry, frozen, raw",
"906": "Puff pastry, cooked",
"907": "Puff pastry, pure butter, raw",
"908": "Puff pastry, pure butter, frozen, raw",
"909": "Puff pastry, pure butter, cooked",
"910": "Shortbread dough, raw",
"911": "Shortbread dough, pure butter, raw",
"912": "Phyllo or filo dough, raw",
"913": "Shortbread dough, pure butter, frozen, raw",
"914": "Shortbread dough, pure butter, cooked",
"915": "Pastry cream puff",
"916": "Chou pastry filled with whipped cream",
"917": "Chou pastry filled with custard",
"918": "Chou pastry, sugar coated",
"919": "Profiteroles (chou pastry), with vanilla ice cream and chocolate sauce",
"920": "Profiteroles (chou pastry), with custard and chocolate sauce, refrigerated",
"921": "Eclair",
"922": "Fruit pie with confectioner's custard",
"923": "Apple turnover",
"924": "Apple pie with custard (flour, eggs, cream, sugar, apple alcohol)",
"925": "Lemon tart",
"926": "Apple tart",
"927": "Strawberries tart",
"928": "Apple crumble",
"929": "Apricots tart",
"930": "Red berries tart",
"931": "Tatin tart (caramelized upside-down apple tart)",
"932": "Chocolate tart from bakery",
"933": "Fruit tart",
"934": "Flan tart with eggs",
"935": "Fruit charlotte",
"936": "Semolina pudding, canned",
"937": "Rice pudding w caramel sauce, refrigerated",
"938": "Chocolate cake",
"939": "Chocolate soft cake, prepacked",
"940": "Yogurt cake",
"941": "Fresh cream cheese cake",
"942": "Soft cake, plain, sponge cake type",
"943": "Banana nectar",
"944": "Twelfth Night cake",
"945": "Twelfth Night cake (puff pastry filled with almond paste)",
"946": "Mango nectar",
"947": "Peach nectar",
"948": "Orange nectar",
"949": "Crepe, plain, prepacked, refrigerated",
"950": "Crepe, plain, prepacked, room temperature",
"951": "Buckwheat crepe, plain, prepacked",
"952": "Basque cake (shortbread), with custard",
"953": "Basque cake (shortbread), with cherries",
"954": "Blinis",
"955": "Crepe filled with sugar, prepacked",
"956": "Crepe, filled with jam, home-made",
"957": "Crepe, filled with chocolate or chocolate and hazelnut spread, home-made",
"958": "Crepe filled with chocolate, prepacked",
"959": "Crepe filled with strawberries, prepacked",
"960": "Soft waffle (Brussels-style), plain or with sugar, prepacked",
"961": "Soft waffle (Brussels-style), with chocolate, prepacked",
"962": "Wafer biscuit, crunchy (thin or dry), plain or with sugar, prepacked",
"963": "Wafer biscuit, crunchy (thin or dry), with chocolate, prepacked",
"964": "Doughnut, plain",
"965": "Doughnut filled with jam",
"966": "Doughnut filled with fruits, prepacked",
"967": "Doughnut filled with chocolate, prepacked",
"968": "Fruit cake",
"969": "Marble cake",
"970": "Fruit shortbread cake, prepacked",
"971": "Fruit soft cake",
"972": "Soft cake with nuts",
"973": "Soft cake filled with chocolate or chocolate drops or milk",
"974": "Sponge cake filled and covered with chocolate",
"975": "Soft cake filled with fruits, mini sponge roll type",
"976": "Muffin, with blueberry or chocolate",
"977": "Biscuit (cookie)",
"978": "Biscuit (cookie), plain",
"979": "Biscuit (cookie) vitamins content guaranteed",
"980": "Biscuit (cookie) vitamins and chemical elements content guaranteed",
"981": "Biscuit (cookie) filled with fruits, reduced fat",
"982": "Speculoos biscuit",
"983": "Biscuit (cookie), with vegetal fat",
"984": "Biscuit (cookie), assortment of miniature sweets and biscuits",
"985": "Butter biscuit (cookie)",
"986": "Biscuit (cookie), covering with a chocolate bar",
"987": "Butter biscuit (cookie), with chocolate",
"988": "Biscuit (cookie), with milk",
"989": "Crispy biscuit (cookie), without chocolate, reduced fat",
"990": "Breakfast biscuit (cookie)",
"991": "Breakfast biscuit (cookie), reduced sugar",
"992": "Biscuit (cookie), with chocolate, prepacked",
"993": "Biscuit (cookie) filled with fruit paste or fruit puree",
"994": "Biscuit (cookie), chocolate covering",
"995": "Biscuit bar filled with fruits, reduced fat",
"996": "Breakfast biscuit (cookie), with chocolate",
"997": "Breakfast biscuit (cookie) with cereals, fortified with vitamins and chemical elements",
"998": "Biscuit shortbread, with butter",
"999": "Biscuit shortbread, with butter and chocolate",
"1000": "Biscuit sponge cake, with chocolate, pre-packed",
"1001": "Biscuit (small tart), with chocolate, pre-packed",
"1002": "Biscuit shortbread, with chocolate, pre-packed",
"1003": "Biscuit shortbread, with fruits",
"1004": "Biscuit (cookie) with nuts (no chocolate or lightly chocolate-flavoured)",
"1005": "Florentine biscuit (chocolate sweet biscuit (cookie) with almonds)",
"1006": "Pastry biscuit with meringue",
"1007": "Shortbread cookie w coconut",
"1008": "Shortbread pastry biscuit",
"1009": "Shortbread cookie with fruit (apple, red berries, etc.)",
"1010": "Shortbread cookie with cocoa or chocolate, or praline or other",
"1011": "Biscuit (cookie), snack with dairy or vanilla filling",
"1012": "Biscuit (cookie), snack w chocolate filling",
"1013": "Biscuit (cookie), snack with fruits filling",
"1014": "Wafer biscuit without filling",
"1015": "Wafer biscuit, filled with chocolate, prepacked",
"1016": "Wafer biscuit, filled with nuts (hazelnut, almond, praline, etc.), with chocolate or not, prepacked",
"1017": "Wafer biscuit, plain or vanilla flavoured, prepacked",
"1018": "Wafer biscuit, with fruits",
"1019": "Wafer cookie",
"1020": "Wafer cookie",
"1021": "Wafer cookie, with chocolate, prepacked",
"1022": "Biscuit (cookie), sponge fingers or Lady fingers",
"1023": "Biscuit (cookie), cat tongue type",
"1024": "Meringue",
"1025": "Biscuit (cookie), thin, w almonds",
"1026": "Biscuit (cookie), thin, w fruits",
"1027": "Madeleine cake, pure butter",
"1028": "Madeleine biscuit, with chocolate, prepacked",
"1029": "Madeleine biscuit (cookie)",
"1030": "Biscuit puff pastry",
"1031": "Biscuit ( puff pastry), palmier, from bakery",
"1032": "Peer tart with almonds",
"1033": "Almond cake",
"1034": "Mille-feuille pastry",
"1035": "Biscuit sponge cake with fruits covering, pre-packed",
"1036": "Biscuit (small tart), with fruit covering",
"1037": "Soft cake, filled with fruit paste or fruit puree and sugar icing coated",
"1038": "Biscuit (cookie), with chocolate drops",
"1039": "Cone, wafer for ice cream",
"1040": "Dried sponge cake filled with fruits and covered with chocolate",
"1041": "Biscuit for baby",
"1042": "Biscuit (cookie), reduced sugar",
"1043": "Smoothie",
"1044": "Veal stew in white sauce",
"1045": "White bean stew, canned",
"1046": "Sauerkraut, with garnish",
"1047": "Shepherd's pie or cottage pie with meat",
"1048": "Salt-cured pork belly with lentils",
"1049": "Boiled meat with vegetables",
"1050": "Ratatouille cooked",
"1051": "Ravioli filled with meat, in tomato sauce, canned",
"1052": "Cheese souffl\u00e9",
"1053": "Spinach w cream sauce",
"1054": "Pa\u00eblla",
"1055": "Burgundy-style beef stew",
"1056": "Fish and shrimp 'au gratin', previously frozen",
"1057": "Eggplant au gratin (oven grilled)",
"1058": "Dauphin\u00e9-style creamed potatoes \"au gratin\"",
"1059": "Pre-fried potatoes, pan-fried, lardoons or chicken, and other, without green vegetables",
"1060": "Duck with sauce (green pepper sauce, hunter-style sauce,etc.)",
"1061": "Rabbit with mustard sauce",
"1062": "Beef stew with carrots",
"1063": "Pork sausage stew with cabbage, carrots and potatoes",
"1064": "Chicory w ham",
"1065": "Salmon with sorrel",
"1066": "Lasagna or cannelloni with meat (bolognese sauce)",
"1067": "Bolognese-style pasta (spaghetti, tagliatelle\u2026)",
"1068": "Fish w bordelaise sauce",
"1069": "Cantonese rice",
"1070": "Escalope cordon bleu (topped with a ham slice and Gruyere sauce)",
"1071": "White bean stew, with pork, canned",
"1072": "White bean stew, with duck or goose, canned",
"1073": "Cauliflower au gratin (oven grilled)",
"1074": "Stuffed tomatoes",
"1075": "Stuffed cabbage",
"1076": "Beef samosas or samoosas",
"1077": "Dumplings, steamed, with shrimps, cooked",
"1078": "Chili con carne",
"1079": "Cockerel in red wine sauce",
"1080": "Pasta au gratin (oven grilled)",
"1081": "Moussaka",
"1082": "Veal olive or veal paupiette",
"1083": "Poultry paupiette",
"1084": "Couscous royal (with different meats)",
"1085": "White fish with Provencal-style sauce (tomato sauce)",
"1086": "Lasagna or cannelloni with vegetables",
"1087": "Carbonara-style pasta (spaghetti, tagliatelle\u2026)",
"1088": "Tartiflette (cheese fondue)",
"1089": "Couscous w chicken",
"1090": "Lasagna or cannelloni with fish",
"1091": "White fish with mustard sauce",
"1092": "White fish with tarragon sauce",
"1093": "Fresh pasta, stuffed with cheese (e.g. ravioli), cooked",
"1094": "Couscous with vegetables",
"1095": "Fish or seafood in puff pastry",
"1096": "Couscous w meat",
"1097": "Fish brandade or fish shepherd's pie",
"1098": "Fresh pasta, stuffed with cheese and vegetables (e.g. ravioli), cooked",
"1099": "Fresh pasta, stuffed with meat (e.g. bolognese-style ravioli), raw",
"1100": "Fresh pasta, stuffed with meat (e.g. bolognese-style ravioli), cooked",
"1101": "Vegetables au gratin (oven grilled)",
"1102": "Beef, meat balls, cooked",
"1103": "Osso buco",
"1104": "Chinese specialty or dumplings",
"1105": "Veal, bread escalope, cooked",
"1106": "Chicken with curry and coconut milk sauce",
"1107": "Fresh pasta, stuffed with cheese (e.g. ravioli), raw",
"1108": "Fresh pasta, stuffed with cheese and vegetables (e.g. ravioli), raw",
"1109": "Noodles with shrimps saut\u00e9ed/pan-fried",
"1110": "White rice, cooked, with chicken",
"1111": "White rice, cooked, with vegetables and meat",
"1112": "Risotto, w vegetables",
"1113": "Risotto, w seafood",
"1114": "Risotto, w cheeses",
"1115": "Chicken, Basque style",
"1116": "Ravioli filled with vegetables, in tomato sauce, canned",
"1117": "Fresh pasta, stuffed with vegetables (e.g. ravioli), cooked",
"1118": "Riste (Eggplant, tomatoes, onions)",
"1119": "Pasta with cheese sauce (spaghetti, tagliatelle\u2026)",
"1120": "Vegetable rosti, pre-fried, frozen",
"1121": "Fresh pasta, stuffed with vegetables (e.g. ravioli), raw",
"1122": "Chicken tagine",
"1123": "Pork with caramel sauce",
"1124": "Vegetable rosti, pre-fried, frozen, cooked",
"1125": "Meat balls, beef, with tomato sauce",
"1126": "Lasagna or cannelloni with vegetables, cooked",
"1127": "Lasagna or cannelloni with vegetables and goat cheese, cooked",
"1128": "Sauerkraut, without garnish, drained, cooked",
"1129": "Soy-based sliced",
"1130": "Soybean and wheat-based nuggets (vegan)",
"1131": "Plant-based sausage with wheat or seitan",
"1132": "Cereal patty (without soybean)",
"1133": "Snails in puff pastry",
"1134": "Toasted ham sandwich topped with grated cheese",
"1135": "Cheese in puff pastry",
"1136": "Meat in puff pastry",
"1137": "Hot-dog",
"1138": "Pizza, cheese and tomato or Margherita pizza",
"1139": "Quiche Lorraine (eggs and lardoons quiche)",
"1140": "Crepe, filled with ham",
"1141": "Crepe or buckwheat crepe, filled with cheese, ham and bechamel sauce",
"1142": "Crepe or buckwheat crepe, filled with mushrooms and bechamel sauce",
"1143": "Vol-au-vent, with meat/poultry/quenelle",
"1144": "Hamburger, from fast foods restaurant",
"1145": "Cheeseburger, from fast foods restaurant",
"1146": "Cheeseburger, double, from fast foods restaurant",
"1147": "Veggie burger",
"1148": "Fish burger, fast foods restaurant",
"1149": "Vegetables tart",
"1150": "Croissant filled with ham",
"1151": "Spring roll",
"1152": "Egg roll or Nem",
"1153": "Sandwich made with pita bread, kebab and raw vegetables",
"1154": "Sandwich made with French bread, tuna, raw vegetables (tomato and lettuce) and mayonnaise",
"1155": "Caribbean-style fish fritters, fish acras",
"1156": "Sandwich made with panini bread, raw cured ham, mozzarella cheese and tomato",
"1157": "Pizza, ham and cheese",
"1158": "Small cheese chou-pastry puff",
"1159": "Fritter, filled (filo pastry) (garnish : shrimps, vegetables, poultry, meat, etc.)",
"1160": "Cheese tart",
"1161": "Provencal-style tart",
"1162": "Sushi or maki with seafood products",
"1163": "Pizza, bolognese-style w meat",
"1164": "Burritos",
"1165": "Fajitas",
"1166": "Pizza, chorizo or salami",
"1167": "Pizza, seafood",
"1168": "Pizza, salmon",
"1169": "Pizza, goat cheese and lardoons",
"1170": "Pizza, vegetables or pizza 4 seasons",
"1171": "Sandwich made with French bread, hard-boiled egg, raw vegetables (tomato and lettuce) and butter",
"1172": "Sandwich made with French bread, chicken, raw vegetables (lettuce & tomato) and mayonnaise",
"1173": "Pizza, cheese and mushrooms",
"1174": "Pizza, four cheeses",
"1175": "Gnocchi, from semolina, cooked",
"1176": "Sandwich made with French bread, ham and emmental cheese",
"1177": "Sandwich made with French bread, smoked salmon and butter",
"1178": "Sandwich made with French bread, tuna, sweet corn and raw vegetables",
"1179": "Chicken burger , fast foods restaurant",
"1180": "Poultry on skewer",
"1181": "Beef on skewer",
"1182": "Ham and cheese in puffed pastry",
"1183": "Savoy-style fondue (cheese wine and bread)",
"1184": "Gnocchi, from potato, cooked",
"1185": "Stuffed vegetables (excluding tomato)",
"1186": "Poultry nuggets",
"1187": "Large round sandwich with lettuce, tuna, anchovy and black olives",
"1188": "Sandwich made with French bread, ham and butter",
"1189": "Sandwich made with French bread, camembert cheese and butter",
"1190": "Sandwich made with French bread, dry sausage and butter",
"1191": "Sandwich made with French bread, ham, emmental cheese and butter",
"1192": "Canap\u00e9s (toasts w various toppings)",
"1193": "Provencal-style tomato (breaded tomatoes stuffed with garlic and parsley)",
"1194": "Topping sauce for pizza",
"1195": "Pizza, onion anchovy and black olives",
"1196": "Onion tart",
"1197": "Sandwich made with French bread, raw vegetables and mayonnaise",
"1198": "Sandwich made with French bread, turkey, raw vegetables (lettuce & tomato) and mayonnaise",
"1199": "Sandwich made with French bread, egg, raw vegetables (tomato and lettuce) and mayonnaise",
"1200": "Sandwich made with French bread, pork, raw vegetables (lettuce & tomato) and mayonnaise",
"1201": "Sandwich made with French bread, salami and butter",
"1202": "Salmon carpaccio, w marinade",
"1203": "Fish on skewer",
"1204": "Lamb on skewer",
"1205": "Toasted ham sandwich topped with grated cheese and a fried egg",
"1206": "Sandwich made with loaf bread, various filling",
"1207": "Cheese and ham, breaded",
"1208": "Grilled cheese & ham sandwich, prepacked",
"1209": "Pizza, ham cheese and mushrooms",
"1210": "Crepe or buckwheat crepe, filled with cheese and bechamel sauce",
"1211": "Flamed tart (thin-crusted onion tart with cream and lardoons)",
"1212": "Meat, poultry or fish fritters, home-made",
"1213": "Crepe or buckwheat crepe, filled with cheese, ham, mushrooms and bechamel sauce",
"1214": "Leek tart or pie",
"1215": "Salmon tart",
"1216": "Vegetable fritters",
"1217": "Fritter, filled with potatoes (filo pastry)",
"1218": "Riesling wine and pork pie",
"1219": "Tomato tart",
"1220": "Crepe or buckwheat crepe, filled with egg, ham and cheese",
"1221": "Scallops tart",
"1222": "Yakitori (grilled meat on skewers, Japanese-style, with sauce)",
"1223": "Pork on skewer, raw",
"1224": "Pastilla, filled with chicken (pie)",
"1225": "Pizza, lardoons onions and cheese",
"1226": "Falafel",
"1227": "Sandwich made with wholemeal loaf bread, ham, raw vegetables, cheese (optional)",
"1228": "Sandwich made with wholemeal loaf bread, tuna, raw vegetables and mayonnaise",
"1229": "Sandwich made with wholemeal loaf bread, ham and cheese",
"1230": "Sandwich made with wholemeal loaf bread, chicken, raw vegetables and mayonnaise",
"1231": "Crepe or buckwheat crepe, filled with mushrooms and bechamel sauce, cooked",
"1232": "Egg roll or Nem, with chicken, cooked",
"1233": "Egg roll or Nem, with pork, cooked",
"1234": "Egg roll or Nem, with shrimp and/or crab, cooked",
"1235": "Shepherd's pie with duck, cooked",
"1236": "Vegetables au gratin (oven grilled) in bechamel sauce",
"1237": "Plant-based ball with wheat and/or soybean, prepacked",
"1238": "Plant-based patty or steak from wheat and soybean (vegan), prepacked",
"1239": "Soy-based patty, plain (vegetable steak), prepacked",
"1240": "Seitan",
"1241": "Celeriac in remoulade sauce, prepacked",
"1242": "Prepared mixed tuna and vegetable salad, canned, drained",
"1243": "Prepared mixed meat/fish canned, drained salad",
"1244": "Green salad, raw, without seasoning",
"1245": "Greek-style marinated mushrooms",
"1246": "Prepared potatoes salad, home-made",
"1247": "Tabbouleh, prepacked",
"1248": "Potato salad, pi\u00e9montaise-style, prepacked",
"1249": "Ox muzzle in salad dressing sauce",
"1250": "Prepared rice salad",
"1251": "Prepared pasta salad, vegetarian",
"1252": "Prepared pasta salad, with vegetable, meat or fish",
"1253": "Guacamole, prepacked",
"1254": "Hummus",
"1255": "Maroilles cheese tart or maroilles cheese flamiche",
"1256": "Crepe or buckwheat crepe, filled with fish and/or seafood",
"1257": "Caesar's salad (salad, chicken, cro\u00fbtons, sauce)",
"1258": "Lasagna or cannelloni with goat cheese and spinach",
"1259": "Soup, lentils, prepacked, to be reheated",
"1260": "Soup, chicken and vegetables, prepacked, to be reheated",
"1261": "Soup, mixed vegetables, prepacked, to be reheated",
"1262": "Soup, fish and/or crustacean, prepacked, to be reheated",
"1263": "Soup, mixed vegetables, dehydrated and reconstituted",
"1264": "Soup, leek and potato, prepacked, to be reheated",
"1265": "Soup, chicken and vermicelli, prepacked, to be reheated",
"1266": "Soup, onions, prepacked, to be reheated",
"1267": "Soup, mushrooms, prepacked, to be reheated",
"1268": "Soup, carrots, prepacked, to be reheated",
"1269": "Soup, tomatoes, prepacked, to be reheated",
"1270": "Soup, chorba frik, w meat and frik",
"1271": "Soup, minestrone, prepacked, to be reheated",
"1272": "Soup, pistou (basil, garlic and olive oil), dehydrated and reconstituted",
"1273": "Soup, fish and/or crustacean, dehydrated and reconstituted",
"1274": "Soup, Asian-style with noodles, dehydrated and reconstituted",
"1275": "Soup, Moroccan, dehydrated and reconstituted",
"1276": "Soup, leek and potato, dehydrated and reconstituted",
"1277": "Soup, chicken and vegetables, dehydrated and reconstituted",
"1278": "Broth, stock or bouillon, beef",
"1279": "Soup, asparagus, dehydrated and reconstituted",
"1280": "Soup, cereals and vegetables, dehydrated and reconstituted",
"1281": "Soup, tomatoes, dehydrated and reconstituted",
"1282": "Soup, mushrooms, dehydrated and reconstituted",
"1283": "Soup, onions, dehydrated and reconstituted",
"1284": "Soup, pumpkin, prepacked, to be reheated",
"1285": "Broth, stock or bouillon, poultry",
"1286": "Broth, stock or bouillon, vegetables",
"1287": "Soup, tomato and vermicelli, dehydrated and reconstituted",
"1288": "Soup, chicken and vermicelli, dehydrated and reconstituted",
"1289": "Soup, pumpkin, dehydrated and reconstituted",
"1290": "Soup, Asian-style with noodles, prepacked, to be reheated",
"1291": "Soup, minestrone, dehydrated and reconstituted",
"1292": "Soup, watercress, dehydrated and reconstituted",
"1293": "Soup, vegetables with cheese, prepacked, to be reheated",
"1294": "Soup, green vegetables, prepacked, to be reheated",
"1295": "Soup, split peas, prepacked, to be reheated",
"1296": "Soup, gazpacho, cold",
"1297": "Soup, asparagus, prepacked, to be reheated",
"1298": "Atlantic herring, smoked, fillet",
"1299": "Anchovy, fillets, rolled with capers, semi-preserved, drained",
"1300": "Alaska pollock, raw",
"1301": "Atlantic herring, marinated, or rollmops",
"1302": "Atlantic herring, raw",
"1303": "Atlantic herring, fried",
"1304": "Lemon sole, breaded, fried",
"1305": "Anglerfish, raw",
"1306": "Mackerel, roasted/baked",
"1307": "Mackerel, fried",
"1308": "Whiting, fried",
"1309": "Cod, salted, boiled/cooked in water",
"1310": "Pilchard, in tomato sauce, canned, drained",
"1311": "Fish, croquette, fritter or nuggets, fried",
"1312": "Fish, breaded, frozen, raw",
"1313": "Fish, breaded, fried",
"1314": "European pilchard or sardine, in oil, canned, drained",
"1315": "European pilchard or sardine, in tomato sauce, canned, drained",
"1316": "Salmon, raw, farmed",
"1317": "Salmon, smoked",
"1318": "Salmon, steamed",
"1319": "Tuna, plain, canned, drained",
"1320": "European pilchard or sardine, in olive oil, canned, drained",
"1321": "Tuna, roasted/baked",
"1322": "Cod, raw",
"1323": "European hake, raw",
"1324": "Surimi, on sticks, in slices or grated, crab flavour",
"1325": "Hake, fillet, frozen, raw",
"1326": "Mackerel, raw",
"1327": "Ray, raw",
"1328": "Tuna, raw",
"1329": "Fish, in sauce, frozen",
"1330": "European plaice, raw",
"1331": "Common dab, raw",
"1332": "Common sole, raw",
"1333": "Yellowfin tuna, raw",
"1334": "European pilchard or sardine, raw",
"1335": "Tuna, in sunflower oil, canned, drained",
"1336": "Atlantic bass, raw",
"1337": "Albacore, raw",
"1338": "Albacore, steamed under pressure",
"1339": "Common anchovy, raw",
"1340": "Swordfish, raw",
"1341": "Pond smelt, raw",
"1342": "Mackerel, fillet, in tomato sauce, canned, drained",
"1343": "Mackerel, smoked",
"1344": "Gilthead seabream, raw, farmed",
"1345": "Haddock, smoked",
"1346": "Sea trout, raw",
"1347": "Whiting, raw",
"1348": "Mackerel, fillet, in mustard sauce, canned, drained",
"1349": "Mackerel, fillet, in white wine, canned, drained",
"1350": "Cod, salted, dried",
"1351": "Black seabream, raw",
"1352": "Bonito, raw",
"1353": "John dory, raw",
"1354": "Red gurnard, raw",
"1355": "Capelin, raw",
"1356": "Blackspot seabream, raw",
"1357": "Horse mackerel, raw",
"1358": "Salmon, canned, drained",
"1359": "Haddock, raw",
"1360": "Mackerel, canned in brine, drained",
"1361": "Whiting, breaded",
"1362": "Pollack, raw",
"1363": "Ling, raw",
"1364": "Saithe, raw",
"1365": "European pilchard or sardine, grilled",
"1366": "Snapper, raw",
"1367": "Greenland halibut, raw",
"1368": "Shark, raw",
"1369": "Arctic char, raw",
"1370": "Spotted wolffish",
"1371": "European sprat, raw",
"1372": "Turbot, raw",
"1373": "Anchovy, in salt (semi-preserved)",
"1374": "Albacore, in olive oil, canned, drained",
"1375": "Yellowfin tuna, canned in brine, drained",
"1376": "Mackerel, marinated",
"1377": "Common anchovy, marinated",
"1378": "Tonguesole, raw",
"1379": "Mediterranean bass, raw, wild",
"1380": "Mediterranean bass, raw, farmed",
"1381": "Golden redfish, raw",
"1382": "Salmon, grilled/pan-fried",
"1383": "Salmon, farmed, roasted/baked",
"1384": "European pilchard or sardine, fillets without fishbone, in olive oil, canned, drained",
"1385": "Shallow-water Cape hake, raw",
"1386": "Ling, cooked",
"1387": "Surimi, filled w cheese",
"1388": "Tuna, flaked, in tomato sauce, canned, drained",
"1389": "Tuna, in Catalan-style or in tomato sauce, canned",
"1390": "Surmullet or red mullet, fillet with skin, frozen, raw (from Thailand or Senegal)",
"1391": "Tuna, flaked, in oil, canned, drained",
"1392": "Ham and mushroom pancake in cheese sauce",
"1393": "Grated carrots",
"1394": "Coleslaw, w sauce, prepacked",
"1395": "Gnocchi, from potato, raw",
"1396": "Gnocchi, from semolina, raw",
"1397": "Croissant filled with ham and cheese",
"1398": "Goat cheese and spinach tart",
"1399": "Squid and spicy tomato sauce pie",
"1400": "Tabbouleh with chicken, prepacked",
"1401": "Pizza, tuna",
"1402": "Pizza, kebab",
"1403": "Pizza, chicken",
"1404": "Pizza with raclette or tartiflette cheese and lardoons",
"1405": "Pizza, cured ham",
"1406": "Trout, farmed, raw",
"1407": "Rainbow trout, raw, farmed",
"1408": "Brown bullhead, raw",
"1409": "Pangasius, filets, cooked",
"1410": "Salmon trout, raw",
"1411": "Nile perch, raw",
"1412": "Trout, farmed, smoked",
"1413": "Pork, shoulder, raw",
"1414": "Pork, belly, raw",
"1415": "Pork loin, raw",
"1416": "Pork, knuckle or shank, raw",
"1417": "Pork loin, cooked",
"1418": "Pork, shoulder, cooked",
"1419": "Pork, chop, raw",
"1420": "Pork, chop, grilled",
"1421": "Pork, round steak, raw",
"1422": "Pork, round steak, cooked",
"1423": "Pork, rack, raw",
"1424": "Pork tenderloin, lean, raw",
"1425": "Pork tenderloin roast, cooked",
"1426": "Pork filet mignon, cooked",
"1427": "Pork filet mignon, raw",
"1428": "Pork, roast, raw",
"1429": "Pork, roast, cooked",
"1430": "Pork, loin, raw",
"1431": "Pork, spare-ribs, raw",
"1432": "Pork, spare-ribs, braised",
"1433": "Pork, loin, roasted/baked",
"1434": "Pork, ham escalope, raw",
"1435": "Pork, ham escalope, cooked",
"1436": "Pork, jowl, rindless, raw",
"1437": "Pork, shoulder lower half, without rind, fat and bone, raw",
"1438": "Pork, knuckle oh ham, without rind, fat and bone, raw",
"1439": "Pork, 90/10 trimming, raw",
"1440": "Pork, shoulder upper half, without rind, fat and bone, raw",
"1441": "Prok, eye of shortloin, raw",
"1442": "Lardoons, raw",
"1443": "Pork belly, smoked, raw",
"1444": "Bresaola",
"1445": "Lardoons, cooked",
"1446": "Pork ear sat-cured",
"1447": "Pork trotters salt-cured",
"1448": "Pork belly salt-cured",
"1449": "Pork ham, intended to be cooked or pork ham, intended to be roast/bake",
"1450": "Smoked lardoons, raw",
"1451": "Smoked lardoons, cooked",
"1452": "Bacon, back",
"1453": "Cured ham, raw",
"1454": "Cured ham, raw, smoked",
"1455": "Dry-cured ham, fat and rind removed",
"1456": "Cooked ham, smoked",
"1457": "Cured ham, raw, smoked, reduced fat",
"1458": "Bayonne Cured ham, raw, smoked",
"1459": "Dry-cured ham",
"1460": "Parma dry-cured ham",
"1461": "Serrano dry-cured ham",
"1462": "Coppa",
"1463": "Pancetta, dried",
"1464": "Cooked ham, superior quality",
"1465": "Cooked ham, superior quality, with rind",
"1466": "Cooked ham, superior quality, rind less",
"1467": "Braised ham on the bone",
"1468": "Cooked ham, superior quality, rind less and fatless",
"1469": "Cooked ham, superior quality, reduced salt",
"1470": "Cooked ham, choice",
"1471": "Cooked ham, choice, w rind",
"1472": "Cooked ham, choice, rind less and fatless",
"1473": "Round of ham, cooked",
"1474": "Ham in cube, grated or minced",
"1475": "Cooked pork shoulder, standard, rind less and fatless",
"1476": "Cooked ham, Parisian-style, rind less and fatless",
"1477": "Poultry, minced meat",
"1478": "Poultry ham in cube, grated or minced",
"1479": "Knuckle of ham, cooked",
"1480": "Chicken cooked ham, in slices",
"1481": "Turkey cooked ham, in slices",
"1482": "Salt curing roast poultry, cooked",
"1483": "Baby milk, first age, powder, non rehydrated",
"1484": "Chipolata sausage, cooked",
"1485": "Baby milk, second age, powder, non rehydrated",
"1486": "Sausage meat, raw",
"1487": "Sausage meat, pure pork, raw",
"1488": "Sausage meat, pork and beef, raw",
"1489": "Morteaux sausage",
"1490": "Montbeliard sausage",
"1491": "Morteaux sausage, boiled/cooked in water",
"1492": "Toulouse sausage, raw",
"1493": "Chipolata slim sausage, raw",
"1494": "Smoked Alsatian sausage or Landj\u00e4ger",
"1495": "Poultry sausage, delicatessen style",
"1496": "Poultry sausage",
"1497": "Frankfurter sausage",
"1498": "Merguez sausage, raw",
"1499": "Merguez sausage, pure beef, raw",
"1500": "Merguez sausage, pork and beef, raw",
"1501": "Merguez sausage, beef, mutton and pork, raw",
"1502": "Merguez sausage, beef and mutton, raw",
"1503": "Liver sausage",
"1504": "Diot (sausage from Savoy), raw",
"1505": "Soy-based minced, prepacked",
"1506": "Dry sausage",
"1507": "Dry sausage, pure pork",
"1508": "Dry sausage, pure pork, superior quality",
"1509": "Rosette dry sausage",
"1510": "Sausage, dried",
"1511": "Dry sausage w walnuts and/or hazelnuts",
"1512": "Spicy pork sausage with red pepper, no precision",
"1513": "Dry spicy pork sausage with red pepper",
"1514": "Spicy pork sausage with red pepper, in large slices",
"1515": "Salami",
"1516": "Salami, pure pork",
"1517": "Salami, pork and beef",
"1518": "Salami, Danish-style",
"1519": "Garlic sausage",
"1520": "Cooked sausage, pure pork",
"1521": "Sausage from Paris",
"1522": "Sausage in a brioche crust, cooked",
"1523": "Saveloy or cervelat",
"1524": "Saveloy or cervelat (from Obernai Alsace)",
"1525": "Strasbourg sausage",
"1526": "Cocktail sausage",
"1527": "Viennese sausage, pork and veal, raw",
"1528": "Ham sausage",
"1529": "Beer sausage",
"1530": "Mortadella",
"1531": "Mortadella, pure pork",
"1532": "Pork and beef mortadella",
"1533": "Mortadella with pistachios, pure pork",
"1534": "Chocolate bar with biscuit",
"1535": "Coated chocolate bar without biscuit",
"1536": "Coconut bar, with chocolate coating",
"1537": "Candies, all types",
"1538": "Milk chocolate bar",
"1539": "Dark chocolate bar, less than 70% cocoa",
"1540": "Honey",
"1541": "Milk chocolate bar, with puffed/popped cereals",
"1542": "White chocolate bar",
"1543": "Chocolate confectionery or bar, with dairy filling",
"1544": "Sorbet, on stick",
"1545": "Fruit jelly",
"1546": "Sugar, white",
"1547": "Sugar, brown",
"1548": "Milk chocolate bar, with dried fruits (nuts, almonds, raisins, praline)",
"1549": "Milk chocolate bar, without sugar, with sweeteners",
"1550": "Jam, strawberry",
"1551": "White chocolate bar, with dried fruits (nuts, almonds, raisins, praline)",
"1552": "Dark chocolate bar, without sugar and with artificial sweeteners",
"1553": "Chocolate spread with hazelnuts",
"1554": "Nougat",
"1555": "Syrup, maple",
"1556": "Ice cream, chocolate coated",
"1557": "Sugar-coated almond",
"1558": "Jam, apricot",
"1559": "Jam, cherry",
"1560": "Marmalade, orange",
"1561": "Dulce de leche or confiture de lait",
"1562": "Chocolate confectionery, sugar coated",
"1563": "Sugar and chocolate coated peanut",
"1564": "Sugar, vanilla flavoured",
"1565": "Candies, marshmallows",
"1566": "Hard candy and lollipop",
"1567": "Jelly candy",
"1568": "Jam, raspberry",
"1569": "Chocolate confectionery, filled with nuts and/or praline",
"1570": "Saccharin sweetener",
"1571": "Chocolate and nut confectionery filled with praline",
"1572": "Cane molasses",
"1573": "Dark chocolate bar, with fruits (orange, raspberries, pear)",
"1574": "Dark chocolate bar, with dried fruits (nuts, almonds, raisin, praline)",
"1575": "Chocolate bar with dried fruits",
"1576": "Dark chocolate, filled with mint confectionery",
"1577": "Chocolate snack bar, dairy filling",
"1578": "Dark chocolate bar, more than 70% cocoa",
"1579": "Fructose",
"1580": "Milk chocolate, filled",
"1581": "Dark chocolate bar, filled with praline",
"1582": "Soft caramel candy",
"1583": "Milk chocolate bar, filled with praline",
"1584": "Dark chocolate bar, more than 40% cocoa, for cooking",
"1585": "Syrup, agave",
"1586": "Chocolate confectionery, filled with wafer",
"1587": "Melon and almond Candy on a unleavened bread layer",
"1588": "Toblerone milk cholcolate bar w nougat",
"1589": "Chocolate snack bar, dairy filling with sponge cake",
"1590": "Milky cereal breakfast bar, with chocolate or not, fortified with vitamins and minerals",
"1591": "Cereal bar with fruit, fortified with vitamins and minerals",
"1592": "Cereal bar with chocolate, fortified with vitamins and minerals",
"1593": "Chocolate cereal bar",
"1594": "Jam, reduced sugar",
"1595": "Cereal bar w fruit",
"1596": "Cereal bar with almonds or hazelnuts",
"1597": "Breakfast cereals, popped or puffed wheat grain, with honey or caramel, fortified with vitamins and chemical elements",
"1598": "Breakfast cereals, with chocolate, not filled, fortified with vitamins and chemical elements",
"1599": "Breakfast cereals, rich in fibre, with or without fruits, fortified with vitamins and chemical elements",
"1600": "Breakfast cereals, corn flakes, plain, fortified with vitamins and chemical elements",
"1601": "Breakfast cereals, rich in fibre, with chocolate, fortified with vitamins and chemical elements",
"1602": "Breakfast cereals, chocolate wheat grain flakes, fortified with vitamins and chemical elements",
"1603": "Breakfast cereals, chocolate wheat grain flakes (not fortified with vitamins and chemical elements)",
"1604": "Breakfast cereals, with chocolate, not filled (not fortified with vitamins and chemical elements)",
"1605": "Breakfast cereals, filled with chocolate or chocolate-hazelnuts, fortified with vitamins and chemical elements",
"1606": "Breakfast cereals, filled with chocolate or chocolate-hazelnuts",
"1607": "Breakfast cereals, filled with a filling other than chocolate, fortified with vitamins and chemical elements",
"1608": "Breakfast cereals, diet, plain or with honey, fortified with vitamins and chemical elements",
"1609": "Breakfast cereals, diet, with chocolate, fortified with vitamins and chemical elements",
"1610": "Breakfast cereals, diet, with fruits, fortified with vitamins and chemical elements",
"1611": "Breakfast cereals, diet, with dried fruits, fortified with vitamins and chemical elements",
"1612": "Breakfast cereals, diet, with chocolate, not fortified",
"1613": "Breakfast cereals, diet, with fruits, not fortified",
"1614": "Breakfast cereals, diet, plain, not fortified",
"1615": "Breakfast cereals, corn flakes, sugar iced (not fortified with vitamins and chemical elements)",
"1616": "Muesli, crunchy, with fruits and/or dried fruits, grains (not fortified with vitamins and chemical elements)",
"1617": "Muesli, crunchy, with chocolate (not fortified with vitamins and chemical elements)",
"1618": "Muesli, flakes (Bircher-style), with fruits or dried fruits, fortified with vitamins and chemical elements",
"1619": "Muesli, crunchy, with fruits or dried fruits, fortified with vitamins and chemical elements",
"1620": "Muesli, crunchy, with chocolate, with or without fruits, fortified with vitamins and chemical elements",
"1621": "Muesli, flakes (Bircher-style), with fruits or dried fruits, without sugar",
"1622": "Breakfast cereals, very rich in fibre, fortified with vitamins and chemical elements",
"1623": "Breakfast cereals, corn flakes, sugar iced, fortified with vitamins and chemical elements",
"1624": "Breakfast cereals, wheat flakes with walnuts, hazelnuts or almonds, fortified with vitamins and chemical elements",
"1625": "Muesli, flakes (Bircher-style)",
"1626": "Breakfast cereals, puffed/popped corn, with honey (not fortified with vitamins and chemical elements)",
"1627": "Breakfast cereals, puffed/popped corn, with honey, fortified with vitamins and chemical elements",
"1628": "Breakfast cereals, puffed/popped cereals, wholemeal, fortified with vitamins and chemical elements",
"1629": "Breakfast cereals, mix of puffed or extruded cereals, fortified with vitamins and chemical elements",
"1630": "Muesli, flakes (Bircher-style), with fruits or dried fruits (not fortified with vitamins and chemical elements)",
"1631": "Oat flakes, pre-cooked, raw",
"1632": "Rabbit, meat, raw",
"1633": "Rabbit, meat, cooked",
"1634": "Hen, meat and skin, raw",
"1635": "Hen, meat only, raw",
"1636": "Chicken, leg, meat and skin, raw",
"1637": "Chicken, meat, raw",
"1638": "Chicken, leg, meat and skin, roasted/baked",
"1639": "Chicken, meat and skin, roasted/baked",
"1640": "Chicken leg, meat, roasted/baked",
"1641": "Chicken, white race, meat and skin, raw",
"1642": "Chicken, free-range, meat and skin, raw",
"1643": "Chicken, meat and skin, raw",
"1644": "Chicken, breast, without skin, raw",
"1645": "Chicken, breast, without skin, cooked",
"1646": "Chicken high leg, meat, raw",
"1647": "Chicken, drumstick, raw",
"1648": "Chicken, wing, meat and skin, raw",
"1649": "Chicken, leg, meat, raw",
"1650": "Chicken, nugget, breaded croquette",
"1651": "Chicken, breast, meat and skin, raw",
"1652": "Chicken leg, meat, boiled/cooked in water",
"1653": "Chicken, breast, meat and skin, roasted/baked",
"1654": "Chicken, wing, meat and skin, roasted/baked",
"1655": "Chicken, marinated wing, roasted/baked",
"1656": "Turkey, breaded escalope",
"1657": "Capon, meat and skin, raw",
"1658": "Quail, meat and skin, cooked",
"1659": "Duck, meat, raw",
"1660": "Duck, meat, roasted/baked",
"1661": "Duck, leg, meat and skin, raw",
"1662": "Duck, meat and skin, raw",
"1663": "Duck, breast fillet",
"1664": "Turkey, meat and skin, raw",
"1665": "Turkey, meat, raw",
"1666": "Turkey, meat, roasted/baked",
"1667": "Turkey, escalope, raw",
"1668": "Turkey, leg, meat and skin, raw",
"1669": "Turkey, leg, meat only, raw",
"1670": "Turkey, escalope, roasted/baked",
"1671": "Turkey, wing, raw",
"1672": "Milanese-style turkey escalope or breaded veal escalope",
"1673": "Goose, meat, raw",
"1674": "Pigeon, meat, roasted/baked",
"1675": "Guinea fowl, raw",
"1676": "Guinea fowl, breast, raw",
"1677": "Guinea fowl, leg, raw",
"1678": "Pizza base, raw",
"1679": "Tomato sauce for pizza base",
"1680": "Prawn crackers",
"1681": "Corn chips or tortilla chips",
"1682": "Puffed salty snacks, made from potato",
"1683": "Salty snacks, mini pretzels or sticks",
"1684": "Puffed salty snacks, made from potato and soy",
"1685": "Puffed salty snacks, made from maize/corn, without peanuts",
"1686": "Salty snacks, crackers, garnished or filled with cheese",
"1687": "Salty snacks, crackers, plain",
"1688": "Salty snacks, crackers, reduced fat",
"1689": "Puffed salty snacks, made from maize/corn, with peanuts",
"1690": "Salty snacks, made from potato",
"1691": "Coated peanuts",
"1692": "Salty snacks, puff pastry",
"1693": "Salted crispy crepe with cheese, prepacked",
"1694": "Crouton with garlic, herbs or onions, prepacked",
"1695": "Milkshake, from fast foods restaurant",
"1696": "Custard dessert, chocolate, refrigerated",
"1697": "Chocolate mousse (milk-based), refrigerated",
"1698": "Custard cream with caramel sauce, refrigerated",
"1699": "Mousse, chocolate, refrigerated",
"1700": "Custard cream with eggs (a small jar of chocolate or vanilla cream or other flavour), refrigerated",
"1701": "Rice pudding, refrigerated",
"1702": "Caramelized custard cream (cr\u00e8me br\u00fbl\u00e9e), refrigerated",
"1703": "Custard dessert, vanilla, canned",
"1704": "Floating island (meringue poached in milk and served in a light custard cream), refrigerated",
"1705": "Semolina pudding, refrigerated",
"1706": "Fruit liegeois",
"1707": "Fruit mousse, refrigerated",
"1708": "Custard dessert, vanilla, refrigerated",
"1709": "Rice pudding, canned",
"1710": "Chocolate cake w melting centre, refrigerated",
"1711": "Mousse (chocolate, coffee, caramel or vanilla) topped with whipped cream, refrigerated",
"1712": "French toast",
"1713": "Custard dessert, coffee, refrigerated",
"1714": "Custard dessert, caramel, refrigerated",
"1715": "Frozen dessert, ice cream with meringue, vacherin ice cream or mystery ice cream type",
"1716": "Ice cream on stick, with chocolate coating",
"1717": "Custard dessert, chocolate, canned",
"1718": "Ice cream, cone (normal size)",
"1719": "Frozen dessert, Sundae ice cream type",
"1720": "Ice cream, in box",
"1721": "Frozen dessert, puff pastry, to share",
"1722": "Frozen yogurt",
"1723": "baked Alaska",
"1724": "Belle Helene pear dessert (cooked pear topped with hot chocolate sauce on a bed of vanilla ice cream)",
"1725": "Ice cream, luxury, in box",
"1726": "Ice cream, luxury, in cup",
"1727": "Ice cream, cone, mini",
"1728": "Ice cream, in individual cup",
"1729": "Sorbet, in box",
"1730": "Ice lolly",
"1731": "Iced nougat",
"1732": "Frosted lemon or orange (sorbet)",
"1733": "Ice cream, in cup for children",
"1734": "Goblet of ice cream, coffee or chocolate ice cream topped with whipped cream",
"1735": "Ice cream log",
"1736": "Light custard cream with vanilla, prepacked",
"1737": "Pastry cream or custard",
"1738": "Tapioca, raw",
"1739": "Brain, pork, raw",
"1740": "Brain, calf, raw",
"1741": "Potato, boiled/cooked in water",
"1742": "Potato crisps",
"1743": "Heart, beef, raw",
"1744": "Heart, chicken, raw",
"1745": "Heart, pork, raw",
"1746": "Heart, veal, raw",
"1747": "Potato, peeled, raw",
"1748": "Liver, lamb, raw",
"1749": "Liver, young cow, raw",
"1750": "Liver, calf, raw",
"1751": "Liver, poultry, raw",
"1752": "Liver, rabbit, raw",
"1753": "Liver, chicken, raw",
"1754": "Liver, pork, cooked",
"1755": "Liver, turkey, raw",
"1756": "Liver, chicken, cooked",
"1757": "Liver, pork, raw",
"1758": "Liver, goose, raw",
"1759": "Liver, duck, raw",
"1760": "Mashed potato balls pre-fried, frozen, raw",
"1761": "Potato, steamed, vacuum-packed",
"1762": "Potato, saut\u00e9ed/pan-fried",
"1763": "Potato flakes, dehydrated, with milk or cream",
"1764": "Potato puree, made from flakes, reconstituted with whole milk, with added fat",
"1765": "Potato puree, with milk and butter, unsalted",
"1766": "Potato puree, made from flakes, reconstituted with semi-skimmed milk and water, unsalted",
"1767": "Dauphine potato, frozen, raw",
"1768": "Tongue, calf, cooked",
"1769": "Tongue, beef, raw",
"1770": "Tongue, beef, cooked",
"1771": "Tongue, pork, raw",
"1772": "Dauphine potato, frozen, cooked",
"1773": "Potato flakes, dehydrated, plain",
"1774": "New potato, raw",
"1775": "Potato, roasted/baked",
"1776": "Potato, pre-fried into cubes, frozen, cooked",
"1777": "Ware potato, boiled/cooked in water, peeled",
"1778": "French fries or chips, frozen, roasted/baked",
"1779": "Sweetbread, calf, raw",
"1780": "French fries or chips, frozen, deep-fried",
"1781": "Duchesse potato, frozen, cooked",
"1782": "Mashed potato balls pre-fried, frozen, cooked",
"1783": "Potato, saut\u00e9ed/pan-fried, with goose fat",
"1784": "Potato crisps, \"\u00e0 l'ancienne\" (old-fashioned style)",
"1785": "Potato crisps and related, reduced fat",
"1786": "Rostis or Potatoes cake",
"1787": "Kidney, beef, raw",
"1788": "Kidney, pork, raw",
"1789": "Kidney, lamb, raw",
"1790": "Kidney, calf, raw",
"1791": "Mashed potatoes w fresh tome cheese",
"1792": "Duchesse potato, frozen, raw",
"1793": "Potato, pre-fried into cubes, frozen, raw",
"1794": "French fries or chips, frozen, raw, intended to be roasted/baked",
"1795": "French fries or chips, frozen, raw, intended to be microwaved",
"1796": "French fries or chips, frozen, raw, intended to be deep-fried",
"1797": "Tripe, beef, raw",
"1798": "Gizzard, chicken, raw",
"1799": "Sweet potato, raw",
"1800": "Sweet potato, cooked",
"1801": "Sweet potato, puree, cooked with cream",
"1802": "Meal replacement low calorie, Custard cream dessert-type",
"1803": "Meal replacement low calorie, ready-to-drink",
"1804": "Meal replacement low calorie, in powder, reconstituted with skimmed milk",
"1805": "Meal replacement low calorie, in powder, reconstituted with skimmed milk, milkshake type",
"1806": "Soy lecithin",
"1807": "Vegetable dish for baby, w meat/fish and starch, from 6-8 months",
"1808": "Vegetable dish for baby, w meat/fish and starch, from 8-12 months",
"1809": "Vegetable dish for baby, w meat/fish and starch, from 12 months",
"1810": "Vegetable dish for baby, w meat/fish and starch, from 18 months",
"1811": "Beer, dark",
"1812": "Beer, regular (4-5\u00b0 alcohol)",
"1813": "Beer, strong (>8\u00b0 alcohol)",
"1814": "Shandy (beer + lemonade)",
"1815": "Shandy, prepacked (<1\u00b0 alcohol)",
"1816": "Cider, dry",
"1817": "Cider, sweet",
"1818": "Beer, low alcohol-content (3\u00b0 alcohol)",
"1819": "Beer, special (5-6\u00b0 alcohol)",
"1820": "Beer, \"specialty\", from abbey or regional (varying alcohol content)",
"1821": "Cider",
"1822": "Cider, half-dry",
"1823": "Beer, alcohol-free (<1,2\u00b0 alcohol)",
"1824": "Sparkling fruit wine",
"1825": "Frik (crushed immature durum wheat), raw",
"1826": "Khatfa (phyllo or filo pastry), prepacked",
"1827": "Wine, white, sparkling",
"1828": "Champagne",
"1829": "Wine, red",
"1830": "Wine, white, dry",
"1831": "Wine, rose",
"1832": "Plantain banana, raw",
"1833": "Plantain banana, cooked",
"1834": "Taro, tuber, cooked",
"1835": "Yam or Indian potato, peeled, raw",
"1836": "Cassava or manioc, roots, raw",
"1837": "Cassava or manioc, roots, cooked",
"1838": "Breadfruit, raw",
"1839": "Okra, cooked, without salt",
"1840": "Beef, rib, raw",
"1841": "Beef, braised",
"1842": "Beef, round, raw",
"1843": "Beef, rib steak, raw",
"1844": "Beef, sirloin steak, roasted/baked",
"1845": "Beef, sirloin steak, raw",
"1846": "Beef, sirloin steak, red label, raw",
"1847": "Beef, short ribs, raw",
"1848": "Beef, thin flank, raw",
"1849": "Beef, cheek, raw",
"1850": "Beef, cheek, braised or boiled",
"1851": "Beef, knuckle, raw",
"1852": "Beef, topside, raw",
"1853": "Beef, topside, roasted/baked",
"1854": "Beef, steak or beef steak, grilled",
"1855": "Beef, steak or beef steak, raw",
"1856": "Beef, bolar-blade, raw",
"1857": "Beef, hanger steak, raw",
"1858": "Beef, hanger steak, grilled",
"1859": "Beef, rump steak, raw",
"1860": "Beef, roast beef, roasted/baked",
"1861": "Beef, flank steak, raw",
"1862": "Beef, stewing meat, cooked",
"1863": "Beef, stewing meat, raw",
"1864": "Beef, neck, braised",
"1865": "Beef, minced steak, 5% fat, raw",
"1866": "Beef, minced steak, 5% fat, cooked",
"1867": "Beef, minced steak, 10% fat, raw",
"1868": "Beef, minced steak, 10% fat, cooked",
"1869": "Beef, minced steak, 15% fat, raw",
"1870": "Beef, minced steak, 15% fat, cooked",
"1871": "Beef, minced steak, 20% fat, raw",
"1872": "Burger, beef based, 15% fat, raw",
"1873": "Beef, chuck, raw",
"1874": "Beef, chuck, braised or boiled",
"1875": "Veal, chop, raw",
"1876": "Veal, loin, raw",
"1877": "Veal, escalope, raw",
"1878": "Veal, tenderloin, raw",
"1879": "Veal fillet, raw",
"1880": "Veal, minced steak, 20% fat, raw",
"1881": "Veal, minced steak, 15% fat, raw",
"1882": "Veal, breast, raw",
"1883": "Veal, roast, raw",
"1884": "Veal, shoulder, raw",
"1885": "Calf, foot, raw",
"1886": "Calf, head, boiled/cooked in water",
"1887": "Veal, knuckle or shank, raw",
"1888": "Veal, neck, raw",
"1889": "Bread, French bread, baguette",
"1890": "Bread, French bread (baguette or ball), with yeast",
"1891": "Toasted bread, home-made",
"1892": "Bread, French bread, baguette, unsalted",
"1893": "Brown bread, French bread (baguette or ball), with flour type 80 or 110",
"1894": "Bread, French bread, ball, 400g",
"1895": "Bread (baguette or ball), made with type T55-T110 flour",
"1896": "Country-style bread, French bread (baguette or ball)",
"1897": "Bread, wholemeal or integral bread (made with flour type 150)",
"1898": "Sandwich loaf, wholemeal",
"1899": "Sandwich loaf, bran grain",
"1900": "Sandwich loaf, multigrain",
"1901": "Bran grain bread",
"1902": "Rye bread, and wheat",
"1903": "Bread, gluten free",
"1904": "Bread, French bread, without salt",
"1905": "Panini bread",
"1906": "Pita bread",
"1907": "Sandwich loaf",
"1908": "Sandwich loaf, crust less, prepacked",
"1909": "Brioche sandwich bread, prepacked",
"1910": "Brioche or Vienna bread",
"1911": "Bread, French bread, (baguette or ball), multigrain, from bakery",
"1912": "English muffin, wholewheat flour, prepacked",
"1913": "English muffin, prepacked",
"1914": "Bagel",
"1915": "Rolls for hamburger/hotdog (buns), prepacked",
"1916": "Bread, home-made, with flour for home-made bread preparation",
"1917": "Country-style bread, home-made (with flour for bread making machine)",
"1918": "Rolls for hamburger/hotdog (buns), wholemeal, prepacked",
"1919": "Rusk",
"1920": "Rusk, w eggs",
"1921": "Rusk, unsalted",
"1922": "Rusk, multigrain",
"1923": "Rusk, wholemeal or rich in fibre",
"1924": "Puffed rice textured bread, wholemeal",
"1925": "Puffed cereals textured bread",
"1926": "Rusk, slice, wheat",
"1927": "Rusk with eggs, sliced, prepacked",
"1928": "Wheat swedish toast",
"1929": "Crispbread, extruded and grilled",
"1930": "Biscuit, extruded and grilled, chocolate filling",
"1931": "Biscuit, extruded and grilled, fruits filling",
"1932": "Rusk , slice, multigrain",
"1933": "Croutons",
"1934": "Croutons, plain, prepacked",
"1935": "Grissini or bread stick",
"1936": "Croissant",
"1937": "Mineral sparkling water (Vals), bottled, averagely mineralized",
"1938": "Croissant, ordinary, from bakery",
"1939": "Croissant, butter, from bakery",
"1940": "Croissant w almonds, from bakery",
"1941": "Milk roll, prepacked",
"1942": "Milk roll filled with chocolate drops, prepacked",
"1943": "Raisin puff pastry (Viennese pastries)",
"1944": "Chocolate croissant, puff pastry, from bakery",
"1945": "Chocolate croissant, prepacked",
"1946": "Brioche, filled with chocolate drops",
"1947": "Brioche, filled with chocolate",
"1948": "Brioche, filled with fruits",
"1949": "Brioche, filled with custard (Chinese brioche type), prepacked",
"1950": "Brioche, prepacked",
"1951": "Brioche",
"1952": "Brioche, from bakery",
"1953": "Christmas brioche with candied fruits, prepacked",
"1954": "Brioche, pure butter",
"1955": "Focaccia, filled",
"1956": "Fougasse, filled",
"1957": "Corn tortilla wrap, to be filled",
"1958": "Savoury cake (with cheese, vegetables, meat, fish, poultry,etc.)",
"1959": "Wheat tortilla wrap, to be filled",
"1960": "Wheat tortilla wrap, filled with soy-based, vegetarian",
"1961": "Rillettes, pork",
"1962": "Rillettes, pure pork",
"1963": "Rillettes from Tours",
"1964": "Rillettes from Mans",
"1965": "Rillettes, duck",
"1966": "Rillettes, goose",
"1967": "Rillettes, poultry",
"1968": "Rillette, fish",
"1969": "Rillettes, salmon",
"1970": "Rillettes, tuna",
"1971": "Rillettes, mackerel",
"1972": "Preserved duck",
"1973": "Preserved pork liver",
"1974": "Preserved poultry liver",
"1975": "P\u00e2t\u00e9 w green pepper",
"1976": "Country-style p\u00e2t\u00e9 or terrine",
"1977": "Breton p\u00e2t\u00e9",
"1978": "Duck terrine",
"1979": "Rabbit p\u00e2t\u00e9",
"1980": "Rabbit terrine",
"1981": "Game p\u00e2t\u00e9",
"1982": "Country-style p\u00e2t\u00e9 with mushrooms",
"1983": "Fish terrine",
"1984": "Seafood terrine, with or without fish",
"1985": "Taramasalata, prepacked",
"1986": "Vegetable terrine or mousse",
"1987": "Vegetable flan",
"1988": "Pork liver p\u00e2t\u00e9, superior quality",
"1989": "Pork liver p\u00e2t\u00e9",
"1990": "Pork liver mousse, superior quality",
"1991": "Pork liver mousse",
"1992": "Duck mousse",
"1993": "Poultry liver p\u00e2t\u00e9",
"1994": "Goose liver p\u00e2t\u00e9",
"1995": "Rolled escalope of pork with pistachios",
"1996": "P\u00e2t\u00e9 in crust",
"1997": "Ham, in a pastry crusty",
"1998": "Head-cheese p\u00e2t\u00e9 or brawn",
"1999": "Pork snout in salad dressing sauce",
"2000": "Chitterling sausage",
"2001": "Chitterling sausage from Gu\u00e9m\u00e9n\u00e9",
"2002": "Chitterling sausage from Vire",
"2003": "Chitterling sausage, raw",
"2004": "Chitterling sausage from Troyes, raw",
"2005": "Caen-style tripe",
"2006": "Caen-style tripe, prepacked",
"2007": "Provencal-type tripe (with tomato)",
"2008": "Black pudding (blood sausage), refrigerated",
"2009": "Black pudding (blood sausage), saut\u00e9ed/pan-fried",
"2010": "White pudding, truffled, raw",
"2011": "Veal quenelle, in sauce",
"2012": "Poultry quenelle, raw",
"2013": "Poultry quenelle, in sauce",
"2014": "Fish quenelle, in sauce",
"2015": "Fish quenelle, raw",
"2016": "Quenelle, plain, raw",
"2017": "Spelt, raw",
"2018": "Khorasan wheat",
"2019": "Wheat, whole, raw",
"2020": "Durum wheat, whole, raw",
"2021": "Wheat, whole, pre-cooked, raw",
"2022": "Durum wheat pre-cooked, whole grain, cooked, unsalted",
"2023": "Durum wheat, pre-cooked, cooked, in a microwaveable bag",
"2024": "Durum wheat pre-cooked, whole grain, cooked, to pan-fry",
"2025": "Asian noodles, flavoured, cooked",
"2026": "Asian noodles, plain, cooked, unsalted",
"2027": "Rice, raw",
"2028": "Rice, parboiled, raw",
"2029": "Rice, brown, raw",
"2030": "Rice, brown, cooked, unsalted",
"2031": "Rice, cooked, unsalted",
"2032": "Rice, parboiled, cooked, unsalted",
"2033": "Wild rice, raw",
"2034": "Rice, red, raw",
"2035": "Basmati rice, raw",
"2036": "Rice, mix of species (white, wholegrain, wild, red,etc.), raw",
"2037": "Corn or maize grain, raw",
"2038": "Pop-corn or oil popped maize, salted",
"2039": "Pop-corn or air-popped maize, unsalted",
"2040": "Pop-corn or popped maize, with caramel",
"2041": "Oat, raw",
"2042": "Oatmeal flakes",
"2043": "Oat flakes, boiled/cooked in water",
"2044": "Pearled barley, raw",
"2045": "Pearled barley, boiled/cooked in water, unsalted",
"2046": "Millet, whole",
"2047": "Quinoa, raw",
"2048": "Quinoa FR, raw",
"2049": "Quinoa FR, boiled/cooked in water, unsalted",
"2050": "Amaranth, raw",
"2051": "Sorghum, whole, raw",
"2052": "Buckwheat, whole, raw",
"2053": "Rye, whole, raw",
"2054": "Wheat flour, type 110",
"2055": "Wheat flour, type 150",
"2056": "Wheat flour, type 65",
"2057": "Wheat flour, type 55 (for bread)",
"2058": "Wheat flour, self-raising",
"2059": "Wheat flour, type 55 (for pastry)",
"2060": "Wheat flour, type 80",
"2061": "Spelt flour",
"2062": "Maize/corn starch",
"2063": "Rice flour",
"2064": "Rye flour, type 170",
"2065": "Rye flour, type 85",
"2066": "Rye flour, type 130",
"2067": "Buckwheat flour",
"2068": "Maize/corn flour",
"2069": "Barley flour",
"2070": "Millet flour",
"2071": "Chestnut flour",
"2072": "Chick pea flour",
"2073": "Durum wheat semolina, raw",
"2074": "Mix of cereals and legumes, raw",
"2075": "Polenta or Maize/corn semolina, pre-cooked, dried",
"2076": "Polenta or maize semolina, cooked, unsalted",
"2077": "Wheat bran",
"2078": "Oat bran",
"2079": "Maize/corn bran",
"2080": "Rice bran",
"2081": "Pizza base, cooked",
"2082": "Couscous (durum wheat semolina pre-cooked with steam), raw",
"2083": "Wheat bulgur, raw",
"2084": "Wheat bulgur, cooked, unsalted",
"2085": "Dried pasta, raw",
"2086": "Dried pasta, cooked, unsalted",
"2087": "Fresh egg pasta, raw",
"2088": "Fresh egg pasta, cooked, unsalted",
"2089": "Dried egg pasta, raw",
"2090": "Dried pasta, gluten-free, cooked, unsalted",
"2091": "Asian noodles, flavoured, dehydrated",
"2092": "Dried pasta, wholemeal, raw",
"2093": "Dried pasta, wholemeal, cooked, unsalted",
"2094": "Dried pasta, gluten-free, raw",
"2095": "Rice noodle, dried",
"2096": "Rice noodle, cooked, unsalted"
}
|