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
|
// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py
// for C and C++
// from codepoints https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsOutlined%5BFILL%2CGRAD%2Copsz%2Cwght%5D.codepoints
// for use with font https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsOutlined%5BFILL,GRAD,opsz,wght%5D.ttf, https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsRounded%5BFILL,GRAD,opsz,wght%5D.ttf, https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsSharp%5BFILL,GRAD,opsz,wght%5D.ttf
#pragma once
#define FONT_ICON_FILE_NAME_MSO "MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf"
#define FONT_ICON_FILE_NAME_MSR "MaterialSymbolsRounded[FILL,GRAD,opsz,wght].ttf"
#define FONT_ICON_FILE_NAME_MSS "MaterialSymbolsSharp[FILL,GRAD,opsz,wght].ttf"
#define ICON_MIN_MS 0xe003
#define ICON_MAX_16_MS 0xf8ff
#define ICON_MAX_MS 0xf8ff
#define ICON_MS_10K "\xee\xa5\x91" // U+e951
#define ICON_MS_10MP "\xee\xa5\x92" // U+e952
#define ICON_MS_11MP "\xee\xa5\x93" // U+e953
#define ICON_MS_123 "\xee\xae\x8d" // U+eb8d
#define ICON_MS_12MP "\xee\xa5\x94" // U+e954
#define ICON_MS_13MP "\xee\xa5\x95" // U+e955
#define ICON_MS_14MP "\xee\xa5\x96" // U+e956
#define ICON_MS_15MP "\xee\xa5\x97" // U+e957
#define ICON_MS_16MP "\xee\xa5\x98" // U+e958
#define ICON_MS_17MP "\xee\xa5\x99" // U+e959
#define ICON_MS_18_UP_RATING "\xef\xa3\xbd" // U+f8fd
#define ICON_MS_18MP "\xee\xa5\x9a" // U+e95a
#define ICON_MS_19MP "\xee\xa5\x9b" // U+e95b
#define ICON_MS_1K "\xee\xa5\x9c" // U+e95c
#define ICON_MS_1K_PLUS "\xee\xa5\x9d" // U+e95d
#define ICON_MS_1X_MOBILEDATA "\xee\xbf\x8d" // U+efcd
#define ICON_MS_1X_MOBILEDATA_BADGE "\xef\x9f\xb1" // U+f7f1
#define ICON_MS_20MP "\xee\xa5\x9e" // U+e95e
#define ICON_MS_21MP "\xee\xa5\x9f" // U+e95f
#define ICON_MS_22MP "\xee\xa5\xa0" // U+e960
#define ICON_MS_23MP "\xee\xa5\xa1" // U+e961
#define ICON_MS_24MP "\xee\xa5\xa2" // U+e962
#define ICON_MS_2D "\xee\xbc\xb7" // U+ef37
#define ICON_MS_2K "\xee\xa5\xa3" // U+e963
#define ICON_MS_2K_PLUS "\xee\xa5\xa4" // U+e964
#define ICON_MS_2MP "\xee\xa5\xa5" // U+e965
#define ICON_MS_30FPS "\xee\xbf\x8e" // U+efce
#define ICON_MS_30FPS_SELECT "\xee\xbf\x8f" // U+efcf
#define ICON_MS_360 "\xee\x95\xb7" // U+e577
#define ICON_MS_3D_ROTATION "\xee\xa1\x8d" // U+e84d
#define ICON_MS_3G_MOBILEDATA "\xee\xbf\x90" // U+efd0
#define ICON_MS_3G_MOBILEDATA_BADGE "\xef\x9f\xb0" // U+f7f0
#define ICON_MS_3K "\xee\xa5\xa6" // U+e966
#define ICON_MS_3K_PLUS "\xee\xa5\xa7" // U+e967
#define ICON_MS_3MP "\xee\xa5\xa8" // U+e968
#define ICON_MS_3P "\xee\xbf\x91" // U+efd1
#define ICON_MS_4G_MOBILEDATA "\xee\xbf\x92" // U+efd2
#define ICON_MS_4G_MOBILEDATA_BADGE "\xef\x9f\xaf" // U+f7ef
#define ICON_MS_4G_PLUS_MOBILEDATA "\xee\xbf\x93" // U+efd3
#define ICON_MS_4K "\xee\x81\xb2" // U+e072
#define ICON_MS_4K_PLUS "\xee\xa5\xa9" // U+e969
#define ICON_MS_4MP "\xee\xa5\xaa" // U+e96a
#define ICON_MS_50MP "\xef\x9b\xb3" // U+f6f3
#define ICON_MS_5G "\xee\xbc\xb8" // U+ef38
#define ICON_MS_5G_MOBILEDATA_BADGE "\xef\x9f\xae" // U+f7ee
#define ICON_MS_5K "\xee\xa5\xab" // U+e96b
#define ICON_MS_5K_PLUS "\xee\xa5\xac" // U+e96c
#define ICON_MS_5MP "\xee\xa5\xad" // U+e96d
#define ICON_MS_60FPS "\xee\xbf\x94" // U+efd4
#define ICON_MS_60FPS_SELECT "\xee\xbf\x95" // U+efd5
#define ICON_MS_6_FT_APART "\xef\x88\x9e" // U+f21e
#define ICON_MS_6K "\xee\xa5\xae" // U+e96e
#define ICON_MS_6K_PLUS "\xee\xa5\xaf" // U+e96f
#define ICON_MS_6MP "\xee\xa5\xb0" // U+e970
#define ICON_MS_7K "\xee\xa5\xb1" // U+e971
#define ICON_MS_7K_PLUS "\xee\xa5\xb2" // U+e972
#define ICON_MS_7MP "\xee\xa5\xb3" // U+e973
#define ICON_MS_8K "\xee\xa5\xb4" // U+e974
#define ICON_MS_8K_PLUS "\xee\xa5\xb5" // U+e975
#define ICON_MS_8MP "\xee\xa5\xb6" // U+e976
#define ICON_MS_9K "\xee\xa5\xb7" // U+e977
#define ICON_MS_9K_PLUS "\xee\xa5\xb8" // U+e978
#define ICON_MS_9MP "\xee\xa5\xb9" // U+e979
#define ICON_MS_ABC "\xee\xae\x94" // U+eb94
#define ICON_MS_AC_UNIT "\xee\xac\xbb" // U+eb3b
#define ICON_MS_ACCESS_ALARM "\xee\xa1\x95" // U+e855
#define ICON_MS_ACCESS_ALARMS "\xee\xa1\x95" // U+e855
#define ICON_MS_ACCESS_TIME "\xee\xbf\x96" // U+efd6
#define ICON_MS_ACCESS_TIME_FILLED "\xee\xbf\x96" // U+efd6
#define ICON_MS_ACCESSIBILITY "\xee\xa1\x8e" // U+e84e
#define ICON_MS_ACCESSIBILITY_NEW "\xee\xa4\xac" // U+e92c
#define ICON_MS_ACCESSIBLE "\xee\xa4\x94" // U+e914
#define ICON_MS_ACCESSIBLE_FORWARD "\xee\xa4\xb4" // U+e934
#define ICON_MS_ACCOUNT_BALANCE "\xee\xa1\x8f" // U+e84f
#define ICON_MS_ACCOUNT_BALANCE_WALLET "\xee\xa1\x90" // U+e850
#define ICON_MS_ACCOUNT_BOX "\xee\xa1\x91" // U+e851
#define ICON_MS_ACCOUNT_CHILD "\xee\xa1\x92" // U+e852
#define ICON_MS_ACCOUNT_CHILD_INVERT "\xee\x99\x99" // U+e659
#define ICON_MS_ACCOUNT_CIRCLE "\xef\x88\x8b" // U+f20b
#define ICON_MS_ACCOUNT_CIRCLE_FILLED "\xef\x88\x8b" // U+f20b
#define ICON_MS_ACCOUNT_CIRCLE_OFF "\xef\x9e\xb3" // U+f7b3
#define ICON_MS_ACCOUNT_TREE "\xee\xa5\xba" // U+e97a
#define ICON_MS_ACTION_KEY "\xef\x94\x82" // U+f502
#define ICON_MS_ACTIVITY_ZONE "\xee\x87\xa6" // U+e1e6
#define ICON_MS_ACUTE "\xee\x93\x8b" // U+e4cb
#define ICON_MS_AD "\xee\x99\x9a" // U+e65a
#define ICON_MS_AD_GROUP "\xee\x99\x9b" // U+e65b
#define ICON_MS_AD_GROUP_OFF "\xee\xab\xa5" // U+eae5
#define ICON_MS_AD_OFF "\xef\x9e\xb2" // U+f7b2
#define ICON_MS_AD_UNITS "\xee\xbc\xb9" // U+ef39
#define ICON_MS_ADAPTIVE_AUDIO_MIC "\xef\x93\x8c" // U+f4cc
#define ICON_MS_ADAPTIVE_AUDIO_MIC_OFF "\xef\x93\x8b" // U+f4cb
#define ICON_MS_ADB "\xee\x98\x8e" // U+e60e
#define ICON_MS_ADD "\xee\x85\x85" // U+e145
#define ICON_MS_ADD_A_PHOTO "\xee\x90\xb9" // U+e439
#define ICON_MS_ADD_AD "\xee\x9c\xaa" // U+e72a
#define ICON_MS_ADD_ALARM "\xee\xa1\x96" // U+e856
#define ICON_MS_ADD_ALERT "\xee\x80\x83" // U+e003
#define ICON_MS_ADD_BOX "\xee\x85\x86" // U+e146
#define ICON_MS_ADD_BUSINESS "\xee\x9c\xa9" // U+e729
#define ICON_MS_ADD_CALL "\xef\x82\xb7" // U+f0b7
#define ICON_MS_ADD_CARD "\xee\xae\x86" // U+eb86
#define ICON_MS_ADD_CHART "\xee\xbc\xbc" // U+ef3c
#define ICON_MS_ADD_CIRCLE "\xee\x8e\xba" // U+e3ba
#define ICON_MS_ADD_CIRCLE_OUTLINE "\xee\x8e\xba" // U+e3ba
#define ICON_MS_ADD_COMMENT "\xee\x89\xa6" // U+e266
#define ICON_MS_ADD_DIAMOND "\xef\x92\x9c" // U+f49c
#define ICON_MS_ADD_HOME "\xef\xa3\xab" // U+f8eb
#define ICON_MS_ADD_HOME_WORK "\xef\xa3\xad" // U+f8ed
#define ICON_MS_ADD_IC_CALL "\xef\x82\xb7" // U+f0b7
#define ICON_MS_ADD_LINK "\xee\x85\xb8" // U+e178
#define ICON_MS_ADD_LOCATION "\xee\x95\xa7" // U+e567
#define ICON_MS_ADD_LOCATION_ALT "\xee\xbc\xba" // U+ef3a
#define ICON_MS_ADD_MODERATOR "\xee\xa5\xbd" // U+e97d
#define ICON_MS_ADD_NOTES "\xee\x82\x91" // U+e091
#define ICON_MS_ADD_PHOTO_ALTERNATE "\xee\x90\xbe" // U+e43e
#define ICON_MS_ADD_REACTION "\xee\x87\x93" // U+e1d3
#define ICON_MS_ADD_ROAD "\xee\xbc\xbb" // U+ef3b
#define ICON_MS_ADD_SHOPPING_CART "\xee\xa1\x94" // U+e854
#define ICON_MS_ADD_TASK "\xef\x88\xba" // U+f23a
#define ICON_MS_ADD_TO_DRIVE "\xee\x99\x9c" // U+e65c
#define ICON_MS_ADD_TO_HOME_SCREEN "\xee\x87\xbe" // U+e1fe
#define ICON_MS_ADD_TO_PHOTOS "\xee\x8e\x9d" // U+e39d
#define ICON_MS_ADD_TO_QUEUE "\xee\x81\x9c" // U+e05c
#define ICON_MS_ADD_TRIANGLE "\xef\x92\x8e" // U+f48e
#define ICON_MS_ADDCHART "\xee\xbc\xbc" // U+ef3c
#define ICON_MS_ADF_SCANNER "\xee\xab\x9a" // U+eada
#define ICON_MS_ADJUST "\xee\x8e\x9e" // U+e39e
#define ICON_MS_ADMIN_MEDS "\xee\x92\x8d" // U+e48d
#define ICON_MS_ADMIN_PANEL_SETTINGS "\xee\xbc\xbd" // U+ef3d
#define ICON_MS_ADS_CLICK "\xee\x9d\xa2" // U+e762
#define ICON_MS_AGENDER "\xef\xa2\x88" // U+f888
#define ICON_MS_AGRICULTURE "\xee\xa9\xb9" // U+ea79
#define ICON_MS_AIR "\xee\xbf\x98" // U+efd8
#define ICON_MS_AIR_FRESHENER "\xee\x8b\x8a" // U+e2ca
#define ICON_MS_AIR_PURIFIER "\xee\xa5\xbe" // U+e97e
#define ICON_MS_AIR_PURIFIER_GEN "\xee\xa0\xa9" // U+e829
#define ICON_MS_AIRLINE_SEAT_FLAT "\xee\x98\xb0" // U+e630
#define ICON_MS_AIRLINE_SEAT_FLAT_ANGLED "\xee\x98\xb1" // U+e631
#define ICON_MS_AIRLINE_SEAT_INDIVIDUAL_SUITE "\xee\x98\xb2" // U+e632
#define ICON_MS_AIRLINE_SEAT_LEGROOM_EXTRA "\xee\x98\xb3" // U+e633
#define ICON_MS_AIRLINE_SEAT_LEGROOM_NORMAL "\xee\x98\xb4" // U+e634
#define ICON_MS_AIRLINE_SEAT_LEGROOM_REDUCED "\xee\x98\xb5" // U+e635
#define ICON_MS_AIRLINE_SEAT_RECLINE_EXTRA "\xee\x98\xb6" // U+e636
#define ICON_MS_AIRLINE_SEAT_RECLINE_NORMAL "\xee\x98\xb7" // U+e637
#define ICON_MS_AIRLINE_STOPS "\xee\x9f\x90" // U+e7d0
#define ICON_MS_AIRLINES "\xee\x9f\x8a" // U+e7ca
#define ICON_MS_AIRPLANE_TICKET "\xee\xbf\x99" // U+efd9
#define ICON_MS_AIRPLANEMODE_ACTIVE "\xee\x94\xbd" // U+e53d
#define ICON_MS_AIRPLANEMODE_INACTIVE "\xee\x86\x94" // U+e194
#define ICON_MS_AIRPLAY "\xee\x81\x95" // U+e055
#define ICON_MS_AIRPORT_SHUTTLE "\xee\xac\xbc" // U+eb3c
#define ICON_MS_AIRWARE "\xef\x85\x94" // U+f154
#define ICON_MS_AIRWAVE "\xef\x85\x94" // U+f154
#define ICON_MS_ALARM "\xee\xa1\x95" // U+e855
#define ICON_MS_ALARM_ADD "\xee\xa1\x96" // U+e856
#define ICON_MS_ALARM_OFF "\xee\xa1\x97" // U+e857
#define ICON_MS_ALARM_ON "\xee\xa1\x98" // U+e858
#define ICON_MS_ALARM_SMART_WAKE "\xef\x9a\xb0" // U+f6b0
#define ICON_MS_ALBUM "\xee\x80\x99" // U+e019
#define ICON_MS_ALIGN_CENTER "\xee\x8d\x96" // U+e356
#define ICON_MS_ALIGN_END "\xef\x9e\x97" // U+f797
#define ICON_MS_ALIGN_FLEX_CENTER "\xef\x9e\x96" // U+f796
#define ICON_MS_ALIGN_FLEX_END "\xef\x9e\x95" // U+f795
#define ICON_MS_ALIGN_FLEX_START "\xef\x9e\x94" // U+f794
#define ICON_MS_ALIGN_HORIZONTAL_CENTER "\xee\x80\x8f" // U+e00f
#define ICON_MS_ALIGN_HORIZONTAL_LEFT "\xee\x80\x8d" // U+e00d
#define ICON_MS_ALIGN_HORIZONTAL_RIGHT "\xee\x80\x90" // U+e010
#define ICON_MS_ALIGN_ITEMS_STRETCH "\xef\x9e\x93" // U+f793
#define ICON_MS_ALIGN_JUSTIFY_CENTER "\xef\x9e\x92" // U+f792
#define ICON_MS_ALIGN_JUSTIFY_FLEX_END "\xef\x9e\x91" // U+f791
#define ICON_MS_ALIGN_JUSTIFY_FLEX_START "\xef\x9e\x90" // U+f790
#define ICON_MS_ALIGN_JUSTIFY_SPACE_AROUND "\xef\x9e\x8f" // U+f78f
#define ICON_MS_ALIGN_JUSTIFY_SPACE_BETWEEN "\xef\x9e\x8e" // U+f78e
#define ICON_MS_ALIGN_JUSTIFY_SPACE_EVEN "\xef\x9e\x8d" // U+f78d
#define ICON_MS_ALIGN_JUSTIFY_STRETCH "\xef\x9e\x8c" // U+f78c
#define ICON_MS_ALIGN_SELF_STRETCH "\xef\x9e\x8b" // U+f78b
#define ICON_MS_ALIGN_SPACE_AROUND "\xef\x9e\x8a" // U+f78a
#define ICON_MS_ALIGN_SPACE_BETWEEN "\xef\x9e\x89" // U+f789
#define ICON_MS_ALIGN_SPACE_EVEN "\xef\x9e\x88" // U+f788
#define ICON_MS_ALIGN_START "\xef\x9e\x87" // U+f787
#define ICON_MS_ALIGN_STRETCH "\xef\x9e\x86" // U+f786
#define ICON_MS_ALIGN_VERTICAL_BOTTOM "\xee\x80\x95" // U+e015
#define ICON_MS_ALIGN_VERTICAL_CENTER "\xee\x80\x91" // U+e011
#define ICON_MS_ALIGN_VERTICAL_TOP "\xee\x80\x8c" // U+e00c
#define ICON_MS_ALL_INBOX "\xee\xa5\xbf" // U+e97f
#define ICON_MS_ALL_INCLUSIVE "\xee\xac\xbd" // U+eb3d
#define ICON_MS_ALL_MATCH "\xee\x82\x93" // U+e093
#define ICON_MS_ALL_OUT "\xee\xa4\x8b" // U+e90b
#define ICON_MS_ALLERGIES "\xee\x82\x94" // U+e094
#define ICON_MS_ALLERGY "\xee\x99\x8e" // U+e64e
#define ICON_MS_ALT_ROUTE "\xef\x86\x84" // U+f184
#define ICON_MS_ALTERNATE_EMAIL "\xee\x83\xa6" // U+e0e6
#define ICON_MS_ALTITUDE "\xef\xa1\xb3" // U+f873
#define ICON_MS_AMBIENT_SCREEN "\xef\x9b\x84" // U+f6c4
#define ICON_MS_AMBULANCE "\xef\xa0\x83" // U+f803
#define ICON_MS_AMEND "\xef\xa0\x82" // U+f802
#define ICON_MS_AMP_STORIES "\xee\xa8\x93" // U+ea13
#define ICON_MS_ANALYTICS "\xee\xbc\xbe" // U+ef3e
#define ICON_MS_ANCHOR "\xef\x87\x8d" // U+f1cd
#define ICON_MS_ANDROID "\xee\xa1\x99" // U+e859
#define ICON_MS_ANIMATED_IMAGES "\xef\x92\x9a" // U+f49a
#define ICON_MS_ANIMATION "\xee\x9c\x9c" // U+e71c
#define ICON_MS_ANNOUNCEMENT "\xee\xa1\xbf" // U+e87f
#define ICON_MS_AOD "\xee\xbf\x9a" // U+efda
#define ICON_MS_AOD_TABLET "\xef\xa2\x9f" // U+f89f
#define ICON_MS_AOD_WATCH "\xef\x9a\xac" // U+f6ac
#define ICON_MS_APARTMENT "\xee\xa9\x80" // U+ea40
#define ICON_MS_API "\xef\x86\xb7" // U+f1b7
#define ICON_MS_APK_DOCUMENT "\xef\xa2\x8e" // U+f88e
#define ICON_MS_APK_INSTALL "\xef\xa2\x8f" // U+f88f
#define ICON_MS_APP_BADGING "\xef\x9c\xaf" // U+f72f
#define ICON_MS_APP_BLOCKING "\xee\xbc\xbf" // U+ef3f
#define ICON_MS_APP_PROMO "\xee\xa6\x81" // U+e981
#define ICON_MS_APP_REGISTRATION "\xee\xbd\x80" // U+ef40
#define ICON_MS_APP_SETTINGS_ALT "\xee\xbd\x81" // U+ef41
#define ICON_MS_APP_SHORTCUT "\xee\xab\xa4" // U+eae4
#define ICON_MS_APPAREL "\xee\xbd\xbb" // U+ef7b
#define ICON_MS_APPROVAL "\xee\xa6\x82" // U+e982
#define ICON_MS_APPROVAL_DELEGATION "\xef\xa1\x8a" // U+f84a
#define ICON_MS_APPS "\xee\x97\x83" // U+e5c3
#define ICON_MS_APPS_OUTAGE "\xee\x9f\x8c" // U+e7cc
#define ICON_MS_AQ "\xef\x95\x9a" // U+f55a
#define ICON_MS_AQ_INDOOR "\xef\x95\x9b" // U+f55b
#define ICON_MS_AR_ON_YOU "\xee\xbd\xbc" // U+ef7c
#define ICON_MS_AR_STICKERS "\xee\xa6\x83" // U+e983
#define ICON_MS_ARCHITECTURE "\xee\xa8\xbb" // U+ea3b
#define ICON_MS_ARCHIVE "\xee\x85\x89" // U+e149
#define ICON_MS_AREA_CHART "\xee\x9d\xb0" // U+e770
#define ICON_MS_ARMING_COUNTDOWN "\xee\x9e\x8a" // U+e78a
#define ICON_MS_ARROW_AND_EDGE "\xef\x97\x97" // U+f5d7
#define ICON_MS_ARROW_BACK "\xee\x97\x84" // U+e5c4
#define ICON_MS_ARROW_BACK_IOS "\xee\x97\xa0" // U+e5e0
#define ICON_MS_ARROW_BACK_IOS_NEW "\xee\x8b\xaa" // U+e2ea
#define ICON_MS_ARROW_CIRCLE_DOWN "\xef\x86\x81" // U+f181
#define ICON_MS_ARROW_CIRCLE_LEFT "\xee\xaa\xa7" // U+eaa7
#define ICON_MS_ARROW_CIRCLE_RIGHT "\xee\xaa\xaa" // U+eaaa
#define ICON_MS_ARROW_CIRCLE_UP "\xef\x86\x82" // U+f182
#define ICON_MS_ARROW_COOL_DOWN "\xef\x92\xb6" // U+f4b6
#define ICON_MS_ARROW_DOWNWARD "\xee\x97\x9b" // U+e5db
#define ICON_MS_ARROW_DOWNWARD_ALT "\xee\xa6\x84" // U+e984
#define ICON_MS_ARROW_DROP_DOWN "\xee\x97\x85" // U+e5c5
#define ICON_MS_ARROW_DROP_DOWN_CIRCLE "\xee\x97\x86" // U+e5c6
#define ICON_MS_ARROW_DROP_UP "\xee\x97\x87" // U+e5c7
#define ICON_MS_ARROW_FORWARD "\xee\x97\x88" // U+e5c8
#define ICON_MS_ARROW_FORWARD_IOS "\xee\x97\xa1" // U+e5e1
#define ICON_MS_ARROW_INSERT "\xef\xa0\xb7" // U+f837
#define ICON_MS_ARROW_LEFT "\xee\x97\x9e" // U+e5de
#define ICON_MS_ARROW_LEFT_ALT "\xee\xbd\xbd" // U+ef7d
#define ICON_MS_ARROW_OR_EDGE "\xef\x97\x96" // U+f5d6
#define ICON_MS_ARROW_OUTWARD "\xef\xa3\x8e" // U+f8ce
#define ICON_MS_ARROW_RANGE "\xef\x9a\x9b" // U+f69b
#define ICON_MS_ARROW_RIGHT "\xee\x97\x9f" // U+e5df
#define ICON_MS_ARROW_RIGHT_ALT "\xee\xa5\x81" // U+e941
#define ICON_MS_ARROW_SELECTOR_TOOL "\xef\xa0\xaf" // U+f82f
#define ICON_MS_ARROW_SPLIT "\xee\xa8\x84" // U+ea04
#define ICON_MS_ARROW_TOP_LEFT "\xef\x9c\xae" // U+f72e
#define ICON_MS_ARROW_TOP_RIGHT "\xef\x9c\xad" // U+f72d
#define ICON_MS_ARROW_UPWARD "\xee\x97\x98" // U+e5d8
#define ICON_MS_ARROW_UPWARD_ALT "\xee\xa6\x86" // U+e986
#define ICON_MS_ARROW_WARM_UP "\xef\x92\xb5" // U+f4b5
#define ICON_MS_ARROWS_MORE_DOWN "\xef\xa2\xab" // U+f8ab
#define ICON_MS_ARROWS_MORE_UP "\xef\xa2\xac" // U+f8ac
#define ICON_MS_ARROWS_OUTWARD "\xef\x9c\xac" // U+f72c
#define ICON_MS_ART_TRACK "\xee\x81\xa0" // U+e060
#define ICON_MS_ARTICLE "\xee\xbd\x82" // U+ef42
#define ICON_MS_ARTICLE_SHORTCUT "\xef\x96\x87" // U+f587
#define ICON_MS_ARTIST "\xee\x80\x9a" // U+e01a
#define ICON_MS_ASPECT_RATIO "\xee\xa1\x9b" // U+e85b
#define ICON_MS_ASSESSMENT "\xef\x83\x8c" // U+f0cc
#define ICON_MS_ASSIGNMENT "\xee\xa1\x9d" // U+e85d
#define ICON_MS_ASSIGNMENT_ADD "\xef\xa1\x88" // U+f848
#define ICON_MS_ASSIGNMENT_IND "\xee\xa1\x9e" // U+e85e
#define ICON_MS_ASSIGNMENT_LATE "\xee\xa1\x9f" // U+e85f
#define ICON_MS_ASSIGNMENT_RETURN "\xee\xa1\xa0" // U+e860
#define ICON_MS_ASSIGNMENT_RETURNED "\xee\xa1\xa1" // U+e861
#define ICON_MS_ASSIGNMENT_TURNED_IN "\xee\xa1\xa2" // U+e862
#define ICON_MS_ASSIST_WALKER "\xef\xa3\x95" // U+f8d5
#define ICON_MS_ASSISTANT "\xee\x8e\x9f" // U+e39f
#define ICON_MS_ASSISTANT_DEVICE "\xee\xa6\x87" // U+e987
#define ICON_MS_ASSISTANT_DIRECTION "\xee\xa6\x88" // U+e988
#define ICON_MS_ASSISTANT_NAVIGATION "\xee\xa6\x89" // U+e989
#define ICON_MS_ASSISTANT_ON_HUB "\xef\x9b\x81" // U+f6c1
#define ICON_MS_ASSISTANT_PHOTO "\xef\x83\x86" // U+f0c6
#define ICON_MS_ASSURED_WORKLOAD "\xee\xad\xaf" // U+eb6f
#define ICON_MS_ASTERISK "\xef\x94\xa5" // U+f525
#define ICON_MS_ASTROPHOTOGRAPHY_AUTO "\xef\x87\x99" // U+f1d9
#define ICON_MS_ASTROPHOTOGRAPHY_OFF "\xef\x87\x9a" // U+f1da
#define ICON_MS_ATM "\xee\x95\xb3" // U+e573
#define ICON_MS_ATR "\xee\xaf\x87" // U+ebc7
#define ICON_MS_ATTACH_EMAIL "\xee\xa9\x9e" // U+ea5e
#define ICON_MS_ATTACH_FILE "\xee\x88\xa6" // U+e226
#define ICON_MS_ATTACH_FILE_ADD "\xef\xa1\x81" // U+f841
#define ICON_MS_ATTACH_FILE_OFF "\xef\x93\x99" // U+f4d9
#define ICON_MS_ATTACH_MONEY "\xee\x88\xa7" // U+e227
#define ICON_MS_ATTACHMENT "\xee\x8a\xbc" // U+e2bc
#define ICON_MS_ATTRACTIONS "\xee\xa9\x92" // U+ea52
#define ICON_MS_ATTRIBUTION "\xee\xbf\x9b" // U+efdb
#define ICON_MS_AUDIO_DESCRIPTION "\xef\x96\x8c" // U+f58c
#define ICON_MS_AUDIO_FILE "\xee\xae\x82" // U+eb82
#define ICON_MS_AUDIO_VIDEO_RECEIVER "\xef\x97\x93" // U+f5d3
#define ICON_MS_AUDIOTRACK "\xee\x90\x85" // U+e405
#define ICON_MS_AUTO_ACTIVITY_ZONE "\xef\xa2\xad" // U+f8ad
#define ICON_MS_AUTO_AWESOME "\xee\x99\x9f" // U+e65f
#define ICON_MS_AUTO_AWESOME_MOSAIC "\xee\x99\xa0" // U+e660
#define ICON_MS_AUTO_AWESOME_MOTION "\xee\x99\xa1" // U+e661
#define ICON_MS_AUTO_DELETE "\xee\xa9\x8c" // U+ea4c
#define ICON_MS_AUTO_DETECT_VOICE "\xef\xa0\xbe" // U+f83e
#define ICON_MS_AUTO_DRAW_SOLID "\xee\xa6\x8a" // U+e98a
#define ICON_MS_AUTO_FIX "\xee\x99\xa3" // U+e663
#define ICON_MS_AUTO_FIX_HIGH "\xee\x99\xa3" // U+e663
#define ICON_MS_AUTO_FIX_NORMAL "\xee\x99\xa4" // U+e664
#define ICON_MS_AUTO_FIX_OFF "\xee\x99\xa5" // U+e665
#define ICON_MS_AUTO_GRAPH "\xee\x93\xbb" // U+e4fb
#define ICON_MS_AUTO_LABEL "\xef\x9a\xbe" // U+f6be
#define ICON_MS_AUTO_MEETING_ROOM "\xef\x9a\xbf" // U+f6bf
#define ICON_MS_AUTO_MODE "\xee\xb0\xa0" // U+ec20
#define ICON_MS_AUTO_READ_PAUSE "\xef\x88\x99" // U+f219
#define ICON_MS_AUTO_READ_PLAY "\xef\x88\x96" // U+f216
#define ICON_MS_AUTO_SCHEDULE "\xee\x88\x94" // U+e214
#define ICON_MS_AUTO_STORIES "\xee\x99\xa6" // U+e666
#define ICON_MS_AUTO_TIMER "\xee\xbd\xbf" // U+ef7f
#define ICON_MS_AUTO_TOWING "\xee\x9c\x9e" // U+e71e
#define ICON_MS_AUTO_TRANSMISSION "\xef\x94\xbf" // U+f53f
#define ICON_MS_AUTO_VIDEOCAM "\xef\x9b\x80" // U+f6c0
#define ICON_MS_AUTOFPS_SELECT "\xee\xbf\x9c" // U+efdc
#define ICON_MS_AUTOPAUSE "\xef\x9a\xb6" // U+f6b6
#define ICON_MS_AUTOPAY "\xef\xa1\x8b" // U+f84b
#define ICON_MS_AUTOPLAY "\xef\x9a\xb5" // U+f6b5
#define ICON_MS_AUTORENEW "\xee\xa1\xa3" // U+e863
#define ICON_MS_AUTOSTOP "\xef\x9a\x82" // U+f682
#define ICON_MS_AV1 "\xef\x92\xb0" // U+f4b0
#define ICON_MS_AV_TIMER "\xee\x80\x9b" // U+e01b
#define ICON_MS_AVC "\xef\x92\xaf" // U+f4af
#define ICON_MS_AVG_PACE "\xef\x9a\xbb" // U+f6bb
#define ICON_MS_AVG_TIME "\xef\xa0\x93" // U+f813
#define ICON_MS_AWARD_STAR "\xef\x98\x92" // U+f612
#define ICON_MS_AZM "\xef\x9b\xac" // U+f6ec
#define ICON_MS_BABY_CHANGING_STATION "\xef\x86\x9b" // U+f19b
#define ICON_MS_BACK_HAND "\xee\x9d\xa4" // U+e764
#define ICON_MS_BACK_TO_TAB "\xef\x9c\xab" // U+f72b
#define ICON_MS_BACKGROUND_DOT_LARGE "\xef\x9e\x9e" // U+f79e
#define ICON_MS_BACKGROUND_DOT_SMALL "\xef\x94\x94" // U+f514
#define ICON_MS_BACKGROUND_GRID_SMALL "\xef\x9e\x9d" // U+f79d
#define ICON_MS_BACKGROUND_REPLACE "\xef\x88\x8a" // U+f20a
#define ICON_MS_BACKLIGHT_HIGH "\xef\x9f\xad" // U+f7ed
#define ICON_MS_BACKLIGHT_HIGH_OFF "\xef\x93\xaf" // U+f4ef
#define ICON_MS_BACKLIGHT_LOW "\xef\x9f\xac" // U+f7ec
#define ICON_MS_BACKPACK "\xef\x86\x9c" // U+f19c
#define ICON_MS_BACKSPACE "\xee\x85\x8a" // U+e14a
#define ICON_MS_BACKUP "\xee\xa1\xa4" // U+e864
#define ICON_MS_BACKUP_TABLE "\xee\xbd\x83" // U+ef43
#define ICON_MS_BADGE "\xee\xa9\xa7" // U+ea67
#define ICON_MS_BADGE_CRITICAL_BATTERY "\xef\x85\x96" // U+f156
#define ICON_MS_BAKERY_DINING "\xee\xa9\x93" // U+ea53
#define ICON_MS_BALANCE "\xee\xab\xb6" // U+eaf6
#define ICON_MS_BALCONY "\xee\x96\x8f" // U+e58f
#define ICON_MS_BALLOT "\xee\x85\xb2" // U+e172
#define ICON_MS_BAR_CHART "\xee\x89\xab" // U+e26b
#define ICON_MS_BAR_CHART_4_BARS "\xef\x9a\x81" // U+f681
#define ICON_MS_BARCODE "\xee\x9c\x8b" // U+e70b
#define ICON_MS_BARCODE_READER "\xef\xa1\x9c" // U+f85c
#define ICON_MS_BARCODE_SCANNER "\xee\x9c\x8c" // U+e70c
#define ICON_MS_BAREFOOT "\xef\xa1\xb1" // U+f871
#define ICON_MS_BATCH_PREDICTION "\xef\x83\xb5" // U+f0f5
#define ICON_MS_BATH_OUTDOOR "\xef\x9b\xbb" // U+f6fb
#define ICON_MS_BATH_PRIVATE "\xef\x9b\xba" // U+f6fa
#define ICON_MS_BATH_PUBLIC_LARGE "\xef\x9b\xb9" // U+f6f9
#define ICON_MS_BATHROOM "\xee\xbf\x9d" // U+efdd
#define ICON_MS_BATHTUB "\xee\xa9\x81" // U+ea41
#define ICON_MS_BATTERY_0_BAR "\xee\xaf\x9c" // U+ebdc
#define ICON_MS_BATTERY_1_BAR "\xef\x82\x9c" // U+f09c
#define ICON_MS_BATTERY_20 "\xef\x82\x9c" // U+f09c
#define ICON_MS_BATTERY_2_BAR "\xef\x82\x9d" // U+f09d
#define ICON_MS_BATTERY_30 "\xef\x82\x9d" // U+f09d
#define ICON_MS_BATTERY_3_BAR "\xef\x82\x9e" // U+f09e
#define ICON_MS_BATTERY_4_BAR "\xef\x82\x9f" // U+f09f
#define ICON_MS_BATTERY_50 "\xef\x82\x9e" // U+f09e
#define ICON_MS_BATTERY_5_BAR "\xef\x82\xa0" // U+f0a0
#define ICON_MS_BATTERY_60 "\xef\x82\x9f" // U+f09f
#define ICON_MS_BATTERY_6_BAR "\xef\x82\xa1" // U+f0a1
#define ICON_MS_BATTERY_80 "\xef\x82\xa0" // U+f0a0
#define ICON_MS_BATTERY_90 "\xef\x82\xa1" // U+f0a1
#define ICON_MS_BATTERY_ALERT "\xee\x86\x9c" // U+e19c
#define ICON_MS_BATTERY_CHANGE "\xef\x9f\xab" // U+f7eb
#define ICON_MS_BATTERY_CHARGING_20 "\xef\x82\xa2" // U+f0a2
#define ICON_MS_BATTERY_CHARGING_30 "\xef\x82\xa3" // U+f0a3
#define ICON_MS_BATTERY_CHARGING_50 "\xef\x82\xa4" // U+f0a4
#define ICON_MS_BATTERY_CHARGING_60 "\xef\x82\xa5" // U+f0a5
#define ICON_MS_BATTERY_CHARGING_80 "\xef\x82\xa6" // U+f0a6
#define ICON_MS_BATTERY_CHARGING_90 "\xef\x82\xa7" // U+f0a7
#define ICON_MS_BATTERY_CHARGING_FULL "\xee\x86\xa3" // U+e1a3
#define ICON_MS_BATTERY_ERROR "\xef\x9f\xaa" // U+f7ea
#define ICON_MS_BATTERY_FULL "\xee\x86\xa5" // U+e1a5
#define ICON_MS_BATTERY_FULL_ALT "\xef\x84\xbb" // U+f13b
#define ICON_MS_BATTERY_HORIZ_000 "\xef\xa2\xae" // U+f8ae
#define ICON_MS_BATTERY_HORIZ_050 "\xef\xa2\xaf" // U+f8af
#define ICON_MS_BATTERY_HORIZ_075 "\xef\xa2\xb0" // U+f8b0
#define ICON_MS_BATTERY_LOW "\xef\x85\x95" // U+f155
#define ICON_MS_BATTERY_PLUS "\xef\x9f\xa9" // U+f7e9
#define ICON_MS_BATTERY_PROFILE "\xee\x88\x86" // U+e206
#define ICON_MS_BATTERY_SAVER "\xee\xbf\x9e" // U+efde
#define ICON_MS_BATTERY_SHARE "\xef\x99\xbe" // U+f67e
#define ICON_MS_BATTERY_STATUS_GOOD "\xef\x99\xbd" // U+f67d
#define ICON_MS_BATTERY_STD "\xee\x86\xa5" // U+e1a5
#define ICON_MS_BATTERY_UNKNOWN "\xee\x86\xa6" // U+e1a6
#define ICON_MS_BATTERY_VERT_005 "\xef\xa2\xb1" // U+f8b1
#define ICON_MS_BATTERY_VERT_020 "\xef\xa2\xb2" // U+f8b2
#define ICON_MS_BATTERY_VERT_050 "\xef\xa2\xb3" // U+f8b3
#define ICON_MS_BATTERY_VERY_LOW "\xef\x85\x96" // U+f156
#define ICON_MS_BEACH_ACCESS "\xee\xac\xbe" // U+eb3e
#define ICON_MS_BED "\xee\xbf\x9f" // U+efdf
#define ICON_MS_BEDROOM_BABY "\xee\xbf\xa0" // U+efe0
#define ICON_MS_BEDROOM_CHILD "\xee\xbf\xa1" // U+efe1
#define ICON_MS_BEDROOM_PARENT "\xee\xbf\xa2" // U+efe2
#define ICON_MS_BEDTIME "\xee\xbd\x84" // U+ef44
#define ICON_MS_BEDTIME_OFF "\xee\xad\xb6" // U+eb76
#define ICON_MS_BEENHERE "\xee\x94\xad" // U+e52d
#define ICON_MS_BENTO "\xef\x87\xb4" // U+f1f4
#define ICON_MS_BIA "\xef\x9b\xab" // U+f6eb
#define ICON_MS_BID_LANDSCAPE "\xee\x99\xb8" // U+e678
#define ICON_MS_BID_LANDSCAPE_DISABLED "\xee\xbe\x81" // U+ef81
#define ICON_MS_BIGTOP_UPDATES "\xee\x99\xa9" // U+e669
#define ICON_MS_BIKE_SCOOTER "\xee\xbd\x85" // U+ef45
#define ICON_MS_BIOTECH "\xee\xa8\xba" // U+ea3a
#define ICON_MS_BLANKET "\xee\xa0\xa8" // U+e828
#define ICON_MS_BLENDER "\xee\xbf\xa3" // U+efe3
#define ICON_MS_BLIND "\xef\xa3\x96" // U+f8d6
#define ICON_MS_BLINDS "\xee\x8a\x86" // U+e286
#define ICON_MS_BLINDS_CLOSED "\xee\xb0\x9f" // U+ec1f
#define ICON_MS_BLOCK "\xef\x82\x8c" // U+f08c
#define ICON_MS_BLOOD_PRESSURE "\xee\x82\x97" // U+e097
#define ICON_MS_BLOODTYPE "\xee\xbf\xa4" // U+efe4
#define ICON_MS_BLUETOOTH "\xee\x86\xa7" // U+e1a7
#define ICON_MS_BLUETOOTH_AUDIO "\xee\x98\x8f" // U+e60f
#define ICON_MS_BLUETOOTH_CONNECTED "\xee\x86\xa8" // U+e1a8
#define ICON_MS_BLUETOOTH_DISABLED "\xee\x86\xa9" // U+e1a9
#define ICON_MS_BLUETOOTH_DRIVE "\xee\xbf\xa5" // U+efe5
#define ICON_MS_BLUETOOTH_SEARCHING "\xee\x98\x8f" // U+e60f
#define ICON_MS_BLUR_CIRCULAR "\xee\x8e\xa2" // U+e3a2
#define ICON_MS_BLUR_LINEAR "\xee\x8e\xa3" // U+e3a3
#define ICON_MS_BLUR_MEDIUM "\xee\xa1\x8c" // U+e84c
#define ICON_MS_BLUR_OFF "\xee\x8e\xa4" // U+e3a4
#define ICON_MS_BLUR_ON "\xee\x8e\xa5" // U+e3a5
#define ICON_MS_BLUR_SHORT "\xee\xa3\x8f" // U+e8cf
#define ICON_MS_BODY_FAT "\xee\x82\x98" // U+e098
#define ICON_MS_BODY_SYSTEM "\xee\x82\x99" // U+e099
#define ICON_MS_BOLT "\xee\xa8\x8b" // U+ea0b
#define ICON_MS_BOMB "\xef\x95\xa8" // U+f568
#define ICON_MS_BOOK "\xee\xa1\xae" // U+e86e
#define ICON_MS_BOOK_2 "\xef\x94\xbe" // U+f53e
#define ICON_MS_BOOK_3 "\xef\x94\xbd" // U+f53d
#define ICON_MS_BOOK_4 "\xef\x94\xbc" // U+f53c
#define ICON_MS_BOOK_5 "\xef\x94\xbb" // U+f53b
#define ICON_MS_BOOK_ONLINE "\xef\x88\x97" // U+f217
#define ICON_MS_BOOKMARK "\xee\xa3\xa7" // U+e8e7
#define ICON_MS_BOOKMARK_ADD "\xee\x96\x98" // U+e598
#define ICON_MS_BOOKMARK_ADDED "\xee\x96\x99" // U+e599
#define ICON_MS_BOOKMARK_BORDER "\xee\xa3\xa7" // U+e8e7
#define ICON_MS_BOOKMARK_MANAGER "\xef\x9e\xb1" // U+f7b1
#define ICON_MS_BOOKMARK_REMOVE "\xee\x96\x9a" // U+e59a
#define ICON_MS_BOOKMARKS "\xee\xa6\x8b" // U+e98b
#define ICON_MS_BORDER_ALL "\xee\x88\xa8" // U+e228
#define ICON_MS_BORDER_BOTTOM "\xee\x88\xa9" // U+e229
#define ICON_MS_BORDER_CLEAR "\xee\x88\xaa" // U+e22a
#define ICON_MS_BORDER_COLOR "\xee\x88\xab" // U+e22b
#define ICON_MS_BORDER_HORIZONTAL "\xee\x88\xac" // U+e22c
#define ICON_MS_BORDER_INNER "\xee\x88\xad" // U+e22d
#define ICON_MS_BORDER_LEFT "\xee\x88\xae" // U+e22e
#define ICON_MS_BORDER_OUTER "\xee\x88\xaf" // U+e22f
#define ICON_MS_BORDER_RIGHT "\xee\x88\xb0" // U+e230
#define ICON_MS_BORDER_STYLE "\xee\x88\xb1" // U+e231
#define ICON_MS_BORDER_TOP "\xee\x88\xb2" // U+e232
#define ICON_MS_BORDER_VERTICAL "\xee\x88\xb3" // U+e233
#define ICON_MS_BOTTOM_APP_BAR "\xee\x9c\xb0" // U+e730
#define ICON_MS_BOTTOM_DRAWER "\xee\x9c\xad" // U+e72d
#define ICON_MS_BOTTOM_NAVIGATION "\xee\xa6\x8c" // U+e98c
#define ICON_MS_BOTTOM_PANEL_CLOSE "\xef\x9c\xaa" // U+f72a
#define ICON_MS_BOTTOM_PANEL_OPEN "\xef\x9c\xa9" // U+f729
#define ICON_MS_BOTTOM_RIGHT_CLICK "\xef\x9a\x84" // U+f684
#define ICON_MS_BOTTOM_SHEETS "\xee\xa6\x8d" // U+e98d
#define ICON_MS_BOX "\xef\x96\xa4" // U+f5a4
#define ICON_MS_BOX_ADD "\xef\x96\xa5" // U+f5a5
#define ICON_MS_BOX_EDIT "\xef\x96\xa6" // U+f5a6
#define ICON_MS_BOY "\xee\xad\xa7" // U+eb67
#define ICON_MS_BRAND_AWARENESS "\xee\xa6\x8e" // U+e98e
#define ICON_MS_BRAND_FAMILY "\xef\x93\xb1" // U+f4f1
#define ICON_MS_BRANDING_WATERMARK "\xee\x81\xab" // U+e06b
#define ICON_MS_BREAKFAST_DINING "\xee\xa9\x94" // U+ea54
#define ICON_MS_BREAKING_NEWS "\xee\xa8\x88" // U+ea08
#define ICON_MS_BREAKING_NEWS_ALT_1 "\xef\x82\xba" // U+f0ba
#define ICON_MS_BREASTFEEDING "\xef\xa1\x96" // U+f856
#define ICON_MS_BRIGHTNESS_1 "\xee\x8f\xba" // U+e3fa
#define ICON_MS_BRIGHTNESS_2 "\xef\x80\xb6" // U+f036
#define ICON_MS_BRIGHTNESS_3 "\xee\x8e\xa8" // U+e3a8
#define ICON_MS_BRIGHTNESS_4 "\xee\x8e\xa9" // U+e3a9
#define ICON_MS_BRIGHTNESS_5 "\xee\x8e\xaa" // U+e3aa
#define ICON_MS_BRIGHTNESS_6 "\xee\x8e\xab" // U+e3ab
#define ICON_MS_BRIGHTNESS_7 "\xee\x8e\xac" // U+e3ac
#define ICON_MS_BRIGHTNESS_ALERT "\xef\x97\x8f" // U+f5cf
#define ICON_MS_BRIGHTNESS_AUTO "\xee\x86\xab" // U+e1ab
#define ICON_MS_BRIGHTNESS_EMPTY "\xef\x9f\xa8" // U+f7e8
#define ICON_MS_BRIGHTNESS_HIGH "\xee\x86\xac" // U+e1ac
#define ICON_MS_BRIGHTNESS_LOW "\xee\x86\xad" // U+e1ad
#define ICON_MS_BRIGHTNESS_MEDIUM "\xee\x86\xae" // U+e1ae
#define ICON_MS_BRING_YOUR_OWN_IP "\xee\x80\x96" // U+e016
#define ICON_MS_BROADCAST_ON_HOME "\xef\xa3\xb8" // U+f8f8
#define ICON_MS_BROADCAST_ON_PERSONAL "\xef\xa3\xb9" // U+f8f9
#define ICON_MS_BROKEN_IMAGE "\xee\x8e\xad" // U+e3ad
#define ICON_MS_BROWSE "\xee\xac\x93" // U+eb13
#define ICON_MS_BROWSE_ACTIVITY "\xef\xa2\xa5" // U+f8a5
#define ICON_MS_BROWSE_GALLERY "\xee\xaf\x91" // U+ebd1
#define ICON_MS_BROWSER_NOT_SUPPORTED "\xee\xbd\x87" // U+ef47
#define ICON_MS_BROWSER_UPDATED "\xee\x9f\x8f" // U+e7cf
#define ICON_MS_BRUNCH_DINING "\xee\xa9\xb3" // U+ea73
#define ICON_MS_BRUSH "\xee\x8e\xae" // U+e3ae
#define ICON_MS_BUBBLE "\xee\xbe\x83" // U+ef83
#define ICON_MS_BUBBLE_CHART "\xee\x9b\x9d" // U+e6dd
#define ICON_MS_BUBBLES "\xef\x99\x8e" // U+f64e
#define ICON_MS_BUG_REPORT "\xee\xa1\xa8" // U+e868
#define ICON_MS_BUILD "\xef\xa3\x8d" // U+f8cd
#define ICON_MS_BUILD_CIRCLE "\xee\xbd\x88" // U+ef48
#define ICON_MS_BUNGALOW "\xee\x96\x91" // U+e591
#define ICON_MS_BURST_MODE "\xee\x90\xbc" // U+e43c
#define ICON_MS_BUS_ALERT "\xee\xa6\x8f" // U+e98f
#define ICON_MS_BUSINESS "\xee\x9f\xae" // U+e7ee
#define ICON_MS_BUSINESS_CENTER "\xee\xac\xbf" // U+eb3f
#define ICON_MS_BUSINESS_CHIP "\xef\xa1\x8c" // U+f84c
#define ICON_MS_BUSINESS_MESSAGES "\xee\xbe\x84" // U+ef84
#define ICON_MS_BUTTONS_ALT "\xee\x9c\xaf" // U+e72f
#define ICON_MS_CABIN "\xee\x96\x89" // U+e589
#define ICON_MS_CABLE "\xee\xbf\xa6" // U+efe6
#define ICON_MS_CACHED "\xee\xa1\xaa" // U+e86a
#define ICON_MS_CADENCE "\xef\x92\xb4" // U+f4b4
#define ICON_MS_CAKE "\xee\x9f\xa9" // U+e7e9
#define ICON_MS_CAKE_ADD "\xef\xa1\x9b" // U+f85b
#define ICON_MS_CALCULATE "\xee\xa9\x9f" // U+ea5f
#define ICON_MS_CALENDAR_ADD_ON "\xee\xbe\x85" // U+ef85
#define ICON_MS_CALENDAR_APPS_SCRIPT "\xef\x82\xbb" // U+f0bb
#define ICON_MS_CALENDAR_CLOCK "\xef\x95\x80" // U+f540
#define ICON_MS_CALENDAR_MONTH "\xee\xaf\x8c" // U+ebcc
#define ICON_MS_CALENDAR_TODAY "\xee\xa4\xb5" // U+e935
#define ICON_MS_CALENDAR_VIEW_DAY "\xee\xa4\xb6" // U+e936
#define ICON_MS_CALENDAR_VIEW_MONTH "\xee\xbf\xa7" // U+efe7
#define ICON_MS_CALENDAR_VIEW_WEEK "\xee\xbf\xa8" // U+efe8
#define ICON_MS_CALL "\xef\x83\x94" // U+f0d4
#define ICON_MS_CALL_END "\xef\x82\xbc" // U+f0bc
#define ICON_MS_CALL_END_ALT "\xef\x82\xbc" // U+f0bc
#define ICON_MS_CALL_LOG "\xee\x82\x8e" // U+e08e
#define ICON_MS_CALL_MADE "\xee\x82\xb2" // U+e0b2
#define ICON_MS_CALL_MERGE "\xee\x82\xb3" // U+e0b3
#define ICON_MS_CALL_MISSED "\xee\x82\xb4" // U+e0b4
#define ICON_MS_CALL_MISSED_OUTGOING "\xee\x83\xa4" // U+e0e4
#define ICON_MS_CALL_QUALITY "\xef\x99\x92" // U+f652
#define ICON_MS_CALL_RECEIVED "\xee\x82\xb5" // U+e0b5
#define ICON_MS_CALL_SPLIT "\xee\x82\xb6" // U+e0b6
#define ICON_MS_CALL_TO_ACTION "\xee\x81\xac" // U+e06c
#define ICON_MS_CAMERA "\xee\x8e\xaf" // U+e3af
#define ICON_MS_CAMERA_ALT "\xee\x90\x92" // U+e412
#define ICON_MS_CAMERA_ENHANCE "\xee\xa3\xbc" // U+e8fc
#define ICON_MS_CAMERA_FRONT "\xee\x8e\xb1" // U+e3b1
#define ICON_MS_CAMERA_INDOOR "\xee\xbf\xa9" // U+efe9
#define ICON_MS_CAMERA_OUTDOOR "\xee\xbf\xaa" // U+efea
#define ICON_MS_CAMERA_REAR "\xee\x8e\xb2" // U+e3b2
#define ICON_MS_CAMERA_ROLL "\xee\x8e\xb3" // U+e3b3
#define ICON_MS_CAMERA_VIDEO "\xef\x9e\xa6" // U+f7a6
#define ICON_MS_CAMERASWITCH "\xee\xbf\xab" // U+efeb
#define ICON_MS_CAMPAIGN "\xee\xbd\x89" // U+ef49
#define ICON_MS_CAMPING "\xef\xa2\xa2" // U+f8a2
#define ICON_MS_CANCEL "\xee\xa2\x88" // U+e888
#define ICON_MS_CANCEL_PRESENTATION "\xee\x83\xa9" // U+e0e9
#define ICON_MS_CANCEL_SCHEDULE_SEND "\xee\xa8\xb9" // U+ea39
#define ICON_MS_CANDLE "\xef\x96\x88" // U+f588
#define ICON_MS_CANDLESTICK_CHART "\xee\xab\x94" // U+ead4
#define ICON_MS_CAPTIVE_PORTAL "\xef\x9c\xa8" // U+f728
#define ICON_MS_CAPTURE "\xef\x9c\xa7" // U+f727
#define ICON_MS_CAR_CRASH "\xee\xaf\xb2" // U+ebf2
#define ICON_MS_CAR_RENTAL "\xee\xa9\x95" // U+ea55
#define ICON_MS_CAR_REPAIR "\xee\xa9\x96" // U+ea56
#define ICON_MS_CAR_TAG "\xef\x93\xa3" // U+f4e3
#define ICON_MS_CARD_GIFTCARD "\xee\xa3\xb6" // U+e8f6
#define ICON_MS_CARD_MEMBERSHIP "\xee\xa3\xb7" // U+e8f7
#define ICON_MS_CARD_TRAVEL "\xee\xa3\xb8" // U+e8f8
#define ICON_MS_CARDIO_LOAD "\xef\x92\xb9" // U+f4b9
#define ICON_MS_CARDIOLOGY "\xee\x82\x9c" // U+e09c
#define ICON_MS_CARDS "\xee\xa6\x91" // U+e991
#define ICON_MS_CARPENTER "\xef\x87\xb8" // U+f1f8
#define ICON_MS_CARRY_ON_BAG "\xee\xac\x88" // U+eb08
#define ICON_MS_CARRY_ON_BAG_CHECKED "\xee\xac\x8b" // U+eb0b
#define ICON_MS_CARRY_ON_BAG_INACTIVE "\xee\xac\x8a" // U+eb0a
#define ICON_MS_CARRY_ON_BAG_QUESTION "\xee\xac\x89" // U+eb09
#define ICON_MS_CASES "\xee\xa6\x92" // U+e992
#define ICON_MS_CASINO "\xee\xad\x80" // U+eb40
#define ICON_MS_CAST "\xee\x8c\x87" // U+e307
#define ICON_MS_CAST_CONNECTED "\xee\x8c\x88" // U+e308
#define ICON_MS_CAST_FOR_EDUCATION "\xee\xbf\xac" // U+efec
#define ICON_MS_CAST_PAUSE "\xef\x97\xb0" // U+f5f0
#define ICON_MS_CAST_WARNING "\xef\x97\xaf" // U+f5ef
#define ICON_MS_CASTLE "\xee\xaa\xb1" // U+eab1
#define ICON_MS_CATEGORY "\xee\x95\xb4" // U+e574
#define ICON_MS_CELEBRATION "\xee\xa9\xa5" // U+ea65
#define ICON_MS_CELL_MERGE "\xef\xa0\xae" // U+f82e
#define ICON_MS_CELL_TOWER "\xee\xae\xba" // U+ebba
#define ICON_MS_CELL_WIFI "\xee\x83\xac" // U+e0ec
#define ICON_MS_CENTER_FOCUS_STRONG "\xee\x8e\xb4" // U+e3b4
#define ICON_MS_CENTER_FOCUS_WEAK "\xee\x8e\xb5" // U+e3b5
#define ICON_MS_CHAIR "\xee\xbf\xad" // U+efed
#define ICON_MS_CHAIR_ALT "\xee\xbf\xae" // U+efee
#define ICON_MS_CHALET "\xee\x96\x85" // U+e585
#define ICON_MS_CHANGE_CIRCLE "\xee\x8b\xa7" // U+e2e7
#define ICON_MS_CHANGE_HISTORY "\xee\xa1\xab" // U+e86b
#define ICON_MS_CHARGER "\xee\x8a\xae" // U+e2ae
#define ICON_MS_CHARGING_STATION "\xef\x86\x9d" // U+f19d
#define ICON_MS_CHART_DATA "\xee\x91\xb3" // U+e473
#define ICON_MS_CHAT "\xee\x83\x89" // U+e0c9
#define ICON_MS_CHAT_ADD_ON "\xef\x83\xb3" // U+f0f3
#define ICON_MS_CHAT_APPS_SCRIPT "\xef\x82\xbd" // U+f0bd
#define ICON_MS_CHAT_BUBBLE "\xee\x83\x8b" // U+e0cb
#define ICON_MS_CHAT_BUBBLE_OUTLINE "\xee\x83\x8b" // U+e0cb
#define ICON_MS_CHAT_ERROR "\xef\x9e\xac" // U+f7ac
#define ICON_MS_CHAT_INFO "\xef\x94\xab" // U+f52b
#define ICON_MS_CHAT_PASTE_GO "\xef\x9a\xbd" // U+f6bd
#define ICON_MS_CHECK "\xee\x97\x8a" // U+e5ca
#define ICON_MS_CHECK_BOX "\xee\xa0\xb4" // U+e834
#define ICON_MS_CHECK_BOX_OUTLINE_BLANK "\xee\xa0\xb5" // U+e835
#define ICON_MS_CHECK_CIRCLE "\xef\x82\xbe" // U+f0be
#define ICON_MS_CHECK_CIRCLE_FILLED "\xef\x82\xbe" // U+f0be
#define ICON_MS_CHECK_CIRCLE_OUTLINE "\xef\x82\xbe" // U+f0be
#define ICON_MS_CHECK_IN_OUT "\xef\x9b\xb6" // U+f6f6
#define ICON_MS_CHECK_INDETERMINATE_SMALL "\xef\xa2\x8a" // U+f88a
#define ICON_MS_CHECK_SMALL "\xef\xa2\x8b" // U+f88b
#define ICON_MS_CHECKBOOK "\xee\x9c\x8d" // U+e70d
#define ICON_MS_CHECKED_BAG "\xee\xac\x8c" // U+eb0c
#define ICON_MS_CHECKED_BAG_QUESTION "\xee\xac\x8d" // U+eb0d
#define ICON_MS_CHECKLIST "\xee\x9a\xb1" // U+e6b1
#define ICON_MS_CHECKLIST_RTL "\xee\x9a\xb3" // U+e6b3
#define ICON_MS_CHECKROOM "\xef\x86\x9e" // U+f19e
#define ICON_MS_CHEER "\xef\x9a\xa8" // U+f6a8
#define ICON_MS_CHESS "\xef\x97\xa7" // U+f5e7
#define ICON_MS_CHEVRON_LEFT "\xee\x97\x8b" // U+e5cb
#define ICON_MS_CHEVRON_RIGHT "\xee\x97\x8c" // U+e5cc
#define ICON_MS_CHILD_CARE "\xee\xad\x81" // U+eb41
#define ICON_MS_CHILD_FRIENDLY "\xee\xad\x82" // U+eb42
#define ICON_MS_CHIP_EXTRACTION "\xef\xa0\xa1" // U+f821
#define ICON_MS_CHIPS "\xee\xa6\x93" // U+e993
#define ICON_MS_CHROME_READER_MODE "\xee\xa1\xad" // U+e86d
#define ICON_MS_CHROMECAST_2 "\xef\x85\xbb" // U+f17b
#define ICON_MS_CHROMECAST_DEVICE "\xee\xa0\xbc" // U+e83c
#define ICON_MS_CHRONIC "\xee\xae\xb2" // U+ebb2
#define ICON_MS_CHURCH "\xee\xaa\xae" // U+eaae
#define ICON_MS_CINEMATIC_BLUR "\xef\xa1\x93" // U+f853
#define ICON_MS_CIRCLE "\xee\xbd\x8a" // U+ef4a
#define ICON_MS_CIRCLE_NOTIFICATIONS "\xee\xa6\x94" // U+e994
#define ICON_MS_CIRCLES "\xee\x9f\xaa" // U+e7ea
#define ICON_MS_CIRCLES_EXT "\xee\x9f\xac" // U+e7ec
#define ICON_MS_CLARIFY "\xef\x82\xbf" // U+f0bf
#define ICON_MS_CLASS "\xee\xa1\xae" // U+e86e
#define ICON_MS_CLEAN_HANDS "\xef\x88\x9f" // U+f21f
#define ICON_MS_CLEANING "\xee\xa6\x95" // U+e995
#define ICON_MS_CLEANING_BUCKET "\xef\xa2\xb4" // U+f8b4
#define ICON_MS_CLEANING_SERVICES "\xef\x83\xbf" // U+f0ff
#define ICON_MS_CLEAR "\xee\x97\x8d" // U+e5cd
#define ICON_MS_CLEAR_ALL "\xee\x82\xb8" // U+e0b8
#define ICON_MS_CLEAR_DAY "\xef\x85\x97" // U+f157
#define ICON_MS_CLEAR_NIGHT "\xef\x85\x99" // U+f159
#define ICON_MS_CLIMATE_MINI_SPLIT "\xef\xa2\xb5" // U+f8b5
#define ICON_MS_CLINICAL_NOTES "\xee\x82\x9e" // U+e09e
#define ICON_MS_CLOCK_LOADER_10 "\xef\x9c\xa6" // U+f726
#define ICON_MS_CLOCK_LOADER_20 "\xef\x9c\xa5" // U+f725
#define ICON_MS_CLOCK_LOADER_40 "\xef\x9c\xa4" // U+f724
#define ICON_MS_CLOCK_LOADER_60 "\xef\x9c\xa3" // U+f723
#define ICON_MS_CLOCK_LOADER_80 "\xef\x9c\xa2" // U+f722
#define ICON_MS_CLOCK_LOADER_90 "\xef\x9c\xa1" // U+f721
#define ICON_MS_CLOSE "\xee\x97\x8d" // U+e5cd
#define ICON_MS_CLOSE_FULLSCREEN "\xef\x87\x8f" // U+f1cf
#define ICON_MS_CLOSE_SMALL "\xef\x94\x88" // U+f508
#define ICON_MS_CLOSED_CAPTION "\xee\xa6\x96" // U+e996
#define ICON_MS_CLOSED_CAPTION_ADD "\xef\x92\xae" // U+f4ae
#define ICON_MS_CLOSED_CAPTION_DISABLED "\xef\x87\x9c" // U+f1dc
#define ICON_MS_CLOSED_CAPTION_OFF "\xee\xa6\x96" // U+e996
#define ICON_MS_CLOUD "\xef\x85\x9c" // U+f15c
#define ICON_MS_CLOUD_CIRCLE "\xee\x8a\xbe" // U+e2be
#define ICON_MS_CLOUD_DONE "\xee\x8a\xbf" // U+e2bf
#define ICON_MS_CLOUD_DOWNLOAD "\xee\x8b\x80" // U+e2c0
#define ICON_MS_CLOUD_OFF "\xee\x8b\x81" // U+e2c1
#define ICON_MS_CLOUD_QUEUE "\xef\x85\x9c" // U+f15c
#define ICON_MS_CLOUD_SYNC "\xee\xad\x9a" // U+eb5a
#define ICON_MS_CLOUD_UPLOAD "\xee\x8b\x83" // U+e2c3
#define ICON_MS_CLOUDY "\xef\x85\x9c" // U+f15c
#define ICON_MS_CLOUDY_FILLED "\xef\x85\x9c" // U+f15c
#define ICON_MS_CLOUDY_SNOWING "\xee\xa0\x90" // U+e810
#define ICON_MS_CO2 "\xee\x9e\xb0" // U+e7b0
#define ICON_MS_CO_PRESENT "\xee\xab\xb0" // U+eaf0
#define ICON_MS_CODE "\xee\xa1\xaf" // U+e86f
#define ICON_MS_CODE_BLOCKS "\xef\xa1\x8d" // U+f84d
#define ICON_MS_CODE_OFF "\xee\x93\xb3" // U+e4f3
#define ICON_MS_COFFEE "\xee\xbf\xaf" // U+efef
#define ICON_MS_COFFEE_MAKER "\xee\xbf\xb0" // U+eff0
#define ICON_MS_COGNITION "\xee\x82\x9f" // U+e09f
#define ICON_MS_COLLAPSE_ALL "\xee\xa5\x84" // U+e944
#define ICON_MS_COLLAPSE_CONTENT "\xef\x94\x87" // U+f507
#define ICON_MS_COLLECTIONS "\xee\x8f\x93" // U+e3d3
#define ICON_MS_COLLECTIONS_BOOKMARK "\xee\x90\xb1" // U+e431
#define ICON_MS_COLOR_LENS "\xee\x90\x8a" // U+e40a
#define ICON_MS_COLORIZE "\xee\x8e\xb8" // U+e3b8
#define ICON_MS_COLORS "\xee\xa6\x97" // U+e997
#define ICON_MS_COMEDY_MASK "\xef\x93\x96" // U+f4d6
#define ICON_MS_COMIC_BUBBLE "\xef\x97\x9d" // U+f5dd
#define ICON_MS_COMMENT "\xee\x89\x8c" // U+e24c
#define ICON_MS_COMMENT_BANK "\xee\xa9\x8e" // U+ea4e
#define ICON_MS_COMMENTS_DISABLED "\xee\x9e\xa2" // U+e7a2
#define ICON_MS_COMMIT "\xee\xab\xb5" // U+eaf5
#define ICON_MS_COMMUNICATION "\xee\x89\xbc" // U+e27c
#define ICON_MS_COMMUNITIES "\xee\xac\x96" // U+eb16
#define ICON_MS_COMMUNITIES_FILLED "\xee\xac\x96" // U+eb16
#define ICON_MS_COMMUTE "\xee\xa5\x80" // U+e940
#define ICON_MS_COMPARE "\xee\x8e\xb9" // U+e3b9
#define ICON_MS_COMPARE_ARROWS "\xee\xa4\x95" // U+e915
#define ICON_MS_COMPASS_CALIBRATION "\xee\x95\xbc" // U+e57c
#define ICON_MS_COMPONENT_EXCHANGE "\xef\x87\xa7" // U+f1e7
#define ICON_MS_COMPOST "\xee\x9d\xa1" // U+e761
#define ICON_MS_COMPRESS "\xee\xa5\x8d" // U+e94d
#define ICON_MS_COMPUTER "\xee\x8c\x9e" // U+e31e
#define ICON_MS_CONCIERGE "\xef\x95\xa1" // U+f561
#define ICON_MS_CONDITIONS "\xee\x82\xa0" // U+e0a0
#define ICON_MS_CONFIRMATION_NUMBER "\xee\x98\xb8" // U+e638
#define ICON_MS_CONGENITAL "\xee\x82\xa1" // U+e0a1
#define ICON_MS_CONNECT_WITHOUT_CONTACT "\xef\x88\xa3" // U+f223
#define ICON_MS_CONNECTED_TV "\xee\xa6\x98" // U+e998
#define ICON_MS_CONNECTING_AIRPORTS "\xee\x9f\x89" // U+e7c9
#define ICON_MS_CONSTRUCTION "\xee\xa8\xbc" // U+ea3c
#define ICON_MS_CONTACT_EMERGENCY "\xef\xa3\x91" // U+f8d1
#define ICON_MS_CONTACT_MAIL "\xee\x83\x90" // U+e0d0
#define ICON_MS_CONTACT_PAGE "\xef\x88\xae" // U+f22e
#define ICON_MS_CONTACT_PHONE "\xef\x83\x80" // U+f0c0
#define ICON_MS_CONTACT_PHONE_FILLED "\xef\x83\x80" // U+f0c0
#define ICON_MS_CONTACT_SUPPORT "\xee\xa5\x8c" // U+e94c
#define ICON_MS_CONTACTLESS "\xee\xa9\xb1" // U+ea71
#define ICON_MS_CONTACTLESS_OFF "\xef\xa1\x98" // U+f858
#define ICON_MS_CONTACTS "\xee\x82\xba" // U+e0ba
#define ICON_MS_CONTACTS_PRODUCT "\xee\xa6\x99" // U+e999
#define ICON_MS_CONTENT_COPY "\xee\x85\x8d" // U+e14d
#define ICON_MS_CONTENT_CUT "\xee\x85\x8e" // U+e14e
#define ICON_MS_CONTENT_PASTE "\xee\x85\x8f" // U+e14f
#define ICON_MS_CONTENT_PASTE_GO "\xee\xaa\x8e" // U+ea8e
#define ICON_MS_CONTENT_PASTE_OFF "\xee\x93\xb8" // U+e4f8
#define ICON_MS_CONTENT_PASTE_SEARCH "\xee\xaa\x9b" // U+ea9b
#define ICON_MS_CONTRACT "\xef\x96\xa0" // U+f5a0
#define ICON_MS_CONTRACT_DELETE "\xef\x96\xa2" // U+f5a2
#define ICON_MS_CONTRACT_EDIT "\xef\x96\xa1" // U+f5a1
#define ICON_MS_CONTRAST "\xee\xac\xb7" // U+eb37
#define ICON_MS_CONTRAST_CIRCLE "\xef\x92\x9f" // U+f49f
#define ICON_MS_CONTRAST_RTL_OFF "\xee\xb1\xb2" // U+ec72
#define ICON_MS_CONTRAST_SQUARE "\xef\x92\xa0" // U+f4a0
#define ICON_MS_CONTROL_CAMERA "\xee\x81\xb4" // U+e074
#define ICON_MS_CONTROL_POINT "\xee\x8e\xba" // U+e3ba
#define ICON_MS_CONTROL_POINT_DUPLICATE "\xee\x8e\xbb" // U+e3bb
#define ICON_MS_CONTROLLER_GEN "\xee\xa0\xbd" // U+e83d
#define ICON_MS_CONVERSION_PATH "\xef\x83\x81" // U+f0c1
#define ICON_MS_CONVERSION_PATH_OFF "\xef\x9e\xb4" // U+f7b4
#define ICON_MS_CONVEYOR_BELT "\xef\xa1\xa7" // U+f867
#define ICON_MS_COOKIE "\xee\xaa\xac" // U+eaac
#define ICON_MS_COOKIE_OFF "\xef\x9e\x9a" // U+f79a
#define ICON_MS_COOKING "\xee\x8a\xb6" // U+e2b6
#define ICON_MS_COOL_TO_DRY "\xee\x89\xb6" // U+e276
#define ICON_MS_COPY_ALL "\xee\x8b\xac" // U+e2ec
#define ICON_MS_COPYRIGHT "\xee\xa4\x8c" // U+e90c
#define ICON_MS_CORONAVIRUS "\xef\x88\xa1" // U+f221
#define ICON_MS_CORPORATE_FARE "\xef\x87\x90" // U+f1d0
#define ICON_MS_COTTAGE "\xee\x96\x87" // U+e587
#define ICON_MS_COUNTER_0 "\xef\x9e\x85" // U+f785
#define ICON_MS_COUNTER_1 "\xef\x9e\x84" // U+f784
#define ICON_MS_COUNTER_2 "\xef\x9e\x83" // U+f783
#define ICON_MS_COUNTER_3 "\xef\x9e\x82" // U+f782
#define ICON_MS_COUNTER_4 "\xef\x9e\x81" // U+f781
#define ICON_MS_COUNTER_5 "\xef\x9e\x80" // U+f780
#define ICON_MS_COUNTER_6 "\xef\x9d\xbf" // U+f77f
#define ICON_MS_COUNTER_7 "\xef\x9d\xbe" // U+f77e
#define ICON_MS_COUNTER_8 "\xef\x9d\xbd" // U+f77d
#define ICON_MS_COUNTER_9 "\xef\x9d\xbc" // U+f77c
#define ICON_MS_COUNTERTOPS "\xef\x87\xb7" // U+f1f7
#define ICON_MS_CREATE "\xef\x82\x97" // U+f097
#define ICON_MS_CREATE_NEW_FOLDER "\xee\x8b\x8c" // U+e2cc
#define ICON_MS_CREDIT_CARD "\xee\xa2\xa1" // U+e8a1
#define ICON_MS_CREDIT_CARD_GEAR "\xef\x94\xad" // U+f52d
#define ICON_MS_CREDIT_CARD_HEART "\xef\x94\xac" // U+f52c
#define ICON_MS_CREDIT_CARD_OFF "\xee\x93\xb4" // U+e4f4
#define ICON_MS_CREDIT_SCORE "\xee\xbf\xb1" // U+eff1
#define ICON_MS_CRIB "\xee\x96\x88" // U+e588
#define ICON_MS_CRISIS_ALERT "\xee\xaf\xa9" // U+ebe9
#define ICON_MS_CROP "\xee\x8e\xbe" // U+e3be
#define ICON_MS_CROP_16_9 "\xee\x8e\xbc" // U+e3bc
#define ICON_MS_CROP_3_2 "\xee\x8e\xbd" // U+e3bd
#define ICON_MS_CROP_5_4 "\xee\x8e\xbf" // U+e3bf
#define ICON_MS_CROP_7_5 "\xee\x8f\x80" // U+e3c0
#define ICON_MS_CROP_9_16 "\xef\x95\x89" // U+f549
#define ICON_MS_CROP_DIN "\xee\x8f\x86" // U+e3c6
#define ICON_MS_CROP_FREE "\xee\x8f\x82" // U+e3c2
#define ICON_MS_CROP_LANDSCAPE "\xee\x8f\x83" // U+e3c3
#define ICON_MS_CROP_ORIGINAL "\xee\x8f\xb4" // U+e3f4
#define ICON_MS_CROP_PORTRAIT "\xee\x8f\x85" // U+e3c5
#define ICON_MS_CROP_ROTATE "\xee\x90\xb7" // U+e437
#define ICON_MS_CROP_SQUARE "\xee\x8f\x86" // U+e3c6
#define ICON_MS_CROSSWORD "\xef\x97\xa5" // U+f5e5
#define ICON_MS_CROWDSOURCE "\xee\xac\x98" // U+eb18
#define ICON_MS_CRUELTY_FREE "\xee\x9e\x99" // U+e799
#define ICON_MS_CSS "\xee\xae\x93" // U+eb93
#define ICON_MS_CSV "\xee\x9b\x8f" // U+e6cf
#define ICON_MS_CURRENCY_BITCOIN "\xee\xaf\x85" // U+ebc5
#define ICON_MS_CURRENCY_EXCHANGE "\xee\xad\xb0" // U+eb70
#define ICON_MS_CURRENCY_FRANC "\xee\xab\xba" // U+eafa
#define ICON_MS_CURRENCY_LIRA "\xee\xab\xaf" // U+eaef
#define ICON_MS_CURRENCY_POUND "\xee\xab\xb1" // U+eaf1
#define ICON_MS_CURRENCY_RUBLE "\xee\xab\xac" // U+eaec
#define ICON_MS_CURRENCY_RUPEE "\xee\xab\xb7" // U+eaf7
#define ICON_MS_CURRENCY_YEN "\xee\xab\xbb" // U+eafb
#define ICON_MS_CURRENCY_YUAN "\xee\xab\xb9" // U+eaf9
#define ICON_MS_CURTAINS "\xee\xb0\x9e" // U+ec1e
#define ICON_MS_CURTAINS_CLOSED "\xee\xb0\x9d" // U+ec1d
#define ICON_MS_CUSTOM_TYPOGRAPHY "\xee\x9c\xb2" // U+e732
#define ICON_MS_CUT "\xef\x82\x8b" // U+f08b
#define ICON_MS_CYCLE "\xef\xa1\x94" // U+f854
#define ICON_MS_CYCLONE "\xee\xaf\x95" // U+ebd5
#define ICON_MS_DANGEROUS "\xee\xa6\x9a" // U+e99a
#define ICON_MS_DARK_MODE "\xee\x94\x9c" // U+e51c
#define ICON_MS_DASHBOARD "\xee\xa1\xb1" // U+e871
#define ICON_MS_DASHBOARD_CUSTOMIZE "\xee\xa6\x9b" // U+e99b
#define ICON_MS_DATA_ALERT "\xef\x9f\xb6" // U+f7f6
#define ICON_MS_DATA_ARRAY "\xee\xab\x91" // U+ead1
#define ICON_MS_DATA_CHECK "\xef\x9f\xb2" // U+f7f2
#define ICON_MS_DATA_EXPLORATION "\xee\x9d\xaf" // U+e76f
#define ICON_MS_DATA_INFO_ALERT "\xef\x9f\xb5" // U+f7f5
#define ICON_MS_DATA_LOSS_PREVENTION "\xee\x8b\x9c" // U+e2dc
#define ICON_MS_DATA_OBJECT "\xee\xab\x93" // U+ead3
#define ICON_MS_DATA_SAVER_OFF "\xee\xbf\xb2" // U+eff2
#define ICON_MS_DATA_SAVER_ON "\xee\xbf\xb3" // U+eff3
#define ICON_MS_DATA_TABLE "\xee\xa6\x9c" // U+e99c
#define ICON_MS_DATA_THRESHOLDING "\xee\xae\x9f" // U+eb9f
#define ICON_MS_DATA_USAGE "\xee\xbf\xb2" // U+eff2
#define ICON_MS_DATABASE "\xef\x88\x8e" // U+f20e
#define ICON_MS_DATASET "\xef\xa3\xae" // U+f8ee
#define ICON_MS_DATASET_LINKED "\xef\xa3\xaf" // U+f8ef
#define ICON_MS_DATE_RANGE "\xee\xa4\x96" // U+e916
#define ICON_MS_DEBLUR "\xee\xad\xb7" // U+eb77
#define ICON_MS_DECEASED "\xee\x82\xa5" // U+e0a5
#define ICON_MS_DECIMAL_DECREASE "\xef\xa0\xad" // U+f82d
#define ICON_MS_DECIMAL_INCREASE "\xef\xa0\xac" // U+f82c
#define ICON_MS_DECK "\xee\xa9\x82" // U+ea42
#define ICON_MS_DEHAZE "\xee\x8f\x87" // U+e3c7
#define ICON_MS_DELETE "\xee\xa4\xae" // U+e92e
#define ICON_MS_DELETE_FOREVER "\xee\xa4\xab" // U+e92b
#define ICON_MS_DELETE_HISTORY "\xef\x94\x98" // U+f518
#define ICON_MS_DELETE_OUTLINE "\xee\xa4\xae" // U+e92e
#define ICON_MS_DELETE_SWEEP "\xee\x85\xac" // U+e16c
#define ICON_MS_DEMOGRAPHY "\xee\x92\x89" // U+e489
#define ICON_MS_DENSITY_LARGE "\xee\xae\xa9" // U+eba9
#define ICON_MS_DENSITY_MEDIUM "\xee\xae\x9e" // U+eb9e
#define ICON_MS_DENSITY_SMALL "\xee\xae\xa8" // U+eba8
#define ICON_MS_DENTISTRY "\xee\x82\xa6" // U+e0a6
#define ICON_MS_DEPARTURE_BOARD "\xee\x95\xb6" // U+e576
#define ICON_MS_DEPLOYED_CODE "\xef\x9c\xa0" // U+f720
#define ICON_MS_DEPLOYED_CODE_ACCOUNT "\xef\x94\x9b" // U+f51b
#define ICON_MS_DEPLOYED_CODE_ALERT "\xef\x97\xb2" // U+f5f2
#define ICON_MS_DEPLOYED_CODE_HISTORY "\xef\x97\xb3" // U+f5f3
#define ICON_MS_DEPLOYED_CODE_UPDATE "\xef\x97\xb4" // U+f5f4
#define ICON_MS_DERMATOLOGY "\xee\x82\xa7" // U+e0a7
#define ICON_MS_DESCRIPTION "\xee\xa1\xb3" // U+e873
#define ICON_MS_DESELECT "\xee\xae\xb6" // U+ebb6
#define ICON_MS_DESIGN_SERVICES "\xef\x84\x8a" // U+f10a
#define ICON_MS_DESK "\xef\xa3\xb4" // U+f8f4
#define ICON_MS_DESKPHONE "\xef\x9f\xba" // U+f7fa
#define ICON_MS_DESKTOP_ACCESS_DISABLED "\xee\xa6\x9d" // U+e99d
#define ICON_MS_DESKTOP_MAC "\xee\x8c\x8b" // U+e30b
#define ICON_MS_DESKTOP_WINDOWS "\xee\x8c\x8c" // U+e30c
#define ICON_MS_DESTRUCTION "\xef\x96\x85" // U+f585
#define ICON_MS_DETAILS "\xee\x8f\x88" // U+e3c8
#define ICON_MS_DETECTION_AND_ZONE "\xee\x8a\x9f" // U+e29f
#define ICON_MS_DETECTOR "\xee\x8a\x82" // U+e282
#define ICON_MS_DETECTOR_ALARM "\xee\x87\xb7" // U+e1f7
#define ICON_MS_DETECTOR_BATTERY "\xee\x88\x84" // U+e204
#define ICON_MS_DETECTOR_CO "\xee\x8a\xaf" // U+e2af
#define ICON_MS_DETECTOR_OFFLINE "\xee\x88\xa3" // U+e223
#define ICON_MS_DETECTOR_SMOKE "\xee\x8a\x85" // U+e285
#define ICON_MS_DETECTOR_STATUS "\xee\x87\xa8" // U+e1e8
#define ICON_MS_DEVELOPER_BOARD "\xee\x8c\x8d" // U+e30d
#define ICON_MS_DEVELOPER_BOARD_OFF "\xee\x93\xbf" // U+e4ff
#define ICON_MS_DEVELOPER_GUIDE "\xee\xa6\x9e" // U+e99e
#define ICON_MS_DEVELOPER_MODE "\xee\x86\xb0" // U+e1b0
#define ICON_MS_DEVELOPER_MODE_TV "\xee\xa1\xb4" // U+e874
#define ICON_MS_DEVICE_HUB "\xee\x8c\xb5" // U+e335
#define ICON_MS_DEVICE_RESET "\xee\xa2\xb3" // U+e8b3
#define ICON_MS_DEVICE_THERMOSTAT "\xee\x87\xbf" // U+e1ff
#define ICON_MS_DEVICE_UNKNOWN "\xee\x8c\xb9" // U+e339
#define ICON_MS_DEVICES "\xee\x8c\xa6" // U+e326
#define ICON_MS_DEVICES_FOLD "\xee\xaf\x9e" // U+ebde
#define ICON_MS_DEVICES_OFF "\xef\x9e\xa5" // U+f7a5
#define ICON_MS_DEVICES_OTHER "\xee\x8c\xb7" // U+e337
#define ICON_MS_DEVICES_WEARABLES "\xef\x9a\xab" // U+f6ab
#define ICON_MS_DEW_POINT "\xef\xa1\xb9" // U+f879
#define ICON_MS_DIAGNOSIS "\xee\x82\xa8" // U+e0a8
#define ICON_MS_DIALER_SIP "\xee\x82\xbb" // U+e0bb
#define ICON_MS_DIALOGS "\xee\xa6\x9f" // U+e99f
#define ICON_MS_DIALPAD "\xee\x82\xbc" // U+e0bc
#define ICON_MS_DIAMOND "\xee\xab\x95" // U+ead5
#define ICON_MS_DICTIONARY "\xef\x94\xb9" // U+f539
#define ICON_MS_DIFFERENCE "\xee\xad\xbd" // U+eb7d
#define ICON_MS_DIGITAL_OUT_OF_HOME "\xef\x87\x9e" // U+f1de
#define ICON_MS_DIGITAL_WELLBEING "\xee\xbe\x86" // U+ef86
#define ICON_MS_DINING "\xee\xbf\xb4" // U+eff4
#define ICON_MS_DINNER_DINING "\xee\xa9\x97" // U+ea57
#define ICON_MS_DIRECTIONS "\xee\x94\xae" // U+e52e
#define ICON_MS_DIRECTIONS_ALT "\xef\xa2\x80" // U+f880
#define ICON_MS_DIRECTIONS_ALT_OFF "\xef\xa2\x81" // U+f881
#define ICON_MS_DIRECTIONS_BIKE "\xee\x94\xaf" // U+e52f
#define ICON_MS_DIRECTIONS_BOAT "\xee\xbf\xb5" // U+eff5
#define ICON_MS_DIRECTIONS_BOAT_FILLED "\xee\xbf\xb5" // U+eff5
#define ICON_MS_DIRECTIONS_BUS "\xee\xbf\xb6" // U+eff6
#define ICON_MS_DIRECTIONS_BUS_FILLED "\xee\xbf\xb6" // U+eff6
#define ICON_MS_DIRECTIONS_CAR "\xee\xbf\xb7" // U+eff7
#define ICON_MS_DIRECTIONS_CAR_FILLED "\xee\xbf\xb7" // U+eff7
#define ICON_MS_DIRECTIONS_OFF "\xef\x84\x8f" // U+f10f
#define ICON_MS_DIRECTIONS_RAILWAY "\xee\xbf\xb8" // U+eff8
#define ICON_MS_DIRECTIONS_RAILWAY_FILLED "\xee\xbf\xb8" // U+eff8
#define ICON_MS_DIRECTIONS_RUN "\xee\x95\xa6" // U+e566
#define ICON_MS_DIRECTIONS_SUBWAY "\xee\xbf\xba" // U+effa
#define ICON_MS_DIRECTIONS_SUBWAY_FILLED "\xee\xbf\xba" // U+effa
#define ICON_MS_DIRECTIONS_TRANSIT "\xee\xbf\xba" // U+effa
#define ICON_MS_DIRECTIONS_TRANSIT_FILLED "\xee\xbf\xba" // U+effa
#define ICON_MS_DIRECTIONS_WALK "\xee\x94\xb6" // U+e536
#define ICON_MS_DIRECTORY_SYNC "\xee\x8e\x94" // U+e394
#define ICON_MS_DIRTY_LENS "\xee\xbd\x8b" // U+ef4b
#define ICON_MS_DISABLED_BY_DEFAULT "\xef\x88\xb0" // U+f230
#define ICON_MS_DISABLED_VISIBLE "\xee\x9d\xae" // U+e76e
#define ICON_MS_DISC_FULL "\xee\x98\x90" // U+e610
#define ICON_MS_DISCOVER_TUNE "\xee\x80\x98" // U+e018
#define ICON_MS_DISHWASHER "\xee\xa6\xa0" // U+e9a0
#define ICON_MS_DISHWASHER_GEN "\xee\xa0\xb2" // U+e832
#define ICON_MS_DISPLAY_EXTERNAL_INPUT "\xef\x9f\xa7" // U+f7e7
#define ICON_MS_DISPLAY_SETTINGS "\xee\xae\x97" // U+eb97
#define ICON_MS_DISTANCE "\xef\x9b\xaa" // U+f6ea
#define ICON_MS_DIVERSITY_1 "\xef\xa3\x97" // U+f8d7
#define ICON_MS_DIVERSITY_2 "\xef\xa3\x98" // U+f8d8
#define ICON_MS_DIVERSITY_3 "\xef\xa3\x99" // U+f8d9
#define ICON_MS_DIVERSITY_4 "\xef\xa1\x97" // U+f857
#define ICON_MS_DNS "\xee\xa1\xb5" // U+e875
#define ICON_MS_DO_DISTURB "\xef\x82\x8c" // U+f08c
#define ICON_MS_DO_DISTURB_ALT "\xef\x82\x8d" // U+f08d
#define ICON_MS_DO_DISTURB_OFF "\xef\x82\x8e" // U+f08e
#define ICON_MS_DO_DISTURB_ON "\xef\x82\x8f" // U+f08f
#define ICON_MS_DO_NOT_DISTURB "\xef\x82\x8d" // U+f08d
#define ICON_MS_DO_NOT_DISTURB_ALT "\xef\x82\x8c" // U+f08c
#define ICON_MS_DO_NOT_DISTURB_OFF "\xef\x82\x8e" // U+f08e
#define ICON_MS_DO_NOT_DISTURB_ON "\xef\x82\x8f" // U+f08f
#define ICON_MS_DO_NOT_DISTURB_ON_TOTAL_SILENCE "\xee\xbf\xbb" // U+effb
#define ICON_MS_DO_NOT_STEP "\xef\x86\x9f" // U+f19f
#define ICON_MS_DO_NOT_TOUCH "\xef\x86\xb0" // U+f1b0
#define ICON_MS_DOCK "\xee\x8c\x8e" // U+e30e
#define ICON_MS_DOCK_TO_BOTTOM "\xef\x9f\xa6" // U+f7e6
#define ICON_MS_DOCK_TO_LEFT "\xef\x9f\xa5" // U+f7e5
#define ICON_MS_DOCK_TO_RIGHT "\xef\x9f\xa4" // U+f7e4
#define ICON_MS_DOCS_ADD_ON "\xef\x83\x82" // U+f0c2
#define ICON_MS_DOCS_APPS_SCRIPT "\xef\x83\x83" // U+f0c3
#define ICON_MS_DOCUMENT_SCANNER "\xee\x97\xba" // U+e5fa
#define ICON_MS_DOMAIN "\xee\x9f\xae" // U+e7ee
#define ICON_MS_DOMAIN_ADD "\xee\xad\xa2" // U+eb62
#define ICON_MS_DOMAIN_DISABLED "\xee\x83\xaf" // U+e0ef
#define ICON_MS_DOMAIN_VERIFICATION "\xee\xbd\x8c" // U+ef4c
#define ICON_MS_DOMAIN_VERIFICATION_OFF "\xef\x9e\xb0" // U+f7b0
#define ICON_MS_DOMINO_MASK "\xef\x97\xa4" // U+f5e4
#define ICON_MS_DONE "\xee\xa1\xb6" // U+e876
#define ICON_MS_DONE_ALL "\xee\xa1\xb7" // U+e877
#define ICON_MS_DONE_OUTLINE "\xee\xa4\xaf" // U+e92f
#define ICON_MS_DONUT_LARGE "\xee\xa4\x97" // U+e917
#define ICON_MS_DONUT_SMALL "\xee\xa4\x98" // U+e918
#define ICON_MS_DOOR_BACK "\xee\xbf\xbc" // U+effc
#define ICON_MS_DOOR_FRONT "\xee\xbf\xbd" // U+effd
#define ICON_MS_DOOR_OPEN "\xee\x9d\xbc" // U+e77c
#define ICON_MS_DOOR_SENSOR "\xee\x8a\x8a" // U+e28a
#define ICON_MS_DOOR_SLIDING "\xee\xbf\xbe" // U+effe
#define ICON_MS_DOORBELL "\xee\xbf\xbf" // U+efff
#define ICON_MS_DOORBELL_3P "\xee\x87\xa7" // U+e1e7
#define ICON_MS_DOORBELL_CHIME "\xee\x87\xb3" // U+e1f3
#define ICON_MS_DOUBLE_ARROW "\xee\xa9\x90" // U+ea50
#define ICON_MS_DOWNHILL_SKIING "\xee\x94\x89" // U+e509
#define ICON_MS_DOWNLOAD "\xef\x82\x90" // U+f090
#define ICON_MS_DOWNLOAD_2 "\xef\x94\xa3" // U+f523
#define ICON_MS_DOWNLOAD_DONE "\xef\x82\x91" // U+f091
#define ICON_MS_DOWNLOAD_FOR_OFFLINE "\xef\x80\x80" // U+f000
#define ICON_MS_DOWNLOADING "\xef\x80\x81" // U+f001
#define ICON_MS_DRAFT "\xee\x99\xad" // U+e66d
#define ICON_MS_DRAFT_ORDERS "\xee\x9e\xb3" // U+e7b3
#define ICON_MS_DRAFTS "\xee\x85\x91" // U+e151
#define ICON_MS_DRAG_CLICK "\xef\x9c\x9f" // U+f71f
#define ICON_MS_DRAG_HANDLE "\xee\x89\x9d" // U+e25d
#define ICON_MS_DRAG_INDICATOR "\xee\xa5\x85" // U+e945
#define ICON_MS_DRAG_PAN "\xef\x9c\x9e" // U+f71e
#define ICON_MS_DRAW "\xee\x9d\x86" // U+e746
#define ICON_MS_DRAW_ABSTRACT "\xef\x9f\xb8" // U+f7f8
#define ICON_MS_DRAW_COLLAGE "\xef\x9f\xb7" // U+f7f7
#define ICON_MS_DRAWING_RECOGNITION "\xee\xac\x80" // U+eb00
#define ICON_MS_DRESSER "\xee\x88\x90" // U+e210
#define ICON_MS_DRIVE_ETA "\xee\xbf\xb7" // U+eff7
#define ICON_MS_DRIVE_FILE_MOVE "\xee\xa6\xa1" // U+e9a1
#define ICON_MS_DRIVE_FILE_MOVE_OUTLINE "\xee\xa6\xa1" // U+e9a1
#define ICON_MS_DRIVE_FILE_MOVE_RTL "\xee\xa6\xa1" // U+e9a1
#define ICON_MS_DRIVE_FILE_RENAME_OUTLINE "\xee\xa6\xa2" // U+e9a2
#define ICON_MS_DRIVE_FOLDER_UPLOAD "\xee\xa6\xa3" // U+e9a3
#define ICON_MS_DRIVE_FUSIONTABLE "\xee\x99\xb8" // U+e678
#define ICON_MS_DROPDOWN "\xee\xa6\xa4" // U+e9a4
#define ICON_MS_DRY "\xef\x86\xb3" // U+f1b3
#define ICON_MS_DRY_CLEANING "\xee\xa9\x98" // U+ea58
#define ICON_MS_DUAL_SCREEN "\xef\x9b\x8f" // U+f6cf
#define ICON_MS_DUO "\xee\xa6\xa5" // U+e9a5
#define ICON_MS_DVR "\xee\x86\xb2" // U+e1b2
#define ICON_MS_DYNAMIC_FEED "\xee\xa8\x94" // U+ea14
#define ICON_MS_DYNAMIC_FORM "\xef\x86\xbf" // U+f1bf
#define ICON_MS_E911_AVATAR "\xef\x84\x9a" // U+f11a
#define ICON_MS_E911_EMERGENCY "\xef\x84\x99" // U+f119
#define ICON_MS_E_MOBILEDATA "\xef\x80\x82" // U+f002
#define ICON_MS_E_MOBILEDATA_BADGE "\xef\x9f\xa3" // U+f7e3
#define ICON_MS_EARBUDS "\xef\x80\x83" // U+f003
#define ICON_MS_EARBUDS_BATTERY "\xef\x80\x84" // U+f004
#define ICON_MS_EARLY_ON "\xee\x8a\xba" // U+e2ba
#define ICON_MS_EARTHQUAKE "\xef\x99\x8f" // U+f64f
#define ICON_MS_EAST "\xef\x87\x9f" // U+f1df
#define ICON_MS_ECG "\xef\xa0\x8f" // U+f80f
#define ICON_MS_ECG_HEART "\xef\x9b\xa9" // U+f6e9
#define ICON_MS_ECO "\xee\xa8\xb5" // U+ea35
#define ICON_MS_EDA "\xef\x9b\xa8" // U+f6e8
#define ICON_MS_EDGESENSOR_HIGH "\xef\x80\x85" // U+f005
#define ICON_MS_EDGESENSOR_LOW "\xef\x80\x86" // U+f006
#define ICON_MS_EDIT "\xef\x82\x97" // U+f097
#define ICON_MS_EDIT_ATTRIBUTES "\xee\x95\xb8" // U+e578
#define ICON_MS_EDIT_CALENDAR "\xee\x9d\x82" // U+e742
#define ICON_MS_EDIT_DOCUMENT "\xef\xa2\x8c" // U+f88c
#define ICON_MS_EDIT_LOCATION "\xee\x95\xa8" // U+e568
#define ICON_MS_EDIT_LOCATION_ALT "\xee\x87\x85" // U+e1c5
#define ICON_MS_EDIT_NOTE "\xee\x9d\x85" // U+e745
#define ICON_MS_EDIT_NOTIFICATIONS "\xee\x94\xa5" // U+e525
#define ICON_MS_EDIT_OFF "\xee\xa5\x90" // U+e950
#define ICON_MS_EDIT_ROAD "\xee\xbd\x8d" // U+ef4d
#define ICON_MS_EDIT_SQUARE "\xef\xa2\x8d" // U+f88d
#define ICON_MS_EDITOR_CHOICE "\xef\x94\xa8" // U+f528
#define ICON_MS_EGG "\xee\xab\x8c" // U+eacc
#define ICON_MS_EGG_ALT "\xee\xab\x88" // U+eac8
#define ICON_MS_EJECT "\xee\xa3\xbb" // U+e8fb
#define ICON_MS_ELDERLY "\xef\x88\x9a" // U+f21a
#define ICON_MS_ELDERLY_WOMAN "\xee\xad\xa9" // U+eb69
#define ICON_MS_ELECTRIC_BIKE "\xee\xac\x9b" // U+eb1b
#define ICON_MS_ELECTRIC_BOLT "\xee\xb0\x9c" // U+ec1c
#define ICON_MS_ELECTRIC_CAR "\xee\xac\x9c" // U+eb1c
#define ICON_MS_ELECTRIC_METER "\xee\xb0\x9b" // U+ec1b
#define ICON_MS_ELECTRIC_MOPED "\xee\xac\x9d" // U+eb1d
#define ICON_MS_ELECTRIC_RICKSHAW "\xee\xac\x9e" // U+eb1e
#define ICON_MS_ELECTRIC_SCOOTER "\xee\xac\x9f" // U+eb1f
#define ICON_MS_ELECTRICAL_SERVICES "\xef\x84\x82" // U+f102
#define ICON_MS_ELEVATION "\xef\x9b\xa7" // U+f6e7
#define ICON_MS_ELEVATOR "\xef\x86\xa0" // U+f1a0
#define ICON_MS_EMAIL "\xee\x85\x99" // U+e159
#define ICON_MS_EMERGENCY "\xee\x87\xab" // U+e1eb
#define ICON_MS_EMERGENCY_HEAT "\xef\x85\x9d" // U+f15d
#define ICON_MS_EMERGENCY_HEAT_2 "\xef\x93\xa5" // U+f4e5
#define ICON_MS_EMERGENCY_HOME "\xee\xa0\xaa" // U+e82a
#define ICON_MS_EMERGENCY_RECORDING "\xee\xaf\xb4" // U+ebf4
#define ICON_MS_EMERGENCY_SHARE "\xee\xaf\xb6" // U+ebf6
#define ICON_MS_EMERGENCY_SHARE_OFF "\xef\x96\x9e" // U+f59e
#define ICON_MS_EMOJI_EMOTIONS "\xee\xa8\xa2" // U+ea22
#define ICON_MS_EMOJI_EVENTS "\xee\xa8\xa3" // U+ea23
#define ICON_MS_EMOJI_FLAGS "\xef\x83\x86" // U+f0c6
#define ICON_MS_EMOJI_FOOD_BEVERAGE "\xee\xa8\x9b" // U+ea1b
#define ICON_MS_EMOJI_LANGUAGE "\xef\x93\x8d" // U+f4cd
#define ICON_MS_EMOJI_NATURE "\xee\xa8\x9c" // U+ea1c
#define ICON_MS_EMOJI_OBJECTS "\xee\xa8\xa4" // U+ea24
#define ICON_MS_EMOJI_PEOPLE "\xee\xa8\x9d" // U+ea1d
#define ICON_MS_EMOJI_SYMBOLS "\xee\xa8\x9e" // U+ea1e
#define ICON_MS_EMOJI_TRANSPORTATION "\xee\xa8\x9f" // U+ea1f
#define ICON_MS_EMOTICON "\xee\x97\xb3" // U+e5f3
#define ICON_MS_EMPTY_DASHBOARD "\xef\xa1\x84" // U+f844
#define ICON_MS_ENABLE "\xef\x86\x88" // U+f188
#define ICON_MS_ENCRYPTED "\xee\x96\x93" // U+e593
#define ICON_MS_ENDOCRINOLOGY "\xee\x82\xa9" // U+e0a9
#define ICON_MS_ENERGY "\xee\xa6\xa6" // U+e9a6
#define ICON_MS_ENERGY_PROGRAM_SAVING "\xef\x85\x9f" // U+f15f
#define ICON_MS_ENERGY_PROGRAM_TIME_USED "\xef\x85\xa1" // U+f161
#define ICON_MS_ENERGY_SAVINGS_LEAF "\xee\xb0\x9a" // U+ec1a
#define ICON_MS_ENGINEERING "\xee\xa8\xbd" // U+ea3d
#define ICON_MS_ENHANCED_ENCRYPTION "\xee\x98\xbf" // U+e63f
#define ICON_MS_ENT "\xee\x82\xaa" // U+e0aa
#define ICON_MS_ENTERPRISE "\xee\x9c\x8e" // U+e70e
#define ICON_MS_ENTERPRISE_OFF "\xee\xad\x8d" // U+eb4d
#define ICON_MS_EQUAL "\xef\x9d\xbb" // U+f77b
#define ICON_MS_EQUALIZER "\xee\x80\x9d" // U+e01d
#define ICON_MS_ERROR "\xef\xa2\xb6" // U+f8b6
#define ICON_MS_ERROR_CIRCLE_ROUNDED "\xef\xa2\xb6" // U+f8b6
#define ICON_MS_ERROR_MED "\xee\x92\x9b" // U+e49b
#define ICON_MS_ERROR_OUTLINE "\xef\xa2\xb6" // U+f8b6
#define ICON_MS_ESCALATOR "\xef\x86\xa1" // U+f1a1
#define ICON_MS_ESCALATOR_WARNING "\xef\x86\xac" // U+f1ac
#define ICON_MS_EURO "\xee\xa8\x95" // U+ea15
#define ICON_MS_EURO_SYMBOL "\xee\xa4\xa6" // U+e926
#define ICON_MS_EV_CHARGER "\xee\x95\xad" // U+e56d
#define ICON_MS_EV_MOBILEDATA_BADGE "\xef\x9f\xa2" // U+f7e2
#define ICON_MS_EV_SHADOW "\xee\xbe\x8f" // U+ef8f
#define ICON_MS_EV_SHADOW_ADD "\xef\x96\x80" // U+f580
#define ICON_MS_EV_SHADOW_MINUS "\xef\x95\xbf" // U+f57f
#define ICON_MS_EV_STATION "\xee\x95\xad" // U+e56d
#define ICON_MS_EVENT "\xee\xa1\xb8" // U+e878
#define ICON_MS_EVENT_AVAILABLE "\xee\x98\x94" // U+e614
#define ICON_MS_EVENT_BUSY "\xee\x98\x95" // U+e615
#define ICON_MS_EVENT_LIST "\xef\x9a\x83" // U+f683
#define ICON_MS_EVENT_NOTE "\xee\x98\x96" // U+e616
#define ICON_MS_EVENT_REPEAT "\xee\xad\xbb" // U+eb7b
#define ICON_MS_EVENT_SEAT "\xee\xa4\x83" // U+e903
#define ICON_MS_EVENT_UPCOMING "\xef\x88\xb8" // U+f238
#define ICON_MS_EXCLAMATION "\xef\x88\xaf" // U+f22f
#define ICON_MS_EXERCISE "\xef\x9b\xa6" // U+f6e6
#define ICON_MS_EXIT_TO_APP "\xee\xa1\xb9" // U+e879
#define ICON_MS_EXPAND "\xee\xa5\x8f" // U+e94f
#define ICON_MS_EXPAND_ALL "\xee\xa5\x86" // U+e946
#define ICON_MS_EXPAND_CIRCLE_DOWN "\xee\x9f\x8d" // U+e7cd
#define ICON_MS_EXPAND_CIRCLE_RIGHT "\xef\x96\x91" // U+f591
#define ICON_MS_EXPAND_CIRCLE_UP "\xef\x97\x92" // U+f5d2
#define ICON_MS_EXPAND_CONTENT "\xef\xa0\xb0" // U+f830
#define ICON_MS_EXPAND_LESS "\xee\x97\x8e" // U+e5ce
#define ICON_MS_EXPAND_MORE "\xee\x97\x8f" // U+e5cf
#define ICON_MS_EXPERIMENT "\xee\x9a\x86" // U+e686
#define ICON_MS_EXPLICIT "\xee\x80\x9e" // U+e01e
#define ICON_MS_EXPLORE "\xee\xa1\xba" // U+e87a
#define ICON_MS_EXPLORE_NEARBY "\xee\x94\xb8" // U+e538
#define ICON_MS_EXPLORE_OFF "\xee\xa6\xa8" // U+e9a8
#define ICON_MS_EXPLOSION "\xef\x9a\x85" // U+f685
#define ICON_MS_EXPORT_NOTES "\xee\x82\xac" // U+e0ac
#define ICON_MS_EXPOSURE "\xee\x8f\xb6" // U+e3f6
#define ICON_MS_EXPOSURE_NEG_1 "\xee\x8f\x8b" // U+e3cb
#define ICON_MS_EXPOSURE_NEG_2 "\xee\x8f\x8c" // U+e3cc
#define ICON_MS_EXPOSURE_PLUS_1 "\xee\xa0\x80" // U+e800
#define ICON_MS_EXPOSURE_PLUS_2 "\xee\x8f\x8e" // U+e3ce
#define ICON_MS_EXPOSURE_ZERO "\xee\x8f\x8f" // U+e3cf
#define ICON_MS_EXTENSION "\xee\xa1\xbb" // U+e87b
#define ICON_MS_EXTENSION_OFF "\xee\x93\xb5" // U+e4f5
#define ICON_MS_EYE_TRACKING "\xef\x93\x89" // U+f4c9
#define ICON_MS_EYEGLASSES "\xef\x9b\xae" // U+f6ee
#define ICON_MS_FACE "\xef\x80\x88" // U+f008
#define ICON_MS_FACE_2 "\xef\xa3\x9a" // U+f8da
#define ICON_MS_FACE_3 "\xef\xa3\x9b" // U+f8db
#define ICON_MS_FACE_4 "\xef\xa3\x9c" // U+f8dc
#define ICON_MS_FACE_5 "\xef\xa3\x9d" // U+f8dd
#define ICON_MS_FACE_6 "\xef\xa3\x9e" // U+f8de
#define ICON_MS_FACE_RETOUCHING_NATURAL "\xee\xbd\x8e" // U+ef4e
#define ICON_MS_FACE_RETOUCHING_OFF "\xef\x80\x87" // U+f007
#define ICON_MS_FACE_UNLOCK "\xef\x80\x88" // U+f008
#define ICON_MS_FACT_CHECK "\xef\x83\x85" // U+f0c5
#define ICON_MS_FACTORY "\xee\xae\xbc" // U+ebbc
#define ICON_MS_FALLING "\xef\x98\x8d" // U+f60d
#define ICON_MS_FAMILIAR_FACE_AND_ZONE "\xee\x88\x9c" // U+e21c
#define ICON_MS_FAMILY_HISTORY "\xee\x82\xad" // U+e0ad
#define ICON_MS_FAMILY_HOME "\xee\xac\xa6" // U+eb26
#define ICON_MS_FAMILY_LINK "\xee\xac\x99" // U+eb19
#define ICON_MS_FAMILY_RESTROOM "\xef\x86\xa2" // U+f1a2
#define ICON_MS_FAMILY_STAR "\xef\x94\xa7" // U+f527
#define ICON_MS_FARSIGHT_DIGITAL "\xef\x95\x99" // U+f559
#define ICON_MS_FAST_FORWARD "\xee\x80\x9f" // U+e01f
#define ICON_MS_FAST_REWIND "\xee\x80\xa0" // U+e020
#define ICON_MS_FASTFOOD "\xee\x95\xba" // U+e57a
#define ICON_MS_FAUCET "\xee\x89\xb8" // U+e278
#define ICON_MS_FAVORITE "\xee\xa1\xbe" // U+e87e
#define ICON_MS_FAVORITE_BORDER "\xee\xa1\xbe" // U+e87e
#define ICON_MS_FAX "\xee\xab\x98" // U+ead8
#define ICON_MS_FEATURE_SEARCH "\xee\xa6\xa9" // U+e9a9
#define ICON_MS_FEATURED_PLAY_LIST "\xee\x81\xad" // U+e06d
#define ICON_MS_FEATURED_SEASONAL_AND_GIFTS "\xee\xbe\x91" // U+ef91
#define ICON_MS_FEATURED_VIDEO "\xee\x81\xae" // U+e06e
#define ICON_MS_FEED "\xef\x80\x89" // U+f009
#define ICON_MS_FEEDBACK "\xee\xa1\xbf" // U+e87f
#define ICON_MS_FEMALE "\xee\x96\x90" // U+e590
#define ICON_MS_FEMUR "\xef\xa2\x91" // U+f891
#define ICON_MS_FEMUR_ALT "\xef\xa2\x92" // U+f892
#define ICON_MS_FENCE "\xef\x87\xb6" // U+f1f6
#define ICON_MS_FERTILE "\xef\x9b\xa5" // U+f6e5
#define ICON_MS_FESTIVAL "\xee\xa9\xa8" // U+ea68
#define ICON_MS_FIBER_DVR "\xee\x81\x9d" // U+e05d
#define ICON_MS_FIBER_MANUAL_RECORD "\xee\x81\xa1" // U+e061
#define ICON_MS_FIBER_NEW "\xee\x81\x9e" // U+e05e
#define ICON_MS_FIBER_PIN "\xee\x81\xaa" // U+e06a
#define ICON_MS_FIBER_SMART_RECORD "\xee\x81\xa2" // U+e062
#define ICON_MS_FILE_COPY "\xee\x85\xb3" // U+e173
#define ICON_MS_FILE_COPY_OFF "\xef\x93\x98" // U+f4d8
#define ICON_MS_FILE_DOWNLOAD "\xef\x82\x90" // U+f090
#define ICON_MS_FILE_DOWNLOAD_DONE "\xef\x82\x91" // U+f091
#define ICON_MS_FILE_DOWNLOAD_OFF "\xee\x93\xbe" // U+e4fe
#define ICON_MS_FILE_MAP "\xee\x8b\x85" // U+e2c5
#define ICON_MS_FILE_OPEN "\xee\xab\xb3" // U+eaf3
#define ICON_MS_FILE_PRESENT "\xee\xa8\x8e" // U+ea0e
#define ICON_MS_FILE_SAVE "\xef\x85\xbf" // U+f17f
#define ICON_MS_FILE_SAVE_OFF "\xee\x94\x85" // U+e505
#define ICON_MS_FILE_UPLOAD "\xef\x82\x9b" // U+f09b
#define ICON_MS_FILE_UPLOAD_OFF "\xef\xa2\x86" // U+f886
#define ICON_MS_FILTER "\xee\x8f\x93" // U+e3d3
#define ICON_MS_FILTER_1 "\xee\x8f\x90" // U+e3d0
#define ICON_MS_FILTER_2 "\xee\x8f\x91" // U+e3d1
#define ICON_MS_FILTER_3 "\xee\x8f\x92" // U+e3d2
#define ICON_MS_FILTER_4 "\xee\x8f\x94" // U+e3d4
#define ICON_MS_FILTER_5 "\xee\x8f\x95" // U+e3d5
#define ICON_MS_FILTER_6 "\xee\x8f\x96" // U+e3d6
#define ICON_MS_FILTER_7 "\xee\x8f\x97" // U+e3d7
#define ICON_MS_FILTER_8 "\xee\x8f\x98" // U+e3d8
#define ICON_MS_FILTER_9 "\xee\x8f\x99" // U+e3d9
#define ICON_MS_FILTER_9_PLUS "\xee\x8f\x9a" // U+e3da
#define ICON_MS_FILTER_ALT "\xee\xbd\x8f" // U+ef4f
#define ICON_MS_FILTER_ALT_OFF "\xee\xac\xb2" // U+eb32
#define ICON_MS_FILTER_B_AND_W "\xee\x8f\x9b" // U+e3db
#define ICON_MS_FILTER_CENTER_FOCUS "\xee\x8f\x9c" // U+e3dc
#define ICON_MS_FILTER_DRAMA "\xee\x8f\x9d" // U+e3dd
#define ICON_MS_FILTER_FRAMES "\xee\x8f\x9e" // U+e3de
#define ICON_MS_FILTER_HDR "\xee\x8f\x9f" // U+e3df
#define ICON_MS_FILTER_LIST "\xee\x85\x92" // U+e152
#define ICON_MS_FILTER_LIST_ALT "\xee\xa5\x8e" // U+e94e
#define ICON_MS_FILTER_LIST_OFF "\xee\xad\x97" // U+eb57
#define ICON_MS_FILTER_NONE "\xee\x8f\xa0" // U+e3e0
#define ICON_MS_FILTER_RETROLUX "\xee\x8f\xa1" // U+e3e1
#define ICON_MS_FILTER_TILT_SHIFT "\xee\x8f\xa2" // U+e3e2
#define ICON_MS_FILTER_VINTAGE "\xee\x8f\xa3" // U+e3e3
#define ICON_MS_FINANCE "\xee\x9a\xbf" // U+e6bf
#define ICON_MS_FINANCE_CHIP "\xef\xa1\x8e" // U+f84e
#define ICON_MS_FINANCE_MODE "\xee\xbe\x92" // U+ef92
#define ICON_MS_FIND_IN_PAGE "\xee\xa2\x80" // U+e880
#define ICON_MS_FIND_REPLACE "\xee\xa2\x81" // U+e881
#define ICON_MS_FINGERPRINT "\xee\xa4\x8d" // U+e90d
#define ICON_MS_FINGERPRINT_OFF "\xef\x92\x9d" // U+f49d
#define ICON_MS_FIRE_EXTINGUISHER "\xef\x87\x98" // U+f1d8
#define ICON_MS_FIRE_HYDRANT "\xef\x86\xa3" // U+f1a3
#define ICON_MS_FIRE_TRUCK "\xef\xa3\xb2" // U+f8f2
#define ICON_MS_FIREPLACE "\xee\xa9\x83" // U+ea43
#define ICON_MS_FIRST_PAGE "\xee\x97\x9c" // U+e5dc
#define ICON_MS_FIT_PAGE "\xef\x9d\xba" // U+f77a
#define ICON_MS_FIT_SCREEN "\xee\xa8\x90" // U+ea10
#define ICON_MS_FIT_WIDTH "\xef\x9d\xb9" // U+f779
#define ICON_MS_FITNESS_CENTER "\xee\xad\x83" // U+eb43
#define ICON_MS_FLAG "\xef\x83\x86" // U+f0c6
#define ICON_MS_FLAG_CIRCLE "\xee\xab\xb8" // U+eaf8
#define ICON_MS_FLAG_FILLED "\xef\x83\x86" // U+f0c6
#define ICON_MS_FLAKY "\xee\xbd\x90" // U+ef50
#define ICON_MS_FLARE "\xee\x8f\xa4" // U+e3e4
#define ICON_MS_FLASH_AUTO "\xee\x8f\xa5" // U+e3e5
#define ICON_MS_FLASH_OFF "\xee\x8f\xa6" // U+e3e6
#define ICON_MS_FLASH_ON "\xee\x8f\xa7" // U+e3e7
#define ICON_MS_FLASHLIGHT_OFF "\xef\x80\x8a" // U+f00a
#define ICON_MS_FLASHLIGHT_ON "\xef\x80\x8b" // U+f00b
#define ICON_MS_FLATWARE "\xef\x80\x8c" // U+f00c
#define ICON_MS_FLEX_DIRECTION "\xef\x9d\xb8" // U+f778
#define ICON_MS_FLEX_NO_WRAP "\xef\x9d\xb7" // U+f777
#define ICON_MS_FLEX_WRAP "\xef\x9d\xb6" // U+f776
#define ICON_MS_FLIGHT "\xee\x94\xb9" // U+e539
#define ICON_MS_FLIGHT_CLASS "\xee\x9f\x8b" // U+e7cb
#define ICON_MS_FLIGHT_LAND "\xee\xa4\x84" // U+e904
#define ICON_MS_FLIGHT_TAKEOFF "\xee\xa4\x85" // U+e905
#define ICON_MS_FLIGHTS_AND_HOTELS "\xee\xa6\xab" // U+e9ab
#define ICON_MS_FLIGHTSMODE "\xee\xbe\x93" // U+ef93
#define ICON_MS_FLIP "\xee\x8f\xa8" // U+e3e8
#define ICON_MS_FLIP_CAMERA_ANDROID "\xee\xa8\xb7" // U+ea37
#define ICON_MS_FLIP_CAMERA_IOS "\xee\xa8\xb8" // U+ea38
#define ICON_MS_FLIP_TO_BACK "\xee\xa2\x82" // U+e882
#define ICON_MS_FLIP_TO_FRONT "\xee\xa2\x83" // U+e883
#define ICON_MS_FLOOD "\xee\xaf\xa6" // U+ebe6
#define ICON_MS_FLOOR "\xef\x9b\xa4" // U+f6e4
#define ICON_MS_FLOOR_LAMP "\xee\x88\x9e" // U+e21e
#define ICON_MS_FLOURESCENT "\xef\x81\xbd" // U+f07d
#define ICON_MS_FLOWSHEET "\xee\x82\xae" // U+e0ae
#define ICON_MS_FLUID "\xee\x92\x83" // U+e483
#define ICON_MS_FLUID_BALANCE "\xef\xa0\x8d" // U+f80d
#define ICON_MS_FLUID_MED "\xef\xa0\x8c" // U+f80c
#define ICON_MS_FLUORESCENT "\xef\x81\xbd" // U+f07d
#define ICON_MS_FLUTTER "\xef\x87\x9d" // U+f1dd
#define ICON_MS_FLUTTER_DASH "\xee\x80\x8b" // U+e00b
#define ICON_MS_FMD_BAD "\xef\x80\x8e" // U+f00e
#define ICON_MS_FMD_GOOD "\xef\x87\x9b" // U+f1db
#define ICON_MS_FOGGY "\xee\xa0\x98" // U+e818
#define ICON_MS_FOLDED_HANDS "\xef\x97\xad" // U+f5ed
#define ICON_MS_FOLDER "\xee\x8b\x87" // U+e2c7
#define ICON_MS_FOLDER_COPY "\xee\xae\xbd" // U+ebbd
#define ICON_MS_FOLDER_DATA "\xef\x96\x86" // U+f586
#define ICON_MS_FOLDER_DELETE "\xee\xac\xb4" // U+eb34
#define ICON_MS_FOLDER_LIMITED "\xef\x93\xa4" // U+f4e4
#define ICON_MS_FOLDER_MANAGED "\xef\x9d\xb5" // U+f775
#define ICON_MS_FOLDER_OFF "\xee\xae\x83" // U+eb83
#define ICON_MS_FOLDER_OPEN "\xee\x8b\x88" // U+e2c8
#define ICON_MS_FOLDER_SHARED "\xee\x8b\x89" // U+e2c9
#define ICON_MS_FOLDER_SPECIAL "\xee\x98\x97" // U+e617
#define ICON_MS_FOLDER_SUPERVISED "\xef\x9d\xb4" // U+f774
#define ICON_MS_FOLDER_ZIP "\xee\xac\xac" // U+eb2c
#define ICON_MS_FOLLOW_THE_SIGNS "\xef\x88\xa2" // U+f222
#define ICON_MS_FONT_DOWNLOAD "\xee\x85\xa7" // U+e167
#define ICON_MS_FONT_DOWNLOAD_OFF "\xee\x93\xb9" // U+e4f9
#define ICON_MS_FOOD_BANK "\xef\x87\xb2" // U+f1f2
#define ICON_MS_FOOT_BONES "\xef\xa2\x93" // U+f893
#define ICON_MS_FOOTPRINT "\xef\xa1\xbd" // U+f87d
#define ICON_MS_FOR_YOU "\xee\xa6\xac" // U+e9ac
#define ICON_MS_FOREST "\xee\xaa\x99" // U+ea99
#define ICON_MS_FORK_LEFT "\xee\xae\xa0" // U+eba0
#define ICON_MS_FORK_RIGHT "\xee\xae\xac" // U+ebac
#define ICON_MS_FORKLIFT "\xef\xa1\xa8" // U+f868
#define ICON_MS_FORMAT_ALIGN_CENTER "\xee\x88\xb4" // U+e234
#define ICON_MS_FORMAT_ALIGN_JUSTIFY "\xee\x88\xb5" // U+e235
#define ICON_MS_FORMAT_ALIGN_LEFT "\xee\x88\xb6" // U+e236
#define ICON_MS_FORMAT_ALIGN_RIGHT "\xee\x88\xb7" // U+e237
#define ICON_MS_FORMAT_BOLD "\xee\x88\xb8" // U+e238
#define ICON_MS_FORMAT_CLEAR "\xee\x88\xb9" // U+e239
#define ICON_MS_FORMAT_COLOR_FILL "\xee\x88\xba" // U+e23a
#define ICON_MS_FORMAT_COLOR_RESET "\xee\x88\xbb" // U+e23b
#define ICON_MS_FORMAT_COLOR_TEXT "\xee\x88\xbc" // U+e23c
#define ICON_MS_FORMAT_H1 "\xef\xa1\x9d" // U+f85d
#define ICON_MS_FORMAT_H2 "\xef\xa1\x9e" // U+f85e
#define ICON_MS_FORMAT_H3 "\xef\xa1\x9f" // U+f85f
#define ICON_MS_FORMAT_H4 "\xef\xa1\xa0" // U+f860
#define ICON_MS_FORMAT_H5 "\xef\xa1\xa1" // U+f861
#define ICON_MS_FORMAT_H6 "\xef\xa1\xa2" // U+f862
#define ICON_MS_FORMAT_IMAGE_LEFT "\xef\xa1\xa3" // U+f863
#define ICON_MS_FORMAT_IMAGE_RIGHT "\xef\xa1\xa4" // U+f864
#define ICON_MS_FORMAT_INDENT_DECREASE "\xee\x88\xbd" // U+e23d
#define ICON_MS_FORMAT_INDENT_INCREASE "\xee\x88\xbe" // U+e23e
#define ICON_MS_FORMAT_INK_HIGHLIGHTER "\xef\xa0\xab" // U+f82b
#define ICON_MS_FORMAT_ITALIC "\xee\x88\xbf" // U+e23f
#define ICON_MS_FORMAT_LETTER_SPACING "\xef\x9d\xb3" // U+f773
#define ICON_MS_FORMAT_LETTER_SPACING_2 "\xef\x98\x98" // U+f618
#define ICON_MS_FORMAT_LETTER_SPACING_STANDARD "\xef\x98\x97" // U+f617
#define ICON_MS_FORMAT_LETTER_SPACING_WIDE "\xef\x98\x96" // U+f616
#define ICON_MS_FORMAT_LETTER_SPACING_WIDER "\xef\x98\x95" // U+f615
#define ICON_MS_FORMAT_LINE_SPACING "\xee\x89\x80" // U+e240
#define ICON_MS_FORMAT_LIST_BULLETED "\xee\x89\x81" // U+e241
#define ICON_MS_FORMAT_LIST_BULLETED_ADD "\xef\xa1\x89" // U+f849
#define ICON_MS_FORMAT_LIST_NUMBERED "\xee\x89\x82" // U+e242
#define ICON_MS_FORMAT_LIST_NUMBERED_RTL "\xee\x89\xa7" // U+e267
#define ICON_MS_FORMAT_OVERLINE "\xee\xad\xa5" // U+eb65
#define ICON_MS_FORMAT_PAINT "\xee\x89\x83" // U+e243
#define ICON_MS_FORMAT_PARAGRAPH "\xef\xa1\xa5" // U+f865
#define ICON_MS_FORMAT_QUOTE "\xee\x89\x84" // U+e244
#define ICON_MS_FORMAT_SHAPES "\xee\x89\x9e" // U+e25e
#define ICON_MS_FORMAT_SIZE "\xee\x89\x85" // U+e245
#define ICON_MS_FORMAT_STRIKETHROUGH "\xee\x89\x86" // U+e246
#define ICON_MS_FORMAT_TEXT_CLIP "\xef\xa0\xaa" // U+f82a
#define ICON_MS_FORMAT_TEXT_OVERFLOW "\xef\xa0\xa9" // U+f829
#define ICON_MS_FORMAT_TEXT_WRAP "\xef\xa0\xa8" // U+f828
#define ICON_MS_FORMAT_TEXTDIRECTION_L_TO_R "\xee\x89\x87" // U+e247
#define ICON_MS_FORMAT_TEXTDIRECTION_R_TO_L "\xee\x89\x88" // U+e248
#define ICON_MS_FORMAT_TEXTDIRECTION_VERTICAL "\xef\x92\xb8" // U+f4b8
#define ICON_MS_FORMAT_UNDERLINED "\xee\x89\x89" // U+e249
#define ICON_MS_FORMAT_UNDERLINED_SQUIGGLE "\xef\xa2\x85" // U+f885
#define ICON_MS_FORMS_ADD_ON "\xef\x83\x87" // U+f0c7
#define ICON_MS_FORMS_APPS_SCRIPT "\xef\x83\x88" // U+f0c8
#define ICON_MS_FORT "\xee\xaa\xad" // U+eaad
#define ICON_MS_FORUM "\xee\xa2\xaf" // U+e8af
#define ICON_MS_FORWARD "\xef\x95\xba" // U+f57a
#define ICON_MS_FORWARD_10 "\xee\x81\x96" // U+e056
#define ICON_MS_FORWARD_30 "\xee\x81\x97" // U+e057
#define ICON_MS_FORWARD_5 "\xee\x81\x98" // U+e058
#define ICON_MS_FORWARD_CIRCLE "\xef\x9b\xb5" // U+f6f5
#define ICON_MS_FORWARD_MEDIA "\xef\x9b\xb4" // U+f6f4
#define ICON_MS_FORWARD_TO_INBOX "\xef\x86\x87" // U+f187
#define ICON_MS_FOUNDATION "\xef\x88\x80" // U+f200
#define ICON_MS_FRAME_INSPECT "\xef\x9d\xb2" // U+f772
#define ICON_MS_FRAME_PERSON "\xef\xa2\xa6" // U+f8a6
#define ICON_MS_FRAME_PERSON_MIC "\xef\x93\x95" // U+f4d5
#define ICON_MS_FRAME_PERSON_OFF "\xef\x9f\x91" // U+f7d1
#define ICON_MS_FRAME_RELOAD "\xef\x9d\xb1" // U+f771
#define ICON_MS_FRAME_SOURCE "\xef\x9d\xb0" // U+f770
#define ICON_MS_FREE_BREAKFAST "\xee\xad\x84" // U+eb44
#define ICON_MS_FREE_CANCELLATION "\xee\x9d\x88" // U+e748
#define ICON_MS_FRONT_HAND "\xee\x9d\xa9" // U+e769
#define ICON_MS_FRONT_LOADER "\xef\xa1\xa9" // U+f869
#define ICON_MS_FULL_COVERAGE "\xee\xac\x92" // U+eb12
#define ICON_MS_FULL_HD "\xef\x96\x8b" // U+f58b
#define ICON_MS_FULL_STACKED_BAR_CHART "\xef\x88\x92" // U+f212
#define ICON_MS_FULLSCREEN "\xee\x97\x90" // U+e5d0
#define ICON_MS_FULLSCREEN_EXIT "\xee\x97\x91" // U+e5d1
#define ICON_MS_FUNCTION "\xef\xa1\xa6" // U+f866
#define ICON_MS_FUNCTIONS "\xee\x89\x8a" // U+e24a
#define ICON_MS_G_MOBILEDATA "\xef\x80\x90" // U+f010
#define ICON_MS_G_MOBILEDATA_BADGE "\xef\x9f\xa1" // U+f7e1
#define ICON_MS_G_TRANSLATE "\xee\xa4\xa7" // U+e927
#define ICON_MS_GALLERY_THUMBNAIL "\xef\xa1\xaf" // U+f86f
#define ICON_MS_GAMEPAD "\xee\x8c\x8f" // U+e30f
#define ICON_MS_GAMES "\xee\x8c\x8f" // U+e30f
#define ICON_MS_GARAGE "\xef\x80\x91" // U+f011
#define ICON_MS_GARAGE_DOOR "\xee\x9c\x94" // U+e714
#define ICON_MS_GARAGE_HOME "\xee\xa0\xad" // U+e82d
#define ICON_MS_GARDEN_CART "\xef\xa2\xa9" // U+f8a9
#define ICON_MS_GAS_METER "\xee\xb0\x99" // U+ec19
#define ICON_MS_GASTROENTEROLOGY "\xee\x83\xb1" // U+e0f1
#define ICON_MS_GATE "\xee\x89\xb7" // U+e277
#define ICON_MS_GAVEL "\xee\xa4\x8e" // U+e90e
#define ICON_MS_GENERAL_DEVICE "\xee\x9b\x9e" // U+e6de
#define ICON_MS_GENERATING_TOKENS "\xee\x9d\x89" // U+e749
#define ICON_MS_GENETICS "\xee\x83\xb3" // U+e0f3
#define ICON_MS_GENRES "\xee\x9b\xae" // U+e6ee
#define ICON_MS_GESTURE "\xee\x85\x95" // U+e155
#define ICON_MS_GESTURE_SELECT "\xef\x99\x97" // U+f657
#define ICON_MS_GET_APP "\xef\x82\x90" // U+f090
#define ICON_MS_GIF "\xee\xa4\x88" // U+e908
#define ICON_MS_GIF_BOX "\xee\x9e\xa3" // U+e7a3
#define ICON_MS_GIRL "\xee\xad\xa8" // U+eb68
#define ICON_MS_GITE "\xee\x96\x8b" // U+e58b
#define ICON_MS_GLASS_CUP "\xef\x9b\xa3" // U+f6e3
#define ICON_MS_GLOBE "\xee\x99\x8c" // U+e64c
#define ICON_MS_GLOBE_ASIA "\xef\x9e\x99" // U+f799
#define ICON_MS_GLOBE_UK "\xef\x9e\x98" // U+f798
#define ICON_MS_GLUCOSE "\xee\x92\xa0" // U+e4a0
#define ICON_MS_GLYPHS "\xef\xa2\xa3" // U+f8a3
#define ICON_MS_GO_TO_LINE "\xef\x9c\x9d" // U+f71d
#define ICON_MS_GOLF_COURSE "\xee\xad\x85" // U+eb45
#define ICON_MS_GOOGLE_HOME_DEVICES "\xee\x9c\x95" // U+e715
#define ICON_MS_GOOGLE_PLUS_RESHARE "\xef\x95\xba" // U+f57a
#define ICON_MS_GOOGLE_TV_REMOTE "\xef\x97\x9b" // U+f5db
#define ICON_MS_GOOGLE_WIFI "\xef\x95\xb9" // U+f579
#define ICON_MS_GPP_BAD "\xef\x80\x92" // U+f012
#define ICON_MS_GPP_GOOD "\xef\x80\x93" // U+f013
#define ICON_MS_GPP_MAYBE "\xef\x80\x94" // U+f014
#define ICON_MS_GPS_FIXED "\xee\x95\x9c" // U+e55c
#define ICON_MS_GPS_NOT_FIXED "\xee\x86\xb7" // U+e1b7
#define ICON_MS_GPS_OFF "\xee\x86\xb6" // U+e1b6
#define ICON_MS_GRADE "\xee\xa2\x85" // U+e885
#define ICON_MS_GRADIENT "\xee\x8f\xa9" // U+e3e9
#define ICON_MS_GRADING "\xee\xa9\x8f" // U+ea4f
#define ICON_MS_GRAIN "\xee\x8f\xaa" // U+e3ea
#define ICON_MS_GRAPHIC_EQ "\xee\x86\xb8" // U+e1b8
#define ICON_MS_GRASS "\xef\x88\x85" // U+f205
#define ICON_MS_GRID_3X3 "\xef\x80\x95" // U+f015
#define ICON_MS_GRID_3X3_OFF "\xef\x99\xbc" // U+f67c
#define ICON_MS_GRID_4X4 "\xef\x80\x96" // U+f016
#define ICON_MS_GRID_GOLDENRATIO "\xef\x80\x97" // U+f017
#define ICON_MS_GRID_GUIDES "\xef\x9d\xaf" // U+f76f
#define ICON_MS_GRID_OFF "\xee\x8f\xab" // U+e3eb
#define ICON_MS_GRID_ON "\xee\x8f\xac" // U+e3ec
#define ICON_MS_GRID_VIEW "\xee\xa6\xb0" // U+e9b0
#define ICON_MS_GROCERY "\xee\xbe\x97" // U+ef97
#define ICON_MS_GROUP "\xee\xa8\xa1" // U+ea21
#define ICON_MS_GROUP_ADD "\xee\x9f\xb0" // U+e7f0
#define ICON_MS_GROUP_OFF "\xee\x9d\x87" // U+e747
#define ICON_MS_GROUP_REMOVE "\xee\x9e\xad" // U+e7ad
#define ICON_MS_GROUP_WORK "\xee\xa2\x86" // U+e886
#define ICON_MS_GROUPED_BAR_CHART "\xef\x88\x91" // U+f211
#define ICON_MS_GROUPS "\xef\x88\xb3" // U+f233
#define ICON_MS_GROUPS_2 "\xef\xa3\x9f" // U+f8df
#define ICON_MS_GROUPS_3 "\xef\xa3\xa0" // U+f8e0
#define ICON_MS_GUARDIAN "\xef\x93\x81" // U+f4c1
#define ICON_MS_GYNECOLOGY "\xee\x83\xb4" // U+e0f4
#define ICON_MS_H_MOBILEDATA "\xef\x80\x98" // U+f018
#define ICON_MS_H_MOBILEDATA_BADGE "\xef\x9f\xa0" // U+f7e0
#define ICON_MS_H_PLUS_MOBILEDATA "\xef\x80\x99" // U+f019
#define ICON_MS_H_PLUS_MOBILEDATA_BADGE "\xef\x9f\x9f" // U+f7df
#define ICON_MS_HAIL "\xee\xa6\xb1" // U+e9b1
#define ICON_MS_HALLWAY "\xee\x9b\xb8" // U+e6f8
#define ICON_MS_HAND_BONES "\xef\xa2\x94" // U+f894
#define ICON_MS_HAND_GESTURE "\xee\xbe\x9c" // U+ef9c
#define ICON_MS_HANDHELD_CONTROLLER "\xef\x93\x86" // U+f4c6
#define ICON_MS_HANDSHAKE "\xee\xaf\x8b" // U+ebcb
#define ICON_MS_HANDWRITING_RECOGNITION "\xee\xac\x82" // U+eb02
#define ICON_MS_HANDYMAN "\xef\x84\x8b" // U+f10b
#define ICON_MS_HANGOUT_VIDEO "\xee\x83\x81" // U+e0c1
#define ICON_MS_HANGOUT_VIDEO_OFF "\xee\x83\x82" // U+e0c2
#define ICON_MS_HARD_DRIVE "\xef\xa0\x8e" // U+f80e
#define ICON_MS_HARD_DRIVE_2 "\xef\x9e\xa4" // U+f7a4
#define ICON_MS_HARDWARE "\xee\xa9\x99" // U+ea59
#define ICON_MS_HD "\xee\x81\x92" // U+e052
#define ICON_MS_HDR_AUTO "\xef\x80\x9a" // U+f01a
#define ICON_MS_HDR_AUTO_SELECT "\xef\x80\x9b" // U+f01b
#define ICON_MS_HDR_ENHANCED_SELECT "\xee\xbd\x91" // U+ef51
#define ICON_MS_HDR_OFF "\xee\x8f\xad" // U+e3ed
#define ICON_MS_HDR_OFF_SELECT "\xef\x80\x9c" // U+f01c
#define ICON_MS_HDR_ON "\xee\x8f\xae" // U+e3ee
#define ICON_MS_HDR_ON_SELECT "\xef\x80\x9d" // U+f01d
#define ICON_MS_HDR_PLUS "\xef\x80\x9e" // U+f01e
#define ICON_MS_HDR_PLUS_OFF "\xee\x8f\xaf" // U+e3ef
#define ICON_MS_HDR_STRONG "\xee\x8f\xb1" // U+e3f1
#define ICON_MS_HDR_WEAK "\xee\x8f\xb2" // U+e3f2
#define ICON_MS_HEAD_MOUNTED_DEVICE "\xef\x93\x85" // U+f4c5
#define ICON_MS_HEADPHONES "\xef\x80\x9f" // U+f01f
#define ICON_MS_HEADPHONES_BATTERY "\xef\x80\xa0" // U+f020
#define ICON_MS_HEADSET "\xef\x80\x9f" // U+f01f
#define ICON_MS_HEADSET_MIC "\xee\x8c\x91" // U+e311
#define ICON_MS_HEADSET_OFF "\xee\x8c\xba" // U+e33a
#define ICON_MS_HEALING "\xee\x8f\xb3" // U+e3f3
#define ICON_MS_HEALTH_AND_BEAUTY "\xee\xbe\x9d" // U+ef9d
#define ICON_MS_HEALTH_AND_SAFETY "\xee\x87\x95" // U+e1d5
#define ICON_MS_HEALTH_METRICS "\xef\x9b\xa2" // U+f6e2
#define ICON_MS_HEAP_SNAPSHOT_LARGE "\xef\x9d\xae" // U+f76e
#define ICON_MS_HEAP_SNAPSHOT_MULTIPLE "\xef\x9d\xad" // U+f76d
#define ICON_MS_HEAP_SNAPSHOT_THUMBNAIL "\xef\x9d\xac" // U+f76c
#define ICON_MS_HEARING "\xee\x80\xa3" // U+e023
#define ICON_MS_HEARING_DISABLED "\xef\x84\x84" // U+f104
#define ICON_MS_HEART_BROKEN "\xee\xab\x82" // U+eac2
#define ICON_MS_HEART_CHECK "\xef\x98\x8a" // U+f60a
#define ICON_MS_HEART_MINUS "\xef\xa2\x83" // U+f883
#define ICON_MS_HEART_PLUS "\xef\xa2\x84" // U+f884
#define ICON_MS_HEAT "\xef\x94\xb7" // U+f537
#define ICON_MS_HEAT_PUMP "\xee\xb0\x98" // U+ec18
#define ICON_MS_HEAT_PUMP_BALANCE "\xee\x89\xbe" // U+e27e
#define ICON_MS_HEIGHT "\xee\xa8\x96" // U+ea16
#define ICON_MS_HELICOPTER "\xef\x98\x8c" // U+f60c
#define ICON_MS_HELP "\xee\xa3\xbd" // U+e8fd
#define ICON_MS_HELP_CENTER "\xef\x87\x80" // U+f1c0
#define ICON_MS_HELP_CLINIC "\xef\xa0\x90" // U+f810
#define ICON_MS_HELP_OUTLINE "\xee\xa3\xbd" // U+e8fd
#define ICON_MS_HEMATOLOGY "\xee\x83\xb6" // U+e0f6
#define ICON_MS_HEVC "\xef\x80\xa1" // U+f021
#define ICON_MS_HEXAGON "\xee\xac\xb9" // U+eb39
#define ICON_MS_HIDE "\xee\xbe\x9e" // U+ef9e
#define ICON_MS_HIDE_IMAGE "\xef\x80\xa2" // U+f022
#define ICON_MS_HIDE_SOURCE "\xef\x80\xa3" // U+f023
#define ICON_MS_HIGH_DENSITY "\xef\x9e\x9c" // U+f79c
#define ICON_MS_HIGH_QUALITY "\xee\x80\xa4" // U+e024
#define ICON_MS_HIGH_RES "\xef\x95\x8b" // U+f54b
#define ICON_MS_HIGHLIGHT "\xee\x89\x9f" // U+e25f
#define ICON_MS_HIGHLIGHT_KEYBOARD_FOCUS "\xef\x94\x90" // U+f510
#define ICON_MS_HIGHLIGHT_MOUSE_CURSOR "\xef\x94\x91" // U+f511
#define ICON_MS_HIGHLIGHT_OFF "\xee\xa2\x88" // U+e888
#define ICON_MS_HIGHLIGHT_TEXT_CURSOR "\xef\x94\x92" // U+f512
#define ICON_MS_HIGHLIGHTER_SIZE_1 "\xef\x9d\xab" // U+f76b
#define ICON_MS_HIGHLIGHTER_SIZE_2 "\xef\x9d\xaa" // U+f76a
#define ICON_MS_HIGHLIGHTER_SIZE_3 "\xef\x9d\xa9" // U+f769
#define ICON_MS_HIGHLIGHTER_SIZE_4 "\xef\x9d\xa8" // U+f768
#define ICON_MS_HIGHLIGHTER_SIZE_5 "\xef\x9d\xa7" // U+f767
#define ICON_MS_HIKING "\xee\x94\x8a" // U+e50a
#define ICON_MS_HISTORY "\xee\xa2\xb3" // U+e8b3
#define ICON_MS_HISTORY_EDU "\xee\xa8\xbe" // U+ea3e
#define ICON_MS_HISTORY_OFF "\xef\x93\x9a" // U+f4da
#define ICON_MS_HISTORY_TOGGLE_OFF "\xef\x85\xbd" // U+f17d
#define ICON_MS_HIVE "\xee\xaa\xa6" // U+eaa6
#define ICON_MS_HLS "\xee\xae\x8a" // U+eb8a
#define ICON_MS_HLS_OFF "\xee\xae\x8c" // U+eb8c
#define ICON_MS_HOLIDAY_VILLAGE "\xee\x96\x8a" // U+e58a
#define ICON_MS_HOME "\xee\xa6\xb2" // U+e9b2
#define ICON_MS_HOME_AND_GARDEN "\xee\xbe\x9f" // U+ef9f
#define ICON_MS_HOME_APP_LOGO "\xee\x8a\x95" // U+e295
#define ICON_MS_HOME_FILLED "\xee\xa6\xb2" // U+e9b2
#define ICON_MS_HOME_HEALTH "\xee\x92\xb9" // U+e4b9
#define ICON_MS_HOME_IMPROVEMENT_AND_TOOLS "\xee\xbe\xa0" // U+efa0
#define ICON_MS_HOME_IOT_DEVICE "\xee\x8a\x83" // U+e283
#define ICON_MS_HOME_MAX "\xef\x80\xa4" // U+f024
#define ICON_MS_HOME_MAX_DOTS "\xee\xa1\x89" // U+e849
#define ICON_MS_HOME_MINI "\xef\x80\xa5" // U+f025
#define ICON_MS_HOME_PIN "\xef\x85\x8d" // U+f14d
#define ICON_MS_HOME_REPAIR_SERVICE "\xef\x84\x80" // U+f100
#define ICON_MS_HOME_SPEAKER "\xef\x84\x9c" // U+f11c
#define ICON_MS_HOME_STORAGE "\xef\xa1\xac" // U+f86c
#define ICON_MS_HOME_WORK "\xef\x80\xb0" // U+f030
#define ICON_MS_HORIZONTAL_DISTRIBUTE "\xee\x80\x94" // U+e014
#define ICON_MS_HORIZONTAL_RULE "\xef\x84\x88" // U+f108
#define ICON_MS_HORIZONTAL_SPLIT "\xee\xa5\x87" // U+e947
#define ICON_MS_HOT_TUB "\xee\xad\x86" // U+eb46
#define ICON_MS_HOTEL "\xee\x95\x89" // U+e549
#define ICON_MS_HOTEL_CLASS "\xee\x9d\x83" // U+e743
#define ICON_MS_HOURGLASS "\xee\xaf\xbf" // U+ebff
#define ICON_MS_HOURGLASS_BOTTOM "\xee\xa9\x9c" // U+ea5c
#define ICON_MS_HOURGLASS_DISABLED "\xee\xbd\x93" // U+ef53
#define ICON_MS_HOURGLASS_EMPTY "\xee\xa2\x8b" // U+e88b
#define ICON_MS_HOURGLASS_FULL "\xee\xa2\x8c" // U+e88c
#define ICON_MS_HOURGLASS_TOP "\xee\xa9\x9b" // U+ea5b
#define ICON_MS_HOUSE "\xee\xa9\x84" // U+ea44
#define ICON_MS_HOUSE_SIDING "\xef\x88\x82" // U+f202
#define ICON_MS_HOUSE_WITH_SHIELD "\xee\x9e\x86" // U+e786
#define ICON_MS_HOUSEBOAT "\xee\x96\x84" // U+e584
#define ICON_MS_HOUSEHOLD_SUPPLIES "\xee\xbe\xa1" // U+efa1
#define ICON_MS_HOW_TO_REG "\xee\x85\xb4" // U+e174
#define ICON_MS_HOW_TO_VOTE "\xee\x85\xb5" // U+e175
#define ICON_MS_HR_RESTING "\xef\x9a\xba" // U+f6ba
#define ICON_MS_HTML "\xee\xad\xbe" // U+eb7e
#define ICON_MS_HTTP "\xee\xa4\x82" // U+e902
#define ICON_MS_HTTPS "\xee\xa2\x99" // U+e899
#define ICON_MS_HUB "\xee\xa7\xb4" // U+e9f4
#define ICON_MS_HUMERUS "\xef\xa2\x95" // U+f895
#define ICON_MS_HUMERUS_ALT "\xef\xa2\x96" // U+f896
#define ICON_MS_HUMIDITY_HIGH "\xef\x85\xa3" // U+f163
#define ICON_MS_HUMIDITY_INDOOR "\xef\x95\x98" // U+f558
#define ICON_MS_HUMIDITY_LOW "\xef\x85\xa4" // U+f164
#define ICON_MS_HUMIDITY_MID "\xef\x85\xa5" // U+f165
#define ICON_MS_HUMIDITY_PERCENTAGE "\xef\xa1\xbe" // U+f87e
#define ICON_MS_HVAC "\xef\x84\x8e" // U+f10e
#define ICON_MS_ICE_SKATING "\xee\x94\x8b" // U+e50b
#define ICON_MS_ICECREAM "\xee\xa9\xa9" // U+ea69
#define ICON_MS_ID_CARD "\xef\x93\x8a" // U+f4ca
#define ICON_MS_IFL "\xee\x80\xa5" // U+e025
#define ICON_MS_IFRAME "\xef\x9c\x9b" // U+f71b
#define ICON_MS_IFRAME_OFF "\xef\x9c\x9c" // U+f71c
#define ICON_MS_IMAGE "\xee\x8f\xb4" // U+e3f4
#define ICON_MS_IMAGE_ASPECT_RATIO "\xee\x8f\xb5" // U+e3f5
#define ICON_MS_IMAGE_NOT_SUPPORTED "\xef\x84\x96" // U+f116
#define ICON_MS_IMAGE_SEARCH "\xee\x90\xbf" // U+e43f
#define ICON_MS_IMAGESEARCH_ROLLER "\xee\xa6\xb4" // U+e9b4
#define ICON_MS_IMAGESMODE "\xee\xbe\xa2" // U+efa2
#define ICON_MS_IMMUNOLOGY "\xee\x83\xbb" // U+e0fb
#define ICON_MS_IMPORT_CONTACTS "\xee\x83\xa0" // U+e0e0
#define ICON_MS_IMPORT_EXPORT "\xee\xa3\x95" // U+e8d5
#define ICON_MS_IMPORTANT_DEVICES "\xee\xa4\x92" // U+e912
#define ICON_MS_IN_HOME_MODE "\xee\xa0\xb3" // U+e833
#define ICON_MS_INACTIVE_ORDER "\xee\x83\xbc" // U+e0fc
#define ICON_MS_INBOX "\xee\x85\x96" // U+e156
#define ICON_MS_INBOX_CUSTOMIZE "\xef\xa1\x99" // U+f859
#define ICON_MS_INCOMPLETE_CIRCLE "\xee\x9e\x9b" // U+e79b
#define ICON_MS_INDETERMINATE_CHECK_BOX "\xee\xa4\x89" // U+e909
#define ICON_MS_INDETERMINATE_QUESTION_BOX "\xef\x95\xad" // U+f56d
#define ICON_MS_INFO "\xee\xa2\x8e" // U+e88e
#define ICON_MS_INFO_I "\xef\x96\x9b" // U+f59b
#define ICON_MS_INFRARED "\xef\xa1\xbc" // U+f87c
#define ICON_MS_INK_ERASER "\xee\x9b\x90" // U+e6d0
#define ICON_MS_INK_ERASER_OFF "\xee\x9f\xa3" // U+e7e3
#define ICON_MS_INK_HIGHLIGHTER "\xee\x9b\x91" // U+e6d1
#define ICON_MS_INK_HIGHLIGHTER_MOVE "\xef\x94\xa4" // U+f524
#define ICON_MS_INK_MARKER "\xee\x9b\x92" // U+e6d2
#define ICON_MS_INK_PEN "\xee\x9b\x93" // U+e6d3
#define ICON_MS_INPATIENT "\xee\x83\xbe" // U+e0fe
#define ICON_MS_INPUT "\xee\xa2\x90" // U+e890
#define ICON_MS_INPUT_CIRCLE "\xef\x9c\x9a" // U+f71a
#define ICON_MS_INSERT_CHART "\xef\x83\x8c" // U+f0cc
#define ICON_MS_INSERT_CHART_FILLED "\xef\x83\x8c" // U+f0cc
#define ICON_MS_INSERT_CHART_OUTLINED "\xef\x83\x8c" // U+f0cc
#define ICON_MS_INSERT_COMMENT "\xee\x89\x8c" // U+e24c
#define ICON_MS_INSERT_DRIVE_FILE "\xee\x99\xad" // U+e66d
#define ICON_MS_INSERT_EMOTICON "\xee\xa8\xa2" // U+ea22
#define ICON_MS_INSERT_INVITATION "\xee\xa1\xb8" // U+e878
#define ICON_MS_INSERT_LINK "\xee\x89\x90" // U+e250
#define ICON_MS_INSERT_PAGE_BREAK "\xee\xab\x8a" // U+eaca
#define ICON_MS_INSERT_PHOTO "\xee\x8f\xb4" // U+e3f4
#define ICON_MS_INSERT_TEXT "\xef\xa0\xa7" // U+f827
#define ICON_MS_INSIGHTS "\xef\x82\x92" // U+f092
#define ICON_MS_INSTALL_DESKTOP "\xee\xad\xb1" // U+eb71
#define ICON_MS_INSTALL_MOBILE "\xee\xad\xb2" // U+eb72
#define ICON_MS_INSTANT_MIX "\xee\x80\xa6" // U+e026
#define ICON_MS_INTEGRATION_INSTRUCTIONS "\xee\xbd\x94" // U+ef54
#define ICON_MS_INTERACTIVE_SPACE "\xef\x9f\xbf" // U+f7ff
#define ICON_MS_INTERESTS "\xee\x9f\x88" // U+e7c8
#define ICON_MS_INTERPRETER_MODE "\xee\xa0\xbb" // U+e83b
#define ICON_MS_INVENTORY "\xee\x85\xb9" // U+e179
#define ICON_MS_INVENTORY_2 "\xee\x86\xa1" // U+e1a1
#define ICON_MS_INVERT_COLORS "\xee\xa2\x91" // U+e891
#define ICON_MS_INVERT_COLORS_OFF "\xee\x83\x84" // U+e0c4
#define ICON_MS_IOS "\xee\x80\xa7" // U+e027
#define ICON_MS_IOS_SHARE "\xee\x9a\xb8" // U+e6b8
#define ICON_MS_IRON "\xee\x96\x83" // U+e583
#define ICON_MS_ISO "\xee\x8f\xb6" // U+e3f6
#define ICON_MS_JAMBOARD_KIOSK "\xee\xa6\xb5" // U+e9b5
#define ICON_MS_JAVASCRIPT "\xee\xad\xbc" // U+eb7c
#define ICON_MS_JOIN "\xef\xa1\x8f" // U+f84f
#define ICON_MS_JOIN_FULL "\xef\xa1\x8f" // U+f84f
#define ICON_MS_JOIN_INNER "\xee\xab\xb4" // U+eaf4
#define ICON_MS_JOIN_LEFT "\xee\xab\xb2" // U+eaf2
#define ICON_MS_JOIN_RIGHT "\xee\xab\xaa" // U+eaea
#define ICON_MS_JOYSTICK "\xef\x97\xae" // U+f5ee
#define ICON_MS_JUMP_TO_ELEMENT "\xef\x9c\x99" // U+f719
#define ICON_MS_KAYAKING "\xee\x94\x8c" // U+e50c
#define ICON_MS_KEBAB_DINING "\xee\xa1\x82" // U+e842
#define ICON_MS_KEEP "\xef\x80\xa6" // U+f026
#define ICON_MS_KEEP_OFF "\xee\x9b\xb9" // U+e6f9
#define ICON_MS_KEEP_PIN "\xef\x80\xa6" // U+f026
#define ICON_MS_KEEP_PUBLIC "\xef\x95\xaf" // U+f56f
#define ICON_MS_KETTLE "\xee\x8a\xb9" // U+e2b9
#define ICON_MS_KEY "\xee\x9c\xbc" // U+e73c
#define ICON_MS_KEY_OFF "\xee\xae\x84" // U+eb84
#define ICON_MS_KEY_VERTICAL "\xef\x94\x9a" // U+f51a
#define ICON_MS_KEY_VISUALIZER "\xef\x86\x99" // U+f199
#define ICON_MS_KEYBOARD "\xee\x8c\x92" // U+e312
#define ICON_MS_KEYBOARD_ALT "\xef\x80\xa8" // U+f028
#define ICON_MS_KEYBOARD_ARROW_DOWN "\xee\x8c\x93" // U+e313
#define ICON_MS_KEYBOARD_ARROW_LEFT "\xee\x8c\x94" // U+e314
#define ICON_MS_KEYBOARD_ARROW_RIGHT "\xee\x8c\x95" // U+e315
#define ICON_MS_KEYBOARD_ARROW_UP "\xee\x8c\x96" // U+e316
#define ICON_MS_KEYBOARD_BACKSPACE "\xee\x8c\x97" // U+e317
#define ICON_MS_KEYBOARD_CAPSLOCK "\xee\x8c\x98" // U+e318
#define ICON_MS_KEYBOARD_CAPSLOCK_BADGE "\xef\x9f\x9e" // U+f7de
#define ICON_MS_KEYBOARD_COMMAND_KEY "\xee\xab\xa7" // U+eae7
#define ICON_MS_KEYBOARD_CONTROL_KEY "\xee\xab\xa6" // U+eae6
#define ICON_MS_KEYBOARD_DOUBLE_ARROW_DOWN "\xee\xab\x90" // U+ead0
#define ICON_MS_KEYBOARD_DOUBLE_ARROW_LEFT "\xee\xab\x83" // U+eac3
#define ICON_MS_KEYBOARD_DOUBLE_ARROW_RIGHT "\xee\xab\x89" // U+eac9
#define ICON_MS_KEYBOARD_DOUBLE_ARROW_UP "\xee\xab\x8f" // U+eacf
#define ICON_MS_KEYBOARD_EXTERNAL_INPUT "\xef\x9f\x9d" // U+f7dd
#define ICON_MS_KEYBOARD_FULL "\xef\x9f\x9c" // U+f7dc
#define ICON_MS_KEYBOARD_HIDE "\xee\x8c\x9a" // U+e31a
#define ICON_MS_KEYBOARD_KEYS "\xef\x99\xbb" // U+f67b
#define ICON_MS_KEYBOARD_LOCK "\xef\x92\x92" // U+f492
#define ICON_MS_KEYBOARD_LOCK_OFF "\xef\x92\x91" // U+f491
#define ICON_MS_KEYBOARD_OFF "\xef\x99\xba" // U+f67a
#define ICON_MS_KEYBOARD_ONSCREEN "\xef\x9f\x9b" // U+f7db
#define ICON_MS_KEYBOARD_OPTION_KEY "\xee\xab\xa8" // U+eae8
#define ICON_MS_KEYBOARD_PREVIOUS_LANGUAGE "\xef\x9f\x9a" // U+f7da
#define ICON_MS_KEYBOARD_RETURN "\xee\x8c\x9b" // U+e31b
#define ICON_MS_KEYBOARD_TAB "\xee\x8c\x9c" // U+e31c
#define ICON_MS_KEYBOARD_TAB_RTL "\xee\xb1\xb3" // U+ec73
#define ICON_MS_KEYBOARD_VOICE "\xee\x8c\x9d" // U+e31d
#define ICON_MS_KID_STAR "\xef\x94\xa6" // U+f526
#define ICON_MS_KING_BED "\xee\xa9\x85" // U+ea45
#define ICON_MS_KITCHEN "\xee\xad\x87" // U+eb47
#define ICON_MS_KITESURFING "\xee\x94\x8d" // U+e50d
#define ICON_MS_LAB_PANEL "\xee\x84\x83" // U+e103
#define ICON_MS_LAB_PROFILE "\xee\x84\x84" // U+e104
#define ICON_MS_LAB_RESEARCH "\xef\xa0\x8b" // U+f80b
#define ICON_MS_LABEL "\xee\xa2\x93" // U+e893
#define ICON_MS_LABEL_IMPORTANT "\xee\xa5\x88" // U+e948
#define ICON_MS_LABEL_IMPORTANT_OUTLINE "\xee\xa5\x88" // U+e948
#define ICON_MS_LABEL_OFF "\xee\xa6\xb6" // U+e9b6
#define ICON_MS_LABEL_OUTLINE "\xee\xa2\x93" // U+e893
#define ICON_MS_LABS "\xee\x84\x85" // U+e105
#define ICON_MS_LAN "\xee\xac\xaf" // U+eb2f
#define ICON_MS_LANDSCAPE "\xee\x95\xa4" // U+e564
#define ICON_MS_LANDSCAPE_2 "\xef\x93\x84" // U+f4c4
#define ICON_MS_LANDSCAPE_2_OFF "\xef\x93\x83" // U+f4c3
#define ICON_MS_LANDSLIDE "\xee\xaf\x97" // U+ebd7
#define ICON_MS_LANGUAGE "\xee\xa2\x94" // U+e894
#define ICON_MS_LANGUAGE_CHINESE_ARRAY "\xef\x9d\xa6" // U+f766
#define ICON_MS_LANGUAGE_CHINESE_CANGJIE "\xef\x9d\xa5" // U+f765
#define ICON_MS_LANGUAGE_CHINESE_DAYI "\xef\x9d\xa4" // U+f764
#define ICON_MS_LANGUAGE_CHINESE_PINYIN "\xef\x9d\xa3" // U+f763
#define ICON_MS_LANGUAGE_CHINESE_QUICK "\xef\x9d\xa2" // U+f762
#define ICON_MS_LANGUAGE_CHINESE_WUBI "\xef\x9d\xa1" // U+f761
#define ICON_MS_LANGUAGE_FRENCH "\xef\x9d\xa0" // U+f760
#define ICON_MS_LANGUAGE_GB_ENGLISH "\xef\x9d\x9f" // U+f75f
#define ICON_MS_LANGUAGE_INTERNATIONAL "\xef\x9d\x9e" // U+f75e
#define ICON_MS_LANGUAGE_JAPANESE_KANA "\xef\x94\x93" // U+f513
#define ICON_MS_LANGUAGE_KOREAN_LATIN "\xef\x9d\x9d" // U+f75d
#define ICON_MS_LANGUAGE_PINYIN "\xef\x9d\x9c" // U+f75c
#define ICON_MS_LANGUAGE_SPANISH "\xef\x97\xa9" // U+f5e9
#define ICON_MS_LANGUAGE_US "\xef\x9d\x99" // U+f759
#define ICON_MS_LANGUAGE_US_COLEMAK "\xef\x9d\x9b" // U+f75b
#define ICON_MS_LANGUAGE_US_DVORAK "\xef\x9d\x9a" // U+f75a
#define ICON_MS_LAPS "\xef\x9a\xb9" // U+f6b9
#define ICON_MS_LAPTOP "\xee\x8c\x9e" // U+e31e
#define ICON_MS_LAPTOP_CHROMEBOOK "\xee\x8c\x9f" // U+e31f
#define ICON_MS_LAPTOP_MAC "\xee\x8c\xa0" // U+e320
#define ICON_MS_LAPTOP_WINDOWS "\xee\x8c\xa1" // U+e321
#define ICON_MS_LASSO_SELECT "\xee\xac\x83" // U+eb03
#define ICON_MS_LAST_PAGE "\xee\x97\x9d" // U+e5dd
#define ICON_MS_LAUNCH "\xee\xa2\x9e" // U+e89e
#define ICON_MS_LAUNDRY "\xee\x8a\xa8" // U+e2a8
#define ICON_MS_LAYERS "\xee\x94\xbb" // U+e53b
#define ICON_MS_LAYERS_CLEAR "\xee\x94\xbc" // U+e53c
#define ICON_MS_LDA "\xee\x84\x86" // U+e106
#define ICON_MS_LEADERBOARD "\xef\x88\x8c" // U+f20c
#define ICON_MS_LEAK_ADD "\xee\x8f\xb8" // U+e3f8
#define ICON_MS_LEAK_REMOVE "\xee\x8f\xb9" // U+e3f9
#define ICON_MS_LEFT_CLICK "\xef\x9c\x98" // U+f718
#define ICON_MS_LEFT_PANEL_CLOSE "\xef\x9c\x97" // U+f717
#define ICON_MS_LEFT_PANEL_OPEN "\xef\x9c\x96" // U+f716
#define ICON_MS_LEGEND_TOGGLE "\xef\x84\x9b" // U+f11b
#define ICON_MS_LENS "\xee\x8f\xba" // U+e3fa
#define ICON_MS_LENS_BLUR "\xef\x80\xa9" // U+f029
#define ICON_MS_LETTER_SWITCH "\xef\x9d\x98" // U+f758
#define ICON_MS_LIBRARY_ADD "\xee\x80\xbc" // U+e03c
#define ICON_MS_LIBRARY_ADD_CHECK "\xee\xa6\xb7" // U+e9b7
#define ICON_MS_LIBRARY_BOOKS "\xee\x80\xaf" // U+e02f
#define ICON_MS_LIBRARY_MUSIC "\xee\x80\xb0" // U+e030
#define ICON_MS_LICENSE "\xee\xac\x84" // U+eb04
#define ICON_MS_LIFT_TO_TALK "\xee\xbe\xa3" // U+efa3
#define ICON_MS_LIGHT "\xef\x80\xaa" // U+f02a
#define ICON_MS_LIGHT_GROUP "\xee\x8a\x8b" // U+e28b
#define ICON_MS_LIGHT_MODE "\xee\x94\x98" // U+e518
#define ICON_MS_LIGHT_OFF "\xee\xa6\xb8" // U+e9b8
#define ICON_MS_LIGHTBULB "\xee\xa4\x8f" // U+e90f
#define ICON_MS_LIGHTBULB_CIRCLE "\xee\xaf\xbe" // U+ebfe
#define ICON_MS_LIGHTBULB_OUTLINE "\xee\xa4\x8f" // U+e90f
#define ICON_MS_LIGHTNING_STAND "\xee\xbe\xa4" // U+efa4
#define ICON_MS_LINE_AXIS "\xee\xaa\x9a" // U+ea9a
#define ICON_MS_LINE_CURVE "\xef\x9d\x97" // U+f757
#define ICON_MS_LINE_END "\xef\xa0\xa6" // U+f826
#define ICON_MS_LINE_END_ARROW "\xef\xa0\x9d" // U+f81d
#define ICON_MS_LINE_END_ARROW_NOTCH "\xef\xa0\x9c" // U+f81c
#define ICON_MS_LINE_END_CIRCLE "\xef\xa0\x9b" // U+f81b
#define ICON_MS_LINE_END_DIAMOND "\xef\xa0\x9a" // U+f81a
#define ICON_MS_LINE_END_SQUARE "\xef\xa0\x99" // U+f819
#define ICON_MS_LINE_START "\xef\xa0\xa5" // U+f825
#define ICON_MS_LINE_START_ARROW "\xef\xa0\x98" // U+f818
#define ICON_MS_LINE_START_ARROW_NOTCH "\xef\xa0\x97" // U+f817
#define ICON_MS_LINE_START_CIRCLE "\xef\xa0\x96" // U+f816
#define ICON_MS_LINE_START_DIAMOND "\xef\xa0\x95" // U+f815
#define ICON_MS_LINE_START_SQUARE "\xef\xa0\x94" // U+f814
#define ICON_MS_LINE_STYLE "\xee\xa4\x99" // U+e919
#define ICON_MS_LINE_WEIGHT "\xee\xa4\x9a" // U+e91a
#define ICON_MS_LINEAR_SCALE "\xee\x89\xa0" // U+e260
#define ICON_MS_LINK "\xee\x89\x90" // U+e250
#define ICON_MS_LINK_OFF "\xee\x85\xaf" // U+e16f
#define ICON_MS_LINKED_CAMERA "\xee\x90\xb8" // U+e438
#define ICON_MS_LINKED_SERVICES "\xef\x94\xb5" // U+f535
#define ICON_MS_LIQUOR "\xee\xa9\xa0" // U+ea60
#define ICON_MS_LIST "\xee\xa2\x96" // U+e896
#define ICON_MS_LIST_ALT "\xee\x83\xae" // U+e0ee
#define ICON_MS_LIST_ALT_ADD "\xef\x9d\x96" // U+f756
#define ICON_MS_LISTS "\xee\xa6\xb9" // U+e9b9
#define ICON_MS_LIVE_HELP "\xee\x83\x86" // U+e0c6
#define ICON_MS_LIVE_TV "\xee\x98\xba" // U+e63a
#define ICON_MS_LIVING "\xef\x80\xab" // U+f02b
#define ICON_MS_LOCAL_ACTIVITY "\xee\x95\x93" // U+e553
#define ICON_MS_LOCAL_AIRPORT "\xee\x94\xbd" // U+e53d
#define ICON_MS_LOCAL_ATM "\xee\x94\xbe" // U+e53e
#define ICON_MS_LOCAL_BAR "\xee\x95\x80" // U+e540
#define ICON_MS_LOCAL_CAFE "\xee\xad\x84" // U+eb44
#define ICON_MS_LOCAL_CAR_WASH "\xee\x95\x82" // U+e542
#define ICON_MS_LOCAL_CONVENIENCE_STORE "\xee\x95\x83" // U+e543
#define ICON_MS_LOCAL_DINING "\xee\x95\xa1" // U+e561
#define ICON_MS_LOCAL_DRINK "\xee\x95\x84" // U+e544
#define ICON_MS_LOCAL_FIRE_DEPARTMENT "\xee\xbd\x95" // U+ef55
#define ICON_MS_LOCAL_FLORIST "\xee\x95\x85" // U+e545
#define ICON_MS_LOCAL_GAS_STATION "\xee\x95\x86" // U+e546
#define ICON_MS_LOCAL_GROCERY_STORE "\xee\xa3\x8c" // U+e8cc
#define ICON_MS_LOCAL_HOSPITAL "\xee\x95\x88" // U+e548
#define ICON_MS_LOCAL_HOTEL "\xee\x95\x89" // U+e549
#define ICON_MS_LOCAL_LAUNDRY_SERVICE "\xee\x95\x8a" // U+e54a
#define ICON_MS_LOCAL_LIBRARY "\xee\x95\x8b" // U+e54b
#define ICON_MS_LOCAL_MALL "\xee\x95\x8c" // U+e54c
#define ICON_MS_LOCAL_MOVIES "\xee\xa3\x9a" // U+e8da
#define ICON_MS_LOCAL_OFFER "\xef\x81\x9b" // U+f05b
#define ICON_MS_LOCAL_PARKING "\xee\x95\x8f" // U+e54f
#define ICON_MS_LOCAL_PHARMACY "\xee\x95\x90" // U+e550
#define ICON_MS_LOCAL_PHONE "\xef\x83\x94" // U+f0d4
#define ICON_MS_LOCAL_PIZZA "\xee\x95\x92" // U+e552
#define ICON_MS_LOCAL_PLAY "\xee\x95\x93" // U+e553
#define ICON_MS_LOCAL_POLICE "\xee\xbd\x96" // U+ef56
#define ICON_MS_LOCAL_POST_OFFICE "\xee\x95\x94" // U+e554
#define ICON_MS_LOCAL_PRINTSHOP "\xee\xa2\xad" // U+e8ad
#define ICON_MS_LOCAL_SEE "\xee\x95\x97" // U+e557
#define ICON_MS_LOCAL_SHIPPING "\xee\x95\x98" // U+e558
#define ICON_MS_LOCAL_TAXI "\xee\x95\x99" // U+e559
#define ICON_MS_LOCATION_AUTOMATION "\xef\x85\x8f" // U+f14f
#define ICON_MS_LOCATION_AWAY "\xef\x85\x90" // U+f150
#define ICON_MS_LOCATION_CHIP "\xef\xa1\x90" // U+f850
#define ICON_MS_LOCATION_CITY "\xee\x9f\xb1" // U+e7f1
#define ICON_MS_LOCATION_DISABLED "\xee\x86\xb6" // U+e1b6
#define ICON_MS_LOCATION_HOME "\xef\x85\x92" // U+f152
#define ICON_MS_LOCATION_OFF "\xee\x83\x87" // U+e0c7
#define ICON_MS_LOCATION_ON "\xef\x87\x9b" // U+f1db
#define ICON_MS_LOCATION_PIN "\xef\x87\x9b" // U+f1db
#define ICON_MS_LOCATION_SEARCHING "\xee\x86\xb7" // U+e1b7
#define ICON_MS_LOCATOR_TAG "\xef\xa3\x81" // U+f8c1
#define ICON_MS_LOCK "\xee\xa2\x99" // U+e899
#define ICON_MS_LOCK_CLOCK "\xee\xbd\x97" // U+ef57
#define ICON_MS_LOCK_OPEN "\xee\xa2\x98" // U+e898
#define ICON_MS_LOCK_OPEN_RIGHT "\xef\x99\x96" // U+f656
#define ICON_MS_LOCK_OUTLINE "\xee\xa2\x99" // U+e899
#define ICON_MS_LOCK_PERSON "\xef\xa3\xb3" // U+f8f3
#define ICON_MS_LOCK_RESET "\xee\xab\x9e" // U+eade
#define ICON_MS_LOGIN "\xee\xa9\xb7" // U+ea77
#define ICON_MS_LOGO_DEV "\xee\xab\x96" // U+ead6
#define ICON_MS_LOGOUT "\xee\xa6\xba" // U+e9ba
#define ICON_MS_LOOKS "\xee\x8f\xbc" // U+e3fc
#define ICON_MS_LOOKS_3 "\xee\x8f\xbb" // U+e3fb
#define ICON_MS_LOOKS_4 "\xee\x8f\xbd" // U+e3fd
#define ICON_MS_LOOKS_5 "\xee\x8f\xbe" // U+e3fe
#define ICON_MS_LOOKS_6 "\xee\x8f\xbf" // U+e3ff
#define ICON_MS_LOOKS_ONE "\xee\x90\x80" // U+e400
#define ICON_MS_LOOKS_TWO "\xee\x90\x81" // U+e401
#define ICON_MS_LOOP "\xee\xa1\xa3" // U+e863
#define ICON_MS_LOUPE "\xee\x90\x82" // U+e402
#define ICON_MS_LOW_DENSITY "\xef\x9e\x9b" // U+f79b
#define ICON_MS_LOW_PRIORITY "\xee\x85\xad" // U+e16d
#define ICON_MS_LOWERCASE "\xef\x92\x8a" // U+f48a
#define ICON_MS_LOYALTY "\xee\xa2\x9a" // U+e89a
#define ICON_MS_LTE_MOBILEDATA "\xef\x80\xac" // U+f02c
#define ICON_MS_LTE_MOBILEDATA_BADGE "\xef\x9f\x99" // U+f7d9
#define ICON_MS_LTE_PLUS_MOBILEDATA "\xef\x80\xad" // U+f02d
#define ICON_MS_LTE_PLUS_MOBILEDATA_BADGE "\xef\x9f\x98" // U+f7d8
#define ICON_MS_LUGGAGE "\xef\x88\xb5" // U+f235
#define ICON_MS_LUNCH_DINING "\xee\xa9\xa1" // U+ea61
#define ICON_MS_LYRICS "\xee\xb0\x8b" // U+ec0b
#define ICON_MS_MACRO_AUTO "\xef\x9b\xb2" // U+f6f2
#define ICON_MS_MACRO_OFF "\xef\xa3\x92" // U+f8d2
#define ICON_MS_MAGIC_BUTTON "\xef\x84\xb6" // U+f136
#define ICON_MS_MAGIC_EXCHANGE "\xef\x9f\xb4" // U+f7f4
#define ICON_MS_MAGIC_TETHER "\xef\x9f\x97" // U+f7d7
#define ICON_MS_MAGNIFICATION_LARGE "\xef\xa0\xbd" // U+f83d
#define ICON_MS_MAGNIFICATION_SMALL "\xef\xa0\xbc" // U+f83c
#define ICON_MS_MAGNIFY_DOCKED "\xef\x9f\x96" // U+f7d6
#define ICON_MS_MAGNIFY_FULLSCREEN "\xef\x9f\x95" // U+f7d5
#define ICON_MS_MAIL "\xee\x85\x99" // U+e159
#define ICON_MS_MAIL_LOCK "\xee\xb0\x8a" // U+ec0a
#define ICON_MS_MAIL_OFF "\xef\x92\x8b" // U+f48b
#define ICON_MS_MAIL_OUTLINE "\xee\x85\x99" // U+e159
#define ICON_MS_MALE "\xee\x96\x8e" // U+e58e
#define ICON_MS_MAN "\xee\x93\xab" // U+e4eb
#define ICON_MS_MAN_2 "\xef\xa3\xa1" // U+f8e1
#define ICON_MS_MAN_3 "\xef\xa3\xa2" // U+f8e2
#define ICON_MS_MAN_4 "\xef\xa3\xa3" // U+f8e3
#define ICON_MS_MANAGE_ACCOUNTS "\xef\x80\xae" // U+f02e
#define ICON_MS_MANAGE_HISTORY "\xee\xaf\xa7" // U+ebe7
#define ICON_MS_MANAGE_SEARCH "\xef\x80\xaf" // U+f02f
#define ICON_MS_MANGA "\xef\x97\xa3" // U+f5e3
#define ICON_MS_MANUFACTURING "\xee\x9c\xa6" // U+e726
#define ICON_MS_MAP "\xee\x95\x9b" // U+e55b
#define ICON_MS_MAPS_HOME_WORK "\xef\x80\xb0" // U+f030
#define ICON_MS_MAPS_UGC "\xee\xbd\x98" // U+ef58
#define ICON_MS_MARGIN "\xee\xa6\xbb" // U+e9bb
#define ICON_MS_MARK_AS_UNREAD "\xee\xa6\xbc" // U+e9bc
#define ICON_MS_MARK_CHAT_READ "\xef\x86\x8b" // U+f18b
#define ICON_MS_MARK_CHAT_UNREAD "\xef\x86\x89" // U+f189
#define ICON_MS_MARK_EMAIL_READ "\xef\x86\x8c" // U+f18c
#define ICON_MS_MARK_EMAIL_UNREAD "\xef\x86\x8a" // U+f18a
#define ICON_MS_MARK_UNREAD_CHAT_ALT "\xee\xae\x9d" // U+eb9d
#define ICON_MS_MARKDOWN "\xef\x95\x92" // U+f552
#define ICON_MS_MARKDOWN_COPY "\xef\x95\x93" // U+f553
#define ICON_MS_MARKDOWN_PASTE "\xef\x95\x94" // U+f554
#define ICON_MS_MARKUNREAD "\xee\x85\x99" // U+e159
#define ICON_MS_MARKUNREAD_MAILBOX "\xee\xa2\x9b" // U+e89b
#define ICON_MS_MASKED_TRANSITIONS "\xee\x9c\xae" // U+e72e
#define ICON_MS_MASKS "\xef\x88\x98" // U+f218
#define ICON_MS_MATCH_CASE "\xef\x9b\xb1" // U+f6f1
#define ICON_MS_MATCH_WORD "\xef\x9b\xb0" // U+f6f0
#define ICON_MS_MATTER "\xee\xa4\x87" // U+e907
#define ICON_MS_MAXIMIZE "\xee\xa4\xb0" // U+e930
#define ICON_MS_MEASURING_TAPE "\xef\x9a\xaf" // U+f6af
#define ICON_MS_MEDIA_BLUETOOTH_OFF "\xef\x80\xb1" // U+f031
#define ICON_MS_MEDIA_BLUETOOTH_ON "\xef\x80\xb2" // U+f032
#define ICON_MS_MEDIA_LINK "\xef\xa0\xbf" // U+f83f
#define ICON_MS_MEDIA_OUTPUT "\xef\x93\xb2" // U+f4f2
#define ICON_MS_MEDIA_OUTPUT_OFF "\xef\x93\xb3" // U+f4f3
#define ICON_MS_MEDIATION "\xee\xbe\xa7" // U+efa7
#define ICON_MS_MEDICAL_INFORMATION "\xee\xaf\xad" // U+ebed
#define ICON_MS_MEDICAL_MASK "\xef\xa0\x8a" // U+f80a
#define ICON_MS_MEDICAL_SERVICES "\xef\x84\x89" // U+f109
#define ICON_MS_MEDICATION "\xef\x80\xb3" // U+f033
#define ICON_MS_MEDICATION_LIQUID "\xee\xaa\x87" // U+ea87
#define ICON_MS_MEETING_ROOM "\xee\xad\x8f" // U+eb4f
#define ICON_MS_MEMORY "\xee\x8c\xa2" // U+e322
#define ICON_MS_MEMORY_ALT "\xef\x9e\xa3" // U+f7a3
#define ICON_MS_MENSTRUAL_HEALTH "\xef\x9b\xa1" // U+f6e1
#define ICON_MS_MENU "\xee\x97\x92" // U+e5d2
#define ICON_MS_MENU_BOOK "\xee\xa8\x99" // U+ea19
#define ICON_MS_MENU_OPEN "\xee\xa6\xbd" // U+e9bd
#define ICON_MS_MERGE "\xee\xae\x98" // U+eb98
#define ICON_MS_MERGE_TYPE "\xee\x89\x92" // U+e252
#define ICON_MS_MESSAGE "\xee\x83\x89" // U+e0c9
#define ICON_MS_METABOLISM "\xee\x84\x8b" // U+e10b
#define ICON_MS_MFG_NEST_YALE_LOCK "\xef\x84\x9d" // U+f11d
#define ICON_MS_MIC "\xee\x8c\x9d" // U+e31d
#define ICON_MS_MIC_DOUBLE "\xef\x97\x91" // U+f5d1
#define ICON_MS_MIC_EXTERNAL_OFF "\xee\xbd\x99" // U+ef59
#define ICON_MS_MIC_EXTERNAL_ON "\xee\xbd\x9a" // U+ef5a
#define ICON_MS_MIC_NONE "\xee\x8c\x9d" // U+e31d
#define ICON_MS_MIC_OFF "\xee\x80\xab" // U+e02b
#define ICON_MS_MICROBIOLOGY "\xee\x84\x8c" // U+e10c
#define ICON_MS_MICROWAVE "\xef\x88\x84" // U+f204
#define ICON_MS_MICROWAVE_GEN "\xee\xa1\x87" // U+e847
#define ICON_MS_MILITARY_TECH "\xee\xa8\xbf" // U+ea3f
#define ICON_MS_MIMO "\xee\xa6\xbe" // U+e9be
#define ICON_MS_MIMO_DISCONNECT "\xee\xa6\xbf" // U+e9bf
#define ICON_MS_MINDFULNESS "\xef\x9b\xa0" // U+f6e0
#define ICON_MS_MINIMIZE "\xee\xa4\xb1" // U+e931
#define ICON_MS_MINOR_CRASH "\xee\xaf\xb1" // U+ebf1
#define ICON_MS_MINTMARK "\xee\xbe\xa9" // U+efa9
#define ICON_MS_MISSED_VIDEO_CALL "\xef\x83\x8e" // U+f0ce
#define ICON_MS_MISSED_VIDEO_CALL_FILLED "\xef\x83\x8e" // U+f0ce
#define ICON_MS_MISSING_CONTROLLER "\xee\x9c\x81" // U+e701
#define ICON_MS_MIST "\xee\x86\x88" // U+e188
#define ICON_MS_MITRE "\xef\x95\x87" // U+f547
#define ICON_MS_MIXTURE_MED "\xee\x93\x88" // U+e4c8
#define ICON_MS_MMS "\xee\x98\x98" // U+e618
#define ICON_MS_MOBILE_FRIENDLY "\xee\x88\x80" // U+e200
#define ICON_MS_MOBILE_OFF "\xee\x88\x81" // U+e201
#define ICON_MS_MOBILE_SCREEN_SHARE "\xee\x83\xa7" // U+e0e7
#define ICON_MS_MOBILEDATA_OFF "\xef\x80\xb4" // U+f034
#define ICON_MS_MODE "\xef\x82\x97" // U+f097
#define ICON_MS_MODE_COMMENT "\xee\x89\x93" // U+e253
#define ICON_MS_MODE_COOL "\xef\x85\xa6" // U+f166
#define ICON_MS_MODE_COOL_OFF "\xef\x85\xa7" // U+f167
#define ICON_MS_MODE_DUAL "\xef\x95\x97" // U+f557
#define ICON_MS_MODE_EDIT "\xef\x82\x97" // U+f097
#define ICON_MS_MODE_EDIT_OUTLINE "\xef\x82\x97" // U+f097
#define ICON_MS_MODE_FAN "\xef\x85\xa8" // U+f168
#define ICON_MS_MODE_FAN_OFF "\xee\xb0\x97" // U+ec17
#define ICON_MS_MODE_HEAT "\xef\x85\xaa" // U+f16a
#define ICON_MS_MODE_HEAT_COOL "\xef\x85\xab" // U+f16b
#define ICON_MS_MODE_HEAT_OFF "\xef\x85\xad" // U+f16d
#define ICON_MS_MODE_NIGHT "\xef\x80\xb6" // U+f036
#define ICON_MS_MODE_OF_TRAVEL "\xee\x9f\x8e" // U+e7ce
#define ICON_MS_MODE_OFF_ON "\xef\x85\xaf" // U+f16f
#define ICON_MS_MODE_STANDBY "\xef\x80\xb7" // U+f037
#define ICON_MS_MODEL_TRAINING "\xef\x83\x8f" // U+f0cf
#define ICON_MS_MONETIZATION_ON "\xee\x89\xa3" // U+e263
#define ICON_MS_MONEY "\xee\x95\xbd" // U+e57d
#define ICON_MS_MONEY_OFF "\xef\x80\xb8" // U+f038
#define ICON_MS_MONEY_OFF_CSRED "\xef\x80\xb8" // U+f038
#define ICON_MS_MONITOR "\xee\xbd\x9b" // U+ef5b
#define ICON_MS_MONITOR_HEART "\xee\xaa\xa2" // U+eaa2
#define ICON_MS_MONITOR_WEIGHT "\xef\x80\xb9" // U+f039
#define ICON_MS_MONITOR_WEIGHT_GAIN "\xef\x9b\x9f" // U+f6df
#define ICON_MS_MONITOR_WEIGHT_LOSS "\xef\x9b\x9e" // U+f6de
#define ICON_MS_MONITORING "\xef\x86\x90" // U+f190
#define ICON_MS_MONOCHROME_PHOTOS "\xee\x90\x83" // U+e403
#define ICON_MS_MOOD "\xee\xa8\xa2" // U+ea22
#define ICON_MS_MOOD_BAD "\xee\x9f\xb3" // U+e7f3
#define ICON_MS_MOP "\xee\x8a\x8d" // U+e28d
#define ICON_MS_MORE "\xee\x98\x99" // U+e619
#define ICON_MS_MORE_DOWN "\xef\x86\x96" // U+f196
#define ICON_MS_MORE_HORIZ "\xee\x97\x93" // U+e5d3
#define ICON_MS_MORE_TIME "\xee\xa9\x9d" // U+ea5d
#define ICON_MS_MORE_UP "\xef\x86\x97" // U+f197
#define ICON_MS_MORE_VERT "\xee\x97\x94" // U+e5d4
#define ICON_MS_MOSQUE "\xee\xaa\xb2" // U+eab2
#define ICON_MS_MOTION_BLUR "\xef\x83\x90" // U+f0d0
#define ICON_MS_MOTION_MODE "\xef\xa1\x82" // U+f842
#define ICON_MS_MOTION_PHOTOS_AUTO "\xef\x80\xba" // U+f03a
#define ICON_MS_MOTION_PHOTOS_OFF "\xee\xa7\x80" // U+e9c0
#define ICON_MS_MOTION_PHOTOS_ON "\xee\xa7\x81" // U+e9c1
#define ICON_MS_MOTION_PHOTOS_PAUSE "\xef\x88\xa7" // U+f227
#define ICON_MS_MOTION_PHOTOS_PAUSED "\xef\x88\xa7" // U+f227
#define ICON_MS_MOTION_SENSOR_ACTIVE "\xee\x9e\x92" // U+e792
#define ICON_MS_MOTION_SENSOR_ALERT "\xee\x9e\x84" // U+e784
#define ICON_MS_MOTION_SENSOR_IDLE "\xee\x9e\x83" // U+e783
#define ICON_MS_MOTION_SENSOR_URGENT "\xee\x9e\x8e" // U+e78e
#define ICON_MS_MOTORCYCLE "\xee\xa4\x9b" // U+e91b
#define ICON_MS_MOUNTAIN_FLAG "\xef\x97\xa2" // U+f5e2
#define ICON_MS_MOUSE "\xee\x8c\xa3" // U+e323
#define ICON_MS_MOUSE_LOCK "\xef\x92\x90" // U+f490
#define ICON_MS_MOUSE_LOCK_OFF "\xef\x92\x8f" // U+f48f
#define ICON_MS_MOVE "\xee\x9d\x80" // U+e740
#define ICON_MS_MOVE_DOWN "\xee\xad\xa1" // U+eb61
#define ICON_MS_MOVE_GROUP "\xef\x9c\x95" // U+f715
#define ICON_MS_MOVE_ITEM "\xef\x87\xbf" // U+f1ff
#define ICON_MS_MOVE_LOCATION "\xee\x9d\x81" // U+e741
#define ICON_MS_MOVE_SELECTION_DOWN "\xef\x9c\x94" // U+f714
#define ICON_MS_MOVE_SELECTION_LEFT "\xef\x9c\x93" // U+f713
#define ICON_MS_MOVE_SELECTION_RIGHT "\xef\x9c\x92" // U+f712
#define ICON_MS_MOVE_SELECTION_UP "\xef\x9c\x91" // U+f711
#define ICON_MS_MOVE_TO_INBOX "\xee\x85\xa8" // U+e168
#define ICON_MS_MOVE_UP "\xee\xad\xa4" // U+eb64
#define ICON_MS_MOVED_LOCATION "\xee\x96\x94" // U+e594
#define ICON_MS_MOVIE "\xee\x90\x84" // U+e404
#define ICON_MS_MOVIE_CREATION "\xee\x90\x84" // U+e404
#define ICON_MS_MOVIE_EDIT "\xef\xa1\x80" // U+f840
#define ICON_MS_MOVIE_FILTER "\xee\x90\xba" // U+e43a
#define ICON_MS_MOVIE_INFO "\xee\x80\xad" // U+e02d
#define ICON_MS_MOVIE_OFF "\xef\x92\x99" // U+f499
#define ICON_MS_MOVING "\xee\x94\x81" // U+e501
#define ICON_MS_MOVING_BEDS "\xee\x9c\xbd" // U+e73d
#define ICON_MS_MOVING_MINISTRY "\xee\x9c\xbe" // U+e73e
#define ICON_MS_MP "\xee\xa7\x83" // U+e9c3
#define ICON_MS_MULTICOOKER "\xee\x8a\x93" // U+e293
#define ICON_MS_MULTILINE_CHART "\xee\x9b\x9f" // U+e6df
#define ICON_MS_MULTIPLE_STOP "\xef\x86\xb9" // U+f1b9
#define ICON_MS_MUSEUM "\xee\xa8\xb6" // U+ea36
#define ICON_MS_MUSIC_CAST "\xee\xac\x9a" // U+eb1a
#define ICON_MS_MUSIC_NOTE "\xee\x90\x85" // U+e405
#define ICON_MS_MUSIC_OFF "\xee\x91\x80" // U+e440
#define ICON_MS_MUSIC_VIDEO "\xee\x81\xa3" // U+e063
#define ICON_MS_MY_LOCATION "\xee\x95\x9c" // U+e55c
#define ICON_MS_MYSTERY "\xef\x97\xa1" // U+f5e1
#define ICON_MS_NAT "\xee\xbd\x9c" // U+ef5c
#define ICON_MS_NATURE "\xee\x90\x86" // U+e406
#define ICON_MS_NATURE_PEOPLE "\xee\x90\x87" // U+e407
#define ICON_MS_NAVIGATE_BEFORE "\xee\x90\x88" // U+e408
#define ICON_MS_NAVIGATE_NEXT "\xee\x90\x89" // U+e409
#define ICON_MS_NAVIGATION "\xee\x95\x9d" // U+e55d
#define ICON_MS_NEAR_ME "\xee\x95\xa9" // U+e569
#define ICON_MS_NEAR_ME_DISABLED "\xef\x87\xaf" // U+f1ef
#define ICON_MS_NEARBY "\xee\x9a\xb7" // U+e6b7
#define ICON_MS_NEARBY_ERROR "\xef\x80\xbb" // U+f03b
#define ICON_MS_NEARBY_OFF "\xef\x80\xbc" // U+f03c
#define ICON_MS_NEPHROLOGY "\xee\x84\x8d" // U+e10d
#define ICON_MS_NEST_AUDIO "\xee\xae\xbf" // U+ebbf
#define ICON_MS_NEST_CAM_FLOODLIGHT "\xef\xa2\xb7" // U+f8b7
#define ICON_MS_NEST_CAM_INDOOR "\xef\x84\x9e" // U+f11e
#define ICON_MS_NEST_CAM_IQ "\xef\x84\x9f" // U+f11f
#define ICON_MS_NEST_CAM_IQ_OUTDOOR "\xef\x84\xa0" // U+f120
#define ICON_MS_NEST_CAM_MAGNET_MOUNT "\xef\xa2\xb8" // U+f8b8
#define ICON_MS_NEST_CAM_OUTDOOR "\xef\x84\xa1" // U+f121
#define ICON_MS_NEST_CAM_STAND "\xef\xa2\xb9" // U+f8b9
#define ICON_MS_NEST_CAM_WALL_MOUNT "\xef\xa2\xba" // U+f8ba
#define ICON_MS_NEST_CAM_WIRED_STAND "\xee\xb0\x96" // U+ec16
#define ICON_MS_NEST_CLOCK_FARSIGHT_ANALOG "\xef\xa2\xbb" // U+f8bb
#define ICON_MS_NEST_CLOCK_FARSIGHT_DIGITAL "\xef\xa2\xbc" // U+f8bc
#define ICON_MS_NEST_CONNECT "\xef\x84\xa2" // U+f122
#define ICON_MS_NEST_DETECT "\xef\x84\xa3" // U+f123
#define ICON_MS_NEST_DISPLAY "\xef\x84\xa4" // U+f124
#define ICON_MS_NEST_DISPLAY_MAX "\xef\x84\xa5" // U+f125
#define ICON_MS_NEST_DOORBELL_VISITOR "\xef\xa2\xbd" // U+f8bd
#define ICON_MS_NEST_ECO_LEAF "\xef\xa2\xbe" // U+f8be
#define ICON_MS_NEST_FARSIGHT_WEATHER "\xef\xa2\xbf" // U+f8bf
#define ICON_MS_NEST_FOUND_SAVINGS "\xef\xa3\x80" // U+f8c0
#define ICON_MS_NEST_GALE_WIFI "\xef\x95\xb9" // U+f579
#define ICON_MS_NEST_HEAT_LINK_E "\xef\x84\xa6" // U+f126
#define ICON_MS_NEST_HEAT_LINK_GEN_3 "\xef\x84\xa7" // U+f127
#define ICON_MS_NEST_HELLO_DOORBELL "\xee\xa0\xac" // U+e82c
#define ICON_MS_NEST_LOCATOR_TAG "\xef\xa3\x81" // U+f8c1
#define ICON_MS_NEST_MINI "\xee\x9e\x89" // U+e789
#define ICON_MS_NEST_MULTI_ROOM "\xef\xa3\x82" // U+f8c2
#define ICON_MS_NEST_PROTECT "\xee\x9a\x8e" // U+e68e
#define ICON_MS_NEST_REMOTE "\xef\x97\x9b" // U+f5db
#define ICON_MS_NEST_REMOTE_COMFORT_SENSOR "\xef\x84\xaa" // U+f12a
#define ICON_MS_NEST_SECURE_ALARM "\xef\x84\xab" // U+f12b
#define ICON_MS_NEST_SUNBLOCK "\xef\xa3\x83" // U+f8c3
#define ICON_MS_NEST_TAG "\xef\xa3\x81" // U+f8c1
#define ICON_MS_NEST_THERMOSTAT "\xee\x9a\x8f" // U+e68f
#define ICON_MS_NEST_THERMOSTAT_E_EU "\xef\x84\xad" // U+f12d
#define ICON_MS_NEST_THERMOSTAT_GEN_3 "\xef\x84\xae" // U+f12e
#define ICON_MS_NEST_THERMOSTAT_SENSOR "\xef\x84\xaf" // U+f12f
#define ICON_MS_NEST_THERMOSTAT_SENSOR_EU "\xef\x84\xb0" // U+f130
#define ICON_MS_NEST_THERMOSTAT_ZIRCONIUM_EU "\xef\x84\xb1" // U+f131
#define ICON_MS_NEST_TRUE_RADIANT "\xef\xa3\x84" // U+f8c4
#define ICON_MS_NEST_WAKE_ON_APPROACH "\xef\xa3\x85" // U+f8c5
#define ICON_MS_NEST_WAKE_ON_PRESS "\xef\xa3\x86" // U+f8c6
#define ICON_MS_NEST_WIFI_GALE "\xef\x84\xb2" // U+f132
#define ICON_MS_NEST_WIFI_MISTRAL "\xef\x84\xb3" // U+f133
#define ICON_MS_NEST_WIFI_POINT "\xef\x84\xb4" // U+f134
#define ICON_MS_NEST_WIFI_POINT_VENTO "\xef\x84\xb4" // U+f134
#define ICON_MS_NEST_WIFI_PRO "\xef\x95\xab" // U+f56b
#define ICON_MS_NEST_WIFI_PRO_2 "\xef\x95\xaa" // U+f56a
#define ICON_MS_NEST_WIFI_ROUTER "\xef\x84\xb3" // U+f133
#define ICON_MS_NETWORK_CELL "\xee\x86\xb9" // U+e1b9
#define ICON_MS_NETWORK_CHECK "\xee\x99\x80" // U+e640
#define ICON_MS_NETWORK_INTELLIGENCE_HISTORY "\xef\x97\xb6" // U+f5f6
#define ICON_MS_NETWORK_INTELLIGENCE_UPDATE "\xef\x97\xb5" // U+f5f5
#define ICON_MS_NETWORK_LOCKED "\xee\x98\x9a" // U+e61a
#define ICON_MS_NETWORK_MANAGE "\xef\x9e\xab" // U+f7ab
#define ICON_MS_NETWORK_NODE "\xef\x95\xae" // U+f56e
#define ICON_MS_NETWORK_PING "\xee\xaf\x8a" // U+ebca
#define ICON_MS_NETWORK_WIFI "\xee\x86\xba" // U+e1ba
#define ICON_MS_NETWORK_WIFI_1_BAR "\xee\xaf\xa4" // U+ebe4
#define ICON_MS_NETWORK_WIFI_1_BAR_LOCKED "\xef\x96\x8f" // U+f58f
#define ICON_MS_NETWORK_WIFI_2_BAR "\xee\xaf\x96" // U+ebd6
#define ICON_MS_NETWORK_WIFI_2_BAR_LOCKED "\xef\x96\x8e" // U+f58e
#define ICON_MS_NETWORK_WIFI_3_BAR "\xee\xaf\xa1" // U+ebe1
#define ICON_MS_NETWORK_WIFI_3_BAR_LOCKED "\xef\x96\x8d" // U+f58d
#define ICON_MS_NETWORK_WIFI_LOCKED "\xef\x94\xb2" // U+f532
#define ICON_MS_NEUROLOGY "\xee\x84\x8e" // U+e10e
#define ICON_MS_NEW_LABEL "\xee\x98\x89" // U+e609
#define ICON_MS_NEW_RELEASES "\xee\xbd\xb6" // U+ef76
#define ICON_MS_NEW_WINDOW "\xef\x9c\x90" // U+f710
#define ICON_MS_NEWS "\xee\x80\xb2" // U+e032
#define ICON_MS_NEWSMODE "\xee\xbe\xad" // U+efad
#define ICON_MS_NEWSPAPER "\xee\xae\x81" // U+eb81
#define ICON_MS_NEWSSTAND "\xee\xa7\x84" // U+e9c4
#define ICON_MS_NEXT_PLAN "\xee\xbd\x9d" // U+ef5d
#define ICON_MS_NEXT_WEEK "\xee\x85\xaa" // U+e16a
#define ICON_MS_NFC "\xee\x86\xbb" // U+e1bb
#define ICON_MS_NIGHT_SHELTER "\xef\x87\xb1" // U+f1f1
#define ICON_MS_NIGHT_SIGHT_AUTO "\xef\x87\x97" // U+f1d7
#define ICON_MS_NIGHT_SIGHT_AUTO_OFF "\xef\x87\xb9" // U+f1f9
#define ICON_MS_NIGHT_SIGHT_MAX "\xef\x9b\x83" // U+f6c3
#define ICON_MS_NIGHTLIFE "\xee\xa9\xa2" // U+ea62
#define ICON_MS_NIGHTLIGHT "\xef\x80\xbd" // U+f03d
#define ICON_MS_NIGHTLIGHT_ROUND "\xef\x80\xbd" // U+f03d
#define ICON_MS_NIGHTS_STAY "\xee\xa9\x86" // U+ea46
#define ICON_MS_NO_ACCOUNTS "\xef\x80\xbe" // U+f03e
#define ICON_MS_NO_ADULT_CONTENT "\xef\xa3\xbe" // U+f8fe
#define ICON_MS_NO_BACKPACK "\xef\x88\xb7" // U+f237
#define ICON_MS_NO_CRASH "\xee\xaf\xb0" // U+ebf0
#define ICON_MS_NO_DRINKS "\xef\x86\xa5" // U+f1a5
#define ICON_MS_NO_ENCRYPTION "\xef\x80\xbf" // U+f03f
#define ICON_MS_NO_ENCRYPTION_GMAILERRORRED "\xef\x80\xbf" // U+f03f
#define ICON_MS_NO_FLASH "\xef\x86\xa6" // U+f1a6
#define ICON_MS_NO_FOOD "\xef\x86\xa7" // U+f1a7
#define ICON_MS_NO_LUGGAGE "\xef\x88\xbb" // U+f23b
#define ICON_MS_NO_MEALS "\xef\x87\x96" // U+f1d6
#define ICON_MS_NO_MEETING_ROOM "\xee\xad\x8e" // U+eb4e
#define ICON_MS_NO_PHOTOGRAPHY "\xef\x86\xa8" // U+f1a8
#define ICON_MS_NO_SIM "\xee\x87\x8e" // U+e1ce
#define ICON_MS_NO_SOUND "\xee\x9c\x90" // U+e710
#define ICON_MS_NO_STROLLER "\xef\x86\xaf" // U+f1af
#define ICON_MS_NO_TRANSFER "\xef\x87\x95" // U+f1d5
#define ICON_MS_NOISE_AWARE "\xee\xaf\xac" // U+ebec
#define ICON_MS_NOISE_CONTROL_OFF "\xee\xaf\xb3" // U+ebf3
#define ICON_MS_NOISE_CONTROL_ON "\xef\xa2\xa8" // U+f8a8
#define ICON_MS_NORDIC_WALKING "\xee\x94\x8e" // U+e50e
#define ICON_MS_NORTH "\xef\x87\xa0" // U+f1e0
#define ICON_MS_NORTH_EAST "\xef\x87\xa1" // U+f1e1
#define ICON_MS_NORTH_WEST "\xef\x87\xa2" // U+f1e2
#define ICON_MS_NOT_ACCESSIBLE "\xef\x83\xbe" // U+f0fe
#define ICON_MS_NOT_ACCESSIBLE_FORWARD "\xef\x95\x8a" // U+f54a
#define ICON_MS_NOT_INTERESTED "\xef\x82\x8c" // U+f08c
#define ICON_MS_NOT_LISTED_LOCATION "\xee\x95\xb5" // U+e575
#define ICON_MS_NOT_STARTED "\xef\x83\x91" // U+f0d1
#define ICON_MS_NOTE "\xee\x99\xad" // U+e66d
#define ICON_MS_NOTE_ADD "\xee\xa2\x9c" // U+e89c
#define ICON_MS_NOTE_ALT "\xef\x81\x80" // U+f040
#define ICON_MS_NOTE_STACK "\xef\x95\xa2" // U+f562
#define ICON_MS_NOTE_STACK_ADD "\xef\x95\xa3" // U+f563
#define ICON_MS_NOTES "\xee\x89\xac" // U+e26c
#define ICON_MS_NOTIFICATION_ADD "\xee\x8e\x99" // U+e399
#define ICON_MS_NOTIFICATION_IMPORTANT "\xee\x80\x84" // U+e004
#define ICON_MS_NOTIFICATION_MULTIPLE "\xee\x9b\x82" // U+e6c2
#define ICON_MS_NOTIFICATIONS "\xee\x9f\xb5" // U+e7f5
#define ICON_MS_NOTIFICATIONS_ACTIVE "\xee\x9f\xb7" // U+e7f7
#define ICON_MS_NOTIFICATIONS_NONE "\xee\x9f\xb5" // U+e7f5
#define ICON_MS_NOTIFICATIONS_OFF "\xee\x9f\xb6" // U+e7f6
#define ICON_MS_NOTIFICATIONS_PAUSED "\xee\x9f\xb8" // U+e7f8
#define ICON_MS_NOTIFICATIONS_UNREAD "\xef\x93\xbe" // U+f4fe
#define ICON_MS_NUMBERS "\xee\xab\x87" // U+eac7
#define ICON_MS_NUTRITION "\xee\x84\x90" // U+e110
#define ICON_MS_ODS "\xee\x9b\xa8" // U+e6e8
#define ICON_MS_ODT "\xee\x9b\xa9" // U+e6e9
#define ICON_MS_OFFLINE_BOLT "\xee\xa4\xb2" // U+e932
#define ICON_MS_OFFLINE_PIN "\xee\xa4\x8a" // U+e90a
#define ICON_MS_OFFLINE_PIN_OFF "\xef\x93\x90" // U+f4d0
#define ICON_MS_OFFLINE_SHARE "\xee\xa7\x85" // U+e9c5
#define ICON_MS_OIL_BARREL "\xee\xb0\x95" // U+ec15
#define ICON_MS_ON_DEVICE_TRAINING "\xee\xaf\xbd" // U+ebfd
#define ICON_MS_ON_HUB_DEVICE "\xee\x9b\x83" // U+e6c3
#define ICON_MS_ONCOLOGY "\xee\x84\x94" // U+e114
#define ICON_MS_ONDEMAND_VIDEO "\xee\x98\xba" // U+e63a
#define ICON_MS_ONLINE_PREDICTION "\xef\x83\xab" // U+f0eb
#define ICON_MS_ONSEN "\xef\x9b\xb8" // U+f6f8
#define ICON_MS_OPACITY "\xee\xa4\x9c" // U+e91c
#define ICON_MS_OPEN_IN_BROWSER "\xee\xa2\x9d" // U+e89d
#define ICON_MS_OPEN_IN_FULL "\xef\x87\x8e" // U+f1ce
#define ICON_MS_OPEN_IN_NEW "\xee\xa2\x9e" // U+e89e
#define ICON_MS_OPEN_IN_NEW_DOWN "\xef\x9c\x8f" // U+f70f
#define ICON_MS_OPEN_IN_NEW_OFF "\xee\x93\xb6" // U+e4f6
#define ICON_MS_OPEN_IN_PHONE "\xee\x9c\x82" // U+e702
#define ICON_MS_OPEN_JAM "\xee\xbe\xae" // U+efae
#define ICON_MS_OPEN_RUN "\xef\x92\xb7" // U+f4b7
#define ICON_MS_OPEN_WITH "\xee\xa2\x9f" // U+e89f
#define ICON_MS_OPHTHALMOLOGY "\xee\x84\x95" // U+e115
#define ICON_MS_ORAL_DISEASE "\xee\x84\x96" // U+e116
#define ICON_MS_ORDER_APPROVE "\xef\xa0\x92" // U+f812
#define ICON_MS_ORDER_PLAY "\xef\xa0\x91" // U+f811
#define ICON_MS_ORDERS "\xee\xac\x94" // U+eb14
#define ICON_MS_ORTHOPEDICS "\xef\xa2\x97" // U+f897
#define ICON_MS_OTHER_ADMISSION "\xee\x91\xbb" // U+e47b
#define ICON_MS_OTHER_HOUSES "\xee\x96\x8c" // U+e58c
#define ICON_MS_OUTBOUND "\xee\x87\x8a" // U+e1ca
#define ICON_MS_OUTBOX "\xee\xbd\x9f" // U+ef5f
#define ICON_MS_OUTBOX_ALT "\xee\xac\x97" // U+eb17
#define ICON_MS_OUTDOOR_GARDEN "\xee\x88\x85" // U+e205
#define ICON_MS_OUTDOOR_GRILL "\xee\xa9\x87" // U+ea47
#define ICON_MS_OUTGOING_MAIL "\xef\x83\x92" // U+f0d2
#define ICON_MS_OUTLET "\xef\x87\x94" // U+f1d4
#define ICON_MS_OUTLINED_FLAG "\xef\x83\x86" // U+f0c6
#define ICON_MS_OUTPATIENT "\xee\x84\x98" // U+e118
#define ICON_MS_OUTPATIENT_MED "\xee\x84\x99" // U+e119
#define ICON_MS_OUTPUT "\xee\xae\xbe" // U+ebbe
#define ICON_MS_OUTPUT_CIRCLE "\xef\x9c\x8e" // U+f70e
#define ICON_MS_OVEN "\xee\xa7\x87" // U+e9c7
#define ICON_MS_OVEN_GEN "\xee\xa1\x83" // U+e843
#define ICON_MS_OVERVIEW "\xee\x92\xa7" // U+e4a7
#define ICON_MS_OVERVIEW_KEY "\xef\x9f\x94" // U+f7d4
#define ICON_MS_OXYGEN_SATURATION "\xee\x93\x9e" // U+e4de
#define ICON_MS_P2P "\xef\x94\xaa" // U+f52a
#define ICON_MS_PACE "\xef\x9a\xb8" // U+f6b8
#define ICON_MS_PACEMAKER "\xee\x99\x96" // U+e656
#define ICON_MS_PACKAGE "\xee\x92\x8f" // U+e48f
#define ICON_MS_PACKAGE_2 "\xef\x95\xa9" // U+f569
#define ICON_MS_PADDING "\xee\xa7\x88" // U+e9c8
#define ICON_MS_PAGE_CONTROL "\xee\x9c\xb1" // U+e731
#define ICON_MS_PAGE_INFO "\xef\x98\x94" // U+f614
#define ICON_MS_PAGELESS "\xef\x94\x89" // U+f509
#define ICON_MS_PAGES "\xee\x9f\xb9" // U+e7f9
#define ICON_MS_PAGEVIEW "\xee\xa2\xa0" // U+e8a0
#define ICON_MS_PAID "\xef\x81\x81" // U+f041
#define ICON_MS_PALETTE "\xee\x90\x8a" // U+e40a
#define ICON_MS_PALLET "\xef\xa1\xaa" // U+f86a
#define ICON_MS_PAN_TOOL "\xee\xa4\xa5" // U+e925
#define ICON_MS_PAN_TOOL_ALT "\xee\xae\xb9" // U+ebb9
#define ICON_MS_PAN_ZOOM "\xef\x99\x95" // U+f655
#define ICON_MS_PANORAMA "\xee\x90\x8b" // U+e40b
#define ICON_MS_PANORAMA_FISH_EYE "\xee\x90\x8c" // U+e40c
#define ICON_MS_PANORAMA_HORIZONTAL "\xee\x90\x8d" // U+e40d
#define ICON_MS_PANORAMA_PHOTOSPHERE "\xee\xa7\x89" // U+e9c9
#define ICON_MS_PANORAMA_VERTICAL "\xee\x90\x8e" // U+e40e
#define ICON_MS_PANORAMA_WIDE_ANGLE "\xee\x90\x8f" // U+e40f
#define ICON_MS_PARAGLIDING "\xee\x94\x8f" // U+e50f
#define ICON_MS_PARK "\xee\xa9\xa3" // U+ea63
#define ICON_MS_PARTLY_CLOUDY_DAY "\xef\x85\xb2" // U+f172
#define ICON_MS_PARTLY_CLOUDY_NIGHT "\xef\x85\xb4" // U+f174
#define ICON_MS_PARTNER_EXCHANGE "\xef\x9f\xb9" // U+f7f9
#define ICON_MS_PARTNER_REPORTS "\xee\xbe\xaf" // U+efaf
#define ICON_MS_PARTY_MODE "\xee\x9f\xba" // U+e7fa
#define ICON_MS_PASSKEY "\xef\xa1\xbf" // U+f87f
#define ICON_MS_PASSWORD "\xef\x81\x82" // U+f042
#define ICON_MS_PASSWORD_2 "\xef\x92\xa9" // U+f4a9
#define ICON_MS_PASSWORD_2_OFF "\xef\x92\xa8" // U+f4a8
#define ICON_MS_PATIENT_LIST "\xee\x99\x93" // U+e653
#define ICON_MS_PATTERN "\xef\x81\x83" // U+f043
#define ICON_MS_PAUSE "\xee\x80\xb4" // U+e034
#define ICON_MS_PAUSE_CIRCLE "\xee\x86\xa2" // U+e1a2
#define ICON_MS_PAUSE_CIRCLE_FILLED "\xee\x86\xa2" // U+e1a2
#define ICON_MS_PAUSE_CIRCLE_OUTLINE "\xee\x86\xa2" // U+e1a2
#define ICON_MS_PAUSE_PRESENTATION "\xee\x83\xaa" // U+e0ea
#define ICON_MS_PAYMENT "\xee\xa2\xa1" // U+e8a1
#define ICON_MS_PAYMENTS "\xee\xbd\xa3" // U+ef63
#define ICON_MS_PEDAL_BIKE "\xee\xac\xa9" // U+eb29
#define ICON_MS_PEDIATRICS "\xee\x84\x9d" // U+e11d
#define ICON_MS_PEN_SIZE_1 "\xef\x9d\x95" // U+f755
#define ICON_MS_PEN_SIZE_2 "\xef\x9d\x94" // U+f754
#define ICON_MS_PEN_SIZE_3 "\xef\x9d\x93" // U+f753
#define ICON_MS_PEN_SIZE_4 "\xef\x9d\x92" // U+f752
#define ICON_MS_PEN_SIZE_5 "\xef\x9d\x91" // U+f751
#define ICON_MS_PENDING "\xee\xbd\xa4" // U+ef64
#define ICON_MS_PENDING_ACTIONS "\xef\x86\xbb" // U+f1bb
#define ICON_MS_PENTAGON "\xee\xad\x90" // U+eb50
#define ICON_MS_PEOPLE "\xee\xa8\xa1" // U+ea21
#define ICON_MS_PEOPLE_ALT "\xee\xa8\xa1" // U+ea21
#define ICON_MS_PEOPLE_OUTLINE "\xee\xa8\xa1" // U+ea21
#define ICON_MS_PERCENT "\xee\xad\x98" // U+eb58
#define ICON_MS_PERFORMANCE_MAX "\xee\x94\x9a" // U+e51a
#define ICON_MS_PERGOLA "\xee\x88\x83" // U+e203
#define ICON_MS_PERM_CAMERA_MIC "\xee\xa2\xa2" // U+e8a2
#define ICON_MS_PERM_CONTACT_CALENDAR "\xee\xa2\xa3" // U+e8a3
#define ICON_MS_PERM_DATA_SETTING "\xee\xa2\xa4" // U+e8a4
#define ICON_MS_PERM_DEVICE_INFORMATION "\xee\xa2\xa5" // U+e8a5
#define ICON_MS_PERM_IDENTITY "\xef\x83\x93" // U+f0d3
#define ICON_MS_PERM_MEDIA "\xee\xa2\xa7" // U+e8a7
#define ICON_MS_PERM_PHONE_MSG "\xee\xa2\xa8" // U+e8a8
#define ICON_MS_PERM_SCAN_WIFI "\xee\xa2\xa9" // U+e8a9
#define ICON_MS_PERSON "\xef\x83\x93" // U+f0d3
#define ICON_MS_PERSON_2 "\xef\xa3\xa4" // U+f8e4
#define ICON_MS_PERSON_3 "\xef\xa3\xa5" // U+f8e5
#define ICON_MS_PERSON_4 "\xef\xa3\xa6" // U+f8e6
#define ICON_MS_PERSON_ADD "\xee\xa9\x8d" // U+ea4d
#define ICON_MS_PERSON_ADD_ALT "\xee\xa9\x8d" // U+ea4d
#define ICON_MS_PERSON_ADD_DISABLED "\xee\xa7\x8b" // U+e9cb
#define ICON_MS_PERSON_ALERT "\xef\x95\xa7" // U+f567
#define ICON_MS_PERSON_APRON "\xef\x96\xa3" // U+f5a3
#define ICON_MS_PERSON_BOOK "\xef\x97\xa8" // U+f5e8
#define ICON_MS_PERSON_CANCEL "\xef\x95\xa6" // U+f566
#define ICON_MS_PERSON_CELEBRATE "\xef\x9f\xbe" // U+f7fe
#define ICON_MS_PERSON_CHECK "\xef\x95\xa5" // U+f565
#define ICON_MS_PERSON_EDIT "\xef\x93\xba" // U+f4fa
#define ICON_MS_PERSON_FILLED "\xef\x83\x93" // U+f0d3
#define ICON_MS_PERSON_OFF "\xee\x94\x90" // U+e510
#define ICON_MS_PERSON_OUTLINE "\xef\x83\x93" // U+f0d3
#define ICON_MS_PERSON_PIN "\xee\x95\x9a" // U+e55a
#define ICON_MS_PERSON_PIN_CIRCLE "\xee\x95\xaa" // U+e56a
#define ICON_MS_PERSON_PLAY "\xef\x9f\xbd" // U+f7fd
#define ICON_MS_PERSON_RAISED_HAND "\xef\x96\x9a" // U+f59a
#define ICON_MS_PERSON_REMOVE "\xee\xbd\xa6" // U+ef66
#define ICON_MS_PERSON_SEARCH "\xef\x84\x86" // U+f106
#define ICON_MS_PERSONAL_BAG "\xee\xac\x8e" // U+eb0e
#define ICON_MS_PERSONAL_BAG_OFF "\xee\xac\x8f" // U+eb0f
#define ICON_MS_PERSONAL_BAG_QUESTION "\xee\xac\x90" // U+eb10
#define ICON_MS_PERSONAL_INJURY "\xee\x9b\x9a" // U+e6da
#define ICON_MS_PERSONAL_PLACES "\xee\x9c\x83" // U+e703
#define ICON_MS_PERSONAL_VIDEO "\xee\x98\xbb" // U+e63b
#define ICON_MS_PEST_CONTROL "\xef\x83\xba" // U+f0fa
#define ICON_MS_PEST_CONTROL_RODENT "\xef\x83\xbd" // U+f0fd
#define ICON_MS_PET_SUPPLIES "\xee\xbe\xb1" // U+efb1
#define ICON_MS_PETS "\xee\xa4\x9d" // U+e91d
#define ICON_MS_PHISHING "\xee\xab\x97" // U+ead7
#define ICON_MS_PHONE "\xef\x83\x94" // U+f0d4
#define ICON_MS_PHONE_ALT "\xef\x83\x94" // U+f0d4
#define ICON_MS_PHONE_ANDROID "\xee\x8c\xa4" // U+e324
#define ICON_MS_PHONE_BLUETOOTH_SPEAKER "\xee\x98\x9b" // U+e61b
#define ICON_MS_PHONE_CALLBACK "\xee\x99\x89" // U+e649
#define ICON_MS_PHONE_DISABLED "\xee\xa7\x8c" // U+e9cc
#define ICON_MS_PHONE_ENABLED "\xee\xa7\x8d" // U+e9cd
#define ICON_MS_PHONE_FORWARDED "\xee\x98\x9c" // U+e61c
#define ICON_MS_PHONE_IN_TALK "\xee\x98\x9d" // U+e61d
#define ICON_MS_PHONE_IPHONE "\xee\x8c\xa5" // U+e325
#define ICON_MS_PHONE_LOCKED "\xee\x98\x9e" // U+e61e
#define ICON_MS_PHONE_MISSED "\xee\x98\x9f" // U+e61f
#define ICON_MS_PHONE_PAUSED "\xee\x98\xa0" // U+e620
#define ICON_MS_PHONELINK "\xee\x8c\xa6" // U+e326
#define ICON_MS_PHONELINK_ERASE "\xee\x83\x9b" // U+e0db
#define ICON_MS_PHONELINK_LOCK "\xee\x83\x9c" // U+e0dc
#define ICON_MS_PHONELINK_OFF "\xee\x8c\xa7" // U+e327
#define ICON_MS_PHONELINK_RING "\xee\x83\x9d" // U+e0dd
#define ICON_MS_PHONELINK_RING_OFF "\xef\x9e\xaa" // U+f7aa
#define ICON_MS_PHONELINK_SETUP "\xee\xbd\x81" // U+ef41
#define ICON_MS_PHOTO "\xee\x90\xb2" // U+e432
#define ICON_MS_PHOTO_ALBUM "\xee\x90\x91" // U+e411
#define ICON_MS_PHOTO_AUTO_MERGE "\xef\x94\xb0" // U+f530
#define ICON_MS_PHOTO_CAMERA "\xee\x90\x92" // U+e412
#define ICON_MS_PHOTO_CAMERA_BACK "\xee\xbd\xa8" // U+ef68
#define ICON_MS_PHOTO_CAMERA_FRONT "\xee\xbd\xa9" // U+ef69
#define ICON_MS_PHOTO_FILTER "\xee\x90\xbb" // U+e43b
#define ICON_MS_PHOTO_FRAME "\xef\x83\x99" // U+f0d9
#define ICON_MS_PHOTO_LIBRARY "\xee\x90\x93" // U+e413
#define ICON_MS_PHOTO_PRINTS "\xee\xbe\xb2" // U+efb2
#define ICON_MS_PHOTO_SIZE_SELECT_ACTUAL "\xee\x90\xb2" // U+e432
#define ICON_MS_PHOTO_SIZE_SELECT_LARGE "\xee\x90\xb3" // U+e433
#define ICON_MS_PHOTO_SIZE_SELECT_SMALL "\xee\x90\xb4" // U+e434
#define ICON_MS_PHP "\xee\xae\x8f" // U+eb8f
#define ICON_MS_PHYSICAL_THERAPY "\xee\x84\x9e" // U+e11e
#define ICON_MS_PIANO "\xee\x94\xa1" // U+e521
#define ICON_MS_PIANO_OFF "\xee\x94\xa0" // U+e520
#define ICON_MS_PICTURE_AS_PDF "\xee\x90\x95" // U+e415
#define ICON_MS_PICTURE_IN_PICTURE "\xee\xa2\xaa" // U+e8aa
#define ICON_MS_PICTURE_IN_PICTURE_ALT "\xee\xa4\x91" // U+e911
#define ICON_MS_PICTURE_IN_PICTURE_CENTER "\xef\x95\x90" // U+f550
#define ICON_MS_PICTURE_IN_PICTURE_LARGE "\xef\x95\x8f" // U+f54f
#define ICON_MS_PICTURE_IN_PICTURE_MEDIUM "\xef\x95\x8e" // U+f54e
#define ICON_MS_PICTURE_IN_PICTURE_MOBILE "\xef\x94\x97" // U+f517
#define ICON_MS_PICTURE_IN_PICTURE_OFF "\xef\x94\xaf" // U+f52f
#define ICON_MS_PICTURE_IN_PICTURE_SMALL "\xef\x95\x8d" // U+f54d
#define ICON_MS_PIE_CHART "\xef\x83\x9a" // U+f0da
#define ICON_MS_PIE_CHART_FILLED "\xef\x83\x9a" // U+f0da
#define ICON_MS_PIE_CHART_OUTLINE "\xef\x83\x9a" // U+f0da
#define ICON_MS_PIE_CHART_OUTLINED "\xef\x83\x9a" // U+f0da
#define ICON_MS_PILL "\xee\x84\x9f" // U+e11f
#define ICON_MS_PILL_OFF "\xef\xa0\x89" // U+f809
#define ICON_MS_PIN "\xef\x81\x85" // U+f045
#define ICON_MS_PIN_DROP "\xee\x95\x9e" // U+e55e
#define ICON_MS_PIN_END "\xee\x9d\xa7" // U+e767
#define ICON_MS_PIN_INVOKE "\xee\x9d\xa3" // U+e763
#define ICON_MS_PINCH "\xee\xac\xb8" // U+eb38
#define ICON_MS_PINCH_ZOOM_IN "\xef\x87\xba" // U+f1fa
#define ICON_MS_PINCH_ZOOM_OUT "\xef\x87\xbb" // U+f1fb
#define ICON_MS_PIP "\xef\x99\x8d" // U+f64d
#define ICON_MS_PIP_EXIT "\xef\x9c\x8d" // U+f70d
#define ICON_MS_PIVOT_TABLE_CHART "\xee\xa7\x8e" // U+e9ce
#define ICON_MS_PLACE "\xef\x87\x9b" // U+f1db
#define ICON_MS_PLACE_ITEM "\xef\x87\xb0" // U+f1f0
#define ICON_MS_PLAGIARISM "\xee\xa9\x9a" // U+ea5a
#define ICON_MS_PLANNER_BANNER_AD_PT "\xee\x9a\x92" // U+e692
#define ICON_MS_PLANNER_REVIEW "\xee\x9a\x94" // U+e694
#define ICON_MS_PLAY_ARROW "\xee\x80\xb7" // U+e037
#define ICON_MS_PLAY_CIRCLE "\xee\x87\x84" // U+e1c4
#define ICON_MS_PLAY_DISABLED "\xee\xbd\xaa" // U+ef6a
#define ICON_MS_PLAY_FOR_WORK "\xee\xa4\x86" // U+e906
#define ICON_MS_PLAY_LESSON "\xef\x81\x87" // U+f047
#define ICON_MS_PLAY_MUSIC "\xee\x9b\xae" // U+e6ee
#define ICON_MS_PLAY_PAUSE "\xef\x84\xb7" // U+f137
#define ICON_MS_PLAY_SHAPES "\xef\x9f\xbc" // U+f7fc
#define ICON_MS_PLAYING_CARDS "\xef\x97\x9c" // U+f5dc
#define ICON_MS_PLAYLIST_ADD "\xee\x80\xbb" // U+e03b
#define ICON_MS_PLAYLIST_ADD_CHECK "\xee\x81\xa5" // U+e065
#define ICON_MS_PLAYLIST_ADD_CHECK_CIRCLE "\xee\x9f\xa6" // U+e7e6
#define ICON_MS_PLAYLIST_ADD_CIRCLE "\xee\x9f\xa5" // U+e7e5
#define ICON_MS_PLAYLIST_PLAY "\xee\x81\x9f" // U+e05f
#define ICON_MS_PLAYLIST_REMOVE "\xee\xae\x80" // U+eb80
#define ICON_MS_PLUMBING "\xef\x84\x87" // U+f107
#define ICON_MS_PLUS_ONE "\xee\xa0\x80" // U+e800
#define ICON_MS_PODCASTS "\xef\x81\x88" // U+f048
#define ICON_MS_PODIATRY "\xee\x84\xa0" // U+e120
#define ICON_MS_PODIUM "\xef\x9f\xbb" // U+f7fb
#define ICON_MS_POINT_OF_SALE "\xef\x85\xbe" // U+f17e
#define ICON_MS_POINT_SCAN "\xef\x9c\x8c" // U+f70c
#define ICON_MS_POKER_CHIP "\xef\x92\x9b" // U+f49b
#define ICON_MS_POLICY "\xee\xa8\x97" // U+ea17
#define ICON_MS_POLL "\xef\x83\x8c" // U+f0cc
#define ICON_MS_POLYLINE "\xee\xae\xbb" // U+ebbb
#define ICON_MS_POLYMER "\xee\xa2\xab" // U+e8ab
#define ICON_MS_POOL "\xee\xad\x88" // U+eb48
#define ICON_MS_PORTABLE_WIFI_OFF "\xef\x82\x87" // U+f087
#define ICON_MS_PORTRAIT "\xee\xa1\x91" // U+e851
#define ICON_MS_POSITION_BOTTOM_LEFT "\xef\x9c\x8b" // U+f70b
#define ICON_MS_POSITION_BOTTOM_RIGHT "\xef\x9c\x8a" // U+f70a
#define ICON_MS_POSITION_TOP_RIGHT "\xef\x9c\x89" // U+f709
#define ICON_MS_POST "\xee\x9c\x85" // U+e705
#define ICON_MS_POST_ADD "\xee\xa8\xa0" // U+ea20
#define ICON_MS_POTTED_PLANT "\xef\xa2\xaa" // U+f8aa
#define ICON_MS_POWER "\xee\x98\xbc" // U+e63c
#define ICON_MS_POWER_INPUT "\xee\x8c\xb6" // U+e336
#define ICON_MS_POWER_OFF "\xee\x99\x86" // U+e646
#define ICON_MS_POWER_ROUNDED "\xef\xa3\x87" // U+f8c7
#define ICON_MS_POWER_SETTINGS_NEW "\xef\xa3\x87" // U+f8c7
#define ICON_MS_PRAYER_TIMES "\xef\xa0\xb8" // U+f838
#define ICON_MS_PRECISION_MANUFACTURING "\xef\x81\x89" // U+f049
#define ICON_MS_PREGNANCY "\xef\x97\xb1" // U+f5f1
#define ICON_MS_PREGNANT_WOMAN "\xef\x97\xb1" // U+f5f1
#define ICON_MS_PRELIMINARY "\xee\x9f\x98" // U+e7d8
#define ICON_MS_PRESCRIPTIONS "\xee\x84\xa1" // U+e121
#define ICON_MS_PRESENT_TO_ALL "\xee\x83\x9f" // U+e0df
#define ICON_MS_PREVIEW "\xef\x87\x85" // U+f1c5
#define ICON_MS_PREVIEW_OFF "\xef\x9e\xaf" // U+f7af
#define ICON_MS_PRICE_CHANGE "\xef\x81\x8a" // U+f04a
#define ICON_MS_PRICE_CHECK "\xef\x81\x8b" // U+f04b
#define ICON_MS_PRINT "\xee\xa2\xad" // U+e8ad
#define ICON_MS_PRINT_ADD "\xef\x9e\xa2" // U+f7a2
#define ICON_MS_PRINT_CONNECT "\xef\x9e\xa1" // U+f7a1
#define ICON_MS_PRINT_DISABLED "\xee\xa7\x8f" // U+e9cf
#define ICON_MS_PRINT_ERROR "\xef\x9e\xa0" // U+f7a0
#define ICON_MS_PRINT_LOCK "\xef\x99\x91" // U+f651
#define ICON_MS_PRIORITY "\xee\x86\x9f" // U+e19f
#define ICON_MS_PRIORITY_HIGH "\xee\x99\x85" // U+e645
#define ICON_MS_PRIVACY "\xef\x85\x88" // U+f148
#define ICON_MS_PRIVACY_TIP "\xef\x83\x9c" // U+f0dc
#define ICON_MS_PRIVATE_CONNECTIVITY "\xee\x9d\x84" // U+e744
#define ICON_MS_PROBLEM "\xee\x84\xa2" // U+e122
#define ICON_MS_PROCEDURE "\xee\x99\x91" // U+e651
#define ICON_MS_PROCESS_CHART "\xef\xa1\x95" // U+f855
#define ICON_MS_PRODUCTION_QUANTITY_LIMITS "\xee\x87\x91" // U+e1d1
#define ICON_MS_PRODUCTIVITY "\xee\x8a\x96" // U+e296
#define ICON_MS_PROGRESS_ACTIVITY "\xee\xa7\x90" // U+e9d0
#define ICON_MS_PROMPT_SUGGESTION "\xef\x93\xb6" // U+f4f6
#define ICON_MS_PROPANE "\xee\xb0\x94" // U+ec14
#define ICON_MS_PROPANE_TANK "\xee\xb0\x93" // U+ec13
#define ICON_MS_PSYCHIATRY "\xee\x84\xa3" // U+e123
#define ICON_MS_PSYCHOLOGY "\xee\xa9\x8a" // U+ea4a
#define ICON_MS_PSYCHOLOGY_ALT "\xef\xa3\xaa" // U+f8ea
#define ICON_MS_PUBLIC "\xee\xa0\x8b" // U+e80b
#define ICON_MS_PUBLIC_OFF "\xef\x87\x8a" // U+f1ca
#define ICON_MS_PUBLISH "\xee\x89\x95" // U+e255
#define ICON_MS_PUBLISHED_WITH_CHANGES "\xef\x88\xb2" // U+f232
#define ICON_MS_PULMONOLOGY "\xee\x84\xa4" // U+e124
#define ICON_MS_PULSE_ALERT "\xef\x94\x81" // U+f501
#define ICON_MS_PUNCH_CLOCK "\xee\xaa\xa8" // U+eaa8
#define ICON_MS_PUSH_PIN "\xef\x84\x8d" // U+f10d
#define ICON_MS_QR_CODE "\xee\xbd\xab" // U+ef6b
#define ICON_MS_QR_CODE_2 "\xee\x80\x8a" // U+e00a
#define ICON_MS_QR_CODE_2_ADD "\xef\x99\x98" // U+f658
#define ICON_MS_QR_CODE_SCANNER "\xef\x88\x86" // U+f206
#define ICON_MS_QUERY_BUILDER "\xee\xbf\x96" // U+efd6
#define ICON_MS_QUERY_STATS "\xee\x93\xbc" // U+e4fc
#define ICON_MS_QUESTION_ANSWER "\xee\xa2\xaf" // U+e8af
#define ICON_MS_QUESTION_EXCHANGE "\xef\x9f\xb3" // U+f7f3
#define ICON_MS_QUESTION_MARK "\xee\xae\x8b" // U+eb8b
#define ICON_MS_QUEUE "\xee\x80\xbc" // U+e03c
#define ICON_MS_QUEUE_MUSIC "\xee\x80\xbd" // U+e03d
#define ICON_MS_QUEUE_PLAY_NEXT "\xee\x81\xa6" // U+e066
#define ICON_MS_QUICK_PHRASES "\xee\x9f\x91" // U+e7d1
#define ICON_MS_QUICK_REFERENCE "\xee\x91\xae" // U+e46e
#define ICON_MS_QUICK_REFERENCE_ALL "\xef\xa0\x81" // U+f801
#define ICON_MS_QUICK_REORDER "\xee\xac\x95" // U+eb15
#define ICON_MS_QUICKREPLY "\xee\xbd\xac" // U+ef6c
#define ICON_MS_QUIET_TIME "\xee\x87\xb9" // U+e1f9
#define ICON_MS_QUIET_TIME_ACTIVE "\xee\x8a\x91" // U+e291
#define ICON_MS_QUIZ "\xef\x81\x8c" // U+f04c
#define ICON_MS_R_MOBILEDATA "\xef\x81\x8d" // U+f04d
#define ICON_MS_RADAR "\xef\x81\x8e" // U+f04e
#define ICON_MS_RADIO "\xee\x80\xbe" // U+e03e
#define ICON_MS_RADIO_BUTTON_CHECKED "\xee\xa0\xb7" // U+e837
#define ICON_MS_RADIO_BUTTON_PARTIAL "\xef\x95\xa0" // U+f560
#define ICON_MS_RADIO_BUTTON_UNCHECKED "\xee\xa0\xb6" // U+e836
#define ICON_MS_RADIOLOGY "\xee\x84\xa5" // U+e125
#define ICON_MS_RAILWAY_ALERT "\xee\xa7\x91" // U+e9d1
#define ICON_MS_RAINY "\xef\x85\xb6" // U+f176
#define ICON_MS_RAINY_HEAVY "\xef\x98\x9f" // U+f61f
#define ICON_MS_RAINY_LIGHT "\xef\x98\x9e" // U+f61e
#define ICON_MS_RAINY_SNOW "\xef\x98\x9d" // U+f61d
#define ICON_MS_RAMEN_DINING "\xee\xa9\xa4" // U+ea64
#define ICON_MS_RAMP_LEFT "\xee\xae\x9c" // U+eb9c
#define ICON_MS_RAMP_RIGHT "\xee\xae\x96" // U+eb96
#define ICON_MS_RANGE_HOOD "\xee\x87\xaa" // U+e1ea
#define ICON_MS_RATE_REVIEW "\xee\x95\xa0" // U+e560
#define ICON_MS_RAVEN "\xef\x95\x95" // U+f555
#define ICON_MS_RAW_OFF "\xef\x81\x8f" // U+f04f
#define ICON_MS_RAW_ON "\xef\x81\x90" // U+f050
#define ICON_MS_READ_MORE "\xee\xbd\xad" // U+ef6d
#define ICON_MS_READINESS_SCORE "\xef\x9b\x9d" // U+f6dd
#define ICON_MS_REAL_ESTATE_AGENT "\xee\x9c\xba" // U+e73a
#define ICON_MS_REAR_CAMERA "\xef\x9b\x82" // U+f6c2
#define ICON_MS_REBASE "\xef\xa1\x85" // U+f845
#define ICON_MS_REBASE_EDIT "\xef\xa1\x86" // U+f846
#define ICON_MS_RECEIPT "\xee\xa2\xb0" // U+e8b0
#define ICON_MS_RECEIPT_LONG "\xee\xbd\xae" // U+ef6e
#define ICON_MS_RECENT_ACTORS "\xee\x80\xbf" // U+e03f
#define ICON_MS_RECENT_PATIENT "\xef\xa0\x88" // U+f808
#define ICON_MS_RECENTER "\xef\x93\x80" // U+f4c0
#define ICON_MS_RECOMMEND "\xee\xa7\x92" // U+e9d2
#define ICON_MS_RECORD_VOICE_OVER "\xee\xa4\x9f" // U+e91f
#define ICON_MS_RECTANGLE "\xee\xad\x94" // U+eb54
#define ICON_MS_RECYCLING "\xee\x9d\xa0" // U+e760
#define ICON_MS_REDEEM "\xee\xa3\xb6" // U+e8f6
#define ICON_MS_REDO "\xee\x85\x9a" // U+e15a
#define ICON_MS_REDUCE_CAPACITY "\xef\x88\x9c" // U+f21c
#define ICON_MS_REFRESH "\xee\x97\x95" // U+e5d5
#define ICON_MS_REGULAR_EXPRESSION "\xef\x9d\x90" // U+f750
#define ICON_MS_RELAX "\xef\x9b\x9c" // U+f6dc
#define ICON_MS_RELEASE_ALERT "\xef\x99\x94" // U+f654
#define ICON_MS_REMEMBER_ME "\xef\x81\x91" // U+f051
#define ICON_MS_REMINDER "\xee\x9b\x86" // U+e6c6
#define ICON_MS_REMINDERS_ALT "\xee\x9b\x86" // U+e6c6
#define ICON_MS_REMOTE_GEN "\xee\xa0\xbe" // U+e83e
#define ICON_MS_REMOVE "\xee\x85\x9b" // U+e15b
#define ICON_MS_REMOVE_CIRCLE "\xef\x82\x8f" // U+f08f
#define ICON_MS_REMOVE_CIRCLE_OUTLINE "\xef\x82\x8f" // U+f08f
#define ICON_MS_REMOVE_DONE "\xee\xa7\x93" // U+e9d3
#define ICON_MS_REMOVE_FROM_QUEUE "\xee\x81\xa7" // U+e067
#define ICON_MS_REMOVE_MODERATOR "\xee\xa7\x94" // U+e9d4
#define ICON_MS_REMOVE_RED_EYE "\xee\xa3\xb4" // U+e8f4
#define ICON_MS_REMOVE_ROAD "\xee\xaf\xbc" // U+ebfc
#define ICON_MS_REMOVE_SELECTION "\xee\xa7\x95" // U+e9d5
#define ICON_MS_REMOVE_SHOPPING_CART "\xee\xa4\xa8" // U+e928
#define ICON_MS_REOPEN_WINDOW "\xef\x9c\x88" // U+f708
#define ICON_MS_REORDER "\xee\xa3\xbe" // U+e8fe
#define ICON_MS_REPARTITION "\xef\xa3\xa8" // U+f8e8
#define ICON_MS_REPEAT "\xee\x81\x80" // U+e040
#define ICON_MS_REPEAT_ON "\xee\xa7\x96" // U+e9d6
#define ICON_MS_REPEAT_ONE "\xee\x81\x81" // U+e041
#define ICON_MS_REPEAT_ONE_ON "\xee\xa7\x97" // U+e9d7
#define ICON_MS_REPLAY "\xee\x81\x82" // U+e042
#define ICON_MS_REPLAY_10 "\xee\x81\x99" // U+e059
#define ICON_MS_REPLAY_30 "\xee\x81\x9a" // U+e05a
#define ICON_MS_REPLAY_5 "\xee\x81\x9b" // U+e05b
#define ICON_MS_REPLAY_CIRCLE_FILLED "\xee\xa7\x98" // U+e9d8
#define ICON_MS_REPLY "\xee\x85\x9e" // U+e15e
#define ICON_MS_REPLY_ALL "\xee\x85\x9f" // U+e15f
#define ICON_MS_REPORT "\xef\x81\x92" // U+f052
#define ICON_MS_REPORT_GMAILERRORRED "\xef\x81\x92" // U+f052
#define ICON_MS_REPORT_OFF "\xee\x85\xb0" // U+e170
#define ICON_MS_REPORT_PROBLEM "\xef\x82\x83" // U+f083
#define ICON_MS_REQUEST_PAGE "\xef\x88\xac" // U+f22c
#define ICON_MS_REQUEST_QUOTE "\xef\x86\xb6" // U+f1b6
#define ICON_MS_RESET_IMAGE "\xef\xa0\xa4" // U+f824
#define ICON_MS_RESET_TV "\xee\xa7\x99" // U+e9d9
#define ICON_MS_RESET_WRENCH "\xef\x95\xac" // U+f56c
#define ICON_MS_RESIZE "\xef\x9c\x87" // U+f707
#define ICON_MS_RESPIRATORY_RATE "\xee\x84\xa7" // U+e127
#define ICON_MS_RESPONSIVE_LAYOUT "\xee\xa7\x9a" // U+e9da
#define ICON_MS_RESTART_ALT "\xef\x81\x93" // U+f053
#define ICON_MS_RESTAURANT "\xee\x95\xac" // U+e56c
#define ICON_MS_RESTAURANT_MENU "\xee\x95\xa1" // U+e561
#define ICON_MS_RESTORE "\xee\xa2\xb3" // U+e8b3
#define ICON_MS_RESTORE_FROM_TRASH "\xee\xa4\xb8" // U+e938
#define ICON_MS_RESTORE_PAGE "\xee\xa4\xa9" // U+e929
#define ICON_MS_RESUME "\xef\x9f\x90" // U+f7d0
#define ICON_MS_REVIEWS "\xef\x81\xbc" // U+f07c
#define ICON_MS_REWARDED_ADS "\xee\xbe\xb6" // U+efb6
#define ICON_MS_RHEUMATOLOGY "\xee\x84\xa8" // U+e128
#define ICON_MS_RIB_CAGE "\xef\xa2\x98" // U+f898
#define ICON_MS_RICE_BOWL "\xef\x87\xb5" // U+f1f5
#define ICON_MS_RIGHT_CLICK "\xef\x9c\x86" // U+f706
#define ICON_MS_RIGHT_PANEL_CLOSE "\xef\x9c\x85" // U+f705
#define ICON_MS_RIGHT_PANEL_OPEN "\xef\x9c\x84" // U+f704
#define ICON_MS_RING_VOLUME "\xef\x83\x9d" // U+f0dd
#define ICON_MS_RING_VOLUME_FILLED "\xef\x83\x9d" // U+f0dd
#define ICON_MS_RIPPLES "\xee\xa7\x9b" // U+e9db
#define ICON_MS_ROBOT "\xef\xa2\x82" // U+f882
#define ICON_MS_ROBOT_2 "\xef\x97\x90" // U+f5d0
#define ICON_MS_ROCKET "\xee\xae\xa5" // U+eba5
#define ICON_MS_ROCKET_LAUNCH "\xee\xae\x9b" // U+eb9b
#define ICON_MS_ROLLER_SHADES "\xee\xb0\x92" // U+ec12
#define ICON_MS_ROLLER_SHADES_CLOSED "\xee\xb0\x91" // U+ec11
#define ICON_MS_ROLLER_SKATING "\xee\xaf\x8d" // U+ebcd
#define ICON_MS_ROOFING "\xef\x88\x81" // U+f201
#define ICON_MS_ROOM "\xef\x87\x9b" // U+f1db
#define ICON_MS_ROOM_PREFERENCES "\xef\x86\xb8" // U+f1b8
#define ICON_MS_ROOM_SERVICE "\xee\xad\x89" // U+eb49
#define ICON_MS_ROTATE_90_DEGREES_CCW "\xee\x90\x98" // U+e418
#define ICON_MS_ROTATE_90_DEGREES_CW "\xee\xaa\xab" // U+eaab
#define ICON_MS_ROTATE_LEFT "\xee\x90\x99" // U+e419
#define ICON_MS_ROTATE_RIGHT "\xee\x90\x9a" // U+e41a
#define ICON_MS_ROUNDABOUT_LEFT "\xee\xae\x99" // U+eb99
#define ICON_MS_ROUNDABOUT_RIGHT "\xee\xae\xa3" // U+eba3
#define ICON_MS_ROUNDED_CORNER "\xee\xa4\xa0" // U+e920
#define ICON_MS_ROUTE "\xee\xab\x8d" // U+eacd
#define ICON_MS_ROUTER "\xee\x8c\xa8" // U+e328
#define ICON_MS_ROUTINE "\xee\x88\x8c" // U+e20c
#define ICON_MS_ROWING "\xee\xa4\xa1" // U+e921
#define ICON_MS_RSS_FEED "\xee\x83\xa5" // U+e0e5
#define ICON_MS_RSVP "\xef\x81\x95" // U+f055
#define ICON_MS_RTT "\xee\xa6\xad" // U+e9ad
#define ICON_MS_RUBRIC "\xee\xac\xa7" // U+eb27
#define ICON_MS_RULE "\xef\x87\x82" // U+f1c2
#define ICON_MS_RULE_FOLDER "\xef\x87\x89" // U+f1c9
#define ICON_MS_RULE_SETTINGS "\xef\x99\x8c" // U+f64c
#define ICON_MS_RUN_CIRCLE "\xee\xbd\xaf" // U+ef6f
#define ICON_MS_RUNNING_WITH_ERRORS "\xee\x94\x9d" // U+e51d
#define ICON_MS_RV_HOOKUP "\xee\x99\x82" // U+e642
#define ICON_MS_SAFETY_CHECK "\xee\xaf\xaf" // U+ebef
#define ICON_MS_SAFETY_CHECK_OFF "\xef\x96\x9d" // U+f59d
#define ICON_MS_SAFETY_DIVIDER "\xee\x87\x8c" // U+e1cc
#define ICON_MS_SAILING "\xee\x94\x82" // U+e502
#define ICON_MS_SALINITY "\xef\xa1\xb6" // U+f876
#define ICON_MS_SANITIZER "\xef\x88\x9d" // U+f21d
#define ICON_MS_SATELLITE "\xee\x95\xa2" // U+e562
#define ICON_MS_SATELLITE_ALT "\xee\xac\xba" // U+eb3a
#define ICON_MS_SAUNA "\xef\x9b\xb7" // U+f6f7
#define ICON_MS_SAVE "\xee\x85\xa1" // U+e161
#define ICON_MS_SAVE_ALT "\xef\x82\x90" // U+f090
#define ICON_MS_SAVE_AS "\xee\xad\xa0" // U+eb60
#define ICON_MS_SAVED_SEARCH "\xee\xa8\x91" // U+ea11
#define ICON_MS_SAVINGS "\xee\x8b\xab" // U+e2eb
#define ICON_MS_SCALE "\xee\xad\x9f" // U+eb5f
#define ICON_MS_SCAN "\xef\x9d\x8e" // U+f74e
#define ICON_MS_SCAN_DELETE "\xef\x9d\x8f" // U+f74f
#define ICON_MS_SCANNER "\xee\x8c\xa9" // U+e329
#define ICON_MS_SCATTER_PLOT "\xee\x89\xa8" // U+e268
#define ICON_MS_SCENE "\xee\x8a\xa7" // U+e2a7
#define ICON_MS_SCHEDULE "\xee\xbf\x96" // U+efd6
#define ICON_MS_SCHEDULE_SEND "\xee\xa8\x8a" // U+ea0a
#define ICON_MS_SCHEMA "\xee\x93\xbd" // U+e4fd
#define ICON_MS_SCHOOL "\xee\xa0\x8c" // U+e80c
#define ICON_MS_SCIENCE "\xee\xa9\x8b" // U+ea4b
#define ICON_MS_SCIENCE_OFF "\xef\x95\x82" // U+f542
#define ICON_MS_SCORE "\xee\x89\xa9" // U+e269
#define ICON_MS_SCOREBOARD "\xee\xaf\x90" // U+ebd0
#define ICON_MS_SCREEN_LOCK_LANDSCAPE "\xee\x86\xbe" // U+e1be
#define ICON_MS_SCREEN_LOCK_PORTRAIT "\xee\x86\xbf" // U+e1bf
#define ICON_MS_SCREEN_LOCK_ROTATION "\xee\x87\x80" // U+e1c0
#define ICON_MS_SCREEN_RECORD "\xef\x99\xb9" // U+f679
#define ICON_MS_SCREEN_ROTATION "\xee\x87\x81" // U+e1c1
#define ICON_MS_SCREEN_ROTATION_ALT "\xee\xaf\xae" // U+ebee
#define ICON_MS_SCREEN_ROTATION_UP "\xef\x99\xb8" // U+f678
#define ICON_MS_SCREEN_SEARCH_DESKTOP "\xee\xbd\xb0" // U+ef70
#define ICON_MS_SCREEN_SHARE "\xee\x83\xa2" // U+e0e2
#define ICON_MS_SCREENSHOT "\xef\x81\x96" // U+f056
#define ICON_MS_SCREENSHOT_FRAME "\xef\x99\xb7" // U+f677
#define ICON_MS_SCREENSHOT_KEYBOARD "\xef\x9f\x93" // U+f7d3
#define ICON_MS_SCREENSHOT_MONITOR "\xee\xb0\x88" // U+ec08
#define ICON_MS_SCREENSHOT_REGION "\xef\x9f\x92" // U+f7d2
#define ICON_MS_SCREENSHOT_TABLET "\xef\x9a\x97" // U+f697
#define ICON_MS_SCROLLABLE_HEADER "\xee\xa7\x9c" // U+e9dc
#define ICON_MS_SCUBA_DIVING "\xee\xaf\x8e" // U+ebce
#define ICON_MS_SD "\xee\xa7\x9d" // U+e9dd
#define ICON_MS_SD_CARD "\xee\x98\xa3" // U+e623
#define ICON_MS_SD_CARD_ALERT "\xef\x81\x97" // U+f057
#define ICON_MS_SD_STORAGE "\xee\x98\xa3" // U+e623
#define ICON_MS_SDK "\xee\x9c\xa0" // U+e720
#define ICON_MS_SEARCH "\xee\xa2\xb6" // U+e8b6
#define ICON_MS_SEARCH_CHECK "\xef\xa0\x80" // U+f800
#define ICON_MS_SEARCH_HANDS_FREE "\xee\x9a\x96" // U+e696
#define ICON_MS_SEARCH_INSIGHTS "\xef\x92\xbc" // U+f4bc
#define ICON_MS_SEARCH_OFF "\xee\xa9\xb6" // U+ea76
#define ICON_MS_SECURITY "\xee\x8c\xaa" // U+e32a
#define ICON_MS_SECURITY_KEY "\xef\x94\x83" // U+f503
#define ICON_MS_SECURITY_UPDATE "\xef\x81\xb2" // U+f072
#define ICON_MS_SECURITY_UPDATE_GOOD "\xef\x81\xb3" // U+f073
#define ICON_MS_SECURITY_UPDATE_WARNING "\xef\x81\xb4" // U+f074
#define ICON_MS_SEGMENT "\xee\xa5\x8b" // U+e94b
#define ICON_MS_SELECT "\xef\x9d\x8d" // U+f74d
#define ICON_MS_SELECT_ALL "\xee\x85\xa2" // U+e162
#define ICON_MS_SELECT_CHECK_BOX "\xef\x87\xbe" // U+f1fe
#define ICON_MS_SELECT_TO_SPEAK "\xef\x9f\x8f" // U+f7cf
#define ICON_MS_SELECT_WINDOW "\xee\x9b\xba" // U+e6fa
#define ICON_MS_SELECT_WINDOW_2 "\xef\x93\x88" // U+f4c8
#define ICON_MS_SELECT_WINDOW_OFF "\xee\x94\x86" // U+e506
#define ICON_MS_SELF_CARE "\xef\xa1\xad" // U+f86d
#define ICON_MS_SELF_IMPROVEMENT "\xee\xa9\xb8" // U+ea78
#define ICON_MS_SELL "\xef\x81\x9b" // U+f05b
#define ICON_MS_SEND "\xee\x85\xa3" // U+e163
#define ICON_MS_SEND_AND_ARCHIVE "\xee\xa8\x8c" // U+ea0c
#define ICON_MS_SEND_MONEY "\xee\xa2\xb7" // U+e8b7
#define ICON_MS_SEND_TIME_EXTENSION "\xee\xab\x9b" // U+eadb
#define ICON_MS_SEND_TO_MOBILE "\xef\x81\x9c" // U+f05c
#define ICON_MS_SENSOR_DOOR "\xef\x86\xb5" // U+f1b5
#define ICON_MS_SENSOR_OCCUPIED "\xee\xb0\x90" // U+ec10
#define ICON_MS_SENSOR_WINDOW "\xef\x86\xb4" // U+f1b4
#define ICON_MS_SENSORS "\xee\x94\x9e" // U+e51e
#define ICON_MS_SENSORS_KRX "\xef\x95\x96" // U+f556
#define ICON_MS_SENSORS_KRX_OFF "\xef\x94\x95" // U+f515
#define ICON_MS_SENSORS_OFF "\xee\x94\x9f" // U+e51f
#define ICON_MS_SENTIMENT_CALM "\xef\x9a\xa7" // U+f6a7
#define ICON_MS_SENTIMENT_CONTENT "\xef\x9a\xa6" // U+f6a6
#define ICON_MS_SENTIMENT_DISSATISFIED "\xee\xa0\x91" // U+e811
#define ICON_MS_SENTIMENT_EXCITED "\xef\x9a\xa5" // U+f6a5
#define ICON_MS_SENTIMENT_EXTREMELY_DISSATISFIED "\xef\x86\x94" // U+f194
#define ICON_MS_SENTIMENT_FRUSTRATED "\xef\x9a\xa4" // U+f6a4
#define ICON_MS_SENTIMENT_NEUTRAL "\xee\xa0\x92" // U+e812
#define ICON_MS_SENTIMENT_SAD "\xef\x9a\xa3" // U+f6a3
#define ICON_MS_SENTIMENT_SATISFIED "\xee\xa0\x93" // U+e813
#define ICON_MS_SENTIMENT_SATISFIED_ALT "\xee\xa0\x93" // U+e813
#define ICON_MS_SENTIMENT_STRESSED "\xef\x9a\xa2" // U+f6a2
#define ICON_MS_SENTIMENT_VERY_DISSATISFIED "\xee\xa0\x94" // U+e814
#define ICON_MS_SENTIMENT_VERY_SATISFIED "\xee\xa0\x95" // U+e815
#define ICON_MS_SENTIMENT_WORRIED "\xef\x9a\xa1" // U+f6a1
#define ICON_MS_SERIF "\xef\x92\xac" // U+f4ac
#define ICON_MS_SERVICE_TOOLBOX "\xee\x9c\x97" // U+e717
#define ICON_MS_SET_MEAL "\xef\x87\xaa" // U+f1ea
#define ICON_MS_SETTINGS "\xee\xa2\xb8" // U+e8b8
#define ICON_MS_SETTINGS_ACCESSIBILITY "\xef\x81\x9d" // U+f05d
#define ICON_MS_SETTINGS_ACCOUNT_BOX "\xef\xa0\xb5" // U+f835
#define ICON_MS_SETTINGS_ALERT "\xef\x85\x83" // U+f143
#define ICON_MS_SETTINGS_APPLICATIONS "\xee\xa2\xb9" // U+e8b9
#define ICON_MS_SETTINGS_B_ROLL "\xef\x98\xa5" // U+f625
#define ICON_MS_SETTINGS_BACKUP_RESTORE "\xee\xa2\xba" // U+e8ba
#define ICON_MS_SETTINGS_BLUETOOTH "\xee\xa2\xbb" // U+e8bb
#define ICON_MS_SETTINGS_BRIGHTNESS "\xee\xa2\xbd" // U+e8bd
#define ICON_MS_SETTINGS_CELL "\xee\xa2\xbc" // U+e8bc
#define ICON_MS_SETTINGS_CINEMATIC_BLUR "\xef\x98\xa4" // U+f624
#define ICON_MS_SETTINGS_ETHERNET "\xee\xa2\xbe" // U+e8be
#define ICON_MS_SETTINGS_HEART "\xef\x94\xa2" // U+f522
#define ICON_MS_SETTINGS_INPUT_ANTENNA "\xee\xa2\xbf" // U+e8bf
#define ICON_MS_SETTINGS_INPUT_COMPONENT "\xee\xa3\x81" // U+e8c1
#define ICON_MS_SETTINGS_INPUT_COMPOSITE "\xee\xa3\x81" // U+e8c1
#define ICON_MS_SETTINGS_INPUT_HDMI "\xee\xa3\x82" // U+e8c2
#define ICON_MS_SETTINGS_INPUT_SVIDEO "\xee\xa3\x83" // U+e8c3
#define ICON_MS_SETTINGS_MOTION_MODE "\xef\xa0\xb3" // U+f833
#define ICON_MS_SETTINGS_NIGHT_SIGHT "\xef\xa0\xb2" // U+f832
#define ICON_MS_SETTINGS_OVERSCAN "\xee\xa3\x84" // U+e8c4
#define ICON_MS_SETTINGS_PANORAMA "\xef\xa0\xb1" // U+f831
#define ICON_MS_SETTINGS_PHONE "\xee\xa3\x85" // U+e8c5
#define ICON_MS_SETTINGS_PHOTO_CAMERA "\xef\xa0\xb4" // U+f834
#define ICON_MS_SETTINGS_POWER "\xee\xa3\x86" // U+e8c6
#define ICON_MS_SETTINGS_REMOTE "\xee\xa3\x87" // U+e8c7
#define ICON_MS_SETTINGS_SLOW_MOTION "\xef\x98\xa3" // U+f623
#define ICON_MS_SETTINGS_SUGGEST "\xef\x81\x9e" // U+f05e
#define ICON_MS_SETTINGS_SYSTEM_DAYDREAM "\xee\x87\x83" // U+e1c3
#define ICON_MS_SETTINGS_TIMELAPSE "\xef\x98\xa2" // U+f622
#define ICON_MS_SETTINGS_VIDEO_CAMERA "\xef\x98\xa1" // U+f621
#define ICON_MS_SETTINGS_VOICE "\xee\xa3\x88" // U+e8c8
#define ICON_MS_SETTOP_COMPONENT "\xee\x8a\xac" // U+e2ac
#define ICON_MS_SEVERE_COLD "\xee\xaf\x93" // U+ebd3
#define ICON_MS_SHADOW "\xee\xa7\x9f" // U+e9df
#define ICON_MS_SHADOW_ADD "\xef\x96\x84" // U+f584
#define ICON_MS_SHADOW_MINUS "\xef\x96\x83" // U+f583
#define ICON_MS_SHAPE_LINE "\xef\xa3\x93" // U+f8d3
#define ICON_MS_SHAPE_RECOGNITION "\xee\xac\x81" // U+eb01
#define ICON_MS_SHAPES "\xee\x98\x82" // U+e602
#define ICON_MS_SHARE "\xee\xa0\x8d" // U+e80d
#define ICON_MS_SHARE_LOCATION "\xef\x81\x9f" // U+f05f
#define ICON_MS_SHARE_OFF "\xef\x9b\x8b" // U+f6cb
#define ICON_MS_SHARE_REVIEWS "\xef\xa2\xa4" // U+f8a4
#define ICON_MS_SHARE_WINDOWS "\xef\x98\x93" // U+f613
#define ICON_MS_SHEETS_RTL "\xef\xa0\xa3" // U+f823
#define ICON_MS_SHELF_AUTO_HIDE "\xef\x9c\x83" // U+f703
#define ICON_MS_SHELF_POSITION "\xef\x9c\x82" // U+f702
#define ICON_MS_SHELVES "\xef\xa1\xae" // U+f86e
#define ICON_MS_SHIELD "\xee\xa7\xa0" // U+e9e0
#define ICON_MS_SHIELD_LOCK "\xef\x9a\x86" // U+f686
#define ICON_MS_SHIELD_LOCKED "\xef\x96\x92" // U+f592
#define ICON_MS_SHIELD_MOON "\xee\xaa\xa9" // U+eaa9
#define ICON_MS_SHIELD_PERSON "\xef\x99\x90" // U+f650
#define ICON_MS_SHIELD_QUESTION "\xef\x94\xa9" // U+f529
#define ICON_MS_SHIELD_WITH_HEART "\xee\x9e\x8f" // U+e78f
#define ICON_MS_SHIELD_WITH_HOUSE "\xee\x9e\x8d" // U+e78d
#define ICON_MS_SHIFT "\xee\x97\xb2" // U+e5f2
#define ICON_MS_SHIFT_LOCK "\xef\x9e\xae" // U+f7ae
#define ICON_MS_SHIFT_LOCK_OFF "\xef\x92\x83" // U+f483
#define ICON_MS_SHOP "\xee\xa3\x89" // U+e8c9
#define ICON_MS_SHOP_2 "\xee\xa3\x8a" // U+e8ca
#define ICON_MS_SHOP_TWO "\xee\xa3\x8a" // U+e8ca
#define ICON_MS_SHOPPING_BAG "\xef\x87\x8c" // U+f1cc
#define ICON_MS_SHOPPING_BASKET "\xee\xa3\x8b" // U+e8cb
#define ICON_MS_SHOPPING_CART "\xee\xa3\x8c" // U+e8cc
#define ICON_MS_SHOPPING_CART_CHECKOUT "\xee\xae\x88" // U+eb88
#define ICON_MS_SHOPPING_CART_OFF "\xef\x93\xb7" // U+f4f7
#define ICON_MS_SHOPPINGMODE "\xee\xbe\xb7" // U+efb7
#define ICON_MS_SHORT_STAY "\xee\x93\x90" // U+e4d0
#define ICON_MS_SHORT_TEXT "\xee\x89\xa1" // U+e261
#define ICON_MS_SHORTCUT "\xef\x95\xba" // U+f57a
#define ICON_MS_SHOW_CHART "\xee\x9b\xa1" // U+e6e1
#define ICON_MS_SHOWER "\xef\x81\xa1" // U+f061
#define ICON_MS_SHUFFLE "\xee\x81\x83" // U+e043
#define ICON_MS_SHUFFLE_ON "\xee\xa7\xa1" // U+e9e1
#define ICON_MS_SHUTTER_SPEED "\xee\x90\xbd" // U+e43d
#define ICON_MS_SHUTTER_SPEED_ADD "\xef\x95\xbe" // U+f57e
#define ICON_MS_SHUTTER_SPEED_MINUS "\xef\x95\xbd" // U+f57d
#define ICON_MS_SICK "\xef\x88\xa0" // U+f220
#define ICON_MS_SIDE_NAVIGATION "\xee\xa7\xa2" // U+e9e2
#define ICON_MS_SIGN_LANGUAGE "\xee\xaf\xa5" // U+ebe5
#define ICON_MS_SIGNAL_CELLULAR_0_BAR "\xef\x82\xa8" // U+f0a8
#define ICON_MS_SIGNAL_CELLULAR_1_BAR "\xef\x82\xa9" // U+f0a9
#define ICON_MS_SIGNAL_CELLULAR_2_BAR "\xef\x82\xaa" // U+f0aa
#define ICON_MS_SIGNAL_CELLULAR_3_BAR "\xef\x82\xab" // U+f0ab
#define ICON_MS_SIGNAL_CELLULAR_4_BAR "\xee\x87\x88" // U+e1c8
#define ICON_MS_SIGNAL_CELLULAR_ADD "\xef\x9e\xa9" // U+f7a9
#define ICON_MS_SIGNAL_CELLULAR_ALT "\xee\x88\x82" // U+e202
#define ICON_MS_SIGNAL_CELLULAR_ALT_1_BAR "\xee\xaf\x9f" // U+ebdf
#define ICON_MS_SIGNAL_CELLULAR_ALT_2_BAR "\xee\xaf\xa3" // U+ebe3
#define ICON_MS_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR "\xef\x82\xac" // U+f0ac
#define ICON_MS_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR "\xee\x87\x8d" // U+e1cd
#define ICON_MS_SIGNAL_CELLULAR_NO_SIM "\xee\x87\x8e" // U+e1ce
#define ICON_MS_SIGNAL_CELLULAR_NODATA "\xef\x81\xa2" // U+f062
#define ICON_MS_SIGNAL_CELLULAR_NULL "\xee\x87\x8f" // U+e1cf
#define ICON_MS_SIGNAL_CELLULAR_OFF "\xee\x87\x90" // U+e1d0
#define ICON_MS_SIGNAL_CELLULAR_PAUSE "\xef\x96\xa7" // U+f5a7
#define ICON_MS_SIGNAL_DISCONNECTED "\xef\x88\xb9" // U+f239
#define ICON_MS_SIGNAL_WIFI_0_BAR "\xef\x82\xb0" // U+f0b0
#define ICON_MS_SIGNAL_WIFI_4_BAR "\xef\x81\xa5" // U+f065
#define ICON_MS_SIGNAL_WIFI_4_BAR_LOCK "\xee\x87\xa1" // U+e1e1
#define ICON_MS_SIGNAL_WIFI_BAD "\xef\x81\xa4" // U+f064
#define ICON_MS_SIGNAL_WIFI_CONNECTED_NO_INTERNET_4 "\xef\x81\xa4" // U+f064
#define ICON_MS_SIGNAL_WIFI_OFF "\xee\x87\x9a" // U+e1da
#define ICON_MS_SIGNAL_WIFI_STATUSBAR_4_BAR "\xef\x81\xa5" // U+f065
#define ICON_MS_SIGNAL_WIFI_STATUSBAR_NOT_CONNECTED "\xef\x83\xaf" // U+f0ef
#define ICON_MS_SIGNAL_WIFI_STATUSBAR_NULL "\xef\x81\xa7" // U+f067
#define ICON_MS_SIGNATURE "\xef\x9d\x8c" // U+f74c
#define ICON_MS_SIGNPOST "\xee\xae\x91" // U+eb91
#define ICON_MS_SIM_CARD "\xee\x8c\xab" // U+e32b
#define ICON_MS_SIM_CARD_ALERT "\xef\x81\x97" // U+f057
#define ICON_MS_SIM_CARD_DOWNLOAD "\xef\x81\xa8" // U+f068
#define ICON_MS_SINGLE_BED "\xee\xa9\x88" // U+ea48
#define ICON_MS_SIP "\xef\x81\xa9" // U+f069
#define ICON_MS_SKATEBOARDING "\xee\x94\x91" // U+e511
#define ICON_MS_SKELETON "\xef\xa2\x99" // U+f899
#define ICON_MS_SKILLET "\xef\x95\x83" // U+f543
#define ICON_MS_SKILLET_COOKTOP "\xef\x95\x84" // U+f544
#define ICON_MS_SKIP_NEXT "\xee\x81\x84" // U+e044
#define ICON_MS_SKIP_PREVIOUS "\xee\x81\x85" // U+e045
#define ICON_MS_SKULL "\xef\xa2\x9a" // U+f89a
#define ICON_MS_SLAB_SERIF "\xef\x92\xab" // U+f4ab
#define ICON_MS_SLEDDING "\xee\x94\x92" // U+e512
#define ICON_MS_SLEEP "\xee\x88\x93" // U+e213
#define ICON_MS_SLEEP_SCORE "\xef\x9a\xb7" // U+f6b7
#define ICON_MS_SLIDE_LIBRARY "\xef\xa0\xa2" // U+f822
#define ICON_MS_SLIDERS "\xee\xa7\xa3" // U+e9e3
#define ICON_MS_SLIDESHOW "\xee\x90\x9b" // U+e41b
#define ICON_MS_SLOW_MOTION_VIDEO "\xee\x81\xa8" // U+e068
#define ICON_MS_SMART_BUTTON "\xef\x87\x81" // U+f1c1
#define ICON_MS_SMART_CARD_READER "\xef\x92\xa5" // U+f4a5
#define ICON_MS_SMART_CARD_READER_OFF "\xef\x92\xa6" // U+f4a6
#define ICON_MS_SMART_DISPLAY "\xef\x81\xaa" // U+f06a
#define ICON_MS_SMART_OUTLET "\xee\xa1\x84" // U+e844
#define ICON_MS_SMART_SCREEN "\xef\x81\xab" // U+f06b
#define ICON_MS_SMART_TOY "\xef\x81\xac" // U+f06c
#define ICON_MS_SMARTPHONE "\xee\x8c\xac" // U+e32c
#define ICON_MS_SMB_SHARE "\xef\x9d\x8b" // U+f74b
#define ICON_MS_SMOKE_FREE "\xee\xad\x8a" // U+eb4a
#define ICON_MS_SMOKING_ROOMS "\xee\xad\x8b" // U+eb4b
#define ICON_MS_SMS "\xee\x98\xa5" // U+e625
#define ICON_MS_SMS_FAILED "\xee\xa1\xbf" // U+e87f
#define ICON_MS_SNIPPET_FOLDER "\xef\x87\x87" // U+f1c7
#define ICON_MS_SNOOZE "\xee\x81\x86" // U+e046
#define ICON_MS_SNOWBOARDING "\xee\x94\x93" // U+e513
#define ICON_MS_SNOWING "\xee\xa0\x8f" // U+e80f
#define ICON_MS_SNOWING_HEAVY "\xef\x98\x9c" // U+f61c
#define ICON_MS_SNOWMOBILE "\xee\x94\x83" // U+e503
#define ICON_MS_SNOWSHOEING "\xee\x94\x94" // U+e514
#define ICON_MS_SOAP "\xef\x86\xb2" // U+f1b2
#define ICON_MS_SOCIAL_DISTANCE "\xee\x87\x8b" // U+e1cb
#define ICON_MS_SOCIAL_LEADERBOARD "\xef\x9a\xa0" // U+f6a0
#define ICON_MS_SOLAR_POWER "\xee\xb0\x8f" // U+ec0f
#define ICON_MS_SORT "\xee\x85\xa4" // U+e164
#define ICON_MS_SORT_BY_ALPHA "\xee\x81\x93" // U+e053
#define ICON_MS_SOS "\xee\xaf\xb7" // U+ebf7
#define ICON_MS_SOUND_DETECTION_DOG_BARKING "\xef\x85\x89" // U+f149
#define ICON_MS_SOUND_DETECTION_GLASS_BREAK "\xef\x85\x8a" // U+f14a
#define ICON_MS_SOUND_DETECTION_LOUD_SOUND "\xef\x85\x8b" // U+f14b
#define ICON_MS_SOUND_SAMPLER "\xef\x9a\xb4" // U+f6b4
#define ICON_MS_SOUP_KITCHEN "\xee\x9f\x93" // U+e7d3
#define ICON_MS_SOURCE "\xef\x87\x88" // U+f1c8
#define ICON_MS_SOURCE_ENVIRONMENT "\xee\x94\xa7" // U+e527
#define ICON_MS_SOURCE_NOTES "\xee\x84\xad" // U+e12d
#define ICON_MS_SOUTH "\xef\x87\xa3" // U+f1e3
#define ICON_MS_SOUTH_AMERICA "\xee\x9f\xa4" // U+e7e4
#define ICON_MS_SOUTH_EAST "\xef\x87\xa4" // U+f1e4
#define ICON_MS_SOUTH_WEST "\xef\x87\xa5" // U+f1e5
#define ICON_MS_SPA "\xee\xad\x8c" // U+eb4c
#define ICON_MS_SPACE_BAR "\xee\x89\x96" // U+e256
#define ICON_MS_SPACE_DASHBOARD "\xee\x99\xab" // U+e66b
#define ICON_MS_SPATIAL_AUDIO "\xee\xaf\xab" // U+ebeb
#define ICON_MS_SPATIAL_AUDIO_OFF "\xee\xaf\xa8" // U+ebe8
#define ICON_MS_SPATIAL_SPEAKER "\xef\x93\x8f" // U+f4cf
#define ICON_MS_SPATIAL_TRACKING "\xee\xaf\xaa" // U+ebea
#define ICON_MS_SPEAKER "\xee\x8c\xad" // U+e32d
#define ICON_MS_SPEAKER_GROUP "\xee\x8c\xae" // U+e32e
#define ICON_MS_SPEAKER_NOTES "\xee\xa3\x8d" // U+e8cd
#define ICON_MS_SPEAKER_NOTES_OFF "\xee\xa4\xaa" // U+e92a
#define ICON_MS_SPEAKER_PHONE "\xee\x83\x92" // U+e0d2
#define ICON_MS_SPECIAL_CHARACTER "\xef\x9d\x8a" // U+f74a
#define ICON_MS_SPECIFIC_GRAVITY "\xef\xa1\xb2" // U+f872
#define ICON_MS_SPEECH_TO_TEXT "\xef\xa2\xa7" // U+f8a7
#define ICON_MS_SPEED "\xee\xa7\xa4" // U+e9e4
#define ICON_MS_SPEED_0_25 "\xef\x93\x94" // U+f4d4
#define ICON_MS_SPEED_0_2X "\xef\x92\x98" // U+f498
#define ICON_MS_SPEED_0_5 "\xef\x93\xa2" // U+f4e2
#define ICON_MS_SPEED_0_5X "\xef\x92\x97" // U+f497
#define ICON_MS_SPEED_0_75 "\xef\x93\x93" // U+f4d3
#define ICON_MS_SPEED_0_7X "\xef\x92\x96" // U+f496
#define ICON_MS_SPEED_1_2 "\xef\x93\xa1" // U+f4e1
#define ICON_MS_SPEED_1_25 "\xef\x93\x92" // U+f4d2
#define ICON_MS_SPEED_1_2X "\xef\x92\x95" // U+f495
#define ICON_MS_SPEED_1_5 "\xef\x93\xa0" // U+f4e0
#define ICON_MS_SPEED_1_5X "\xef\x92\x94" // U+f494
#define ICON_MS_SPEED_1_75 "\xef\x93\x91" // U+f4d1
#define ICON_MS_SPEED_1_7X "\xef\x92\x93" // U+f493
#define ICON_MS_SPEED_2X "\xef\x93\xab" // U+f4eb
#define ICON_MS_SPELLCHECK "\xee\xa3\x8e" // U+e8ce
#define ICON_MS_SPLITSCREEN "\xef\x81\xad" // U+f06d
#define ICON_MS_SPLITSCREEN_ADD "\xef\x93\xbd" // U+f4fd
#define ICON_MS_SPLITSCREEN_BOTTOM "\xef\x99\xb6" // U+f676
#define ICON_MS_SPLITSCREEN_LEFT "\xef\x99\xb5" // U+f675
#define ICON_MS_SPLITSCREEN_RIGHT "\xef\x99\xb4" // U+f674
#define ICON_MS_SPLITSCREEN_TOP "\xef\x99\xb3" // U+f673
#define ICON_MS_SPLITSCREEN_VERTICAL_ADD "\xef\x93\xbc" // U+f4fc
#define ICON_MS_SPO2 "\xef\x9b\x9b" // U+f6db
#define ICON_MS_SPOKE "\xee\xa6\xa7" // U+e9a7
#define ICON_MS_SPORTS "\xee\xa8\xb0" // U+ea30
#define ICON_MS_SPORTS_AND_OUTDOORS "\xee\xbe\xb8" // U+efb8
#define ICON_MS_SPORTS_BAR "\xef\x87\xb3" // U+f1f3
#define ICON_MS_SPORTS_BASEBALL "\xee\xa9\x91" // U+ea51
#define ICON_MS_SPORTS_BASKETBALL "\xee\xa8\xa6" // U+ea26
#define ICON_MS_SPORTS_CRICKET "\xee\xa8\xa7" // U+ea27
#define ICON_MS_SPORTS_ESPORTS "\xee\xa8\xa8" // U+ea28
#define ICON_MS_SPORTS_FOOTBALL "\xee\xa8\xa9" // U+ea29
#define ICON_MS_SPORTS_GOLF "\xee\xa8\xaa" // U+ea2a
#define ICON_MS_SPORTS_GYMNASTICS "\xee\xaf\x84" // U+ebc4
#define ICON_MS_SPORTS_HANDBALL "\xee\xa8\xb3" // U+ea33
#define ICON_MS_SPORTS_HOCKEY "\xee\xa8\xab" // U+ea2b
#define ICON_MS_SPORTS_KABADDI "\xee\xa8\xb4" // U+ea34
#define ICON_MS_SPORTS_MARTIAL_ARTS "\xee\xab\xa9" // U+eae9
#define ICON_MS_SPORTS_MMA "\xee\xa8\xac" // U+ea2c
#define ICON_MS_SPORTS_MOTORSPORTS "\xee\xa8\xad" // U+ea2d
#define ICON_MS_SPORTS_RUGBY "\xee\xa8\xae" // U+ea2e
#define ICON_MS_SPORTS_SCORE "\xef\x81\xae" // U+f06e
#define ICON_MS_SPORTS_SOCCER "\xee\xa8\xaf" // U+ea2f
#define ICON_MS_SPORTS_TENNIS "\xee\xa8\xb2" // U+ea32
#define ICON_MS_SPORTS_VOLLEYBALL "\xee\xa8\xb1" // U+ea31
#define ICON_MS_SPRINKLER "\xee\x8a\x9a" // U+e29a
#define ICON_MS_SPRINT "\xef\xa0\x9f" // U+f81f
#define ICON_MS_SQUARE "\xee\xac\xb6" // U+eb36
#define ICON_MS_SQUARE_FOOT "\xee\xa9\x89" // U+ea49
#define ICON_MS_SSID_CHART "\xee\xad\xa6" // U+eb66
#define ICON_MS_STACK "\xef\x98\x89" // U+f609
#define ICON_MS_STACK_OFF "\xef\x98\x88" // U+f608
#define ICON_MS_STACK_STAR "\xef\x98\x87" // U+f607
#define ICON_MS_STACKED_BAR_CHART "\xee\xa7\xa6" // U+e9e6
#define ICON_MS_STACKED_EMAIL "\xee\x9b\x87" // U+e6c7
#define ICON_MS_STACKED_INBOX "\xee\x9b\x89" // U+e6c9
#define ICON_MS_STACKED_LINE_CHART "\xef\x88\xab" // U+f22b
#define ICON_MS_STACKS "\xef\x94\x80" // U+f500
#define ICON_MS_STADIA_CONTROLLER "\xef\x84\xb5" // U+f135
#define ICON_MS_STADIUM "\xee\xae\x90" // U+eb90
#define ICON_MS_STAIRS "\xef\x86\xa9" // U+f1a9
#define ICON_MS_STAR "\xef\x82\x9a" // U+f09a
#define ICON_MS_STAR_BORDER "\xef\x82\x9a" // U+f09a
#define ICON_MS_STAR_BORDER_PURPLE500 "\xef\x82\x9a" // U+f09a
#define ICON_MS_STAR_HALF "\xee\xa0\xb9" // U+e839
#define ICON_MS_STAR_OUTLINE "\xef\x82\x9a" // U+f09a
#define ICON_MS_STAR_PURPLE500 "\xef\x82\x9a" // U+f09a
#define ICON_MS_STAR_RATE "\xef\x83\xac" // U+f0ec
#define ICON_MS_STAR_RATE_HALF "\xee\xb1\x85" // U+ec45
#define ICON_MS_STARS "\xee\xa3\x90" // U+e8d0
#define ICON_MS_START "\xee\x82\x89" // U+e089
#define ICON_MS_STAT_0 "\xee\x9a\x97" // U+e697
#define ICON_MS_STAT_1 "\xee\x9a\x98" // U+e698
#define ICON_MS_STAT_2 "\xee\x9a\x99" // U+e699
#define ICON_MS_STAT_3 "\xee\x9a\x9a" // U+e69a
#define ICON_MS_STAT_MINUS_1 "\xee\x9a\x9b" // U+e69b
#define ICON_MS_STAT_MINUS_2 "\xee\x9a\x9c" // U+e69c
#define ICON_MS_STAT_MINUS_3 "\xee\x9a\x9d" // U+e69d
#define ICON_MS_STAY_CURRENT_LANDSCAPE "\xee\x83\x93" // U+e0d3
#define ICON_MS_STAY_CURRENT_PORTRAIT "\xee\x83\x94" // U+e0d4
#define ICON_MS_STAY_PRIMARY_LANDSCAPE "\xee\x83\x95" // U+e0d5
#define ICON_MS_STAY_PRIMARY_PORTRAIT "\xee\x83\x96" // U+e0d6
#define ICON_MS_STEP "\xef\x9b\xbe" // U+f6fe
#define ICON_MS_STEP_INTO "\xef\x9c\x81" // U+f701
#define ICON_MS_STEP_OUT "\xef\x9c\x80" // U+f700
#define ICON_MS_STEP_OVER "\xef\x9b\xbf" // U+f6ff
#define ICON_MS_STEPPERS "\xee\xa7\xa7" // U+e9e7
#define ICON_MS_STEPS "\xef\x9b\x9a" // U+f6da
#define ICON_MS_STETHOSCOPE "\xef\xa0\x85" // U+f805
#define ICON_MS_STETHOSCOPE_ARROW "\xef\xa0\x87" // U+f807
#define ICON_MS_STETHOSCOPE_CHECK "\xef\xa0\x86" // U+f806
#define ICON_MS_STICKY_NOTE "\xee\xa7\xa8" // U+e9e8
#define ICON_MS_STICKY_NOTE_2 "\xef\x87\xbc" // U+f1fc
#define ICON_MS_STOCK_MEDIA "\xef\x95\xb0" // U+f570
#define ICON_MS_STOCKPOT "\xef\x95\x85" // U+f545
#define ICON_MS_STOP "\xee\x81\x87" // U+e047
#define ICON_MS_STOP_CIRCLE "\xee\xbd\xb1" // U+ef71
#define ICON_MS_STOP_SCREEN_SHARE "\xee\x83\xa3" // U+e0e3
#define ICON_MS_STORAGE "\xee\x87\x9b" // U+e1db
#define ICON_MS_STORE "\xee\xa3\x91" // U+e8d1
#define ICON_MS_STORE_MALL_DIRECTORY "\xee\xa3\x91" // U+e8d1
#define ICON_MS_STOREFRONT "\xee\xa8\x92" // U+ea12
#define ICON_MS_STORM "\xef\x81\xb0" // U+f070
#define ICON_MS_STRAIGHT "\xee\xae\x95" // U+eb95
#define ICON_MS_STRAIGHTEN "\xee\x90\x9c" // U+e41c
#define ICON_MS_STRATEGY "\xef\x97\x9f" // U+f5df
#define ICON_MS_STREAM "\xee\xa7\xa9" // U+e9e9
#define ICON_MS_STREAM_APPS "\xef\x9e\x9f" // U+f79f
#define ICON_MS_STREETVIEW "\xee\x95\xae" // U+e56e
#define ICON_MS_STRESS_MANAGEMENT "\xef\x9b\x99" // U+f6d9
#define ICON_MS_STRIKETHROUGH_S "\xee\x89\x97" // U+e257
#define ICON_MS_STROKE_FULL "\xef\x9d\x89" // U+f749
#define ICON_MS_STROKE_PARTIAL "\xef\x9d\x88" // U+f748
#define ICON_MS_STROLLER "\xef\x86\xae" // U+f1ae
#define ICON_MS_STYLE "\xee\x90\x9d" // U+e41d
#define ICON_MS_STYLER "\xee\x89\xb3" // U+e273
#define ICON_MS_STYLUS "\xef\x98\x84" // U+f604
#define ICON_MS_STYLUS_LASER_POINTER "\xef\x9d\x87" // U+f747
#define ICON_MS_STYLUS_NOTE "\xef\x98\x83" // U+f603
#define ICON_MS_SUBDIRECTORY_ARROW_LEFT "\xee\x97\x99" // U+e5d9
#define ICON_MS_SUBDIRECTORY_ARROW_RIGHT "\xee\x97\x9a" // U+e5da
#define ICON_MS_SUBHEADER "\xee\xa7\xaa" // U+e9ea
#define ICON_MS_SUBJECT "\xee\xa3\x92" // U+e8d2
#define ICON_MS_SUBSCRIPT "\xef\x84\x91" // U+f111
#define ICON_MS_SUBSCRIPTIONS "\xee\x81\xa4" // U+e064
#define ICON_MS_SUBTITLES "\xee\x81\x88" // U+e048
#define ICON_MS_SUBTITLES_OFF "\xee\xbd\xb2" // U+ef72
#define ICON_MS_SUBWAY "\xee\x95\xaf" // U+e56f
#define ICON_MS_SUMMARIZE "\xef\x81\xb1" // U+f071
#define ICON_MS_SUNNY "\xee\xa0\x9a" // U+e81a
#define ICON_MS_SUNNY_SNOWING "\xee\xa0\x99" // U+e819
#define ICON_MS_SUPERSCRIPT "\xef\x84\x92" // U+f112
#define ICON_MS_SUPERVISED_USER_CIRCLE "\xee\xa4\xb9" // U+e939
#define ICON_MS_SUPERVISED_USER_CIRCLE_OFF "\xef\x98\x8e" // U+f60e
#define ICON_MS_SUPERVISOR_ACCOUNT "\xee\xa3\x93" // U+e8d3
#define ICON_MS_SUPPORT "\xee\xbd\xb3" // U+ef73
#define ICON_MS_SUPPORT_AGENT "\xef\x83\xa2" // U+f0e2
#define ICON_MS_SURFING "\xee\x94\x95" // U+e515
#define ICON_MS_SURGICAL "\xee\x84\xb1" // U+e131
#define ICON_MS_SURROUND_SOUND "\xee\x81\x89" // U+e049
#define ICON_MS_SWAP_CALLS "\xee\x83\x97" // U+e0d7
#define ICON_MS_SWAP_DRIVING_APPS "\xee\x9a\x9e" // U+e69e
#define ICON_MS_SWAP_DRIVING_APPS_WHEEL "\xee\x9a\x9f" // U+e69f
#define ICON_MS_SWAP_HORIZ "\xee\xa3\x94" // U+e8d4
#define ICON_MS_SWAP_HORIZONTAL_CIRCLE "\xee\xa4\xb3" // U+e933
#define ICON_MS_SWAP_VERT "\xee\xa3\x95" // U+e8d5
#define ICON_MS_SWAP_VERTICAL_CIRCLE "\xee\xa3\x96" // U+e8d6
#define ICON_MS_SWEEP "\xee\x9a\xac" // U+e6ac
#define ICON_MS_SWIPE "\xee\xa7\xac" // U+e9ec
#define ICON_MS_SWIPE_DOWN "\xee\xad\x93" // U+eb53
#define ICON_MS_SWIPE_DOWN_ALT "\xee\xac\xb0" // U+eb30
#define ICON_MS_SWIPE_LEFT "\xee\xad\x99" // U+eb59
#define ICON_MS_SWIPE_LEFT_ALT "\xee\xac\xb3" // U+eb33
#define ICON_MS_SWIPE_RIGHT "\xee\xad\x92" // U+eb52
#define ICON_MS_SWIPE_RIGHT_ALT "\xee\xad\x96" // U+eb56
#define ICON_MS_SWIPE_UP "\xee\xac\xae" // U+eb2e
#define ICON_MS_SWIPE_UP_ALT "\xee\xac\xb5" // U+eb35
#define ICON_MS_SWIPE_VERTICAL "\xee\xad\x91" // U+eb51
#define ICON_MS_SWITCH "\xee\x87\xb4" // U+e1f4
#define ICON_MS_SWITCH_ACCESS "\xef\x9b\xbd" // U+f6fd
#define ICON_MS_SWITCH_ACCESS_2 "\xef\x94\x86" // U+f506
#define ICON_MS_SWITCH_ACCESS_SHORTCUT "\xee\x9f\xa1" // U+e7e1
#define ICON_MS_SWITCH_ACCESS_SHORTCUT_ADD "\xee\x9f\xa2" // U+e7e2
#define ICON_MS_SWITCH_ACCOUNT "\xee\xa7\xad" // U+e9ed
#define ICON_MS_SWITCH_CAMERA "\xee\x90\x9e" // U+e41e
#define ICON_MS_SWITCH_LEFT "\xef\x87\x91" // U+f1d1
#define ICON_MS_SWITCH_RIGHT "\xef\x87\x92" // U+f1d2
#define ICON_MS_SWITCH_VIDEO "\xee\x90\x9f" // U+e41f
#define ICON_MS_SWITCHES "\xee\x9c\xb3" // U+e733
#define ICON_MS_SWORD_ROSE "\xef\x97\x9e" // U+f5de
#define ICON_MS_SWORDS "\xef\xa2\x89" // U+f889
#define ICON_MS_SYMPTOMS "\xee\x84\xb2" // U+e132
#define ICON_MS_SYNAGOGUE "\xee\xaa\xb0" // U+eab0
#define ICON_MS_SYNC "\xee\x98\xa7" // U+e627
#define ICON_MS_SYNC_ALT "\xee\xa8\x98" // U+ea18
#define ICON_MS_SYNC_DISABLED "\xee\x98\xa8" // U+e628
#define ICON_MS_SYNC_LOCK "\xee\xab\xae" // U+eaee
#define ICON_MS_SYNC_PROBLEM "\xee\x98\xa9" // U+e629
#define ICON_MS_SYNC_SAVED_LOCALLY "\xef\xa0\xa0" // U+f820
#define ICON_MS_SYRINGE "\xee\x84\xb3" // U+e133
#define ICON_MS_SYSTEM_SECURITY_UPDATE "\xef\x81\xb2" // U+f072
#define ICON_MS_SYSTEM_SECURITY_UPDATE_GOOD "\xef\x81\xb3" // U+f073
#define ICON_MS_SYSTEM_SECURITY_UPDATE_WARNING "\xef\x81\xb4" // U+f074
#define ICON_MS_SYSTEM_UPDATE "\xef\x81\xb2" // U+f072
#define ICON_MS_SYSTEM_UPDATE_ALT "\xee\xa3\x97" // U+e8d7
#define ICON_MS_TAB "\xee\xa3\x98" // U+e8d8
#define ICON_MS_TAB_CLOSE "\xef\x9d\x85" // U+f745
#define ICON_MS_TAB_CLOSE_RIGHT "\xef\x9d\x86" // U+f746
#define ICON_MS_TAB_DUPLICATE "\xef\x9d\x84" // U+f744
#define ICON_MS_TAB_GROUP "\xef\x9d\x83" // U+f743
#define ICON_MS_TAB_MOVE "\xef\x9d\x82" // U+f742
#define ICON_MS_TAB_NEW_RIGHT "\xef\x9d\x81" // U+f741
#define ICON_MS_TAB_RECENT "\xef\x9d\x80" // U+f740
#define ICON_MS_TAB_UNSELECTED "\xee\xa3\x99" // U+e8d9
#define ICON_MS_TABLE "\xef\x86\x91" // U+f191
#define ICON_MS_TABLE_BAR "\xee\xab\x92" // U+ead2
#define ICON_MS_TABLE_CHART "\xee\x89\xa5" // U+e265
#define ICON_MS_TABLE_CHART_VIEW "\xef\x9b\xaf" // U+f6ef
#define ICON_MS_TABLE_LAMP "\xee\x87\xb2" // U+e1f2
#define ICON_MS_TABLE_RESTAURANT "\xee\xab\x86" // U+eac6
#define ICON_MS_TABLE_ROWS "\xef\x84\x81" // U+f101
#define ICON_MS_TABLE_ROWS_NARROW "\xef\x9c\xbf" // U+f73f
#define ICON_MS_TABLE_VIEW "\xef\x86\xbe" // U+f1be
#define ICON_MS_TABLET "\xee\x8c\xaf" // U+e32f
#define ICON_MS_TABLET_ANDROID "\xee\x8c\xb0" // U+e330
#define ICON_MS_TABLET_MAC "\xee\x8c\xb1" // U+e331
#define ICON_MS_TABS "\xee\xa7\xae" // U+e9ee
#define ICON_MS_TACTIC "\xef\x95\xa4" // U+f564
#define ICON_MS_TAG "\xee\xa7\xaf" // U+e9ef
#define ICON_MS_TAG_FACES "\xee\xa8\xa2" // U+ea22
#define ICON_MS_TAKEOUT_DINING "\xee\xa9\xb4" // U+ea74
#define ICON_MS_TAMPER_DETECTION_OFF "\xee\xa0\xae" // U+e82e
#define ICON_MS_TAMPER_DETECTION_ON "\xef\xa3\x88" // U+f8c8
#define ICON_MS_TAP_AND_PLAY "\xee\x98\xab" // U+e62b
#define ICON_MS_TAPAS "\xef\x87\xa9" // U+f1e9
#define ICON_MS_TARGET "\xee\x9c\x99" // U+e719
#define ICON_MS_TASK "\xef\x81\xb5" // U+f075
#define ICON_MS_TASK_ALT "\xee\x8b\xa6" // U+e2e6
#define ICON_MS_TAUNT "\xef\x9a\x9f" // U+f69f
#define ICON_MS_TAXI_ALERT "\xee\xbd\xb4" // U+ef74
#define ICON_MS_TEAM_DASHBOARD "\xee\x80\x93" // U+e013
#define ICON_MS_TEMP_PREFERENCES_CUSTOM "\xef\xa3\x89" // U+f8c9
#define ICON_MS_TEMP_PREFERENCES_ECO "\xef\xa3\x8a" // U+f8ca
#define ICON_MS_TEMPLE_BUDDHIST "\xee\xaa\xb3" // U+eab3
#define ICON_MS_TEMPLE_HINDU "\xee\xaa\xaf" // U+eaaf
#define ICON_MS_TENANCY "\xef\x83\xa3" // U+f0e3
#define ICON_MS_TERMINAL "\xee\xae\x8e" // U+eb8e
#define ICON_MS_TERRAIN "\xee\x95\xa4" // U+e564
#define ICON_MS_TEXT_AD "\xee\x9c\xa8" // U+e728
#define ICON_MS_TEXT_DECREASE "\xee\xab\x9d" // U+eadd
#define ICON_MS_TEXT_FIELDS "\xee\x89\xa2" // U+e262
#define ICON_MS_TEXT_FIELDS_ALT "\xee\xa7\xb1" // U+e9f1
#define ICON_MS_TEXT_FORMAT "\xee\x85\xa5" // U+e165
#define ICON_MS_TEXT_INCREASE "\xee\xab\xa2" // U+eae2
#define ICON_MS_TEXT_ROTATE_UP "\xee\xa4\xba" // U+e93a
#define ICON_MS_TEXT_ROTATE_VERTICAL "\xee\xa4\xbb" // U+e93b
#define ICON_MS_TEXT_ROTATION_ANGLEDOWN "\xee\xa4\xbc" // U+e93c
#define ICON_MS_TEXT_ROTATION_ANGLEUP "\xee\xa4\xbd" // U+e93d
#define ICON_MS_TEXT_ROTATION_DOWN "\xee\xa4\xbe" // U+e93e
#define ICON_MS_TEXT_ROTATION_NONE "\xee\xa4\xbf" // U+e93f
#define ICON_MS_TEXT_SELECT_END "\xef\x9c\xbe" // U+f73e
#define ICON_MS_TEXT_SELECT_JUMP_TO_BEGINNING "\xef\x9c\xbd" // U+f73d
#define ICON_MS_TEXT_SELECT_JUMP_TO_END "\xef\x9c\xbc" // U+f73c
#define ICON_MS_TEXT_SELECT_MOVE_BACK_CHARACTER "\xef\x9c\xbb" // U+f73b
#define ICON_MS_TEXT_SELECT_MOVE_BACK_WORD "\xef\x9c\xba" // U+f73a
#define ICON_MS_TEXT_SELECT_MOVE_DOWN "\xef\x9c\xb9" // U+f739
#define ICON_MS_TEXT_SELECT_MOVE_FORWARD_CHARACTER "\xef\x9c\xb8" // U+f738
#define ICON_MS_TEXT_SELECT_MOVE_FORWARD_WORD "\xef\x9c\xb7" // U+f737
#define ICON_MS_TEXT_SELECT_MOVE_UP "\xef\x9c\xb6" // U+f736
#define ICON_MS_TEXT_SELECT_START "\xef\x9c\xb5" // U+f735
#define ICON_MS_TEXT_SNIPPET "\xef\x87\x86" // U+f1c6
#define ICON_MS_TEXT_TO_SPEECH "\xef\x86\xbc" // U+f1bc
#define ICON_MS_TEXT_UP "\xef\x92\x9e" // U+f49e
#define ICON_MS_TEXTSMS "\xee\x98\xa5" // U+e625
#define ICON_MS_TEXTURE "\xee\x90\xa1" // U+e421
#define ICON_MS_TEXTURE_ADD "\xef\x95\xbc" // U+f57c
#define ICON_MS_TEXTURE_MINUS "\xef\x95\xbb" // U+f57b
#define ICON_MS_THEATER_COMEDY "\xee\xa9\xa6" // U+ea66
#define ICON_MS_THEATERS "\xee\xa3\x9a" // U+e8da
#define ICON_MS_THERMOMETER "\xee\xa1\x86" // U+e846
#define ICON_MS_THERMOMETER_ADD "\xef\x96\x82" // U+f582
#define ICON_MS_THERMOMETER_GAIN "\xef\x9b\x98" // U+f6d8
#define ICON_MS_THERMOMETER_LOSS "\xef\x9b\x97" // U+f6d7
#define ICON_MS_THERMOMETER_MINUS "\xef\x96\x81" // U+f581
#define ICON_MS_THERMOSTAT "\xef\x81\xb6" // U+f076
#define ICON_MS_THERMOSTAT_AUTO "\xef\x81\xb7" // U+f077
#define ICON_MS_THERMOSTAT_CARBON "\xef\x85\xb8" // U+f178
#define ICON_MS_THINGS_TO_DO "\xee\xac\xaa" // U+eb2a
#define ICON_MS_THREAD_UNREAD "\xef\x93\xb9" // U+f4f9
#define ICON_MS_THUMB_DOWN "\xef\x95\xb8" // U+f578
#define ICON_MS_THUMB_DOWN_ALT "\xef\x95\xb8" // U+f578
#define ICON_MS_THUMB_DOWN_FILLED "\xef\x95\xb8" // U+f578
#define ICON_MS_THUMB_DOWN_OFF "\xef\x95\xb8" // U+f578
#define ICON_MS_THUMB_DOWN_OFF_ALT "\xef\x95\xb8" // U+f578
#define ICON_MS_THUMB_UP "\xef\x95\xb7" // U+f577
#define ICON_MS_THUMB_UP_ALT "\xef\x95\xb7" // U+f577
#define ICON_MS_THUMB_UP_FILLED "\xef\x95\xb7" // U+f577
#define ICON_MS_THUMB_UP_OFF "\xef\x95\xb7" // U+f577
#define ICON_MS_THUMB_UP_OFF_ALT "\xef\x95\xb7" // U+f577
#define ICON_MS_THUMBNAIL_BAR "\xef\x9c\xb4" // U+f734
#define ICON_MS_THUMBS_UP_DOWN "\xee\xa3\x9d" // U+e8dd
#define ICON_MS_THUNDERSTORM "\xee\xaf\x9b" // U+ebdb
#define ICON_MS_TIBIA "\xef\xa2\x9b" // U+f89b
#define ICON_MS_TIBIA_ALT "\xef\xa2\x9c" // U+f89c
#define ICON_MS_TIME_AUTO "\xef\x83\xa4" // U+f0e4
#define ICON_MS_TIME_TO_LEAVE "\xee\xbf\xb7" // U+eff7
#define ICON_MS_TIMELAPSE "\xee\x90\xa2" // U+e422
#define ICON_MS_TIMELINE "\xee\xa4\xa2" // U+e922
#define ICON_MS_TIMER "\xee\x90\xa5" // U+e425
#define ICON_MS_TIMER_10 "\xee\x90\xa3" // U+e423
#define ICON_MS_TIMER_10_ALT_1 "\xee\xbe\xbf" // U+efbf
#define ICON_MS_TIMER_10_SELECT "\xef\x81\xba" // U+f07a
#define ICON_MS_TIMER_3 "\xee\x90\xa4" // U+e424
#define ICON_MS_TIMER_3_ALT_1 "\xee\xbf\x80" // U+efc0
#define ICON_MS_TIMER_3_SELECT "\xef\x81\xbb" // U+f07b
#define ICON_MS_TIMER_5 "\xef\x92\xb1" // U+f4b1
#define ICON_MS_TIMER_5_SHUTTER "\xef\x92\xb2" // U+f4b2
#define ICON_MS_TIMER_OFF "\xee\x90\xa6" // U+e426
#define ICON_MS_TIMER_PAUSE "\xef\x92\xbb" // U+f4bb
#define ICON_MS_TIMER_PLAY "\xef\x92\xba" // U+f4ba
#define ICON_MS_TIPS_AND_UPDATES "\xee\x9e\x9a" // U+e79a
#define ICON_MS_TIRE_REPAIR "\xee\xaf\x88" // U+ebc8
#define ICON_MS_TITLE "\xee\x89\xa4" // U+e264
#define ICON_MS_TITLECASE "\xef\x92\x89" // U+f489
#define ICON_MS_TOAST "\xee\xbf\x81" // U+efc1
#define ICON_MS_TOC "\xee\xa3\x9e" // U+e8de
#define ICON_MS_TODAY "\xee\xa3\x9f" // U+e8df
#define ICON_MS_TOGGLE_OFF "\xee\xa7\xb5" // U+e9f5
#define ICON_MS_TOGGLE_ON "\xee\xa7\xb6" // U+e9f6
#define ICON_MS_TOKEN "\xee\xa8\xa5" // U+ea25
#define ICON_MS_TOLL "\xee\xa3\xa0" // U+e8e0
#define ICON_MS_TONALITY "\xee\x90\xa7" // U+e427
#define ICON_MS_TOOLBAR "\xee\xa7\xb7" // U+e9f7
#define ICON_MS_TOOLS_FLAT_HEAD "\xef\xa3\x8b" // U+f8cb
#define ICON_MS_TOOLS_INSTALLATION_KIT "\xee\x8a\xab" // U+e2ab
#define ICON_MS_TOOLS_LADDER "\xee\x8b\x8b" // U+e2cb
#define ICON_MS_TOOLS_LEVEL "\xee\x9d\xbb" // U+e77b
#define ICON_MS_TOOLS_PHILLIPS "\xef\xa3\x8c" // U+f8cc
#define ICON_MS_TOOLS_PLIERS_WIRE_STRIPPER "\xee\x8a\xaa" // U+e2aa
#define ICON_MS_TOOLS_POWER_DRILL "\xee\x87\xa9" // U+e1e9
#define ICON_MS_TOOLS_WRENCH "\xef\xa3\x8d" // U+f8cd
#define ICON_MS_TOOLTIP "\xee\xa7\xb8" // U+e9f8
#define ICON_MS_TOP_PANEL_CLOSE "\xef\x9c\xb3" // U+f733
#define ICON_MS_TOP_PANEL_OPEN "\xef\x9c\xb2" // U+f732
#define ICON_MS_TOPIC "\xef\x87\x88" // U+f1c8
#define ICON_MS_TORNADO "\xee\x86\x99" // U+e199
#define ICON_MS_TOTAL_DISSOLVED_SOLIDS "\xef\xa1\xb7" // U+f877
#define ICON_MS_TOUCH_APP "\xee\xa4\x93" // U+e913
#define ICON_MS_TOUCHPAD_MOUSE "\xef\x9a\x87" // U+f687
#define ICON_MS_TOUCHPAD_MOUSE_OFF "\xef\x93\xa6" // U+f4e6
#define ICON_MS_TOUR "\xee\xbd\xb5" // U+ef75
#define ICON_MS_TOYS "\xee\x8c\xb2" // U+e332
#define ICON_MS_TOYS_AND_GAMES "\xee\xbf\x82" // U+efc2
#define ICON_MS_TOYS_FAN "\xef\xa2\x87" // U+f887
#define ICON_MS_TRACK_CHANGES "\xee\xa3\xa1" // U+e8e1
#define ICON_MS_TRACKPAD_INPUT "\xef\x93\x87" // U+f4c7
#define ICON_MS_TRAFFIC "\xee\x95\xa5" // U+e565
#define ICON_MS_TRAIL_LENGTH "\xee\xad\x9e" // U+eb5e
#define ICON_MS_TRAIL_LENGTH_MEDIUM "\xee\xad\xa3" // U+eb63
#define ICON_MS_TRAIL_LENGTH_SHORT "\xee\xad\xad" // U+eb6d
#define ICON_MS_TRAIN "\xee\x95\xb0" // U+e570
#define ICON_MS_TRAM "\xee\x95\xb1" // U+e571
#define ICON_MS_TRANSCRIBE "\xef\xa3\xac" // U+f8ec
#define ICON_MS_TRANSFER_WITHIN_A_STATION "\xee\x95\xb2" // U+e572
#define ICON_MS_TRANSFORM "\xee\x90\xa8" // U+e428
#define ICON_MS_TRANSGENDER "\xee\x96\x8d" // U+e58d
#define ICON_MS_TRANSIT_ENTEREXIT "\xee\x95\xb9" // U+e579
#define ICON_MS_TRANSITION_CHOP "\xef\x94\x8e" // U+f50e
#define ICON_MS_TRANSITION_DISSOLVE "\xef\x94\x8d" // U+f50d
#define ICON_MS_TRANSITION_FADE "\xef\x94\x8c" // U+f50c
#define ICON_MS_TRANSITION_PUSH "\xef\x94\x8b" // U+f50b
#define ICON_MS_TRANSITION_SLIDE "\xef\x94\x8a" // U+f50a
#define ICON_MS_TRANSLATE "\xee\xa3\xa2" // U+e8e2
#define ICON_MS_TRANSPORTATION "\xee\x88\x9d" // U+e21d
#define ICON_MS_TRAVEL "\xee\xbe\x93" // U+ef93
#define ICON_MS_TRAVEL_EXPLORE "\xee\x8b\x9b" // U+e2db
#define ICON_MS_TRAVEL_LUGGAGE_AND_BAGS "\xee\xbf\x83" // U+efc3
#define ICON_MS_TRENDING_DOWN "\xee\xa3\xa3" // U+e8e3
#define ICON_MS_TRENDING_FLAT "\xee\xa3\xa4" // U+e8e4
#define ICON_MS_TRENDING_UP "\xee\xa3\xa5" // U+e8e5
#define ICON_MS_TRIP "\xee\x9b\xbb" // U+e6fb
#define ICON_MS_TRIP_ORIGIN "\xee\x95\xbb" // U+e57b
#define ICON_MS_TROLLEY "\xef\xa1\xab" // U+f86b
#define ICON_MS_TROPHY "\xee\xa8\xa3" // U+ea23
#define ICON_MS_TROUBLESHOOT "\xee\x87\x92" // U+e1d2
#define ICON_MS_TRY "\xef\x81\xbc" // U+f07c
#define ICON_MS_TSUNAMI "\xee\xaf\x98" // U+ebd8
#define ICON_MS_TSV "\xee\x9b\x96" // U+e6d6
#define ICON_MS_TTY "\xef\x86\xaa" // U+f1aa
#define ICON_MS_TUNE "\xee\x90\xa9" // U+e429
#define ICON_MS_TUNGSTEN "\xef\x81\xbd" // U+f07d
#define ICON_MS_TURN_LEFT "\xee\xae\xa6" // U+eba6
#define ICON_MS_TURN_RIGHT "\xee\xae\xab" // U+ebab
#define ICON_MS_TURN_SHARP_LEFT "\xee\xae\xa7" // U+eba7
#define ICON_MS_TURN_SHARP_RIGHT "\xee\xae\xaa" // U+ebaa
#define ICON_MS_TURN_SLIGHT_LEFT "\xee\xae\xa4" // U+eba4
#define ICON_MS_TURN_SLIGHT_RIGHT "\xee\xae\x9a" // U+eb9a
#define ICON_MS_TURNED_IN "\xee\xa3\xa7" // U+e8e7
#define ICON_MS_TURNED_IN_NOT "\xee\xa3\xa7" // U+e8e7
#define ICON_MS_TV "\xee\x98\xbb" // U+e63b
#define ICON_MS_TV_GEN "\xee\xa0\xb0" // U+e830
#define ICON_MS_TV_GUIDE "\xee\x87\x9c" // U+e1dc
#define ICON_MS_TV_OFF "\xee\x99\x87" // U+e647
#define ICON_MS_TV_OPTIONS_EDIT_CHANNELS "\xee\x87\x9d" // U+e1dd
#define ICON_MS_TV_OPTIONS_INPUT_SETTINGS "\xee\x87\x9e" // U+e1de
#define ICON_MS_TV_REMOTE "\xef\x97\x99" // U+f5d9
#define ICON_MS_TV_SIGNIN "\xee\x9c\x9b" // U+e71b
#define ICON_MS_TV_WITH_ASSISTANT "\xee\x9e\x85" // U+e785
#define ICON_MS_TWO_PAGER "\xef\x94\x9f" // U+f51f
#define ICON_MS_TWO_WHEELER "\xee\xa7\xb9" // U+e9f9
#define ICON_MS_TYPE_SPECIMEN "\xef\xa3\xb0" // U+f8f0
#define ICON_MS_U_TURN_LEFT "\xee\xae\xa1" // U+eba1
#define ICON_MS_U_TURN_RIGHT "\xee\xae\xa2" // U+eba2
#define ICON_MS_ULNA_RADIUS "\xef\xa2\x9d" // U+f89d
#define ICON_MS_ULNA_RADIUS_ALT "\xef\xa2\x9e" // U+f89e
#define ICON_MS_UMBRELLA "\xef\x86\xad" // U+f1ad
#define ICON_MS_UNARCHIVE "\xee\x85\xa9" // U+e169
#define ICON_MS_UNDO "\xee\x85\xa6" // U+e166
#define ICON_MS_UNFOLD_LESS "\xee\x97\x96" // U+e5d6
#define ICON_MS_UNFOLD_LESS_DOUBLE "\xef\xa3\x8f" // U+f8cf
#define ICON_MS_UNFOLD_MORE "\xee\x97\x97" // U+e5d7
#define ICON_MS_UNFOLD_MORE_DOUBLE "\xef\xa3\x90" // U+f8d0
#define ICON_MS_UNGROUP "\xef\x9c\xb1" // U+f731
#define ICON_MS_UNIVERSAL_CURRENCY "\xee\xa7\xba" // U+e9fa
#define ICON_MS_UNIVERSAL_CURRENCY_ALT "\xee\x9c\xb4" // U+e734
#define ICON_MS_UNIVERSAL_LOCAL "\xee\xa7\xbb" // U+e9fb
#define ICON_MS_UNKNOWN_2 "\xef\x92\x9f" // U+f49f
#define ICON_MS_UNKNOWN_5 "\xee\x9a\xa5" // U+e6a5
#define ICON_MS_UNKNOWN_7 "\xef\x92\x9e" // U+f49e
#define ICON_MS_UNKNOWN_DOCUMENT "\xef\xa0\x84" // U+f804
#define ICON_MS_UNKNOWN_MED "\xee\xaa\xbd" // U+eabd
#define ICON_MS_UNLICENSE "\xee\xac\x85" // U+eb05
#define ICON_MS_UNPIN "\xee\x9b\xb9" // U+e6f9
#define ICON_MS_UNPUBLISHED "\xef\x88\xb6" // U+f236
#define ICON_MS_UNSUBSCRIBE "\xee\x83\xab" // U+e0eb
#define ICON_MS_UPCOMING "\xef\x81\xbe" // U+f07e
#define ICON_MS_UPDATE "\xee\xa4\xa3" // U+e923
#define ICON_MS_UPDATE_DISABLED "\xee\x81\xb5" // U+e075
#define ICON_MS_UPGRADE "\xef\x83\xbb" // U+f0fb
#define ICON_MS_UPLOAD "\xef\x82\x9b" // U+f09b
#define ICON_MS_UPLOAD_2 "\xef\x94\xa1" // U+f521
#define ICON_MS_UPLOAD_FILE "\xee\xa7\xbc" // U+e9fc
#define ICON_MS_UPPERCASE "\xef\x92\x88" // U+f488
#define ICON_MS_UROLOGY "\xee\x84\xb7" // U+e137
#define ICON_MS_USB "\xee\x87\xa0" // U+e1e0
#define ICON_MS_USB_OFF "\xee\x93\xba" // U+e4fa
#define ICON_MS_USER_ATTRIBUTES "\xee\x9c\x88" // U+e708
#define ICON_MS_VACCINES "\xee\x84\xb8" // U+e138
#define ICON_MS_VACUUM "\xee\xbf\x85" // U+efc5
#define ICON_MS_VALVE "\xee\x88\xa4" // U+e224
#define ICON_MS_VAPE_FREE "\xee\xaf\x86" // U+ebc6
#define ICON_MS_VAPING_ROOMS "\xee\xaf\x8f" // U+ebcf
#define ICON_MS_VARIABLE_ADD "\xef\x94\x9e" // U+f51e
#define ICON_MS_VARIABLE_INSERT "\xef\x94\x9d" // U+f51d
#define ICON_MS_VARIABLE_REMOVE "\xef\x94\x9c" // U+f51c
#define ICON_MS_VARIABLES "\xef\xa1\x91" // U+f851
#define ICON_MS_VENTILATOR "\xee\x84\xb9" // U+e139
#define ICON_MS_VERIFIED "\xee\xbd\xb6" // U+ef76
#define ICON_MS_VERIFIED_USER "\xef\x80\x93" // U+f013
#define ICON_MS_VERTICAL_ALIGN_BOTTOM "\xee\x89\x98" // U+e258
#define ICON_MS_VERTICAL_ALIGN_CENTER "\xee\x89\x99" // U+e259
#define ICON_MS_VERTICAL_ALIGN_TOP "\xee\x89\x9a" // U+e25a
#define ICON_MS_VERTICAL_DISTRIBUTE "\xee\x81\xb6" // U+e076
#define ICON_MS_VERTICAL_SHADES "\xee\xb0\x8e" // U+ec0e
#define ICON_MS_VERTICAL_SHADES_CLOSED "\xee\xb0\x8d" // U+ec0d
#define ICON_MS_VERTICAL_SPLIT "\xee\xa5\x89" // U+e949
#define ICON_MS_VIBRATION "\xee\x98\xad" // U+e62d
#define ICON_MS_VIDEO_CALL "\xee\x81\xb0" // U+e070
#define ICON_MS_VIDEO_CAMERA_BACK "\xef\x81\xbf" // U+f07f
#define ICON_MS_VIDEO_CAMERA_FRONT "\xef\x82\x80" // U+f080
#define ICON_MS_VIDEO_CAMERA_FRONT_OFF "\xef\xa0\xbb" // U+f83b
#define ICON_MS_VIDEO_CHAT "\xef\xa2\xa0" // U+f8a0
#define ICON_MS_VIDEO_FILE "\xee\xae\x87" // U+eb87
#define ICON_MS_VIDEO_LABEL "\xee\x81\xb1" // U+e071
#define ICON_MS_VIDEO_LIBRARY "\xee\x81\x8a" // U+e04a
#define ICON_MS_VIDEO_SEARCH "\xee\xbf\x86" // U+efc6
#define ICON_MS_VIDEO_SETTINGS "\xee\xa9\xb5" // U+ea75
#define ICON_MS_VIDEO_STABLE "\xef\x82\x81" // U+f081
#define ICON_MS_VIDEOCAM "\xee\x81\x8b" // U+e04b
#define ICON_MS_VIDEOCAM_OFF "\xee\x81\x8c" // U+e04c
#define ICON_MS_VIDEOGAME_ASSET "\xee\x8c\xb8" // U+e338
#define ICON_MS_VIDEOGAME_ASSET_OFF "\xee\x94\x80" // U+e500
#define ICON_MS_VIEW_AGENDA "\xee\xa3\xa9" // U+e8e9
#define ICON_MS_VIEW_ARRAY "\xee\xa3\xaa" // U+e8ea
#define ICON_MS_VIEW_CAROUSEL "\xee\xa3\xab" // U+e8eb
#define ICON_MS_VIEW_COLUMN "\xee\xa3\xac" // U+e8ec
#define ICON_MS_VIEW_COLUMN_2 "\xef\xa1\x87" // U+f847
#define ICON_MS_VIEW_COMFY "\xee\x90\xaa" // U+e42a
#define ICON_MS_VIEW_COMFY_ALT "\xee\xad\xb3" // U+eb73
#define ICON_MS_VIEW_COMPACT "\xee\x90\xab" // U+e42b
#define ICON_MS_VIEW_COMPACT_ALT "\xee\xad\xb4" // U+eb74
#define ICON_MS_VIEW_COZY "\xee\xad\xb5" // U+eb75
#define ICON_MS_VIEW_DAY "\xee\xa3\xad" // U+e8ed
#define ICON_MS_VIEW_HEADLINE "\xee\xa3\xae" // U+e8ee
#define ICON_MS_VIEW_IN_AR "\xee\xbf\x89" // U+efc9
#define ICON_MS_VIEW_IN_AR_NEW "\xee\xbf\x89" // U+efc9
#define ICON_MS_VIEW_IN_AR_OFF "\xef\x98\x9b" // U+f61b
#define ICON_MS_VIEW_KANBAN "\xee\xad\xbf" // U+eb7f
#define ICON_MS_VIEW_LIST "\xee\xa3\xaf" // U+e8ef
#define ICON_MS_VIEW_MODULE "\xee\xa3\xb0" // U+e8f0
#define ICON_MS_VIEW_QUILT "\xee\xa3\xb1" // U+e8f1
#define ICON_MS_VIEW_REAL_SIZE "\xef\x93\x82" // U+f4c2
#define ICON_MS_VIEW_SIDEBAR "\xef\x84\x94" // U+f114
#define ICON_MS_VIEW_STREAM "\xee\xa3\xb2" // U+e8f2
#define ICON_MS_VIEW_TIMELINE "\xee\xae\x85" // U+eb85
#define ICON_MS_VIEW_WEEK "\xee\xa3\xb3" // U+e8f3
#define ICON_MS_VIGNETTE "\xee\x90\xb5" // U+e435
#define ICON_MS_VILLA "\xee\x96\x86" // U+e586
#define ICON_MS_VISIBILITY "\xee\xa3\xb4" // U+e8f4
#define ICON_MS_VISIBILITY_LOCK "\xef\x99\x93" // U+f653
#define ICON_MS_VISIBILITY_OFF "\xee\xa3\xb5" // U+e8f5
#define ICON_MS_VITAL_SIGNS "\xee\x99\x90" // U+e650
#define ICON_MS_VITALS "\xee\x84\xbb" // U+e13b
#define ICON_MS_VO2_MAX "\xef\x92\xaa" // U+f4aa
#define ICON_MS_VOICE_CHAT "\xee\x98\xae" // U+e62e
#define ICON_MS_VOICE_OVER_OFF "\xee\xa5\x8a" // U+e94a
#define ICON_MS_VOICE_SELECTION "\xef\x96\x8a" // U+f58a
#define ICON_MS_VOICEMAIL "\xee\x83\x99" // U+e0d9
#define ICON_MS_VOLCANO "\xee\xaf\x9a" // U+ebda
#define ICON_MS_VOLUME_DOWN "\xee\x81\x8d" // U+e04d
#define ICON_MS_VOLUME_DOWN_ALT "\xee\x9e\x9c" // U+e79c
#define ICON_MS_VOLUME_MUTE "\xee\x81\x8e" // U+e04e
#define ICON_MS_VOLUME_OFF "\xee\x81\x8f" // U+e04f
#define ICON_MS_VOLUME_UP "\xee\x81\x90" // U+e050
#define ICON_MS_VOLUNTEER_ACTIVISM "\xee\xa9\xb0" // U+ea70
#define ICON_MS_VOTING_CHIP "\xef\xa1\x92" // U+f852
#define ICON_MS_VPN_KEY "\xee\x83\x9a" // U+e0da
#define ICON_MS_VPN_KEY_ALERT "\xef\x9b\x8c" // U+f6cc
#define ICON_MS_VPN_KEY_OFF "\xee\xad\xba" // U+eb7a
#define ICON_MS_VPN_LOCK "\xee\x98\xaf" // U+e62f
#define ICON_MS_VR180_CREATE2D "\xee\xbf\x8a" // U+efca
#define ICON_MS_VR180_CREATE2D_OFF "\xef\x95\xb1" // U+f571
#define ICON_MS_VRPANO "\xef\x82\x82" // U+f082
#define ICON_MS_WALL_ART "\xee\xbf\x8b" // U+efcb
#define ICON_MS_WALL_LAMP "\xee\x8a\xb4" // U+e2b4
#define ICON_MS_WALLET "\xef\xa3\xbf" // U+f8ff
#define ICON_MS_WALLPAPER "\xee\x86\xbc" // U+e1bc
#define ICON_MS_WALLPAPER_SLIDESHOW "\xef\x99\xb2" // U+f672
#define ICON_MS_WARD "\xee\x84\xbc" // U+e13c
#define ICON_MS_WAREHOUSE "\xee\xae\xb8" // U+ebb8
#define ICON_MS_WARNING "\xef\x82\x83" // U+f083
#define ICON_MS_WARNING_AMBER "\xef\x82\x83" // U+f083
#define ICON_MS_WARNING_OFF "\xef\x9e\xad" // U+f7ad
#define ICON_MS_WASH "\xef\x86\xb1" // U+f1b1
#define ICON_MS_WATCH "\xee\x8c\xb4" // U+e334
#define ICON_MS_WATCH_BUTTON_PRESS "\xef\x9a\xaa" // U+f6aa
#define ICON_MS_WATCH_LATER "\xee\xbf\x96" // U+efd6
#define ICON_MS_WATCH_OFF "\xee\xab\xa3" // U+eae3
#define ICON_MS_WATCH_SCREENTIME "\xef\x9a\xae" // U+f6ae
#define ICON_MS_WATCH_WAKE "\xef\x9a\xa9" // U+f6a9
#define ICON_MS_WATER "\xef\x82\x84" // U+f084
#define ICON_MS_WATER_BOTTLE "\xef\x9a\x9d" // U+f69d
#define ICON_MS_WATER_BOTTLE_LARGE "\xef\x9a\x9e" // U+f69e
#define ICON_MS_WATER_DAMAGE "\xef\x88\x83" // U+f203
#define ICON_MS_WATER_DO "\xef\xa1\xb0" // U+f870
#define ICON_MS_WATER_DROP "\xee\x9e\x98" // U+e798
#define ICON_MS_WATER_EC "\xef\xa1\xb5" // U+f875
#define ICON_MS_WATER_FULL "\xef\x9b\x96" // U+f6d6
#define ICON_MS_WATER_HEATER "\xee\x8a\x84" // U+e284
#define ICON_MS_WATER_LOCK "\xef\x9a\xad" // U+f6ad
#define ICON_MS_WATER_LOSS "\xef\x9b\x95" // U+f6d5
#define ICON_MS_WATER_LUX "\xef\xa1\xb4" // U+f874
#define ICON_MS_WATER_MEDIUM "\xef\x9b\x94" // U+f6d4
#define ICON_MS_WATER_ORP "\xef\xa1\xb8" // U+f878
#define ICON_MS_WATER_PH "\xef\xa1\xba" // U+f87a
#define ICON_MS_WATER_PUMP "\xef\x97\x98" // U+f5d8
#define ICON_MS_WATER_VOC "\xef\xa1\xbb" // U+f87b
#define ICON_MS_WATERFALL_CHART "\xee\xa8\x80" // U+ea00
#define ICON_MS_WAVES "\xee\x85\xb6" // U+e176
#define ICON_MS_WAVING_HAND "\xee\x9d\xa6" // U+e766
#define ICON_MS_WB_AUTO "\xee\x90\xac" // U+e42c
#define ICON_MS_WB_CLOUDY "\xef\x85\x9c" // U+f15c
#define ICON_MS_WB_INCANDESCENT "\xee\x90\xae" // U+e42e
#define ICON_MS_WB_IRIDESCENT "\xef\x81\xbd" // U+f07d
#define ICON_MS_WB_SHADE "\xee\xa8\x81" // U+ea01
#define ICON_MS_WB_SUNNY "\xee\x90\xb0" // U+e430
#define ICON_MS_WB_TWILIGHT "\xee\x87\x86" // U+e1c6
#define ICON_MS_WC "\xee\x98\xbd" // U+e63d
#define ICON_MS_WEATHER_HAIL "\xef\x99\xbf" // U+f67f
#define ICON_MS_WEATHER_MIX "\xef\x98\x8b" // U+f60b
#define ICON_MS_WEATHER_SNOWY "\xee\x8b\x8d" // U+e2cd
#define ICON_MS_WEB "\xee\x81\x91" // U+e051
#define ICON_MS_WEB_ASSET "\xee\x81\xa9" // U+e069
#define ICON_MS_WEB_ASSET_OFF "\xee\xbd\x87" // U+ef47
#define ICON_MS_WEB_STORIES "\xee\x96\x95" // U+e595
#define ICON_MS_WEB_TRAFFIC "\xee\xa8\x83" // U+ea03
#define ICON_MS_WEBHOOK "\xee\xae\x92" // U+eb92
#define ICON_MS_WEEKEND "\xee\x85\xab" // U+e16b
#define ICON_MS_WEIGHT "\xee\x84\xbd" // U+e13d
#define ICON_MS_WEST "\xef\x87\xa6" // U+f1e6
#define ICON_MS_WHATSHOT "\xee\xa0\x8e" // U+e80e
#define ICON_MS_WHEELCHAIR_PICKUP "\xef\x86\xab" // U+f1ab
#define ICON_MS_WHERE_TO_VOTE "\xee\x85\xb7" // U+e177
#define ICON_MS_WIDGETS "\xee\x86\xbd" // U+e1bd
#define ICON_MS_WIDTH "\xef\x9c\xb0" // U+f730
#define ICON_MS_WIDTH_FULL "\xef\xa3\xb5" // U+f8f5
#define ICON_MS_WIDTH_NORMAL "\xef\xa3\xb6" // U+f8f6
#define ICON_MS_WIDTH_WIDE "\xef\xa3\xb7" // U+f8f7
#define ICON_MS_WIFI "\xee\x98\xbe" // U+e63e
#define ICON_MS_WIFI_1_BAR "\xee\x93\x8a" // U+e4ca
#define ICON_MS_WIFI_2_BAR "\xee\x93\x99" // U+e4d9
#define ICON_MS_WIFI_ADD "\xef\x9e\xa8" // U+f7a8
#define ICON_MS_WIFI_CALLING "\xee\xbd\xb7" // U+ef77
#define ICON_MS_WIFI_CALLING_1 "\xef\x83\xb6" // U+f0f6
#define ICON_MS_WIFI_CALLING_2 "\xef\x83\xb6" // U+f0f6
#define ICON_MS_WIFI_CALLING_3 "\xef\x83\xb6" // U+f0f6
#define ICON_MS_WIFI_CHANNEL "\xee\xad\xaa" // U+eb6a
#define ICON_MS_WIFI_FIND "\xee\xac\xb1" // U+eb31
#define ICON_MS_WIFI_HOME "\xef\x99\xb1" // U+f671
#define ICON_MS_WIFI_LOCK "\xee\x87\xa1" // U+e1e1
#define ICON_MS_WIFI_NOTIFICATION "\xef\x99\xb0" // U+f670
#define ICON_MS_WIFI_OFF "\xee\x99\x88" // U+e648
#define ICON_MS_WIFI_PASSWORD "\xee\xad\xab" // U+eb6b
#define ICON_MS_WIFI_PROTECTED_SETUP "\xef\x83\xbc" // U+f0fc
#define ICON_MS_WIFI_PROXY "\xef\x9e\xa7" // U+f7a7
#define ICON_MS_WIFI_TETHERING "\xee\x87\xa2" // U+e1e2
#define ICON_MS_WIFI_TETHERING_ERROR "\xee\xab\x99" // U+ead9
#define ICON_MS_WIFI_TETHERING_OFF "\xef\x82\x87" // U+f087
#define ICON_MS_WIND_POWER "\xee\xb0\x8c" // U+ec0c
#define ICON_MS_WINDOW "\xef\x82\x88" // U+f088
#define ICON_MS_WINDOW_CLOSED "\xee\x9d\xbe" // U+e77e
#define ICON_MS_WINDOW_OPEN "\xee\x9e\x8c" // U+e78c
#define ICON_MS_WINDOW_SENSOR "\xee\x8a\xbb" // U+e2bb
#define ICON_MS_WINE_BAR "\xef\x87\xa8" // U+f1e8
#define ICON_MS_WOMAN "\xee\x84\xbe" // U+e13e
#define ICON_MS_WOMAN_2 "\xef\xa3\xa7" // U+f8e7
#define ICON_MS_WORK "\xee\xa5\x83" // U+e943
#define ICON_MS_WORK_ALERT "\xef\x97\xb7" // U+f5f7
#define ICON_MS_WORK_HISTORY "\xee\xb0\x89" // U+ec09
#define ICON_MS_WORK_OFF "\xee\xa5\x82" // U+e942
#define ICON_MS_WORK_OUTLINE "\xee\xa5\x83" // U+e943
#define ICON_MS_WORK_UPDATE "\xef\x97\xb8" // U+f5f8
#define ICON_MS_WORKFLOW "\xee\xa8\x84" // U+ea04
#define ICON_MS_WORKSPACE_PREMIUM "\xee\x9e\xaf" // U+e7af
#define ICON_MS_WORKSPACES "\xee\xa8\x8f" // U+ea0f
#define ICON_MS_WORKSPACES_OUTLINE "\xee\xa8\x8f" // U+ea0f
#define ICON_MS_WOUNDS_INJURIES "\xee\x84\xbf" // U+e13f
#define ICON_MS_WRAP_TEXT "\xee\x89\x9b" // U+e25b
#define ICON_MS_WRIST "\xef\x9a\x9c" // U+f69c
#define ICON_MS_WRONG_LOCATION "\xee\xbd\xb8" // U+ef78
#define ICON_MS_WYSIWYG "\xef\x87\x83" // U+f1c3
#define ICON_MS_YARD "\xef\x82\x89" // U+f089
#define ICON_MS_YOUR_TRIPS "\xee\xac\xab" // U+eb2b
#define ICON_MS_YOUTUBE_ACTIVITY "\xef\xa1\x9a" // U+f85a
#define ICON_MS_YOUTUBE_SEARCHED_FOR "\xee\xa3\xba" // U+e8fa
#define ICON_MS_ZONE_PERSON_ALERT "\xee\x9e\x81" // U+e781
#define ICON_MS_ZONE_PERSON_IDLE "\xee\x9d\xba" // U+e77a
#define ICON_MS_ZONE_PERSON_URGENT "\xee\x9e\x88" // U+e788
#define ICON_MS_ZOOM_IN "\xee\xa3\xbf" // U+e8ff
#define ICON_MS_ZOOM_IN_MAP "\xee\xac\xad" // U+eb2d
#define ICON_MS_ZOOM_OUT "\xee\xa4\x80" // U+e900
#define ICON_MS_ZOOM_OUT_MAP "\xee\x95\xab" // U+e56b
|