File size: 137,329 Bytes
f998fcd |
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 |
// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023.
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// File: @openzeppelin/contracts/proxy/Clones.sol
// OpenZeppelin Contracts (last updated v4.8.0) (proxy/Clones.sol)
pragma solidity ^0.8.0;
/**
* @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for
* deploying minimal proxy contracts, also known as "clones".
*
* > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
* > a minimal bytecode implementation that delegates all calls to a known, fixed address.
*
* The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
* (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
* deterministic method.
*
* _Available since v3.4._
*/
library Clones {
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create opcode, which should never revert.
*/
function clone(address implementation) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
// Cleans the upper 96 bits of the `implementation` word, then packs the first 3 bytes
// of the `implementation` address with the bytecode before the address.
mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
// Packs the remaining 17 bytes of `implementation` with the bytecode after the address.
mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
instance := create(0, 0x09, 0x37)
}
require(instance != address(0), "ERC1167: create failed");
}
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create2 opcode and a `salt` to deterministically deploy
* the clone. Using the same `implementation` and `salt` multiple time will revert, since
* the clones cannot be deployed twice at the same address.
*/
function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
// Cleans the upper 96 bits of the `implementation` word, then packs the first 3 bytes
// of the `implementation` address with the bytecode before the address.
mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
// Packs the remaining 17 bytes of `implementation` with the bytecode after the address.
mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
instance := create2(0, 0x09, 0x37, salt)
}
require(instance != address(0), "ERC1167: create2 failed");
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(
address implementation,
bytes32 salt,
address deployer
) internal pure returns (address predicted) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(add(ptr, 0x38), deployer)
mstore(add(ptr, 0x24), 0x5af43d82803e903d91602b57fd5bf3ff)
mstore(add(ptr, 0x14), implementation)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73)
mstore(add(ptr, 0x58), salt)
mstore(add(ptr, 0x78), keccak256(add(ptr, 0x0c), 0x37))
predicted := keccak256(add(ptr, 0x43), 0x55)
}
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(address implementation, bytes32 salt)
internal
view
returns (address predicted)
{
return predictDeterministicAddress(implementation, salt, address(this));
}
}
// File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/math/Math.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: contracts/Flat.sol
//SPDX-License-Identifier: GNU GPLv3
pragma solidity ^0.8.2;
/// @title The root of the poole tree. Allows you to close control of a large
/// number of pools to 1 address. Simplifies user interaction with a large number of pools.
/// @author Nethny
/// @dev Must be the owner of child contracts, to short-circuit the administrative
/// rights to one address.
contract RootOfPools_v2 is Initializable, OwnableUpgradeable {
using AddressUpgradeable for address;
using Strings for uint256;
struct Pool {
address pool;
string name;
}
Pool[] public Pools;
mapping(string => address) private _poolsTable;
address public _usdAddress;
address public _rankingAddress;
address[] public Images;
mapping(address => bool) private _imageTable;
address public _marketing;
address public _marketingWallet;
address public _team;
function setMarketing(address mark) public onlyOwner {
_marketing = mark;
}
function setTeam(address team) public onlyOwner {
_team = team;
}
function setMarketingWallet(address mark) public onlyOwner {
_marketingWallet = mark;
}
event PoolCreated(string name, address pool);
event ImageAdded(address image);
event Response(address to, bool success, bytes data);
modifier shouldExist(string calldata name) {
require(
_poolsTable[name] != address(0),
"ROOT: Selected pool does not exist!"
);
_;
}
/// @notice Replacement of the constructor to implement the proxy
function initialize(
address usdAddress,
address rankingAddress
) external initializer {
require(
usdAddress != address(0),
"INIT: The usdAddress must not be zero."
);
require(
rankingAddress != address(0),
"INIT: The rankingAddress must not be zero."
);
__Ownable_init();
_usdAddress = usdAddress;
_rankingAddress = rankingAddress;
}
/// @notice Returns the address of the usd token in which funds are collected
function getUSDAddress() external view returns (address) {
return _usdAddress;
}
function addImage(address image) external onlyOwner {
require(_imageTable[image] != true);
Images.push(image);
_imageTable[image] = true;
emit ImageAdded(image);
}
/// @notice Returns the linked branch contracts
function getPools() external view returns (Pool[] memory) {
return Pools;
}
function getPool(string calldata _name) external view returns (address) {
for (uint256 i = 0; i < Pools.length; i++) {
if (
keccak256(abi.encodePacked(Pools[i].name)) ==
keccak256(abi.encodePacked(_name))
) {
return Pools[i].pool;
}
}
return address(0);
}
/// @notice Allows you to attach a new pool (branch contract)
/// @dev Don't forget to run the init function
function createPool(
string calldata name,
uint256 imageNumber,
bytes calldata dataIn
) external onlyOwner {
require(
imageNumber <= Images.length,
"ROOT: Such an image does not exist"
);
require(
_poolsTable[name] == address(0),
"ROOT: Pool with this name already exists!"
);
address pool = Clones.clone(Images[imageNumber]);
(bool success, bytes memory data) = pool.call(dataIn);
emit Response(pool, success, data);
_poolsTable[name] = pool;
Pool memory poolT = Pool(pool, name);
Pools.push(poolT);
emit PoolCreated(name, pool);
}
function Calling(address dst, bytes calldata dataIn) external onlyOwner {
(bool success, bytes memory data) = dst.call(dataIn);
emit Response(dst, success, data);
}
function deposit(
string calldata name,
uint256 amount
) external shouldExist(name) {
BranchOfPools(_poolsTable[name]).deposit(amount);
}
function paybackEmergency(string calldata name) external shouldExist(name) {
BranchOfPools(_poolsTable[name]).paybackEmergency();
}
function claimName(string calldata name) external shouldExist(name) {
BranchOfPools(_poolsTable[name]).claim();
}
function claimAddress(address pool) internal {
require(pool != address(0), "ROOT: Selected pool does not exist!");
BranchOfPools(pool).claim();
}
//TODO
function prepClaimAll(
address user
) external view returns (address[] memory pools) {
address[] memory out;
for (uint256 i; i < Pools.length; i++) {
if (BranchOfPools(Pools[i].pool).isClaimable(user)) {
out[i] = Pools[i].pool;
}
}
return pools;
}
//TODO
///@dev To find out the list of pools from which a user can mine something,
/// use the prepClaimAll function
function claimAll(address[] calldata pools) external {
for (uint256 i; i < pools.length; i++) {
claimAddress(pools[i]);
}
}
function checkAllClaims(address user) external view returns (uint256) {
uint256 temp;
for (uint256 i; i < Pools.length; i++) {
temp += (BranchOfPools(Pools[i].pool).myCurrentAllocation(user));
}
return temp;
}
}
/// @title The pool's subsidiary contract for fundraising.
/// This contract collects funds, distributes them, and charges fees
/// @author Nethny
/// @dev This contract pulls commissions and other parameters from the Ranking contract.
/// Important: Agree on the structure of the ranking parameters and this contract!
/// Otherwise the calculations can be wrong!
contract BranchOfPools is Initializable {
using Address for address;
using Strings for uint256;
enum State {
Pause,
Fundrasing,
WaitingToken,
TokenDistribution,
Emergency
}
State public _state = State.Pause;
//Events
event Deposit(address user, uint256 amount);
event Claim(address user);
event FundraisingOpened();
event FundraisingClosed();
event TokenEntrusted(address addrToken, uint256 amount);
event EmergencyStoped();
event FundsReturned(address user, uint256 amount);
address public _owner;
address private _root;
uint256 public _stepValue;
uint256 public _VALUE;
uint256 private _decimals;
uint256 public _outCommission;
uint256 public _preSend;
uint256 public _CURRENT_VALUE;
uint256 public _FUNDS_RAISED;
uint256 public _CURRENT_COMMISSION;
uint256 public _CURRENT_VALUE_TOKEN;
uint256 public _DISTRIBUTED_TOKEN;
uint256 public _TOKEN_COMMISSION;
mapping(address => uint256) public _valueUSDList;
mapping(address => uint256) public _usdEmergency;
mapping(address => uint256) public _issuedTokens;
mapping(address => bool) public _withoutCommission;
address[] public _listParticipants;
address public _usd;
address public _token;
address public _devUSDAddress;
address public _fundAddress;
bool private _fundLock = false;
uint256 private _fundValue;
uint256 public _fundCommission;
bool private _getCommissionFlag;
modifier onlyOwner() {
require(msg.sender == _owner, "Ownable: Only owner");
_;
}
/*function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_owner = newOwner;
}*/
/// @notice Assigns the necessary values to the variables
/// @dev Just a constructor
/// You need to call init()
/// @param Root - RootOfPools contract address
/// @param VALUE - The target amount of funds we collect
/// @param Step - The step with which we raise funds
/// @param devUSDAddress - The address of the developers to which they will receive the collected funds
function init(
address Root,
uint256 VALUE,
uint256 Step,
address devUSDAddress,
address fundAddress,
uint256 fundCommission,
uint256 outCommission,
address tokenUSD
) external initializer {
require(Root != address(0), "The root address must not be zero.");
require(
devUSDAddress != address(0),
"The devUSDAddress must not be zero."
);
_owner = msg.sender;
_root = Root;
_usd = tokenUSD;
_decimals = 10 ** ERC20(_usd).decimals();
_VALUE = VALUE * _decimals;
_stepValue = Step * _decimals;
_devUSDAddress = devUSDAddress;
_fundAddress = fundAddress;
_fundCommission = fundCommission;
_outCommission = outCommission;
}
/// @notice Changes the target amount of funds we collect
/// @param value - the new target amount of funds raised
function changeTargetValue(
uint256 value
)
external
onlyOwner
onlyNotState(State.TokenDistribution)
onlyNotState(State.WaitingToken)
{
_VALUE = value;
}
/// @notice Changes the step with which we raise funds
/// @param step - the new step
function changeStepValue(
uint256 step
)
external
onlyOwner
onlyNotState(State.TokenDistribution)
onlyNotState(State.WaitingToken)
{
_stepValue = step;
}
modifier onlyState(State state) {
require(_state == state, "STATE: It's impossible to do it now.");
_;
}
modifier onlyNotState(State state) {
require(_state != state, "STATE: It's impossible to do it now.");
_;
}
/// @notice Opens fundraising
function startFundraising() external onlyOwner onlyState(State.Pause) {
_state = State.Fundrasing;
emit FundraisingOpened();
}
//TODO
/// @notice Termination of fundraising and opening the possibility of refunds to depositors
function stopEmergency()
external
onlyOwner
onlyNotState(State.Pause)
onlyNotState(State.TokenDistribution)
{
if (_state == State.WaitingToken) {
uint256 balance = ERC20(_usd).balanceOf(address(this));
require(
balance >= _FUNDS_RAISED + _CURRENT_COMMISSION,
"It takes money to get a refund"
);
}
_state = State.Emergency;
emit EmergencyStoped();
}
//TODO
/// @notice Returns the deposited funds to the caller
/// @dev This is a bad way to write a transaction check,
/// but in this case we are forced not to use require because of the usdt token implementation,
/// which does not return a result. And to keep flexibility in terms of using different ERC20,
/// we have to do it :\
function paybackEmergency() external onlyState(State.Emergency) {
uint256 usdT = _usdEmergency[tx.origin];
_usdEmergency[tx.origin] = 0;
if (usdT == 0) {
revert("You have no funds to withdraw!");
}
uint256 beforeBalance = ERC20(_usd).balanceOf(tx.origin);
emit FundsReturned(tx.origin, usdT);
ERC20(_usd).transfer(tx.origin, usdT);
uint256 afterBalance = ERC20(_usd).balanceOf(tx.origin);
require(
beforeBalance + usdT == afterBalance,
"PAYBACK: Something went wrong."
);
}
/// @notice The function of the deposit of funds.
/// @dev The contract attempts to debit the user's funds in the specified amount in the token whose contract is located at _usd
/// the amount must be approved for THIS address
/// @param amount - The number of funds the user wants to deposit
function deposit(uint256 amount) external onlyState(State.Fundrasing) {
uint256 commission;
uint256[] memory rank = Ranking(RootOfPools_v2(_root)._rankingAddress())
.getParRankOfUser(tx.origin);
if (rank[2] != 0) {
commission = (amount * rank[2]) / 100; //[Min, Max, Commission]
}
uint256 Min = _decimals * rank[0];
uint256 Max = _decimals * rank[1];
if (rank[2] == 0) {
_withoutCommission[tx.origin] = true;
}
require(amount >= Min, "DEPOSIT: Too little funding!");
require(
amount + _valueUSDList[tx.origin] <= Max,
"DEPOSIT: Too many funds!"
);
require((amount) % _stepValue == 0, "DEPOSIT: Must match the step!");
require(
_CURRENT_VALUE + amount - commission <= _VALUE,
"DEPOSIT: Fundraising goal exceeded!"
);
emit Deposit(tx.origin, amount);
uint256 pre_balance = ERC20(_usd).balanceOf(address(this));
require(
ERC20(_usd).allowance(tx.origin, address(this)) >= amount,
"DEPOSIT: ALLOW ERROR"
);
require(
ERC20(_usd).transferFrom(tx.origin, address(this), amount),
"DEPOSIT: Transfer error"
);
_usdEmergency[tx.origin] += amount;
if (_valueUSDList[tx.origin] == 0) {
_listParticipants.push(tx.origin);
}
_valueUSDList[tx.origin] += amount - commission;
_CURRENT_COMMISSION += commission;
_CURRENT_VALUE += amount - commission;
require(
pre_balance + amount == ERC20(_usd).balanceOf(address(this)),
"DEPOSIT: Something went wrong"
);
if (_CURRENT_VALUE == _VALUE) {
_state = State.WaitingToken;
emit FundraisingClosed();
}
}
function preSend(
uint256 amount
) external onlyOwner onlyState(State.Fundrasing) {
require(amount < _CURRENT_VALUE - _preSend);
_preSend += amount;
require(
ERC20(_usd).transfer(_devUSDAddress, amount),
"COLLECT: Transfer error"
);
}
//TODO
/// @notice Closes the fundraiser and distributes the funds raised
/// Allows you to close the fundraiser before the fundraising amount is reached
function stopFundraising()
external
onlyOwner
onlyNotState(State.Pause)
onlyNotState(State.TokenDistribution)
onlyNotState(State.Emergency)
{
if (_state == State.Fundrasing) {
_state = State.WaitingToken;
_FUNDS_RAISED = _CURRENT_VALUE;
_VALUE = _CURRENT_VALUE;
_CURRENT_VALUE = 0;
emit FundraisingClosed();
} else {
require(
_CURRENT_VALUE == _VALUE,
"COLLECT: The funds have already been withdrawn."
);
_FUNDS_RAISED = _CURRENT_VALUE;
_CURRENT_VALUE = 0;
}
//Send to devs
require(
ERC20(_usd).transfer(_devUSDAddress, _FUNDS_RAISED - _preSend),
"COLLECT: Transfer error"
);
}
/// @notice Allows developers to transfer tokens for distribution to contributors
/// @dev This function is only called from the developers address _devInteractionAddress
/// @param tokenAddr - Developer token address
function entrustToken(
address tokenAddr
)
external
onlyOwner
onlyNotState(State.Emergency)
onlyNotState(State.Fundrasing)
onlyNotState(State.Pause)
{
require(
tokenAddr != address(0),
"ENTRUST: The tokenAddr must not be zero."
);
if (_token == address(0)) {
_token = tokenAddr;
} else {
require(
tokenAddr == _token,
"ENTRUST: The tokens have only one contract"
);
}
_state = State.TokenDistribution;
}
//TODO
/// @notice Allows users to brand the distributed tokens
function claim() external onlyState(State.TokenDistribution) {
require(
_usdEmergency[tx.origin] > 0,
"CLAIM: You have no unredeemed tokens!"
);
uint256 amount;
uint256 currentTokenBalance = ERC20(_token).balanceOf(address(this));
if (_CURRENT_VALUE_TOKEN < currentTokenBalance) {
_CURRENT_VALUE_TOKEN += currentTokenBalance - _CURRENT_VALUE_TOKEN;
}
if (_withoutCommission[tx.origin]) {
amount =
(
((_usdEmergency[tx.origin] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED)
) -
_issuedTokens[tx.origin];
} else {
amount =
((((_usdEmergency[tx.origin] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED) * _outCommission) / 100) -
_issuedTokens[tx.origin];
}
_issuedTokens[tx.origin] += amount;
_DISTRIBUTED_TOKEN += amount;
_CURRENT_VALUE_TOKEN -= amount;
if (amount > 0) {
emit Claim(tx.origin);
uint256 pre_balance = ERC20(_token).balanceOf(address(this));
require(
ERC20(_token).transfer(tx.origin, amount),
"CLAIM: Transfer error"
);
require(
ERC20(_token).balanceOf(address(this)) == pre_balance - amount,
"CLAIM: Something went wrong!"
);
}
if (_fundLock == false) {
_fundLock = true;
//getCommission();
}
}
//TODO Add comments
function getCommission()
public
onlyNotState(State.Fundrasing)
onlyNotState(State.Pause)
onlyNotState(State.Emergency)
{
if (
((_state == State.WaitingToken) ||
(_state == State.TokenDistribution)) && (!_getCommissionFlag)
) {
//Send to fund
uint256 toFund = (_FUNDS_RAISED * _fundCommission) / 100;
_fundValue = (toFund * 40) / 100;
require(
ERC20(_usd).transfer(_fundAddress, toFund - _fundValue),
"COLLECT: Transfer error"
);
//Send to admin
uint256 amount = ERC20(_usd).balanceOf(address(this)) - _fundValue;
require(
ERC20(_usd).transfer(RootOfPools_v2(_root).owner(), amount / 2),
"COLLECT: Transfer error"
);
_getCommissionFlag = true;
}
if (_fundLock) {
if (_fundValue != 0) {
uint256 balance = ERC20(_usd).balanceOf(address(this));
if (balance != 0) {
uint256 amount = balance - _fundValue;
if (amount != 0) {
require(
ERC20(_usd).transfer(
RootOfPools_v2(_root)._marketingWallet(),
ERC20(_usd).balanceOf(address(this)) -
_fundValue
),
"COLLECT: Transfer error"
);
}
uint256 temp = _fundValue;
_fundValue = 0;
if (temp != 0) {
require(
ERC20(_usd).transfer(_fundAddress, temp),
"GET: Transfer error"
);
}
}
}
//========================================================== TOKЕN
uint256 temp = 0;
uint256 value = _CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN;
for (uint256 i = 0; i < _listParticipants.length; i++) {
address user = _listParticipants[i];
if (_withoutCommission[user]) {
temp += (((_usdEmergency[user] * value) / _FUNDS_RAISED));
} else {
temp += ((((_usdEmergency[user] * value) / _FUNDS_RAISED) *
_outCommission) / 100);
}
}
uint256 tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 15) / 100;
uint256 toMarketing = ((tmp * value) / _FUNDS_RAISED) -
_issuedTokens[address(0)];
_issuedTokens[address(0)] += toMarketing;
/*//_mamrktingOut == _issuedTokens[address(0)]
uint256 toMarketing = ((value * 15) / 100) -
_issuedTokens[address(0)]; //A?
_issuedTokens[address(0)] += toMarketing;*/
tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 2) / 100;
uint256 toTeam = ((tmp * value) / _FUNDS_RAISED) -
_issuedTokens[address(1)];
//uint256 toTeam = ((value * 2) / 100) - _issuedTokens[address(1)]; //B?
_issuedTokens[address(1)] += toTeam;
_DISTRIBUTED_TOKEN += toMarketing + toTeam;
_CURRENT_VALUE_TOKEN -= (toMarketing + toTeam);
temp =
value -
(temp + _issuedTokens[address(0)] + _issuedTokens[address(1)]) -
_issuedTokens[address(this)];
_issuedTokens[address(this)] += temp;
if (toTeam != 0) {
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._team(),
toTeam //точно?
),
"GET: Transfer error"
);
}
if (toMarketing != 0) {
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._marketing(),
toMarketing //точно?
),
"GET: Transfer error"
);
}
//temp =
if (temp != 0) {
_DISTRIBUTED_TOKEN += temp;
_CURRENT_VALUE_TOKEN -= temp;
require(
ERC20(_token).transfer(
RootOfPools_v2(_root).owner(),
temp / 2
),
"GET: Transfer error"
);
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._marketingWallet(),
temp / 2
),
"GET: Transfer error"
);
}
}
}
/// @notice Returns the amount of money that the user has deposited excluding the commission
/// @param user - address user
function myAllocation(address user) external view returns (uint256) {
return _valueUSDList[user];
}
/// @notice Returns the amount of funds that the user deposited
/// @param user - address user
function myAllocationEmergency(
address user
) external view returns (uint256) {
return _usdEmergency[user];
}
/// @notice Returns the number of tokens the user can take at the moment
/// @param user - address user
function myCurrentAllocation(address user) public view returns (uint256) {
if (_FUNDS_RAISED == 0) {
return 0;
}
uint256 amount;
if (_withoutCommission[user]) {
amount =
(
((_usdEmergency[user] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED)
) -
_issuedTokens[user];
} else {
amount =
((((_usdEmergency[user] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED) * _outCommission) / 100) -
_issuedTokens[user];
}
return amount;
}
/// @notice Auxiliary function for RootOfPools claimAll
/// @param user - address user
function isClaimable(address user) external view returns (bool) {
return myCurrentAllocation(user) > 0;
}
}
/// @title The pool's subsidiary contract for fundraising.
/// This contract collects funds, distributes them, and charges fees
/// @author Nethny
/// @dev This contract pulls commissions and other parameters from the Ranking contract.
/// Important: Agree on the structure of the ranking parameters and this contract!
/// Otherwise the calculations can be wrong!
contract BranchOfPools_import is Initializable {
using Address for address;
using Strings for uint256;
enum State {
Pause,
Fundrasing,
WaitingToken,
TokenDistribution,
Emergency
}
State public _state = State.Pause;
//Events
event Deposit(address user, uint256 amount);
event Claim(address user);
event FundraisingOpened();
event FundraisingClosed();
event TokenEntrusted(address addrToken, uint256 amount);
event EmergencyStoped();
event FundsReturned(address user, uint256 amount);
address public _owner;
address private _root;
uint256 public _stepValue;
uint256 public _VALUE;
uint256 private _decimals;
uint256 public _outCommission;
uint256 public _preSend;
uint256 public _CURRENT_COMMISSION;
uint256 public _CURRENT_VALUE;
uint256 public _FUNDS_RAISED;
uint256 public _CURRENT_VALUE_TOKEN;
uint256 public _DISTRIBUTED_TOKEN;
uint256 public _TOKEN_COMMISSION;
mapping(address => uint256) public _valueUSDList;
mapping(address => uint256) public _usdEmergency;
mapping(address => uint256) public _issuedTokens;
mapping(address => bool) public _withoutCommission;
address[] public _listParticipants;
address public _usd;
address public _token;
address public _devUSDAddress;
address public _fundAddress;
bool private _fundLock = false;
uint256 private _fundValue;
uint256 public _fundCommission;
bool private _getCommissionFlag;
modifier onlyOwner() {
require(msg.sender == _owner, "Ownable: Only owner");
_;
}
/// @notice Assigns the necessary values to the variables
/// @dev Just a constructor
/// You need to call init()
/// @param Root - RootOfPools contract address
/// @param VALUE - The target amount of funds we collect
/// @param Step - The step with which we raise funds
/// @param devUSDAddress - The address of the developers to which they will receive the collected funds
function init(
address Root,
uint256 VALUE,
uint256 Step,
address devUSDAddress,
address fundAddress,
uint256 fundCommission,
uint256 outCommission,
address tokenUSD
) external initializer {
require(Root != address(0), "The root address must not be zero.");
require(
devUSDAddress != address(0),
"The devUSDAddress must not be zero."
);
_owner = msg.sender;
_root = Root;
_usd = tokenUSD;
_decimals = 10 ** ERC20(_usd).decimals();
_VALUE = VALUE * _decimals;
_stepValue = Step * _decimals;
_devUSDAddress = devUSDAddress;
_fundAddress = fundAddress;
_fundCommission = fundCommission;
_outCommission = outCommission;
}
modifier onlyState(State state) {
require(_state == state, "STATE: It's impossible to do it now.");
_;
}
modifier onlyNotState(State state) {
require(_state != state, "STATE: It's impossible to do it now.");
_;
}
//Import
//TODO
/// @notice Allows you to transfer data about pool members
/// This is necessary to perform token distribution in another network
/// @dev the arrays of participants and their investments must be the same size.
/// Make sure that the order of both arrays is correct,
/// if the order is wrong, the resulting investment table will not match reality
/// @param usersData - Participant array
/// @param usersAmount - The size of participants' investments
function importTable(
address[] calldata usersData,
uint256[] calldata usersAmount,
bool[] calldata commissions
) external onlyState(State.Pause) onlyOwner returns (bool) {
require(
usersData.length == usersAmount.length,
"IMPORT: The number not match!"
);
for (uint256 i; i < usersData.length; i++) {
_usdEmergency[usersData[i]] += usersAmount[i];
_withoutCommission[usersData[i]] = commissions[i];
_listParticipants.push(usersData[i]);
}
return true;
}
//TODO
/// @notice Allows you to transfer data about pool members
/// This is necessary to perform token distribution in another network
/// @param fundsRaised - Number of funds raised
function importFR(
uint256 fundsRaised
) external onlyState(State.Pause) onlyOwner returns (bool) {
_FUNDS_RAISED = fundsRaised;
return true;
}
function importCC(
uint256 currentCommission
) external onlyState(State.Pause) onlyOwner returns (bool) {
_CURRENT_COMMISSION = currentCommission;
return true;
}
//TODO
/// @notice Allows you to transfer data about pool members
/// This is necessary to perform token distribution in another network
function closeImport()
external
onlyState(State.Pause)
onlyOwner
returns (bool)
{
_state = State.WaitingToken;
return true;
}
//End Import
/// @notice Allows developers to transfer tokens for distribution to contributors
/// @dev This function is only called from the developers address _devInteractionAddress
/// @param tokenAddr - Developer token address
function entrustToken(
address tokenAddr
)
external
onlyOwner
onlyNotState(State.Emergency)
onlyNotState(State.Fundrasing)
onlyNotState(State.Pause)
{
require(
tokenAddr != address(0),
"ENTRUST: The tokenAddr must not be zero."
);
if (_token == address(0)) {
_token = tokenAddr;
} else {
require(
tokenAddr == _token,
"ENTRUST: The tokens have only one contract"
);
}
_state = State.TokenDistribution;
}
/// @notice Allows users to brand the distributed tokens
function claim() external onlyState(State.TokenDistribution) {
require(
_usdEmergency[tx.origin] > 0,
"CLAIM: You have no unredeemed tokens!"
);
uint256 amount;
uint256 currentTokenBalance = ERC20(_token).balanceOf(address(this));
if (_CURRENT_VALUE_TOKEN < currentTokenBalance) {
_CURRENT_VALUE_TOKEN += currentTokenBalance - _CURRENT_VALUE_TOKEN;
}
if (_withoutCommission[tx.origin]) {
amount =
(
((_usdEmergency[tx.origin] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED)
) -
_issuedTokens[tx.origin];
} else {
amount =
((((_usdEmergency[tx.origin] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED) * _outCommission) / 100) -
_issuedTokens[tx.origin];
}
_issuedTokens[tx.origin] += amount;
_DISTRIBUTED_TOKEN += amount;
_CURRENT_VALUE_TOKEN -= amount;
if (amount > 0) {
emit Claim(tx.origin);
uint256 pre_balance = ERC20(_token).balanceOf(address(this));
require(
ERC20(_token).transfer(tx.origin, amount),
"CLAIM: Transfer error"
);
require(
ERC20(_token).balanceOf(address(this)) == pre_balance - amount,
"CLAIM: Something went wrong!"
);
}
if (_fundLock == false) {
_fundLock = true;
//getCommission();
}
}
//TODO Add comments
function getCommission()
public
onlyNotState(State.Fundrasing)
onlyNotState(State.Pause)
onlyNotState(State.Emergency)
{
if (_fundLock) {
uint256 temp = 0;
uint256 value = _CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN;
for (uint256 i = 0; i < _listParticipants.length; i++) {
address user = _listParticipants[i];
if (_withoutCommission[user]) {
temp += (((_usdEmergency[user] * value) / _FUNDS_RAISED));
} else {
temp += ((((_usdEmergency[user] * value) / _FUNDS_RAISED) *
_outCommission) / 100);
}
}
uint256 tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 15) / 100;
uint256 toMarketing = ((tmp * value) / _FUNDS_RAISED) -
_issuedTokens[address(0)];
_issuedTokens[address(0)] += toMarketing;
/*//_mamrktingOut == _issuedTokens[address(0)]
uint256 toMarketing = ((value * 15) / 100) -
_issuedTokens[address(0)]; //A?
_issuedTokens[address(0)] += toMarketing;*/
tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 2) / 100;
uint256 toTeam = ((tmp * value) / _FUNDS_RAISED) -
_issuedTokens[address(1)];
//uint256 toTeam = ((value * 2) / 100) - _issuedTokens[address(1)]; //B?
_issuedTokens[address(1)] += toTeam;
_DISTRIBUTED_TOKEN += toMarketing + toTeam;
_CURRENT_VALUE_TOKEN -= (toMarketing + toTeam);
temp =
value -
(temp + _issuedTokens[address(0)] + _issuedTokens[address(1)]) -
_issuedTokens[address(this)];
_issuedTokens[address(this)] += temp;
if (toTeam != 0) {
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._team(),
toTeam //точно?
),
"GET: Transfer error"
);
}
if (toMarketing != 0) {
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._marketing(),
toMarketing //точно?
),
"GET: Transfer error"
);
}
//temp =
if (temp != 0) {
_DISTRIBUTED_TOKEN += temp;
_CURRENT_VALUE_TOKEN -= temp;
require(
ERC20(_token).transfer(
RootOfPools_v2(_root).owner(),
temp / 2
),
"GET: Transfer error"
);
require(
ERC20(_token).transfer(
RootOfPools_v2(_root)._marketingWallet(),
temp / 2
),
"GET: Transfer error"
);
}
}
}
/// @notice Returns the amount of money that the user has deposited excluding the commission
/// @param user - address user
function myAllocation(address user) external view returns (uint256) {
return _valueUSDList[user];
}
/// @notice Returns the amount of funds that the user deposited
/// @param user - address user
function myAllocationEmergency(
address user
) external view returns (uint256) {
return _usdEmergency[user];
}
/// @notice Returns the number of tokens the user can take at the moment
/// @param user - address user
function myCurrentAllocation(address user) public view returns (uint256) {
if (_FUNDS_RAISED == 0) {
return 0;
}
uint256 amount;
if (_withoutCommission[user]) {
amount =
(
((_usdEmergency[user] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED)
) -
_issuedTokens[user];
} else {
amount =
((((_usdEmergency[user] *
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
_FUNDS_RAISED) * _outCommission) / 100) -
_issuedTokens[user];
}
return amount;
}
/// @notice Auxiliary function for RootOfPools claimAll
/// @param user - address user
function isClaimable(address user) external view returns (bool) {
return myCurrentAllocation(user) > 0;
}
}
/// @title The rank contract allows you to assign a rank to users.
/// @author Nethny
/// @notice Allows you to assign different parameters to users
/// @dev By default, the first created rank is used for users.
/// This rank can be changed using various parameter change functions.
/// Ranks are 2 arrays (name array, value array), they are extensible
/// and provide flexibility to the rank system.
/// (Don't forget about memory allocation and overuse)
///
/// EXAMPLE ==================
/// "First", ["1 param", "2 param", "3 param", "4 param"], [1,2,3,4], True
/// "Second", ["A", "B", "C", "D"], [4,3,2,1], True
/// EXAMPLE ==================
contract Ranking is Ownable {
struct Rank {
string Name;
string[] pNames;
uint256[] pValues;
bool isChangeable;
}
//List of ranks
Rank[] public _ranks;
mapping(string => uint256) public _rankSequence;
uint256 _ranksHead;
//Table of ranks assigned to users
mapping(address => uint256) public _rankTable;
/// @notice Give a users the rank
/// @dev To make it easier to change the ranks of a large number of users
/// For the admin only
/// @param users - an array of users to assign a rank to, rank - the name of the title to be awarded
/// @return bool (On successful execution returns true)
function giveRanks(address[] memory users, string memory rank)
public
onlyOwner
returns (bool)
{
uint256 index = searchRank(rank);
for (uint256 i = 0; i < users.length; i++) {
_rankTable[users[i]] = index;
}
return true;
}
/// @notice Give a user the rank
/// @dev For the admin only
/// @param user - the address of the user to whom you want to assign a rank, rank - the name of the title to be awarded
/// @return bool (On successful execution returns true)
function giveRank(address user, string memory rank)
public
onlyOwner
returns (bool)
{
uint256 index = searchRank(rank);
_rankTable[user] = index;
return true;
}
/// @notice Сreate the rank
/// @dev For the admin only
/// @param Name - Unique rank identifier
/// @param pNames[] - An array of parameter names
/// @param pValues[] - An array of parameter values
/// @param isChangeable - Flag of rank variability
/// @return bool (On successful execution returns true)
function createRank(
string memory Name,
string[] memory pNames,
uint256[] memory pValues,
bool isChangeable
) public onlyOwner returns (bool) {
require(
pNames.length == pValues.length,
"RANK: Each parameter must have a value!"
);
Rank memory rank = Rank(Name, pNames, pValues, isChangeable);
_rankSequence[Name] = _ranksHead;
_ranks.push(rank);
_ranksHead++;
return true;
}
/// @notice Сhange the rank
/// @dev For the admin only
/// @param Name - Unique rank identifier
/// @param pNames[] - An array of parameter names
/// @param pValues[] - An array of parameter values
/// @param isChangeable - Flag of rank variability
/// @return bool (On successful execution returns true)
function changeRank(
string memory Name,
string[] memory pNames,
uint256[] memory pValues,
bool isChangeable
) public onlyOwner returns (bool) {
require(_ranks.length > 0, "RANK: There are no ranks.");
require(
pNames.length == pValues.length,
"RANK: Each parameter must have a value!"
);
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
_ranks[index] = Rank(Name, pNames, pValues, isChangeable);
return true;
}
/// @notice Сhange only the names of the rank parameters
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @param pNames[] - An array of parameter names
/// @return bool (On successful execution returns true)
function changeRankParNames(string memory Name, string[] memory pNames)
public
onlyOwner
returns (bool)
{
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
require(
pNames.length == _ranks[index].pNames.length,
"RANK: Each parameter must have a value!"
);
_ranks[index].pNames = pNames;
return true;
}
/// @notice Сhange only the values of the rank parameters
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @param pValues[] - An array of parameter values
/// @return bool (On successful execution returns true)
function changeRankParValues(string memory Name, uint256[] memory pValues)
public
onlyOwner
returns (bool)
{
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
require(
pValues.length == _ranks[index].pValues.length,
"RANK: Each parameter must have a value!"
);
_ranks[index].pValues = pValues;
return true;
}
/// @notice Blocks rank variability
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @return bool (On successful execution returns true)
function lockRank(string memory Name) public onlyOwner returns (bool) {
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
_ranks[index].isChangeable = false;
return true;
}
/// @notice Renames the rank parameter
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @param NewParName - New parameter name
/// @param NumberPar - The number of the parameter you want to change
/// @return bool (On successful execution returns true)
function renameRankParam(
string memory Name,
string memory NewParName,
uint256 NumberPar
) public onlyOwner returns (bool) {
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
require(
_ranks[index].pNames.length > NumberPar,
"RANK: There is no such parameter!"
);
_ranks[index].pNames[NumberPar] = NewParName;
return true;
}
/// @notice Change the rank parameter
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @param NewValue - New parameter value
/// @param NumberPar - The number of the parameter you want to change
/// @return bool (On successful execution returns true)
function changeRankParam(
string memory Name,
uint32 NewValue,
uint256 NumberPar
) public onlyOwner returns (bool) {
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
require(
_ranks[index].pNames.length > NumberPar,
"RANK: There is no such parameter!"
);
_ranks[index].pValues[NumberPar] = NewValue;
return true;
}
/// @notice Renames the rank
/// @dev For the admin only
/// If the rank is variable
/// @param Name - Unique rank identifier
/// @param NewName - New rank name
/// @return bool (On successful execution returns true)
function renameRank(string memory Name, string memory NewName)
public
onlyOwner
returns (bool)
{
require(_ranks.length > 0, "RANK: There are no ranks.");
uint256 index = searchRank(Name);
require(
_ranks[index].isChangeable,
"RANK: This rank cannot be changed!"
);
_ranks[index].Name = NewName;
_rankSequence[Name] = 0;
_rankSequence[NewName] = index;
return true;
}
/// @notice Searches for a rank by its name
/// @dev For internal calls only
/// @param Name - Unique rank identifier
/// @return uint256 (Returns the number of the title you are looking for, or discards Rank not found)
function searchRank(string memory Name) internal view returns (uint256) {
uint256 temp = _rankSequence[Name];
if (temp < _ranksHead) {
return temp;
}
revert("RANK: There is no such rank!");
}
//View Functions
/// @notice Shows the ranks
/// @dev Read-only calls
/// @return Rank[]
function showRanks() public view returns (Rank[] memory) {
require(_ranks.length > 0, "RANK: There are no ranks.");
return _ranks;
}
/// @notice Shows the ranks parameters
/// @dev Read-only calls
/// @param Name - Rank name
/// @return string Name
/// string[] Parameters names
/// uint32[] Parameters values
/// bool - is Changeable?
function showRank(string memory Name)
public
view
returns (
string memory,
string[] memory,
uint256[] memory,
bool
)
{
return (
_ranks[searchRank(Name)].Name,
_ranks[searchRank(Name)].pNames,
_ranks[searchRank(Name)].pValues,
_ranks[searchRank(Name)].isChangeable
);
}
/// @notice Shows the ranks parameters
/// @dev Read-only calls
/// Saves gas by not using rank names
/// @param Number - Rank number in the ranks array
/// @return string Name
/// string[] Parameters names
/// uint32[] Parameters values
/// bool - is Changeable?
function showRankOfNumber(uint256 Number)
public
view
returns (
string memory,
string[] memory,
uint256[] memory,
bool
)
{
require(_ranks.length > Number, "RANK: There are no ranks.");
return (
_ranks[Number].Name,
_ranks[Number].pNames,
_ranks[Number].pValues,
_ranks[Number].isChangeable
);
}
/// @notice Returns the user's rank
/// @dev Read-only calls
/// @param user - User address
/// @return string Name
/// string[] Parameters names
/// uint32[] Parameters values
/// bool - is Changeable?
function getRank(address user)
public
view
returns (
string memory,
string[] memory,
uint256[] memory,
bool
)
{
return (
_ranks[_rankTable[user]].Name,
_ranks[_rankTable[user]].pNames,
_ranks[_rankTable[user]].pValues,
_ranks[_rankTable[user]].isChangeable
);
}
/// @notice Returns the names of the rank parameters
/// @dev Read-only calls
/// @param Name - Rank name
/// @return string Name
/// string[] Parameters names
function getNameParRank(string memory Name)
public
view
returns (string[] memory)
{
return _ranks[searchRank(Name)].pNames;
}
/// @notice Returns the values of the rank parameters
/// @dev Read-only calls
/// @param Name - Rank name
/// @return string Name
/// uint23[] Parameters values
function getParRank(string memory Name)
public
view
returns (uint256[] memory)
{
return _ranks[searchRank(Name)].pValues;
}
/// @notice Returns the current user parameters
/// @dev Read-only calls
/// @param user - User address
/// @return uint32[] Parameters values
function getParRankOfUser(address user)
public
view
returns (uint256[] memory)
{
return _ranks[_rankTable[user]].pValues;
}
}
contract Marketing is Ownable {
struct User {
address userAdr;
uint256 amount;
}
struct Project {
User[] users;
mapping(address => uint256) withdrawn;
uint256 totalWithdrawn;
uint256 currentTotalValue;
uint256 totalValue;
address token;
//======================//
bool isClosed;
uint256 closingTimeStamp;
}
address globalAdmin;
mapping(string => Project) Projects;
string[] public listProjects;
constructor(address _globalAdmin) {
globalAdmin = _globalAdmin;
}
function findUser(
string calldata _name,
address _user
) internal view returns (User memory) {
Project storage project = Projects[_name];
User memory user;
for (uint256 i = 0; i < project.users.length; i++) {
if (project.users[i].userAdr == _user) {
user = project.users[i];
return user;
}
}
return user;
}
function getProject(
string calldata _name
)
public
view
returns (
uint256 totalWithdrawn,
uint256 currentTotalValue,
uint256 totalValue,
address token,
bool isClosed,
uint256 closingTimeStamp
)
{
return (
Projects[_name].totalWithdrawn,
Projects[_name].currentTotalValue,
Projects[_name].totalValue,
Projects[_name].token,
Projects[_name].isClosed,
Projects[_name].closingTimeStamp
);
}
function getUserAmount(
string calldata _name,
address _user
) public view returns (uint256) {
return findUser(_name, _user).amount;
}
function getTotalValue(
string calldata _name
) public view returns (uint256) {
return Projects[_name].totalValue;
}
function getToken(string calldata _name) public view returns (address) {
return Projects[_name].token;
}
function addProject(
string calldata _name,
uint256 _totalValue,
uint256 _closingTimeStamp,
address _token
) public onlyOwner {
require(Projects[_name].users.length == 0, "Such a project exists");
Projects[_name].totalValue = _totalValue;
Projects[_name].closingTimeStamp = _closingTimeStamp;
Projects[_name].isClosed = false;
Projects[_name].token = _token;
listProjects.push(_name);
}
function setProjectAmounts(
string calldata _name,
address[] calldata _users,
uint256[] calldata _amounts
) public onlyOwner {
require(!Projects[_name].isClosed, "This project may not be modified");
require(_users.length == _amounts.length, "Array length violation");
for (uint256 i = 0; i < _users.length; i++) {
User memory user;
user.userAdr = _users[i];
user.amount = _amounts[i];
Projects[_name].users.push(user);
}
}
function closeProject(string calldata _name) public onlyOwner {
Project storage project = Projects[_name];
uint256 total = 0;
for (uint256 i = 0; i < project.users.length; i++) {
total += project.users[i].amount;
}
require(
project.totalValue == total,
"The import data do not match the specified"
);
Projects[_name].isClosed = true;
}
function claim(string calldata _name) public {
Project storage project = Projects[_name];
require(project.users.length != 0, "Unknown project");
User memory user = findUser(_name, msg.sender);
if (user.userAdr == address(0)) {
return;
}
uint256 amount = user.amount;
require(amount != 0, "You are not a participant");
uint256 totalValue = project.totalValue;
uint256 currentValue = ERC20(project.token).balanceOf(address(this));
if (currentValue + project.totalWithdrawn > project.currentTotalValue) {
Projects[_name].currentTotalValue +=
(currentValue + project.totalWithdrawn) -
project.currentTotalValue;
}
uint256 toSend = ((Projects[_name].currentTotalValue * amount) /
totalValue) - project.withdrawn[user.userAdr];
Projects[_name].withdrawn[user.userAdr] += toSend;
Projects[_name].totalWithdrawn += toSend;
require(
ERC20(project.token).transfer(msg.sender, toSend),
"Unknown sending error"
);
}
function withdrawFunds() public onlyOwner {
for (uint256 i = 0; i < listProjects.length; i++) {
if (Projects[listProjects[i]].closingTimeStamp < block.timestamp) {
uint256 balance = ERC20(Projects[listProjects[i]].token)
.balanceOf(address(this));
ERC20(Projects[listProjects[i]].token).transfer(
globalAdmin,
balance
);
}
}
}
}
contract Team is Ownable {
struct Member {
address[] addresses;
uint256 usefulness; //Part in %
bool isLock;
}
struct Project {
mapping(address => uint256) withdrawn;
uint256 currentTotalValue;
uint256 currentBalance;
}
mapping(string => Member) members;
mapping(address => Project) projects;
string[] listMembers;
function getMember(
string calldata _name
) public view returns (Member memory) {
return members[_name];
}
//Member part
function addMember(
string calldata _name,
address _memb,
uint256 _usefulness,
bool _isLock
) public onlyOwner {
require(!members[_name].isLock);
members[_name].addresses.push(_memb);
members[_name].usefulness = _usefulness;
members[_name].isLock = _isLock;
listMembers.push(_name);
}
function changeMember(
string calldata _name,
address _memb,
uint256 _usefulness,
bool _isLock
) public onlyOwner {
require(members[_name].addresses.length != 0);
require(!members[_name].isLock);
members[_name].addresses.push(_memb);
members[_name].usefulness = _usefulness;
members[_name].isLock = _isLock;
}
function delMember(string memory _name) public onlyOwner {
require(members[_name].addresses.length != 0);
require(!members[_name].isLock);
for (uint256 i = 0; i < members[_name].addresses.length; i++) {
members[_name].addresses.pop();
}
members[_name].usefulness = 0;
for (uint256 i = 0; i < listMembers.length; i++) {
if (
keccak256(abi.encodePacked(listMembers[i])) ==
keccak256(abi.encodePacked(_name))
) {
listMembers[i] = listMembers[listMembers.length - 1];
listMembers.pop();
}
}
}
function addAddress(string calldata _name, address _addr) public {
for (uint256 j = 0; j < members[_name].addresses.length; j++) {
if (msg.sender == members[_name].addresses[j]) {
members[_name].addresses.push(_addr);
}
}
}
//Team part end
function claim(string calldata _name, address _token) public {
for (uint256 j = 0; j < members[_name].addresses.length; j++) {
if (msg.sender == members[_name].addresses[j]) {
//claim
uint256 balance = ERC20(_token).balanceOf(address(this));
if (balance > 0) {
if (balance > projects[_token].currentBalance) {
projects[_token].currentTotalValue +=
balance -
projects[_token].currentBalance;
projects[_token].currentBalance = balance;
}
uint256 toSend = (projects[_token].currentTotalValue *
members[_name].usefulness) / 100;
//- текyщие выводы
for (
uint256 i = 0;
i < members[_name].addresses.length;
i++
) {
toSend -= projects[_token].withdrawn[
members[_name].addresses[i]
];
}
if (toSend != 0) {
projects[_token].withdrawn[msg.sender] += toSend;
projects[_token].currentBalance -= toSend;
require(
ERC20(_token).transfer(msg.sender, toSend),
"Unknown sending error"
);
}
}
}
}
}
} |