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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright ยฉ 1991-2019 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
Derived short names and annotations, using GenerateDerivedAnnotations.java. See warnings in /annotations/ file.
-->
<ldml>
<identity>
<version number="$Revision$"/>
<language type="nb"/>
</identity>
<annotations>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | vinke | vinkende hรฅnd | vinking</annotation>
<annotation cp="๐๐ป" type="tts">vinkende hรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | vinke | vinkende hรฅnd | vinking</annotation>
<annotation cp="๐๐ผ" type="tts">vinkende hรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | vinke | vinkende hรฅnd | vinking</annotation>
<annotation cp="๐๐ฝ" type="tts">vinkende hรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | vinke | vinkende hรฅnd | vinking</annotation>
<annotation cp="๐๐พ" type="tts">vinkende hรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | vinke | vinkende hรฅnd | vinking</annotation>
<annotation cp="๐๐ฟ" type="tts">vinkende hรฅnd: hudtype 6</annotation>
<annotation cp="๐ค๐ป">hรฅnd | hรฅndbak | hudtype 1โ2 | lรธftet</annotation>
<annotation cp="๐ค๐ป" type="tts">lรธftet hรฅndbak: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">hรฅnd | hรฅndbak | hudtype 3 | lรธftet</annotation>
<annotation cp="๐ค๐ผ" type="tts">lรธftet hรฅndbak: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">hรฅnd | hรฅndbak | hudtype 4 | lรธftet</annotation>
<annotation cp="๐ค๐ฝ" type="tts">lรธftet hรฅndbak: hudtype 4</annotation>
<annotation cp="๐ค๐พ">hรฅnd | hรฅndbak | hudtype 5 | lรธftet</annotation>
<annotation cp="๐ค๐พ" type="tts">lรธftet hรฅndbak: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">hรฅnd | hรฅndbak | hudtype 6 | lรธftet</annotation>
<annotation cp="๐ค๐ฟ" type="tts">lรธftet hรฅndbak: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | flat hรฅnd med spredte fingre | hรฅnd | hudtype 1โ2 | spredt</annotation>
<annotation cp="๐๐ป" type="tts">flat hรฅnd med spredte fingre: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | flat hรฅnd med spredte fingre | hรฅnd | hudtype 3 | spredt</annotation>
<annotation cp="๐๐ผ" type="tts">flat hรฅnd med spredte fingre: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | flat hรฅnd med spredte fingre | hรฅnd | hudtype 4 | spredt</annotation>
<annotation cp="๐๐ฝ" type="tts">flat hรฅnd med spredte fingre: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | flat hรฅnd med spredte fingre | hรฅnd | hudtype 5 | spredt</annotation>
<annotation cp="๐๐พ" type="tts">flat hรฅnd med spredte fingre: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | flat hรฅnd med spredte fingre | hรฅnd | hudtype 6 | spredt</annotation>
<annotation cp="๐๐ฟ" type="tts">flat hรฅnd med spredte fingre: hudtype 6</annotation>
<annotation cp="โ๐ป">flat hรฅnd | hรฅndflate | hevet hรฅnd | hudtype 1โ2</annotation>
<annotation cp="โ๐ป" type="tts">hevet hรฅnd: hudtype 1โ2</annotation>
<annotation cp="โ๐ผ">flat hรฅnd | hรฅndflate | hevet hรฅnd | hudtype 3</annotation>
<annotation cp="โ๐ผ" type="tts">hevet hรฅnd: hudtype 3</annotation>
<annotation cp="โ๐ฝ">flat hรฅnd | hรฅndflate | hevet hรฅnd | hudtype 4</annotation>
<annotation cp="โ๐ฝ" type="tts">hevet hรฅnd: hudtype 4</annotation>
<annotation cp="โ๐พ">flat hรฅnd | hรฅndflate | hevet hรฅnd | hudtype 5</annotation>
<annotation cp="โ๐พ" type="tts">hevet hรฅnd: hudtype 5</annotation>
<annotation cp="โ๐ฟ">flat hรฅnd | hรฅndflate | hevet hรฅnd | hudtype 6</annotation>
<annotation cp="โ๐ฟ" type="tts">hevet hรฅnd: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | spock | vulcan | Vulcan-hilsen</annotation>
<annotation cp="๐๐ป" type="tts">Vulcan-hilsen: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | spock | vulcan | Vulcan-hilsen</annotation>
<annotation cp="๐๐ผ" type="tts">Vulcan-hilsen: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | spock | vulcan | Vulcan-hilsen</annotation>
<annotation cp="๐๐ฝ" type="tts">Vulcan-hilsen: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | spock | vulcan | Vulcan-hilsen</annotation>
<annotation cp="๐๐พ" type="tts">Vulcan-hilsen: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | spock | vulcan | Vulcan-hilsen</annotation>
<annotation cp="๐๐ฟ" type="tts">Vulcan-hilsen: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | OK | OK-hรฅnd | tegn</annotation>
<annotation cp="๐๐ป" type="tts">OK-hรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | OK | OK-hรฅnd | tegn</annotation>
<annotation cp="๐๐ผ" type="tts">OK-hรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | OK | OK-hรฅnd | tegn</annotation>
<annotation cp="๐๐ฝ" type="tts">OK-hรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | OK | OK-hรฅnd | tegn</annotation>
<annotation cp="๐๐พ" type="tts">OK-hรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | OK | OK-hรฅnd | tegn</annotation>
<annotation cp="๐๐ฟ" type="tts">OK-hรฅnd: hudtype 6</annotation>
<annotation cp="๐ค๐ป">hรฅnd som klyper | hudtype 1โ2 | lite | liten</annotation>
<annotation cp="๐ค๐ป" type="tts">hรฅnd som klyper: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">hรฅnd som klyper | hudtype 3 | lite | liten</annotation>
<annotation cp="๐ค๐ผ" type="tts">hรฅnd som klyper: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">hรฅnd som klyper | hudtype 4 | lite | liten</annotation>
<annotation cp="๐ค๐ฝ" type="tts">hรฅnd som klyper: hudtype 4</annotation>
<annotation cp="๐ค๐พ">hรฅnd som klyper | hudtype 5 | lite | liten</annotation>
<annotation cp="๐ค๐พ" type="tts">hรฅnd som klyper: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">hรฅnd som klyper | hudtype 6 | lite | liten</annotation>
<annotation cp="๐ค๐ฟ" type="tts">hรฅnd som klyper: hudtype 6</annotation>
<annotation cp="โ๐ป">hรฅnd | hudtype 1โ2 | peace-tegn | seierstegn</annotation>
<annotation cp="โ๐ป" type="tts">seierstegn: hudtype 1โ2</annotation>
<annotation cp="โ๐ผ">hรฅnd | hudtype 3 | peace-tegn | seierstegn</annotation>
<annotation cp="โ๐ผ" type="tts">seierstegn: hudtype 3</annotation>
<annotation cp="โ๐ฝ">hรฅnd | hudtype 4 | peace-tegn | seierstegn</annotation>
<annotation cp="โ๐ฝ" type="tts">seierstegn: hudtype 4</annotation>
<annotation cp="โ๐พ">hรฅnd | hudtype 5 | peace-tegn | seierstegn</annotation>
<annotation cp="โ๐พ" type="tts">seierstegn: hudtype 5</annotation>
<annotation cp="โ๐ฟ">hรฅnd | hudtype 6 | peace-tegn | seierstegn</annotation>
<annotation cp="โ๐ฟ" type="tts">seierstegn: hudtype 6</annotation>
<annotation cp="๐ค๐ป">finger | hรฅnd | hell | hudtype 1โ2 | kryss | kryssede fingre</annotation>
<annotation cp="๐ค๐ป" type="tts">kryssede fingre: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">finger | hรฅnd | hell | hudtype 3 | kryss | kryssede fingre</annotation>
<annotation cp="๐ค๐ผ" type="tts">kryssede fingre: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">finger | hรฅnd | hell | hudtype 4 | kryss | kryssede fingre</annotation>
<annotation cp="๐ค๐ฝ" type="tts">kryssede fingre: hudtype 4</annotation>
<annotation cp="๐ค๐พ">finger | hรฅnd | hell | hudtype 5 | kryss | kryssede fingre</annotation>
<annotation cp="๐ค๐พ" type="tts">kryssede fingre: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">finger | hรฅnd | hell | hudtype 6 | kryss | kryssede fingre</annotation>
<annotation cp="๐ค๐ฟ" type="tts">kryssede fingre: hudtype 6</annotation>
<annotation cp="๐ค๐ป">glad i deg | glad i deg-tegn | hรฅnd | hudtype 1โ2 | ILY | tegnsprรฅk</annotation>
<annotation cp="๐ค๐ป" type="tts">glad i deg-tegn: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">glad i deg | glad i deg-tegn | hรฅnd | hudtype 3 | ILY | tegnsprรฅk</annotation>
<annotation cp="๐ค๐ผ" type="tts">glad i deg-tegn: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">glad i deg | glad i deg-tegn | hรฅnd | hudtype 4 | ILY | tegnsprรฅk</annotation>
<annotation cp="๐ค๐ฝ" type="tts">glad i deg-tegn: hudtype 4</annotation>
<annotation cp="๐ค๐พ">glad i deg | glad i deg-tegn | hรฅnd | hudtype 5 | ILY | tegnsprรฅk</annotation>
<annotation cp="๐ค๐พ" type="tts">glad i deg-tegn: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">glad i deg | glad i deg-tegn | hรฅnd | hudtype 6 | ILY | tegnsprรฅk</annotation>
<annotation cp="๐ค๐ฟ" type="tts">glad i deg-tegn: hudtype 6</annotation>
<annotation cp="๐ค๐ป">finger | hรฅnd | horn | hudtype 1โ2 | rockโnโroll</annotation>
<annotation cp="๐ค๐ป" type="tts">rockโnโroll: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">finger | hรฅnd | horn | hudtype 3 | rockโnโroll</annotation>
<annotation cp="๐ค๐ผ" type="tts">rockโnโroll: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">finger | hรฅnd | horn | hudtype 4 | rockโnโroll</annotation>
<annotation cp="๐ค๐ฝ" type="tts">rockโnโroll: hudtype 4</annotation>
<annotation cp="๐ค๐พ">finger | hรฅnd | horn | hudtype 5 | rockโnโroll</annotation>
<annotation cp="๐ค๐พ" type="tts">rockโnโroll: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">finger | hรฅnd | horn | hudtype 6 | rockโnโroll</annotation>
<annotation cp="๐ค๐ฟ" type="tts">rockโnโroll: hudtype 6</annotation>
<annotation cp="๐ค๐ป">hรฅnd | hudtype 1โ2 | ring meg-hรฅnd | ringe</annotation>
<annotation cp="๐ค๐ป" type="tts">ring meg-hรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">hรฅnd | hudtype 3 | ring meg-hรฅnd | ringe</annotation>
<annotation cp="๐ค๐ผ" type="tts">ring meg-hรฅnd: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">hรฅnd | hudtype 4 | ring meg-hรฅnd | ringe</annotation>
<annotation cp="๐ค๐ฝ" type="tts">ring meg-hรฅnd: hudtype 4</annotation>
<annotation cp="๐ค๐พ">hรฅnd | hudtype 5 | ring meg-hรฅnd | ringe</annotation>
<annotation cp="๐ค๐พ" type="tts">ring meg-hรฅnd: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">hรฅnd | hudtype 6 | ring meg-hรฅnd | ringe</annotation>
<annotation cp="๐ค๐ฟ" type="tts">ring meg-hรฅnd: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | pekende finger | peker mot venstre โ bakhรฅnd | peker venstre</annotation>
<annotation cp="๐๐ป" type="tts">peker mot venstre โ bakhรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | pekende finger | peker mot venstre โ bakhรฅnd | peker venstre</annotation>
<annotation cp="๐๐ผ" type="tts">peker mot venstre โ bakhรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | pekende finger | peker mot venstre โ bakhรฅnd | peker venstre</annotation>
<annotation cp="๐๐ฝ" type="tts">peker mot venstre โ bakhรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | pekende finger | peker mot venstre โ bakhรฅnd | peker venstre</annotation>
<annotation cp="๐๐พ" type="tts">peker mot venstre โ bakhรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | pekende finger | peker mot venstre โ bakhรฅnd | peker venstre</annotation>
<annotation cp="๐๐ฟ" type="tts">peker mot venstre โ bakhรฅnd: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | pekende finger | peker mot hรธyre โ bakhรฅnd | peker opp</annotation>
<annotation cp="๐๐ป" type="tts">peker mot hรธyre โ bakhรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | pekende finger | peker mot hรธyre โ bakhรฅnd | peker opp</annotation>
<annotation cp="๐๐ผ" type="tts">peker mot hรธyre โ bakhรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | pekende finger | peker mot hรธyre โ bakhรฅnd | peker opp</annotation>
<annotation cp="๐๐ฝ" type="tts">peker mot hรธyre โ bakhรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | pekende finger | peker mot hรธyre โ bakhรฅnd | peker opp</annotation>
<annotation cp="๐๐พ" type="tts">peker mot hรธyre โ bakhรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | pekende finger | peker mot hรธyre โ bakhรฅnd | peker opp</annotation>
<annotation cp="๐๐ฟ" type="tts">peker mot hรธyre โ bakhรฅnd: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | pekende finger | peker opp | peker opp โ bakhรฅnd</annotation>
<annotation cp="๐๐ป" type="tts">peker opp โ bakhรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | pekende finger | peker opp | peker opp โ bakhรฅnd</annotation>
<annotation cp="๐๐ผ" type="tts">peker opp โ bakhรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | pekende finger | peker opp | peker opp โ bakhรฅnd</annotation>
<annotation cp="๐๐ฝ" type="tts">peker opp โ bakhรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | pekende finger | peker opp | peker opp โ bakhรฅnd</annotation>
<annotation cp="๐๐พ" type="tts">peker opp โ bakhรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | pekende finger | peker opp | peker opp โ bakhรฅnd</annotation>
<annotation cp="๐๐ฟ" type="tts">peker opp โ bakhรฅnd: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | kropp | langfinger | vise fingeren</annotation>
<annotation cp="๐๐ป" type="tts">langfinger: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | kropp | langfinger | vise fingeren</annotation>
<annotation cp="๐๐ผ" type="tts">langfinger: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | kropp | langfinger | vise fingeren</annotation>
<annotation cp="๐๐ฝ" type="tts">langfinger: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | kropp | langfinger | vise fingeren</annotation>
<annotation cp="๐๐พ" type="tts">langfinger: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | kropp | langfinger | vise fingeren</annotation>
<annotation cp="๐๐ฟ" type="tts">langfinger: hudtype 6</annotation>
<annotation cp="๐๐ป">finger | hรฅnd | hudtype 1โ2 | pekende finger | peker ned | peker ned โ bakhรฅnd</annotation>
<annotation cp="๐๐ป" type="tts">peker ned โ bakhรฅnd: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">finger | hรฅnd | hudtype 3 | pekende finger | peker ned | peker ned โ bakhรฅnd</annotation>
<annotation cp="๐๐ผ" type="tts">peker ned โ bakhรฅnd: hudtype 3</annotation>
<annotation cp="๐๐ฝ">finger | hรฅnd | hudtype 4 | pekende finger | peker ned | peker ned โ bakhรฅnd</annotation>
<annotation cp="๐๐ฝ" type="tts">peker ned โ bakhรฅnd: hudtype 4</annotation>
<annotation cp="๐๐พ">finger | hรฅnd | hudtype 5 | pekende finger | peker ned | peker ned โ bakhรฅnd</annotation>
<annotation cp="๐๐พ" type="tts">peker ned โ bakhรฅnd: hudtype 5</annotation>
<annotation cp="๐๐ฟ">finger | hรฅnd | hudtype 6 | pekende finger | peker ned | peker ned โ bakhรฅnd</annotation>
<annotation cp="๐๐ฟ" type="tts">peker ned โ bakhรฅnd: hudtype 6</annotation>
<annotation cp="โ๐ป">finger | hรฅnd | hudtype 1โ2 | kropp | opp | peke | pekefinger | peker opp</annotation>
<annotation cp="โ๐ป" type="tts">peker opp: hudtype 1โ2</annotation>
<annotation cp="โ๐ผ">finger | hรฅnd | hudtype 3 | kropp | opp | peke | pekefinger | peker opp</annotation>
<annotation cp="โ๐ผ" type="tts">peker opp: hudtype 3</annotation>
<annotation cp="โ๐ฝ">finger | hรฅnd | hudtype 4 | kropp | opp | peke | pekefinger | peker opp</annotation>
<annotation cp="โ๐ฝ" type="tts">peker opp: hudtype 4</annotation>
<annotation cp="โ๐พ">finger | hรฅnd | hudtype 5 | kropp | opp | peke | pekefinger | peker opp</annotation>
<annotation cp="โ๐พ" type="tts">peker opp: hudtype 5</annotation>
<annotation cp="โ๐ฟ">finger | hรฅnd | hudtype 6 | kropp | opp | peke | pekefinger | peker opp</annotation>
<annotation cp="โ๐ฟ" type="tts">peker opp: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | tegn | tommel | tommel opp</annotation>
<annotation cp="๐๐ป" type="tts">tommel opp: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | tegn | tommel | tommel opp</annotation>
<annotation cp="๐๐ผ" type="tts">tommel opp: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | tegn | tommel | tommel opp</annotation>
<annotation cp="๐๐ฝ" type="tts">tommel opp: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | tegn | tommel | tommel opp</annotation>
<annotation cp="๐๐พ" type="tts">tommel opp: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | tegn | tommel | tommel opp</annotation>
<annotation cp="๐๐ฟ" type="tts">tommel opp: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | tegn | tommel | tommel ned</annotation>
<annotation cp="๐๐ป" type="tts">tommel ned: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | tegn | tommel | tommel ned</annotation>
<annotation cp="๐๐ผ" type="tts">tommel ned: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | tegn | tommel | tommel ned</annotation>
<annotation cp="๐๐ฝ" type="tts">tommel ned: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | tegn | tommel | tommel ned</annotation>
<annotation cp="๐๐พ" type="tts">tommel ned: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | tegn | tommel | tommel ned</annotation>
<annotation cp="๐๐ฟ" type="tts">tommel ned: hudtype 6</annotation>
<annotation cp="โ๐ป">hรฅnd | hevet knyttneve | hudtype 1โ2 | knyttet neve | neve</annotation>
<annotation cp="โ๐ป" type="tts">hevet knyttneve: hudtype 1โ2</annotation>
<annotation cp="โ๐ผ">hรฅnd | hevet knyttneve | hudtype 3 | knyttet neve | neve</annotation>
<annotation cp="โ๐ผ" type="tts">hevet knyttneve: hudtype 3</annotation>
<annotation cp="โ๐ฝ">hรฅnd | hevet knyttneve | hudtype 4 | knyttet neve | neve</annotation>
<annotation cp="โ๐ฝ" type="tts">hevet knyttneve: hudtype 4</annotation>
<annotation cp="โ๐พ">hรฅnd | hevet knyttneve | hudtype 5 | knyttet neve | neve</annotation>
<annotation cp="โ๐พ" type="tts">hevet knyttneve: hudtype 5</annotation>
<annotation cp="โ๐ฟ">hรฅnd | hevet knyttneve | hudtype 6 | knyttet neve | neve</annotation>
<annotation cp="โ๐ฟ" type="tts">hevet knyttneve: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | knyttneve | neve</annotation>
<annotation cp="๐๐ป" type="tts">knyttneve: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | knyttneve | neve</annotation>
<annotation cp="๐๐ผ" type="tts">knyttneve: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | knyttneve | neve</annotation>
<annotation cp="๐๐ฝ" type="tts">knyttneve: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | knyttneve | neve</annotation>
<annotation cp="๐๐พ" type="tts">knyttneve: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | knyttneve | neve</annotation>
<annotation cp="๐๐ฟ" type="tts">knyttneve: hudtype 6</annotation>
<annotation cp="๐ค๐ป">hรฅnd | hudtype 1โ2 | knyttneve mot venstre | neve | venstre | venstrevendt</annotation>
<annotation cp="๐ค๐ป" type="tts">knyttneve mot venstre: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">hรฅnd | hudtype 3 | knyttneve mot venstre | neve | venstre | venstrevendt</annotation>
<annotation cp="๐ค๐ผ" type="tts">knyttneve mot venstre: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">hรฅnd | hudtype 4 | knyttneve mot venstre | neve | venstre | venstrevendt</annotation>
<annotation cp="๐ค๐ฝ" type="tts">knyttneve mot venstre: hudtype 4</annotation>
<annotation cp="๐ค๐พ">hรฅnd | hudtype 5 | knyttneve mot venstre | neve | venstre | venstrevendt</annotation>
<annotation cp="๐ค๐พ" type="tts">knyttneve mot venstre: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">hรฅnd | hudtype 6 | knyttneve mot venstre | neve | venstre | venstrevendt</annotation>
<annotation cp="๐ค๐ฟ" type="tts">knyttneve mot venstre: hudtype 6</annotation>
<annotation cp="๐ค๐ป">hรฅnd | hรธyre | hรธyrevendt | hudtype 1โ2 | knyttneve mot hรธyre | neve</annotation>
<annotation cp="๐ค๐ป" type="tts">knyttneve mot hรธyre: hudtype 1โ2</annotation>
<annotation cp="๐ค๐ผ">hรฅnd | hรธyre | hรธyrevendt | hudtype 3 | knyttneve mot hรธyre | neve</annotation>
<annotation cp="๐ค๐ผ" type="tts">knyttneve mot hรธyre: hudtype 3</annotation>
<annotation cp="๐ค๐ฝ">hรฅnd | hรธyre | hรธyrevendt | hudtype 4 | knyttneve mot hรธyre | neve</annotation>
<annotation cp="๐ค๐ฝ" type="tts">knyttneve mot hรธyre: hudtype 4</annotation>
<annotation cp="๐ค๐พ">hรฅnd | hรธyre | hรธyrevendt | hudtype 5 | knyttneve mot hรธyre | neve</annotation>
<annotation cp="๐ค๐พ" type="tts">knyttneve mot hรธyre: hudtype 5</annotation>
<annotation cp="๐ค๐ฟ">hรฅnd | hรธyre | hรธyrevendt | hudtype 6 | knyttneve mot hรธyre | neve</annotation>
<annotation cp="๐ค๐ฟ" type="tts">knyttneve mot hรธyre: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hender | hudtype 1โ2 | klappende hender | klapping</annotation>
<annotation cp="๐๐ป" type="tts">klappende hender: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hender | hudtype 3 | klappende hender | klapping</annotation>
<annotation cp="๐๐ผ" type="tts">klappende hender: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hender | hudtype 4 | klappende hender | klapping</annotation>
<annotation cp="๐๐ฝ" type="tts">klappende hender: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hender | hudtype 5 | klappende hender | klapping</annotation>
<annotation cp="๐๐พ" type="tts">klappende hender: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hender | hudtype 6 | klappende hender | klapping</annotation>
<annotation cp="๐๐ฟ" type="tts">klappende hender: hudtype 6</annotation>
<annotation cp="๐๐ป">begge hender | feirer | feiring | hรฅnd | hevede hender | hudtype 1โ2 | rekker begge armene i vรฆret</annotation>
<annotation cp="๐๐ป" type="tts">hevede hender: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">begge hender | feirer | feiring | hรฅnd | hevede hender | hudtype 3 | rekker begge armene i vรฆret</annotation>
<annotation cp="๐๐ผ" type="tts">hevede hender: hudtype 3</annotation>
<annotation cp="๐๐ฝ">begge hender | feirer | feiring | hรฅnd | hevede hender | hudtype 4 | rekker begge armene i vรฆret</annotation>
<annotation cp="๐๐ฝ" type="tts">hevede hender: hudtype 4</annotation>
<annotation cp="๐๐พ">begge hender | feirer | feiring | hรฅnd | hevede hender | hudtype 5 | rekker begge armene i vรฆret</annotation>
<annotation cp="๐๐พ" type="tts">hevede hender: hudtype 5</annotation>
<annotation cp="๐๐ฟ">begge hender | feirer | feiring | hรฅnd | hevede hender | hudtype 6 | rekker begge armene i vรฆret</annotation>
<annotation cp="๐๐ฟ" type="tts">hevede hender: hudtype 6</annotation>
<annotation cp="๐๐ป">รฅpne | hรฅnd | hender | hudtype 1โ2</annotation>
<annotation cp="๐๐ป" type="tts">รฅpne hender: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">รฅpne | hรฅnd | hender | hudtype 3</annotation>
<annotation cp="๐๐ผ" type="tts">รฅpne hender: hudtype 3</annotation>
<annotation cp="๐๐ฝ">รฅpne | hรฅnd | hender | hudtype 4</annotation>
<annotation cp="๐๐ฝ" type="tts">รฅpne hender: hudtype 4</annotation>
<annotation cp="๐๐พ">รฅpne | hรฅnd | hender | hudtype 5</annotation>
<annotation cp="๐๐พ" type="tts">รฅpne hender: hudtype 5</annotation>
<annotation cp="๐๐ฟ">รฅpne | hรฅnd | hender | hudtype 6</annotation>
<annotation cp="๐๐ฟ" type="tts">รฅpne hender: hudtype 6</annotation>
<annotation cp="๐คฒ๐ป">ber | bรธnn | hรฅnd | hรฅndflatene sammen | hudtype 1โ2</annotation>
<annotation cp="๐คฒ๐ป" type="tts">hรฅndflatene sammen: hudtype 1โ2</annotation>
<annotation cp="๐คฒ๐ผ">ber | bรธnn | hรฅnd | hรฅndflatene sammen | hudtype 3</annotation>
<annotation cp="๐คฒ๐ผ" type="tts">hรฅndflatene sammen: hudtype 3</annotation>
<annotation cp="๐คฒ๐ฝ">ber | bรธnn | hรฅnd | hรฅndflatene sammen | hudtype 4</annotation>
<annotation cp="๐คฒ๐ฝ" type="tts">hรฅndflatene sammen: hudtype 4</annotation>
<annotation cp="๐คฒ๐พ">ber | bรธnn | hรฅnd | hรฅndflatene sammen | hudtype 5</annotation>
<annotation cp="๐คฒ๐พ" type="tts">hรฅndflatene sammen: hudtype 5</annotation>
<annotation cp="๐คฒ๐ฟ">ber | bรธnn | hรฅnd | hรฅndflatene sammen | hudtype 6</annotation>
<annotation cp="๐คฒ๐ฟ" type="tts">hรฅndflatene sammen: hudtype 6</annotation>
<annotation cp="๐๐ป">be | ber | bevegelse | bรธnn | foldede hender | hรฅnd | hudtype 1โ2</annotation>
<annotation cp="๐๐ป" type="tts">foldede hender: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">be | ber | bevegelse | bรธnn | foldede hender | hรฅnd | hudtype 3</annotation>
<annotation cp="๐๐ผ" type="tts">foldede hender: hudtype 3</annotation>
<annotation cp="๐๐ฝ">be | ber | bevegelse | bรธnn | foldede hender | hรฅnd | hudtype 4</annotation>
<annotation cp="๐๐ฝ" type="tts">foldede hender: hudtype 4</annotation>
<annotation cp="๐๐พ">be | ber | bevegelse | bรธnn | foldede hender | hรฅnd | hudtype 5</annotation>
<annotation cp="๐๐พ" type="tts">foldede hender: hudtype 5</annotation>
<annotation cp="๐๐ฟ">be | ber | bevegelse | bรธnn | foldede hender | hรฅnd | hudtype 6</annotation>
<annotation cp="๐๐ฟ" type="tts">foldede hender: hudtype 6</annotation>
<annotation cp="โ๐ป">hรฅnd | hudtype 1โ2 | kropp | skrive | skrivende hรฅnd</annotation>
<annotation cp="โ๐ป" type="tts">skrivende hรฅnd: hudtype 1โ2</annotation>
<annotation cp="โ๐ผ">hรฅnd | hudtype 3 | kropp | skrive | skrivende hรฅnd</annotation>
<annotation cp="โ๐ผ" type="tts">skrivende hรฅnd: hudtype 3</annotation>
<annotation cp="โ๐ฝ">hรฅnd | hudtype 4 | kropp | skrive | skrivende hรฅnd</annotation>
<annotation cp="โ๐ฝ" type="tts">skrivende hรฅnd: hudtype 4</annotation>
<annotation cp="โ๐พ">hรฅnd | hudtype 5 | kropp | skrive | skrivende hรฅnd</annotation>
<annotation cp="โ๐พ" type="tts">skrivende hรฅnd: hudtype 5</annotation>
<annotation cp="โ๐ฟ">hรฅnd | hudtype 6 | kropp | skrive | skrivende hรฅnd</annotation>
<annotation cp="โ๐ฟ" type="tts">skrivende hรฅnd: hudtype 6</annotation>
<annotation cp="๐
๐ป">hudtype 1โ2 | kosmetikk | manikyr | negl | neglelakk</annotation>
<annotation cp="๐
๐ป" type="tts">neglelakk: hudtype 1โ2</annotation>
<annotation cp="๐
๐ผ">hudtype 3 | kosmetikk | manikyr | negl | neglelakk</annotation>
<annotation cp="๐
๐ผ" type="tts">neglelakk: hudtype 3</annotation>
<annotation cp="๐
๐ฝ">hudtype 4 | kosmetikk | manikyr | negl | neglelakk</annotation>
<annotation cp="๐
๐ฝ" type="tts">neglelakk: hudtype 4</annotation>
<annotation cp="๐
๐พ">hudtype 5 | kosmetikk | manikyr | negl | neglelakk</annotation>
<annotation cp="๐
๐พ" type="tts">neglelakk: hudtype 5</annotation>
<annotation cp="๐
๐ฟ">hudtype 6 | kosmetikk | manikyr | negl | neglelakk</annotation>
<annotation cp="๐
๐ฟ" type="tts">neglelakk: hudtype 6</annotation>
<annotation cp="๐คณ๐ป">hudtype 1โ2 | kamera | selfie | telefon</annotation>
<annotation cp="๐คณ๐ป" type="tts">selfie: hudtype 1โ2</annotation>
<annotation cp="๐คณ๐ผ">hudtype 3 | kamera | selfie | telefon</annotation>
<annotation cp="๐คณ๐ผ" type="tts">selfie: hudtype 3</annotation>
<annotation cp="๐คณ๐ฝ">hudtype 4 | kamera | selfie | telefon</annotation>
<annotation cp="๐คณ๐ฝ" type="tts">selfie: hudtype 4</annotation>
<annotation cp="๐คณ๐พ">hudtype 5 | kamera | selfie | telefon</annotation>
<annotation cp="๐คณ๐พ" type="tts">selfie: hudtype 5</annotation>
<annotation cp="๐คณ๐ฟ">hudtype 6 | kamera | selfie | telefon</annotation>
<annotation cp="๐คณ๐ฟ" type="tts">selfie: hudtype 6</annotation>
<annotation cp="๐ช๐ป">biceps | fleks | hudtype 1โ2 | muskel | muskelfleksing | sterk | tegneserie</annotation>
<annotation cp="๐ช๐ป" type="tts">biceps: hudtype 1โ2</annotation>
<annotation cp="๐ช๐ผ">biceps | fleks | hudtype 3 | muskel | muskelfleksing | sterk | tegneserie</annotation>
<annotation cp="๐ช๐ผ" type="tts">biceps: hudtype 3</annotation>
<annotation cp="๐ช๐ฝ">biceps | fleks | hudtype 4 | muskel | muskelfleksing | sterk | tegneserie</annotation>
<annotation cp="๐ช๐ฝ" type="tts">biceps: hudtype 4</annotation>
<annotation cp="๐ช๐พ">biceps | fleks | hudtype 5 | muskel | muskelfleksing | sterk | tegneserie</annotation>
<annotation cp="๐ช๐พ" type="tts">biceps: hudtype 5</annotation>
<annotation cp="๐ช๐ฟ">biceps | fleks | hudtype 6 | muskel | muskelfleksing | sterk | tegneserie</annotation>
<annotation cp="๐ช๐ฟ" type="tts">biceps: hudtype 6</annotation>
<annotation cp="๐ฆต๐ป">bein | hudtype 1โ2 | lem | sparke</annotation>
<annotation cp="๐ฆต๐ป" type="tts">bein: hudtype 1โ2</annotation>
<annotation cp="๐ฆต๐ผ">bein | hudtype 3 | lem | sparke</annotation>
<annotation cp="๐ฆต๐ผ" type="tts">bein: hudtype 3</annotation>
<annotation cp="๐ฆต๐ฝ">bein | hudtype 4 | lem | sparke</annotation>
<annotation cp="๐ฆต๐ฝ" type="tts">bein: hudtype 4</annotation>
<annotation cp="๐ฆต๐พ">bein | hudtype 5 | lem | sparke</annotation>
<annotation cp="๐ฆต๐พ" type="tts">bein: hudtype 5</annotation>
<annotation cp="๐ฆต๐ฟ">bein | hudtype 6 | lem | sparke</annotation>
<annotation cp="๐ฆต๐ฟ" type="tts">bein: hudtype 6</annotation>
<annotation cp="๐ฆถ๐ป">fot | hudtype 1โ2 | sparke | trรฅkke</annotation>
<annotation cp="๐ฆถ๐ป" type="tts">fot: hudtype 1โ2</annotation>
<annotation cp="๐ฆถ๐ผ">fot | hudtype 3 | sparke | trรฅkke</annotation>
<annotation cp="๐ฆถ๐ผ" type="tts">fot: hudtype 3</annotation>
<annotation cp="๐ฆถ๐ฝ">fot | hudtype 4 | sparke | trรฅkke</annotation>
<annotation cp="๐ฆถ๐ฝ" type="tts">fot: hudtype 4</annotation>
<annotation cp="๐ฆถ๐พ">fot | hudtype 5 | sparke | trรฅkke</annotation>
<annotation cp="๐ฆถ๐พ" type="tts">fot: hudtype 5</annotation>
<annotation cp="๐ฆถ๐ฟ">fot | hudtype 6 | sparke | trรฅkke</annotation>
<annotation cp="๐ฆถ๐ฟ" type="tts">fot: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | kropp | รธre</annotation>
<annotation cp="๐๐ป" type="tts">รธre: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | kropp | รธre</annotation>
<annotation cp="๐๐ผ" type="tts">รธre: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | kropp | รธre</annotation>
<annotation cp="๐๐ฝ" type="tts">รธre: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | kropp | รธre</annotation>
<annotation cp="๐๐พ" type="tts">รธre: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | kropp | รธre</annotation>
<annotation cp="๐๐ฟ" type="tts">รธre: hudtype 6</annotation>
<annotation cp="๐ฆป๐ป">hudtype 1โ2 | รธre med hรธreapparat | svak hรธrsel | tilgjengelighet</annotation>
<annotation cp="๐ฆป๐ป" type="tts">รธre med hรธreapparat: hudtype 1โ2</annotation>
<annotation cp="๐ฆป๐ผ">hudtype 3 | รธre med hรธreapparat | svak hรธrsel | tilgjengelighet</annotation>
<annotation cp="๐ฆป๐ผ" type="tts">รธre med hรธreapparat: hudtype 3</annotation>
<annotation cp="๐ฆป๐ฝ">hudtype 4 | รธre med hรธreapparat | svak hรธrsel | tilgjengelighet</annotation>
<annotation cp="๐ฆป๐ฝ" type="tts">รธre med hรธreapparat: hudtype 4</annotation>
<annotation cp="๐ฆป๐พ">hudtype 5 | รธre med hรธreapparat | svak hรธrsel | tilgjengelighet</annotation>
<annotation cp="๐ฆป๐พ" type="tts">รธre med hรธreapparat: hudtype 5</annotation>
<annotation cp="๐ฆป๐ฟ">hudtype 6 | รธre med hรธreapparat | svak hรธrsel | tilgjengelighet</annotation>
<annotation cp="๐ฆป๐ฟ" type="tts">รธre med hรธreapparat: hudtype 6</annotation>
<annotation cp="๐๐ป">fjes | hudtype 1โ2 | kropp | nese</annotation>
<annotation cp="๐๐ป" type="tts">nese: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">fjes | hudtype 3 | kropp | nese</annotation>
<annotation cp="๐๐ผ" type="tts">nese: hudtype 3</annotation>
<annotation cp="๐๐ฝ">fjes | hudtype 4 | kropp | nese</annotation>
<annotation cp="๐๐ฝ" type="tts">nese: hudtype 4</annotation>
<annotation cp="๐๐พ">fjes | hudtype 5 | kropp | nese</annotation>
<annotation cp="๐๐พ" type="tts">nese: hudtype 5</annotation>
<annotation cp="๐๐ฟ">fjes | hudtype 6 | kropp | nese</annotation>
<annotation cp="๐๐ฟ" type="tts">nese: hudtype 6</annotation>
<annotation cp="๐ถ๐ป">baby | hudtype 1โ2 | menneske | ung</annotation>
<annotation cp="๐ถ๐ป" type="tts">baby: hudtype 1โ2</annotation>
<annotation cp="๐ถ๐ผ">baby | hudtype 3 | menneske | ung</annotation>
<annotation cp="๐ถ๐ผ" type="tts">baby: hudtype 3</annotation>
<annotation cp="๐ถ๐ฝ">baby | hudtype 4 | menneske | ung</annotation>
<annotation cp="๐ถ๐ฝ" type="tts">baby: hudtype 4</annotation>
<annotation cp="๐ถ๐พ">baby | hudtype 5 | menneske | ung</annotation>
<annotation cp="๐ถ๐พ" type="tts">baby: hudtype 5</annotation>
<annotation cp="๐ถ๐ฟ">baby | hudtype 6 | menneske | ung</annotation>
<annotation cp="๐ถ๐ฟ" type="tts">baby: hudtype 6</annotation>
<annotation cp="๐ง๐ป">barn | hudtype 1โ2 | kjรธnnsnรธytral | menneske | ung</annotation>
<annotation cp="๐ง๐ป" type="tts">barn: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">barn | hudtype 3 | kjรธnnsnรธytral | menneske | ung</annotation>
<annotation cp="๐ง๐ผ" type="tts">barn: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">barn | hudtype 4 | kjรธnnsnรธytral | menneske | ung</annotation>
<annotation cp="๐ง๐ฝ" type="tts">barn: hudtype 4</annotation>
<annotation cp="๐ง๐พ">barn | hudtype 5 | kjรธnnsnรธytral | menneske | ung</annotation>
<annotation cp="๐ง๐พ" type="tts">barn: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">barn | hudtype 6 | kjรธnnsnรธytral | menneske | ung</annotation>
<annotation cp="๐ง๐ฟ" type="tts">barn: hudtype 6</annotation>
<annotation cp="๐ฆ๐ป">gutt | hudtype 1โ2 | menneske | ung</annotation>
<annotation cp="๐ฆ๐ป" type="tts">gutt: hudtype 1โ2</annotation>
<annotation cp="๐ฆ๐ผ">gutt | hudtype 3 | menneske | ung</annotation>
<annotation cp="๐ฆ๐ผ" type="tts">gutt: hudtype 3</annotation>
<annotation cp="๐ฆ๐ฝ">gutt | hudtype 4 | menneske | ung</annotation>
<annotation cp="๐ฆ๐ฝ" type="tts">gutt: hudtype 4</annotation>
<annotation cp="๐ฆ๐พ">gutt | hudtype 5 | menneske | ung</annotation>
<annotation cp="๐ฆ๐พ" type="tts">gutt: hudtype 5</annotation>
<annotation cp="๐ฆ๐ฟ">gutt | hudtype 6 | menneske | ung</annotation>
<annotation cp="๐ฆ๐ฟ" type="tts">gutt: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | jente | Jomfruen | menneske | stjernebilde | stjernetegn | ung</annotation>
<annotation cp="๐ง๐ป" type="tts">jente: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | jente | Jomfruen | menneske | stjernebilde | stjernetegn | ung</annotation>
<annotation cp="๐ง๐ผ" type="tts">jente: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | jente | Jomfruen | menneske | stjernebilde | stjernetegn | ung</annotation>
<annotation cp="๐ง๐ฝ" type="tts">jente: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | jente | Jomfruen | menneske | stjernebilde | stjernetegn | ung</annotation>
<annotation cp="๐ง๐พ" type="tts">jente: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | jente | Jomfruen | menneske | stjernebilde | stjernetegn | ung</annotation>
<annotation cp="๐ง๐ฟ" type="tts">jente: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ป" type="tts">voksen: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ผ" type="tts">voksen: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฝ" type="tts">voksen: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐พ" type="tts">voksen: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฟ" type="tts">voksen: hudtype 6</annotation>
<annotation cp="๐ฑ๐ป">blond | blond person | hรฅr | hudtype 1โ2 | menneske | Person: blond</annotation>
<annotation cp="๐ฑ๐ป" type="tts">Person: hudtype 1โ2, blond</annotation>
<annotation cp="๐ฑ๐ผ">blond | blond person | hรฅr | hudtype 3 | menneske | Person: blond</annotation>
<annotation cp="๐ฑ๐ผ" type="tts">Person: hudtype 3, blond</annotation>
<annotation cp="๐ฑ๐ฝ">blond | blond person | hรฅr | hudtype 4 | menneske | Person: blond</annotation>
<annotation cp="๐ฑ๐ฝ" type="tts">Person: hudtype 4, blond</annotation>
<annotation cp="๐ฑ๐พ">blond | blond person | hรฅr | hudtype 5 | menneske | Person: blond</annotation>
<annotation cp="๐ฑ๐พ" type="tts">Person: hudtype 5, blond</annotation>
<annotation cp="๐ฑ๐ฟ">blond | blond person | hรฅr | hudtype 6 | menneske | Person: blond</annotation>
<annotation cp="๐ฑ๐ฟ" type="tts">Person: hudtype 6, blond</annotation>
<annotation cp="๐งโ๐ฆฐ">kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐งโ๐ฆฐ" type="tts">voksen: rรธdt hรฅr</annotation>
<annotation cp="๐ง๐ปโ๐ฆฐ">hudtype 1โ2 | kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ง๐ปโ๐ฆฐ" type="tts">voksen: hudtype 1โ2, rรธdt hรฅr</annotation>
<annotation cp="๐ง๐ผโ๐ฆฐ">hudtype 3 | kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ง๐ผโ๐ฆฐ" type="tts">voksen: hudtype 3, rรธdt hรฅr</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฐ">hudtype 4 | kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฐ" type="tts">voksen: hudtype 4, rรธdt hรฅr</annotation>
<annotation cp="๐ง๐พโ๐ฆฐ">hudtype 5 | kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ง๐พโ๐ฆฐ" type="tts">voksen: hudtype 5, rรธdt hรฅr</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฐ">hudtype 6 | kjรธnnsnรธytral | menneske | person | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฐ" type="tts">voksen: hudtype 6, rรธdt hรฅr</annotation>
<annotation cp="๐งโ๐ฆฑ">kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐งโ๐ฆฑ" type="tts">voksen: kruset hรฅr</annotation>
<annotation cp="๐ง๐ปโ๐ฆฑ">hudtype 1โ2 | kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ปโ๐ฆฑ" type="tts">voksen: hudtype 1โ2, kruset hรฅr</annotation>
<annotation cp="๐ง๐ผโ๐ฆฑ">hudtype 3 | kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ผโ๐ฆฑ" type="tts">voksen: hudtype 3, kruset hรฅr</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฑ">hudtype 4 | kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฑ" type="tts">voksen: hudtype 4, kruset hรฅr</annotation>
<annotation cp="๐ง๐พโ๐ฆฑ">hudtype 5 | kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐ง๐พโ๐ฆฑ" type="tts">voksen: hudtype 5, kruset hรฅr</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฑ">hudtype 6 | kjรธnnsnรธytral | kruset hรฅr | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฑ" type="tts">voksen: hudtype 6, kruset hรฅr</annotation>
<annotation cp="๐งโ๐ฆณ">grรฅtt hรฅr | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐งโ๐ฆณ" type="tts">voksen: grรฅtt hรฅr</annotation>
<annotation cp="๐ง๐ปโ๐ฆณ">grรฅtt hรฅr | hudtype 1โ2 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ปโ๐ฆณ" type="tts">voksen: hudtype 1โ2, grรฅtt hรฅr</annotation>
<annotation cp="๐ง๐ผโ๐ฆณ">grรฅtt hรฅr | hudtype 3 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ผโ๐ฆณ" type="tts">voksen: hudtype 3, grรฅtt hรฅr</annotation>
<annotation cp="๐ง๐ฝโ๐ฆณ">grรฅtt hรฅr | hudtype 4 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฝโ๐ฆณ" type="tts">voksen: hudtype 4, grรฅtt hรฅr</annotation>
<annotation cp="๐ง๐พโ๐ฆณ">grรฅtt hรฅr | hudtype 5 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐พโ๐ฆณ" type="tts">voksen: hudtype 5, grรฅtt hรฅr</annotation>
<annotation cp="๐ง๐ฟโ๐ฆณ">grรฅtt hรฅr | hudtype 6 | kjรธnnsnรธytral | menneske | person | voksen</annotation>
<annotation cp="๐ง๐ฟโ๐ฆณ" type="tts">voksen: hudtype 6, grรฅtt hรฅr</annotation>
<annotation cp="๐งโ๐ฆฒ">kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐งโ๐ฆฒ" type="tts">voksen: skallet</annotation>
<annotation cp="๐ง๐ปโ๐ฆฒ">hudtype 1โ2 | kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐ง๐ปโ๐ฆฒ" type="tts">voksen: hudtype 1โ2, skallet</annotation>
<annotation cp="๐ง๐ผโ๐ฆฒ">hudtype 3 | kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐ง๐ผโ๐ฆฒ" type="tts">voksen: hudtype 3, skallet</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฒ">hudtype 4 | kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฒ" type="tts">voksen: hudtype 4, skallet</annotation>
<annotation cp="๐ง๐พโ๐ฆฒ">hudtype 5 | kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐ง๐พโ๐ฆฒ" type="tts">voksen: hudtype 5, skallet</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฒ">hudtype 6 | kjรธnnsnรธytral | menneske | person | skallet | voksen</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฒ" type="tts">voksen: hudtype 6, skallet</annotation>
<annotation cp="๐จ๐ป">hudtype 1โ2 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ป" type="tts">mann: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผ">hudtype 3 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ผ" type="tts">mann: hudtype 3</annotation>
<annotation cp="๐จ๐ฝ">hudtype 4 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฝ" type="tts">mann: hudtype 4</annotation>
<annotation cp="๐จ๐พ">hudtype 5 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐พ" type="tts">mann: hudtype 5</annotation>
<annotation cp="๐จ๐ฟ">hudtype 6 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฟ" type="tts">mann: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | mann | mann med skjegg | mann: skjegg | person | skjegg</annotation>
<annotation cp="๐ง๐ป" type="tts">mann: hudtype 1โ2, skjegg</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | mann | mann med skjegg | mann: skjegg | person | skjegg</annotation>
<annotation cp="๐ง๐ผ" type="tts">mann: hudtype 3, skjegg</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | mann | mann med skjegg | mann: skjegg | person | skjegg</annotation>
<annotation cp="๐ง๐ฝ" type="tts">mann: hudtype 4, skjegg</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | mann | mann med skjegg | mann: skjegg | person | skjegg</annotation>
<annotation cp="๐ง๐พ" type="tts">mann: hudtype 5, skjegg</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | mann | mann med skjegg | mann: skjegg | person | skjegg</annotation>
<annotation cp="๐ง๐ฟ" type="tts">mann: hudtype 6, skjegg</annotation>
<annotation cp="๐ฑ๐ปโโ">blond | hรฅr | hudtype 1โ2 | mann | mann: blond</annotation>
<annotation cp="๐ฑ๐ปโโ" type="tts">mann: hudtype 1โ2, blond</annotation>
<annotation cp="๐ฑ๐ผโโ">blond | hรฅr | hudtype 3 | mann | mann: blond</annotation>
<annotation cp="๐ฑ๐ผโโ" type="tts">mann: hudtype 3, blond</annotation>
<annotation cp="๐ฑ๐ฝโโ">blond | hรฅr | hudtype 4 | mann | mann: blond</annotation>
<annotation cp="๐ฑ๐ฝโโ" type="tts">mann: hudtype 4, blond</annotation>
<annotation cp="๐ฑ๐พโโ">blond | hรฅr | hudtype 5 | mann | mann: blond</annotation>
<annotation cp="๐ฑ๐พโโ" type="tts">mann: hudtype 5, blond</annotation>
<annotation cp="๐ฑ๐ฟโโ">blond | hรฅr | hudtype 6 | mann | mann: blond</annotation>
<annotation cp="๐ฑ๐ฟโโ" type="tts">mann: hudtype 6, blond</annotation>
<annotation cp="๐จโ๐ฆฐ">mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จโ๐ฆฐ" type="tts">mann: rรธdt hรฅr</annotation>
<annotation cp="๐จ๐ปโ๐ฆฐ">hudtype 1โ2 | mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จ๐ปโ๐ฆฐ" type="tts">mann: hudtype 1โ2, rรธdt hรฅr</annotation>
<annotation cp="๐จ๐ผโ๐ฆฐ">hudtype 3 | mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จ๐ผโ๐ฆฐ" type="tts">mann: hudtype 3, rรธdt hรฅr</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฐ">hudtype 4 | mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฐ" type="tts">mann: hudtype 4, rรธdt hรฅr</annotation>
<annotation cp="๐จ๐พโ๐ฆฐ">hudtype 5 | mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จ๐พโ๐ฆฐ" type="tts">mann: hudtype 5, rรธdt hรฅr</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฐ">hudtype 6 | mann | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฐ" type="tts">mann: hudtype 6, rรธdt hรฅr</annotation>
<annotation cp="๐จโ๐ฆฑ">kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จโ๐ฆฑ" type="tts">mann: kruset hรฅr</annotation>
<annotation cp="๐จ๐ปโ๐ฆฑ">hudtype 1โ2 | kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ปโ๐ฆฑ" type="tts">mann: hudtype 1โ2, kruset hรฅr</annotation>
<annotation cp="๐จ๐ผโ๐ฆฑ">hudtype 3 | kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ผโ๐ฆฑ" type="tts">mann: hudtype 3, kruset hรฅr</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฑ">hudtype 4 | kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฑ" type="tts">mann: hudtype 4, kruset hรฅr</annotation>
<annotation cp="๐จ๐พโ๐ฆฑ">hudtype 5 | kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐พโ๐ฆฑ" type="tts">mann: hudtype 5, kruset hรฅr</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฑ">hudtype 6 | kruset hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฑ" type="tts">mann: hudtype 6, kruset hรฅr</annotation>
<annotation cp="๐จโ๐ฆณ">grรฅtt hรฅr | mann | menneske | voksen</annotation>
<annotation cp="๐จโ๐ฆณ" type="tts">mann: grรฅtt hรฅr</annotation>
<annotation cp="๐จ๐ปโ๐ฆณ">grรฅtt hรฅr | hudtype 1โ2 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ปโ๐ฆณ" type="tts">mann: hudtype 1โ2, grรฅtt hรฅr</annotation>
<annotation cp="๐จ๐ผโ๐ฆณ">grรฅtt hรฅr | hudtype 3 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ผโ๐ฆณ" type="tts">mann: hudtype 3, grรฅtt hรฅr</annotation>
<annotation cp="๐จ๐ฝโ๐ฆณ">grรฅtt hรฅr | hudtype 4 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฝโ๐ฆณ" type="tts">mann: hudtype 4, grรฅtt hรฅr</annotation>
<annotation cp="๐จ๐พโ๐ฆณ">grรฅtt hรฅr | hudtype 5 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐พโ๐ฆณ" type="tts">mann: hudtype 5, grรฅtt hรฅr</annotation>
<annotation cp="๐จ๐ฟโ๐ฆณ">grรฅtt hรฅr | hudtype 6 | mann | menneske | voksen</annotation>
<annotation cp="๐จ๐ฟโ๐ฆณ" type="tts">mann: hudtype 6, grรฅtt hรฅr</annotation>
<annotation cp="๐จโ๐ฆฒ">mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จโ๐ฆฒ" type="tts">mann: skallet</annotation>
<annotation cp="๐จ๐ปโ๐ฆฒ">hudtype 1โ2 | mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จ๐ปโ๐ฆฒ" type="tts">mann: hudtype 1โ2, skallet</annotation>
<annotation cp="๐จ๐ผโ๐ฆฒ">hudtype 3 | mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จ๐ผโ๐ฆฒ" type="tts">mann: hudtype 3, skallet</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฒ">hudtype 4 | mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฒ" type="tts">mann: hudtype 4, skallet</annotation>
<annotation cp="๐จ๐พโ๐ฆฒ">hudtype 5 | mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จ๐พโ๐ฆฒ" type="tts">mann: hudtype 5, skallet</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฒ">hudtype 6 | mann | menneske | skallet | voksen</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฒ" type="tts">mann: hudtype 6, skallet</annotation>
<annotation cp="๐ฉ๐ป">hudtype 1โ2 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ป" type="tts">kvinne: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผ">hudtype 3 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ผ" type="tts">kvinne: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝ">hudtype 4 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฝ" type="tts">kvinne: hudtype 4</annotation>
<annotation cp="๐ฉ๐พ">hudtype 5 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐พ" type="tts">kvinne: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟ">hudtype 6 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฟ" type="tts">kvinne: hudtype 6</annotation>
<annotation cp="๐ฑ๐ปโโ">blond | blondine | hรฅr | hudtype 1โ2 | kvinne | kvinne: blond</annotation>
<annotation cp="๐ฑ๐ปโโ" type="tts">kvinne: hudtype 1โ2, blond</annotation>
<annotation cp="๐ฑ๐ผโโ">blond | blondine | hรฅr | hudtype 3 | kvinne | kvinne: blond</annotation>
<annotation cp="๐ฑ๐ผโโ" type="tts">kvinne: hudtype 3, blond</annotation>
<annotation cp="๐ฑ๐ฝโโ">blond | blondine | hรฅr | hudtype 4 | kvinne | kvinne: blond</annotation>
<annotation cp="๐ฑ๐ฝโโ" type="tts">kvinne: hudtype 4, blond</annotation>
<annotation cp="๐ฑ๐พโโ">blond | blondine | hรฅr | hudtype 5 | kvinne | kvinne: blond</annotation>
<annotation cp="๐ฑ๐พโโ" type="tts">kvinne: hudtype 5, blond</annotation>
<annotation cp="๐ฑ๐ฟโโ">blond | blondine | hรฅr | hudtype 6 | kvinne | kvinne: blond</annotation>
<annotation cp="๐ฑ๐ฟโโ" type="tts">kvinne: hudtype 6, blond</annotation>
<annotation cp="๐ฉโ๐ฆฐ">kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉโ๐ฆฐ" type="tts">kvinne: rรธdt hรฅr</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฐ">hudtype 1โ2 | kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฐ" type="tts">kvinne: hudtype 1โ2, rรธdt hรฅr</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฐ">hudtype 3 | kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฐ" type="tts">kvinne: hudtype 3, rรธdt hรฅr</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฐ">hudtype 4 | kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฐ" type="tts">kvinne: hudtype 4, rรธdt hรฅr</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฐ">hudtype 5 | kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฐ" type="tts">kvinne: hudtype 5, rรธdt hรฅr</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฐ">hudtype 6 | kvinne | menneske | rรธdt hรฅr | voksen</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฐ" type="tts">kvinne: hudtype 6, rรธdt hรฅr</annotation>
<annotation cp="๐ฉโ๐ฆฑ">kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉโ๐ฆฑ" type="tts">kvinne: kruset hรฅr</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฑ">hudtype 1โ2 | kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฑ" type="tts">kvinne: hudtype 1โ2, kruset hรฅr</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฑ">hudtype 3 | kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฑ" type="tts">kvinne: hudtype 3, kruset hรฅr</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฑ">hudtype 4 | kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฑ" type="tts">kvinne: hudtype 4, kruset hรฅr</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฑ">hudtype 5 | kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฑ" type="tts">kvinne: hudtype 5, kruset hรฅr</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฑ">hudtype 6 | kruset hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฑ" type="tts">kvinne: hudtype 6, kruset hรฅr</annotation>
<annotation cp="๐ฉโ๐ฆณ">grรฅtt hรฅr | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉโ๐ฆณ" type="tts">kvinne: grรฅtt hรฅr</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆณ">grรฅtt hรฅr | hudtype 1โ2 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆณ" type="tts">kvinne: hudtype 1โ2, grรฅtt hรฅr</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆณ">grรฅtt hรฅr | hudtype 3 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆณ" type="tts">kvinne: hudtype 3, grรฅtt hรฅr</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆณ">grรฅtt hรฅr | hudtype 4 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆณ" type="tts">kvinne: hudtype 4, grรฅtt hรฅr</annotation>
<annotation cp="๐ฉ๐พโ๐ฆณ">grรฅtt hรฅr | hudtype 5 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐พโ๐ฆณ" type="tts">kvinne: hudtype 5, grรฅtt hรฅr</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆณ">grรฅtt hรฅr | hudtype 6 | kvinne | menneske | voksen</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆณ" type="tts">kvinne: hudtype 6, grรฅtt hรฅr</annotation>
<annotation cp="๐ฉโ๐ฆฒ">kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉโ๐ฆฒ" type="tts">kvinne: skallet</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฒ">hudtype 1โ2 | kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฒ" type="tts">kvinne: hudtype 1โ2, skallet</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฒ">hudtype 3 | kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฒ" type="tts">kvinne: hudtype 3, skallet</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฒ">hudtype 4 | kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฒ" type="tts">kvinne: hudtype 4, skallet</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฒ">hudtype 5 | kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฒ" type="tts">kvinne: hudtype 5, skallet</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฒ">hudtype 6 | kvinne | menneske | skallet | voksen</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฒ" type="tts">kvinne: hudtype 6, skallet</annotation>
<annotation cp="๐ง๐ป">eldre voksen | gammel | hudtype 1โ2 | kjรธnnsnรธytral | menneske | voksen</annotation>
<annotation cp="๐ง๐ป" type="tts">eldre voksen: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">eldre voksen | gammel | hudtype 3 | kjรธnnsnรธytral | menneske | voksen</annotation>
<annotation cp="๐ง๐ผ" type="tts">eldre voksen: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">eldre voksen | gammel | hudtype 4 | kjรธnnsnรธytral | menneske | voksen</annotation>
<annotation cp="๐ง๐ฝ" type="tts">eldre voksen: hudtype 4</annotation>
<annotation cp="๐ง๐พ">eldre voksen | gammel | hudtype 5 | kjรธnnsnรธytral | menneske | voksen</annotation>
<annotation cp="๐ง๐พ" type="tts">eldre voksen: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">eldre voksen | gammel | hudtype 6 | kjรธnnsnรธytral | menneske | voksen</annotation>
<annotation cp="๐ง๐ฟ" type="tts">eldre voksen: hudtype 6</annotation>
<annotation cp="๐ด๐ป">eldre | hudtype 1โ2 | mann | menneske</annotation>
<annotation cp="๐ด๐ป" type="tts">eldre mann: hudtype 1โ2</annotation>
<annotation cp="๐ด๐ผ">eldre | hudtype 3 | mann | menneske</annotation>
<annotation cp="๐ด๐ผ" type="tts">eldre mann: hudtype 3</annotation>
<annotation cp="๐ด๐ฝ">eldre | hudtype 4 | mann | menneske</annotation>
<annotation cp="๐ด๐ฝ" type="tts">eldre mann: hudtype 4</annotation>
<annotation cp="๐ด๐พ">eldre | hudtype 5 | mann | menneske</annotation>
<annotation cp="๐ด๐พ" type="tts">eldre mann: hudtype 5</annotation>
<annotation cp="๐ด๐ฟ">eldre | hudtype 6 | mann | menneske</annotation>
<annotation cp="๐ด๐ฟ" type="tts">eldre mann: hudtype 6</annotation>
<annotation cp="๐ต๐ป">eldre | hudtype 1โ2 | kvinne | menneske</annotation>
<annotation cp="๐ต๐ป" type="tts">eldre kvinne: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผ">eldre | hudtype 3 | kvinne | menneske</annotation>
<annotation cp="๐ต๐ผ" type="tts">eldre kvinne: hudtype 3</annotation>
<annotation cp="๐ต๐ฝ">eldre | hudtype 4 | kvinne | menneske</annotation>
<annotation cp="๐ต๐ฝ" type="tts">eldre kvinne: hudtype 4</annotation>
<annotation cp="๐ต๐พ">eldre | hudtype 5 | kvinne | menneske</annotation>
<annotation cp="๐ต๐พ" type="tts">eldre kvinne: hudtype 5</annotation>
<annotation cp="๐ต๐ฟ">eldre | hudtype 6 | kvinne | menneske</annotation>
<annotation cp="๐ต๐ฟ" type="tts">eldre kvinne: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | mimikk | rynker brynene | rynker pannen</annotation>
<annotation cp="๐๐ป" type="tts">rynker brynene: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | mimikk | rynker brynene | rynker pannen</annotation>
<annotation cp="๐๐ผ" type="tts">rynker brynene: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | mimikk | rynker brynene | rynker pannen</annotation>
<annotation cp="๐๐ฝ" type="tts">rynker brynene: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | mimikk | rynker brynene | rynker pannen</annotation>
<annotation cp="๐๐พ" type="tts">rynker brynene: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | mimikk | rynker brynene | rynker pannen</annotation>
<annotation cp="๐๐ฟ" type="tts">rynker brynene: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | mann | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som rynker brynene: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | mann | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som rynker brynene: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | mann | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som rynker brynene: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | mann | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som rynker brynene: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | mann | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som rynker brynene: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | kvinne | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som rynker brynene: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | kvinne | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som rynker brynene: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | kvinne | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som rynker brynene: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | kvinne | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som rynker brynene: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | kvinne | mimikk | rynker pannen | skeptisk</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som rynker brynene: hudtype 6</annotation>
<annotation cp="๐๐ป">furter | furting | hudtype 1โ2 | mimikk | surmuling</annotation>
<annotation cp="๐๐ป" type="tts">furter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">furter | furting | hudtype 3 | mimikk | surmuling</annotation>
<annotation cp="๐๐ผ" type="tts">furter: hudtype 3</annotation>
<annotation cp="๐๐ฝ">furter | furting | hudtype 4 | mimikk | surmuling</annotation>
<annotation cp="๐๐ฝ" type="tts">furter: hudtype 4</annotation>
<annotation cp="๐๐พ">furter | furting | hudtype 5 | mimikk | surmuling</annotation>
<annotation cp="๐๐พ" type="tts">furter: hudtype 5</annotation>
<annotation cp="๐๐ฟ">furter | furting | hudtype 6 | mimikk | surmuling</annotation>
<annotation cp="๐๐ฟ" type="tts">furter: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">furting | hudtype 1โ2 | mann | mann som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som furter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">furting | hudtype 3 | mann | mann som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som furter: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">furting | hudtype 4 | mann | mann som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som furter: hudtype 4</annotation>
<annotation cp="๐๐พโโ">furting | hudtype 5 | mann | mann som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som furter: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">furting | hudtype 6 | mann | mann som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som furter: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">furting | hudtype 1โ2 | kvinne | kvinne som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som furter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">furting | hudtype 3 | kvinne | kvinne som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som furter: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">furting | hudtype 4 | kvinne | kvinne som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som furter: hudtype 4</annotation>
<annotation cp="๐๐พโโ">furting | hudtype 5 | kvinne | kvinne som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som furter: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">furting | hudtype 6 | kvinne | kvinne som furter | mimikk | surmuling</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som furter: hudtype 6</annotation>
<annotation cp="๐
๐ป">forbudt | gestikulerer NEI | hudtype 1โ2 | ikke | mimikk | nei</annotation>
<annotation cp="๐
๐ป" type="tts">gestikulerer NEI: hudtype 1โ2</annotation>
<annotation cp="๐
๐ผ">forbudt | gestikulerer NEI | hudtype 3 | ikke | mimikk | nei</annotation>
<annotation cp="๐
๐ผ" type="tts">gestikulerer NEI: hudtype 3</annotation>
<annotation cp="๐
๐ฝ">forbudt | gestikulerer NEI | hudtype 4 | ikke | mimikk | nei</annotation>
<annotation cp="๐
๐ฝ" type="tts">gestikulerer NEI: hudtype 4</annotation>
<annotation cp="๐
๐พ">forbudt | gestikulerer NEI | hudtype 5 | ikke | mimikk | nei</annotation>
<annotation cp="๐
๐พ" type="tts">gestikulerer NEI: hudtype 5</annotation>
<annotation cp="๐
๐ฟ">forbudt | gestikulerer NEI | hudtype 6 | ikke | mimikk | nei</annotation>
<annotation cp="๐
๐ฟ" type="tts">gestikulerer NEI: hudtype 6</annotation>
<annotation cp="๐
๐ปโโ">avbryt | forbudt | hudtype 1โ2 | mann | mann som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ปโโ" type="tts">mann som gestikulerer NEI: hudtype 1โ2</annotation>
<annotation cp="๐
๐ผโโ">avbryt | forbudt | hudtype 3 | mann | mann som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ผโโ" type="tts">mann som gestikulerer NEI: hudtype 3</annotation>
<annotation cp="๐
๐ฝโโ">avbryt | forbudt | hudtype 4 | mann | mann som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ฝโโ" type="tts">mann som gestikulerer NEI: hudtype 4</annotation>
<annotation cp="๐
๐พโโ">avbryt | forbudt | hudtype 5 | mann | mann som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐พโโ" type="tts">mann som gestikulerer NEI: hudtype 5</annotation>
<annotation cp="๐
๐ฟโโ">avbryt | forbudt | hudtype 6 | mann | mann som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ฟโโ" type="tts">mann som gestikulerer NEI: hudtype 6</annotation>
<annotation cp="๐
๐ปโโ">avbryt | forbudt | hudtype 1โ2 | kvinne | kvinne som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ปโโ" type="tts">kvinne som gestikulerer NEI: hudtype 1โ2</annotation>
<annotation cp="๐
๐ผโโ">avbryt | forbudt | hudtype 3 | kvinne | kvinne som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ผโโ" type="tts">kvinne som gestikulerer NEI: hudtype 3</annotation>
<annotation cp="๐
๐ฝโโ">avbryt | forbudt | hudtype 4 | kvinne | kvinne som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ฝโโ" type="tts">kvinne som gestikulerer NEI: hudtype 4</annotation>
<annotation cp="๐
๐พโโ">avbryt | forbudt | hudtype 5 | kvinne | kvinne som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐พโโ" type="tts">kvinne som gestikulerer NEI: hudtype 5</annotation>
<annotation cp="๐
๐ฟโโ">avbryt | forbudt | hudtype 6 | kvinne | kvinne som gestikulerer NEI | nei | stopp</annotation>
<annotation cp="๐
๐ฟโโ" type="tts">kvinne som gestikulerer NEI: hudtype 6</annotation>
<annotation cp="๐๐ป">gestikulerer OK | greit | hudtype 1โ2 | ok</annotation>
<annotation cp="๐๐ป" type="tts">gestikulerer OK: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">gestikulerer OK | greit | hudtype 3 | ok</annotation>
<annotation cp="๐๐ผ" type="tts">gestikulerer OK: hudtype 3</annotation>
<annotation cp="๐๐ฝ">gestikulerer OK | greit | hudtype 4 | ok</annotation>
<annotation cp="๐๐ฝ" type="tts">gestikulerer OK: hudtype 4</annotation>
<annotation cp="๐๐พ">gestikulerer OK | greit | hudtype 5 | ok</annotation>
<annotation cp="๐๐พ" type="tts">gestikulerer OK: hudtype 5</annotation>
<annotation cp="๐๐ฟ">gestikulerer OK | greit | hudtype 6 | ok</annotation>
<annotation cp="๐๐ฟ" type="tts">gestikulerer OK: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">greit | hudtype 1โ2 | mann | mann som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som gestikulerer OK: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">greit | hudtype 3 | mann | mann som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som gestikulerer OK: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">greit | hudtype 4 | mann | mann som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som gestikulerer OK: hudtype 4</annotation>
<annotation cp="๐๐พโโ">greit | hudtype 5 | mann | mann som gestikulerer OK | ok</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som gestikulerer OK: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">greit | hudtype 6 | mann | mann som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som gestikulerer OK: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">greit | hudtype 1โ2 | kvinne | kvinne som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som gestikulerer OK: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">greit | hudtype 3 | kvinne | kvinne som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som gestikulerer OK: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">greit | hudtype 4 | kvinne | kvinne som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som gestikulerer OK: hudtype 4</annotation>
<annotation cp="๐๐พโโ">greit | hudtype 5 | kvinne | kvinne som gestikulerer OK | ok</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som gestikulerer OK: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">greit | hudtype 6 | kvinne | kvinne som gestikulerer OK | ok</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som gestikulerer OK: hudtype 6</annotation>
<annotation cp="๐๐ป">hjelp | hjelpende person | hudtype 1โ2 | informasjon | menneske</annotation>
<annotation cp="๐๐ป" type="tts">hjelpende person: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hjelp | hjelpende person | hudtype 3 | informasjon | menneske</annotation>
<annotation cp="๐๐ผ" type="tts">hjelpende person: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hjelp | hjelpende person | hudtype 4 | informasjon | menneske</annotation>
<annotation cp="๐๐ฝ" type="tts">hjelpende person: hudtype 4</annotation>
<annotation cp="๐๐พ">hjelp | hjelpende person | hudtype 5 | informasjon | menneske</annotation>
<annotation cp="๐๐พ" type="tts">hjelpende person: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hjelp | hjelpende person | hudtype 6 | informasjon | menneske</annotation>
<annotation cp="๐๐ฟ" type="tts">hjelpende person: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hjelpe | hjelpende mann | hudtype 1โ2 | informasjon | mann</annotation>
<annotation cp="๐๐ปโโ" type="tts">hjelpende mann: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hjelpe | hjelpende mann | hudtype 3 | informasjon | mann</annotation>
<annotation cp="๐๐ผโโ" type="tts">hjelpende mann: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hjelpe | hjelpende mann | hudtype 4 | informasjon | mann</annotation>
<annotation cp="๐๐ฝโโ" type="tts">hjelpende mann: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hjelpe | hjelpende mann | hudtype 5 | informasjon | mann</annotation>
<annotation cp="๐๐พโโ" type="tts">hjelpende mann: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hjelpe | hjelpende mann | hudtype 6 | informasjon | mann</annotation>
<annotation cp="๐๐ฟโโ" type="tts">hjelpende mann: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hjelpe | hjelpende kvinne | hudtype 1โ2 | informasjon | kvinne</annotation>
<annotation cp="๐๐ปโโ" type="tts">hjelpende kvinne: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hjelpe | hjelpende kvinne | hudtype 3 | informasjon | kvinne</annotation>
<annotation cp="๐๐ผโโ" type="tts">hjelpende kvinne: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hjelpe | hjelpende kvinne | hudtype 4 | informasjon | kvinne</annotation>
<annotation cp="๐๐ฝโโ" type="tts">hjelpende kvinne: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hjelpe | hjelpende kvinne | hudtype 5 | informasjon | kvinne</annotation>
<annotation cp="๐๐พโโ" type="tts">hjelpende kvinne: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hjelpe | hjelpende kvinne | hudtype 6 | informasjon | kvinne</annotation>
<annotation cp="๐๐ฟโโ" type="tts">hjelpende kvinne: hudtype 6</annotation>
<annotation cp="๐๐ป">hรฅnd | hudtype 1โ2 | person | rekker opp | rekker opp hรฅnden</annotation>
<annotation cp="๐๐ป" type="tts">rekker opp hรฅnden: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hรฅnd | hudtype 3 | person | rekker opp | rekker opp hรฅnden</annotation>
<annotation cp="๐๐ผ" type="tts">rekker opp hรฅnden: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hรฅnd | hudtype 4 | person | rekker opp | rekker opp hรฅnden</annotation>
<annotation cp="๐๐ฝ" type="tts">rekker opp hรฅnden: hudtype 4</annotation>
<annotation cp="๐๐พ">hรฅnd | hudtype 5 | person | rekker opp | rekker opp hรฅnden</annotation>
<annotation cp="๐๐พ" type="tts">rekker opp hรฅnden: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hรฅnd | hudtype 6 | person | rekker opp | rekker opp hรฅnden</annotation>
<annotation cp="๐๐ฟ" type="tts">rekker opp hรฅnden: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | mann | mann som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som rekker opp hรฅnden: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | mann | mann som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som rekker opp hรฅnden: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | mann | mann som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som rekker opp hรฅnden: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | mann | mann som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som rekker opp hรฅnden: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | mann | mann som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som rekker opp hรฅnden: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | kvinne | kvinne som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som rekker opp hรฅnden: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | kvinne | kvinne som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som rekker opp hรฅnden: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | kvinne | kvinne som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som rekker opp hรฅnden: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | kvinne | kvinne som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som rekker opp hรฅnden: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | kvinne | kvinne som rekker opp hรฅnden | rekke opp hรฅnden</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som rekker opp hรฅnden: hudtype 6</annotation>
<annotation cp="๐ง๐ป">dรธv | dรธv person | hรธre | hudtype 1โ2 | รธre | tilgjengelighet</annotation>
<annotation cp="๐ง๐ป" type="tts">dรธv person: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">dรธv | dรธv person | hรธre | hudtype 3 | รธre | tilgjengelighet</annotation>
<annotation cp="๐ง๐ผ" type="tts">dรธv person: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">dรธv | dรธv person | hรธre | hudtype 4 | รธre | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฝ" type="tts">dรธv person: hudtype 4</annotation>
<annotation cp="๐ง๐พ">dรธv | dรธv person | hรธre | hudtype 5 | รธre | tilgjengelighet</annotation>
<annotation cp="๐ง๐พ" type="tts">dรธv person: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">dรธv | dรธv person | hรธre | hudtype 6 | รธre | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฟ" type="tts">dรธv person: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">dรธv | hudtype 1โ2 | mann</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">dรธv mann: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">dรธv | hudtype 3 | mann</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">dรธv mann: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">dรธv | hudtype 4 | mann</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">dรธv mann: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">dรธv | hudtype 5 | mann</annotation>
<annotation cp="๐ง๐พโโ" type="tts">dรธv mann: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">dรธv | hudtype 6 | mann</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">dรธv mann: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">dรธv | hudtype 1โ2 | kvinne</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">dรธv kvinne: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">dรธv | hudtype 3 | kvinne</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">dรธv kvinne: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">dรธv | hudtype 4 | kvinne</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">dรธv kvinne: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">dรธv | hudtype 5 | kvinne</annotation>
<annotation cp="๐ง๐พโโ" type="tts">dรธv kvinne: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">dรธv | hudtype 6 | kvinne</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">dรธv kvinne: hudtype 6</annotation>
<annotation cp="๐๐ป">beklagelse | beklager | bukk | bukker | hudtype 1โ2 | unnskyld</annotation>
<annotation cp="๐๐ป" type="tts">bukker: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">beklagelse | beklager | bukk | bukker | hudtype 3 | unnskyld</annotation>
<annotation cp="๐๐ผ" type="tts">bukker: hudtype 3</annotation>
<annotation cp="๐๐ฝ">beklagelse | beklager | bukk | bukker | hudtype 4 | unnskyld</annotation>
<annotation cp="๐๐ฝ" type="tts">bukker: hudtype 4</annotation>
<annotation cp="๐๐พ">beklagelse | beklager | bukk | bukker | hudtype 5 | unnskyld</annotation>
<annotation cp="๐๐พ" type="tts">bukker: hudtype 5</annotation>
<annotation cp="๐๐ฟ">beklagelse | beklager | bukk | bukker | hudtype 6 | unnskyld</annotation>
<annotation cp="๐๐ฟ" type="tts">bukker: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">beklagelse | bukk | hudtype 1โ2 | mann | unnskyld</annotation>
<annotation cp="๐๐ปโโ" type="tts">bukkende mann: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">beklagelse | bukk | hudtype 3 | mann | unnskyld</annotation>
<annotation cp="๐๐ผโโ" type="tts">bukkende mann: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">beklagelse | bukk | hudtype 4 | mann | unnskyld</annotation>
<annotation cp="๐๐ฝโโ" type="tts">bukkende mann: hudtype 4</annotation>
<annotation cp="๐๐พโโ">beklagelse | bukk | hudtype 5 | mann | unnskyld</annotation>
<annotation cp="๐๐พโโ" type="tts">bukkende mann: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">beklagelse | bukk | hudtype 6 | mann | unnskyld</annotation>
<annotation cp="๐๐ฟโโ" type="tts">bukkende mann: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">beklagelse | bukk | hudtype 1โ2 | kvinne | unnskyld</annotation>
<annotation cp="๐๐ปโโ" type="tts">bukkende kvinne: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">beklagelse | bukk | hudtype 3 | kvinne | unnskyld</annotation>
<annotation cp="๐๐ผโโ" type="tts">bukkende kvinne: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">beklagelse | bukk | hudtype 4 | kvinne | unnskyld</annotation>
<annotation cp="๐๐ฝโโ" type="tts">bukkende kvinne: hudtype 4</annotation>
<annotation cp="๐๐พโโ">beklagelse | bukk | hudtype 5 | kvinne | unnskyld</annotation>
<annotation cp="๐๐พโโ" type="tts">bukkende kvinne: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">beklagelse | bukk | hudtype 6 | kvinne | unnskyld</annotation>
<annotation cp="๐๐ฟโโ" type="tts">bukkende kvinne: hudtype 6</annotation>
<annotation cp="๐คฆ๐ป">ansikt | facepalm | fjes | hudtype 1โ2 | irritasjon | oppgitt | slรฅr hรฅnden mot pannen | vantro</annotation>
<annotation cp="๐คฆ๐ป" type="tts">slรฅr hรฅnden mot pannen: hudtype 1โ2</annotation>
<annotation cp="๐คฆ๐ผ">ansikt | facepalm | fjes | hudtype 3 | irritasjon | oppgitt | slรฅr hรฅnden mot pannen | vantro</annotation>
<annotation cp="๐คฆ๐ผ" type="tts">slรฅr hรฅnden mot pannen: hudtype 3</annotation>
<annotation cp="๐คฆ๐ฝ">ansikt | facepalm | fjes | hudtype 4 | irritasjon | oppgitt | slรฅr hรฅnden mot pannen | vantro</annotation>
<annotation cp="๐คฆ๐ฝ" type="tts">slรฅr hรฅnden mot pannen: hudtype 4</annotation>
<annotation cp="๐คฆ๐พ">ansikt | facepalm | fjes | hudtype 5 | irritasjon | oppgitt | slรฅr hรฅnden mot pannen | vantro</annotation>
<annotation cp="๐คฆ๐พ" type="tts">slรฅr hรฅnden mot pannen: hudtype 5</annotation>
<annotation cp="๐คฆ๐ฟ">ansikt | facepalm | fjes | hudtype 6 | irritasjon | oppgitt | slรฅr hรฅnden mot pannen | vantro</annotation>
<annotation cp="๐คฆ๐ฟ" type="tts">slรฅr hรฅnden mot pannen: hudtype 6</annotation>
<annotation cp="๐คฆ๐ปโโ">ansikt | facepalm | fjes | hudtype 1โ2 | irritasjon | mann | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ปโโ" type="tts">mann som slรฅr hรฅnden mot pannen: hudtype 1โ2</annotation>
<annotation cp="๐คฆ๐ผโโ">ansikt | facepalm | fjes | hudtype 3 | irritasjon | mann | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ผโโ" type="tts">mann som slรฅr hรฅnden mot pannen: hudtype 3</annotation>
<annotation cp="๐คฆ๐ฝโโ">ansikt | facepalm | fjes | hudtype 4 | irritasjon | mann | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ฝโโ" type="tts">mann som slรฅr hรฅnden mot pannen: hudtype 4</annotation>
<annotation cp="๐คฆ๐พโโ">ansikt | facepalm | fjes | hudtype 5 | irritasjon | mann | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐พโโ" type="tts">mann som slรฅr hรฅnden mot pannen: hudtype 5</annotation>
<annotation cp="๐คฆ๐ฟโโ">ansikt | facepalm | fjes | hudtype 6 | irritasjon | mann | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ฟโโ" type="tts">mann som slรฅr hรฅnden mot pannen: hudtype 6</annotation>
<annotation cp="๐คฆ๐ปโโ">ansikt | facepalm | fjes | hudtype 1โ2 | irritasjon | kvinne | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ปโโ" type="tts">kvinne som slรฅr hรฅnden mot pannen: hudtype 1โ2</annotation>
<annotation cp="๐คฆ๐ผโโ">ansikt | facepalm | fjes | hudtype 3 | irritasjon | kvinne | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ผโโ" type="tts">kvinne som slรฅr hรฅnden mot pannen: hudtype 3</annotation>
<annotation cp="๐คฆ๐ฝโโ">ansikt | facepalm | fjes | hudtype 4 | irritasjon | kvinne | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ฝโโ" type="tts">kvinne som slรฅr hรฅnden mot pannen: hudtype 4</annotation>
<annotation cp="๐คฆ๐พโโ">ansikt | facepalm | fjes | hudtype 5 | irritasjon | kvinne | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐พโโ" type="tts">kvinne som slรฅr hรฅnden mot pannen: hudtype 5</annotation>
<annotation cp="๐คฆ๐ฟโโ">ansikt | facepalm | fjes | hudtype 6 | irritasjon | kvinne | oppgitt | vantro</annotation>
<annotation cp="๐คฆ๐ฟโโ" type="tts">kvinne som slรฅr hรฅnden mot pannen: hudtype 6</annotation>
<annotation cp="๐คท๐ป">hudtype 1โ2 | likegyldighet | skuldertrekning | trekker pรฅ skuldrene | tvil</annotation>
<annotation cp="๐คท๐ป" type="tts">trekker pรฅ skuldrene: hudtype 1โ2</annotation>
<annotation cp="๐คท๐ผ">hudtype 3 | likegyldighet | skuldertrekning | trekker pรฅ skuldrene | tvil</annotation>
<annotation cp="๐คท๐ผ" type="tts">trekker pรฅ skuldrene: hudtype 3</annotation>
<annotation cp="๐คท๐ฝ">hudtype 4 | likegyldighet | skuldertrekning | trekker pรฅ skuldrene | tvil</annotation>
<annotation cp="๐คท๐ฝ" type="tts">trekker pรฅ skuldrene: hudtype 4</annotation>
<annotation cp="๐คท๐พ">hudtype 5 | likegyldighet | skuldertrekning | trekker pรฅ skuldrene | tvil</annotation>
<annotation cp="๐คท๐พ" type="tts">trekker pรฅ skuldrene: hudtype 5</annotation>
<annotation cp="๐คท๐ฟ">hudtype 6 | likegyldighet | skuldertrekning | trekker pรฅ skuldrene | tvil</annotation>
<annotation cp="๐คท๐ฟ" type="tts">trekker pรฅ skuldrene: hudtype 6</annotation>
<annotation cp="๐คท๐ปโโ">hudtype 1โ2 | likegyldighet | mann | mann som trekker pรฅ skuldrene | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ปโโ" type="tts">mann som trekker pรฅ skuldrene: hudtype 1โ2</annotation>
<annotation cp="๐คท๐ผโโ">hudtype 3 | likegyldighet | mann | mann som trekker pรฅ skuldrene | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ผโโ" type="tts">mann som trekker pรฅ skuldrene: hudtype 3</annotation>
<annotation cp="๐คท๐ฝโโ">hudtype 4 | likegyldighet | mann | mann som trekker pรฅ skuldrene | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ฝโโ" type="tts">mann som trekker pรฅ skuldrene: hudtype 4</annotation>
<annotation cp="๐คท๐พโโ">hudtype 5 | likegyldighet | mann | mann som trekker pรฅ skuldrene | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐พโโ" type="tts">mann som trekker pรฅ skuldrene: hudtype 5</annotation>
<annotation cp="๐คท๐ฟโโ">hudtype 6 | likegyldighet | mann | mann som trekker pรฅ skuldrene | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ฟโโ" type="tts">mann som trekker pรฅ skuldrene: hudtype 6</annotation>
<annotation cp="๐คท๐ปโโ">hudtype 1โ2 | kvinne | kvinne som trekker pรฅ skuldrene | likegyldighet | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ปโโ" type="tts">kvinne som trekker pรฅ skuldrene: hudtype 1โ2</annotation>
<annotation cp="๐คท๐ผโโ">hudtype 3 | kvinne | kvinne som trekker pรฅ skuldrene | likegyldighet | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ผโโ" type="tts">kvinne som trekker pรฅ skuldrene: hudtype 3</annotation>
<annotation cp="๐คท๐ฝโโ">hudtype 4 | kvinne | kvinne som trekker pรฅ skuldrene | likegyldighet | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ฝโโ" type="tts">kvinne som trekker pรฅ skuldrene: hudtype 4</annotation>
<annotation cp="๐คท๐พโโ">hudtype 5 | kvinne | kvinne som trekker pรฅ skuldrene | likegyldighet | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐พโโ" type="tts">kvinne som trekker pรฅ skuldrene: hudtype 5</annotation>
<annotation cp="๐คท๐ฟโโ">hudtype 6 | kvinne | kvinne som trekker pรฅ skuldrene | likegyldighet | skuldertrekning | tvil</annotation>
<annotation cp="๐คท๐ฟโโ" type="tts">kvinne som trekker pรฅ skuldrene: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">doktor | helsevesen | hudtype 1โ2 | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">helsearbeider: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">doktor | helsevesen | hudtype 3 | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">helsearbeider: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">doktor | helsevesen | hudtype 4 | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">helsearbeider: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">doktor | helsevesen | hudtype 5 | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ง๐พโโ" type="tts">helsearbeider: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">doktor | helsevesen | hudtype 6 | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">helsearbeider: hudtype 6</annotation>
<annotation cp="๐จ๐ปโโ">doktor | helsevesen | hudtype 1โ2 | lege | mann | mannlig helsearbeider | sykepleier | terapeut</annotation>
<annotation cp="๐จ๐ปโโ" type="tts">mannlig helsearbeider: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโโ">doktor | helsevesen | hudtype 3 | lege | mann | mannlig helsearbeider | sykepleier | terapeut</annotation>
<annotation cp="๐จ๐ผโโ" type="tts">mannlig helsearbeider: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโโ">doktor | helsevesen | hudtype 4 | lege | mann | mannlig helsearbeider | sykepleier | terapeut</annotation>
<annotation cp="๐จ๐ฝโโ" type="tts">mannlig helsearbeider: hudtype 4</annotation>
<annotation cp="๐จ๐พโโ">doktor | helsevesen | hudtype 5 | lege | mann | mannlig helsearbeider | sykepleier | terapeut</annotation>
<annotation cp="๐จ๐พโโ" type="tts">mannlig helsearbeider: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโโ">doktor | helsevesen | hudtype 6 | lege | mann | mannlig helsearbeider | sykepleier | terapeut</annotation>
<annotation cp="๐จ๐ฟโโ" type="tts">mannlig helsearbeider: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโโ">doktor | helsevesen | hudtype 1โ2 | kvinne | kvinnelig helsearbeider | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ฉ๐ปโโ" type="tts">kvinnelig helsearbeider: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโโ">doktor | helsevesen | hudtype 3 | kvinne | kvinnelig helsearbeider | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ฉ๐ผโโ" type="tts">kvinnelig helsearbeider: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโโ">doktor | helsevesen | hudtype 4 | kvinne | kvinnelig helsearbeider | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ฉ๐ฝโโ" type="tts">kvinnelig helsearbeider: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโโ">doktor | helsevesen | hudtype 5 | kvinne | kvinnelig helsearbeider | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ฉ๐พโโ" type="tts">kvinnelig helsearbeider: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโโ">doktor | helsevesen | hudtype 6 | kvinne | kvinnelig helsearbeider | lege | sykepleier | terapeut</annotation>
<annotation cp="๐ฉ๐ฟโโ" type="tts">kvinnelig helsearbeider: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐">hudtype 1โ2 | skole | student | universitet</annotation>
<annotation cp="๐ง๐ปโ๐" type="tts">student: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐">hudtype 3 | skole | student | universitet</annotation>
<annotation cp="๐ง๐ผโ๐" type="tts">student: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐">hudtype 4 | skole | student | universitet</annotation>
<annotation cp="๐ง๐ฝโ๐" type="tts">student: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐">hudtype 5 | skole | student | universitet</annotation>
<annotation cp="๐ง๐พโ๐" type="tts">student: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐">hudtype 6 | skole | student | universitet</annotation>
<annotation cp="๐ง๐ฟโ๐" type="tts">student: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐">hudtype 1โ2 | mann | skole | student | universitet</annotation>
<annotation cp="๐จ๐ปโ๐" type="tts">mannlig student: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐">hudtype 3 | mann | skole | student | universitet</annotation>
<annotation cp="๐จ๐ผโ๐" type="tts">mannlig student: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐">hudtype 4 | mann | skole | student | universitet</annotation>
<annotation cp="๐จ๐ฝโ๐" type="tts">mannlig student: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐">hudtype 5 | mann | skole | student | universitet</annotation>
<annotation cp="๐จ๐พโ๐" type="tts">mannlig student: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐">hudtype 6 | mann | skole | student | universitet</annotation>
<annotation cp="๐จ๐ฟโ๐" type="tts">mannlig student: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐">hudtype 1โ2 | kvinne | skole | student | universitet</annotation>
<annotation cp="๐ฉ๐ปโ๐" type="tts">kvinnelig student: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐">hudtype 3 | kvinne | skole | student | universitet</annotation>
<annotation cp="๐ฉ๐ผโ๐" type="tts">kvinnelig student: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐">hudtype 4 | kvinne | skole | student | universitet</annotation>
<annotation cp="๐ฉ๐ฝโ๐" type="tts">kvinnelig student: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐">hudtype 5 | kvinne | skole | student | universitet</annotation>
<annotation cp="๐ฉ๐พโ๐" type="tts">kvinnelig student: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐">hudtype 6 | kvinne | skole | student | universitet</annotation>
<annotation cp="๐ฉ๐ฟโ๐" type="tts">kvinnelig student: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ซ">hudtype 1โ2 | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ง๐ปโ๐ซ" type="tts">lรฆrer: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ซ">hudtype 3 | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ง๐ผโ๐ซ" type="tts">lรฆrer: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ซ">hudtype 4 | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ง๐ฝโ๐ซ" type="tts">lรฆrer: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ซ">hudtype 5 | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ง๐พโ๐ซ" type="tts">lรฆrer: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ซ">hudtype 6 | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ง๐ฟโ๐ซ" type="tts">lรฆrer: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ซ">hudtype 1โ2 | lรฆrer | mann | skole | undervisning</annotation>
<annotation cp="๐จ๐ปโ๐ซ" type="tts">mannlig lรฆrer: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ซ">hudtype 3 | lรฆrer | mann | skole | undervisning</annotation>
<annotation cp="๐จ๐ผโ๐ซ" type="tts">mannlig lรฆrer: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ซ">hudtype 4 | lรฆrer | mann | skole | undervisning</annotation>
<annotation cp="๐จ๐ฝโ๐ซ" type="tts">mannlig lรฆrer: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ซ">hudtype 5 | lรฆrer | mann | skole | undervisning</annotation>
<annotation cp="๐จ๐พโ๐ซ" type="tts">mannlig lรฆrer: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ซ">hudtype 6 | lรฆrer | mann | skole | undervisning</annotation>
<annotation cp="๐จ๐ฟโ๐ซ" type="tts">mannlig lรฆrer: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ซ">hudtype 1โ2 | kvinne | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ฉ๐ปโ๐ซ" type="tts">kvinnelig lรฆrer: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ซ">hudtype 3 | kvinne | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ฉ๐ผโ๐ซ" type="tts">kvinnelig lรฆrer: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ซ">hudtype 4 | kvinne | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ฉ๐ฝโ๐ซ" type="tts">kvinnelig lรฆrer: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ซ">hudtype 5 | kvinne | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ฉ๐พโ๐ซ" type="tts">kvinnelig lรฆrer: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ซ">hudtype 6 | kvinne | lรฆrer | skole | undervisning</annotation>
<annotation cp="๐ฉ๐ฟโ๐ซ" type="tts">kvinnelig lรฆrer: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">dommer | hudtype 1โ2 | jus | juss</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">dommer: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">dommer | hudtype 3 | jus | juss</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">dommer: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">dommer | hudtype 4 | jus | juss</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">dommer: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">dommer | hudtype 5 | jus | juss</annotation>
<annotation cp="๐ง๐พโโ" type="tts">dommer: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">dommer | hudtype 6 | jus | juss</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">dommer: hudtype 6</annotation>
<annotation cp="๐จ๐ปโโ">dommer | hudtype 1โ2 | jus | juss | mann | mannlig dommer | rettssak</annotation>
<annotation cp="๐จ๐ปโโ" type="tts">mannlig dommer: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโโ">dommer | hudtype 3 | jus | juss | mann | mannlig dommer | rettssak</annotation>
<annotation cp="๐จ๐ผโโ" type="tts">mannlig dommer: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโโ">dommer | hudtype 4 | jus | juss | mann | mannlig dommer | rettssak</annotation>
<annotation cp="๐จ๐ฝโโ" type="tts">mannlig dommer: hudtype 4</annotation>
<annotation cp="๐จ๐พโโ">dommer | hudtype 5 | jus | juss | mann | mannlig dommer | rettssak</annotation>
<annotation cp="๐จ๐พโโ" type="tts">mannlig dommer: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโโ">dommer | hudtype 6 | jus | juss | mann | mannlig dommer | rettssak</annotation>
<annotation cp="๐จ๐ฟโโ" type="tts">mannlig dommer: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโโ">dommer | hudtype 1โ2 | jus | juss | kvinne | kvinnelig dommer | rettssak</annotation>
<annotation cp="๐ฉ๐ปโโ" type="tts">kvinnelig dommer: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโโ">dommer | hudtype 3 | jus | juss | kvinne | kvinnelig dommer | rettssak</annotation>
<annotation cp="๐ฉ๐ผโโ" type="tts">kvinnelig dommer: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโโ">dommer | hudtype 4 | jus | juss | kvinne | kvinnelig dommer | rettssak</annotation>
<annotation cp="๐ฉ๐ฝโโ" type="tts">kvinnelig dommer: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโโ">dommer | hudtype 5 | jus | juss | kvinne | kvinnelig dommer | rettssak</annotation>
<annotation cp="๐ฉ๐พโโ" type="tts">kvinnelig dommer: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโโ">dommer | hudtype 6 | jus | juss | kvinne | kvinnelig dommer | rettssak</annotation>
<annotation cp="๐ฉ๐ฟโโ" type="tts">kvinnelig dommer: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐พ">bonde | gรฅrdbruker | hudtype 1โ2 | jordbruk</annotation>
<annotation cp="๐ง๐ปโ๐พ" type="tts">gรฅrdbruker: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐พ">bonde | gรฅrdbruker | hudtype 3 | jordbruk</annotation>
<annotation cp="๐ง๐ผโ๐พ" type="tts">gรฅrdbruker: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐พ">bonde | gรฅrdbruker | hudtype 4 | jordbruk</annotation>
<annotation cp="๐ง๐ฝโ๐พ" type="tts">gรฅrdbruker: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐พ">bonde | gรฅrdbruker | hudtype 5 | jordbruk</annotation>
<annotation cp="๐ง๐พโ๐พ" type="tts">gรฅrdbruker: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐พ">bonde | gรฅrdbruker | hudtype 6 | jordbruk</annotation>
<annotation cp="๐ง๐ฟโ๐พ" type="tts">gรฅrdbruker: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 1โ2 | jordbruk | mann</annotation>
<annotation cp="๐จ๐ปโ๐พ" type="tts">mannlig gรฅrdbruker: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 3 | jordbruk | mann</annotation>
<annotation cp="๐จ๐ผโ๐พ" type="tts">mannlig gรฅrdbruker: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 4 | jordbruk | mann</annotation>
<annotation cp="๐จ๐ฝโ๐พ" type="tts">mannlig gรฅrdbruker: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 5 | jordbruk | mann</annotation>
<annotation cp="๐จ๐พโ๐พ" type="tts">mannlig gรฅrdbruker: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 6 | jordbruk | mann</annotation>
<annotation cp="๐จ๐ฟโ๐พ" type="tts">mannlig gรฅrdbruker: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 1โ2 | jordbruk | kvinne</annotation>
<annotation cp="๐ฉ๐ปโ๐พ" type="tts">kvinnelig gรฅrdbruker: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 3 | jordbruk | kvinne</annotation>
<annotation cp="๐ฉ๐ผโ๐พ" type="tts">kvinnelig gรฅrdbruker: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 4 | jordbruk | kvinne</annotation>
<annotation cp="๐ฉ๐ฝโ๐พ" type="tts">kvinnelig gรฅrdbruker: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 5 | jordbruk | kvinne</annotation>
<annotation cp="๐ฉ๐พโ๐พ" type="tts">kvinnelig gรฅrdbruker: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐พ">bonde | dyrke | gรฅrdbruker | hudtype 6 | jordbruk | kvinne</annotation>
<annotation cp="๐ฉ๐ฟโ๐พ" type="tts">kvinnelig gรฅrdbruker: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ณ">hudtype 1โ2 | kokk | matlaging | restaurant</annotation>
<annotation cp="๐ง๐ปโ๐ณ" type="tts">kokk: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ณ">hudtype 3 | kokk | matlaging | restaurant</annotation>
<annotation cp="๐ง๐ผโ๐ณ" type="tts">kokk: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ณ">hudtype 4 | kokk | matlaging | restaurant</annotation>
<annotation cp="๐ง๐ฝโ๐ณ" type="tts">kokk: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ณ">hudtype 5 | kokk | matlaging | restaurant</annotation>
<annotation cp="๐ง๐พโ๐ณ" type="tts">kokk: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ณ">hudtype 6 | kokk | matlaging | restaurant</annotation>
<annotation cp="๐ง๐ฟโ๐ณ" type="tts">kokk: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ณ">hudtype 1โ2 | mann | matlaging | restaurant</annotation>
<annotation cp="๐จ๐ปโ๐ณ" type="tts">mannlig kokk: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ณ">hudtype 3 | mann | matlaging | restaurant</annotation>
<annotation cp="๐จ๐ผโ๐ณ" type="tts">mannlig kokk: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ณ">hudtype 4 | mann | matlaging | restaurant</annotation>
<annotation cp="๐จ๐ฝโ๐ณ" type="tts">mannlig kokk: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ณ">hudtype 5 | mann | matlaging | restaurant</annotation>
<annotation cp="๐จ๐พโ๐ณ" type="tts">mannlig kokk: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ณ">hudtype 6 | mann | matlaging | restaurant</annotation>
<annotation cp="๐จ๐ฟโ๐ณ" type="tts">mannlig kokk: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ณ">hudtype 1โ2 | kvinne | matlaging | restaurant</annotation>
<annotation cp="๐ฉ๐ปโ๐ณ" type="tts">kvinnelig kokk: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ณ">hudtype 3 | kvinne | matlaging | restaurant</annotation>
<annotation cp="๐ฉ๐ผโ๐ณ" type="tts">kvinnelig kokk: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ณ">hudtype 4 | kvinne | matlaging | restaurant</annotation>
<annotation cp="๐ฉ๐ฝโ๐ณ" type="tts">kvinnelig kokk: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ณ">hudtype 5 | kvinne | matlaging | restaurant</annotation>
<annotation cp="๐ฉ๐พโ๐ณ" type="tts">kvinnelig kokk: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ณ">hudtype 6 | kvinne | matlaging | restaurant</annotation>
<annotation cp="๐ฉ๐ฟโ๐ณ" type="tts">kvinnelig kokk: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ง">bil | elektriker | hรฅndverker | hudtype 1โ2 | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ง๐ปโ๐ง" type="tts">mekaniker: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ง">bil | elektriker | hรฅndverker | hudtype 3 | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ง๐ผโ๐ง" type="tts">mekaniker: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ง">bil | elektriker | hรฅndverker | hudtype 4 | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ง๐ฝโ๐ง" type="tts">mekaniker: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ง">bil | elektriker | hรฅndverker | hudtype 5 | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ง๐พโ๐ง" type="tts">mekaniker: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ง">bil | elektriker | hรฅndverker | hudtype 6 | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ง๐ฟโ๐ง" type="tts">mekaniker: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ง">bil | elektriker | hรฅndverker | hudtype 1โ2 | mann | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐จ๐ปโ๐ง" type="tts">mannlig mekaniker: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ง">bil | elektriker | hรฅndverker | hudtype 3 | mann | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐จ๐ผโ๐ง" type="tts">mannlig mekaniker: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ง">bil | elektriker | hรฅndverker | hudtype 4 | mann | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐จ๐ฝโ๐ง" type="tts">mannlig mekaniker: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ง">bil | elektriker | hรฅndverker | hudtype 5 | mann | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐จ๐พโ๐ง" type="tts">mannlig mekaniker: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ง">bil | elektriker | hรฅndverker | hudtype 6 | mann | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐จ๐ฟโ๐ง" type="tts">mannlig mekaniker: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ง">bil | elektriker | hรฅndverker | hudtype 1โ2 | kvinne | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ฉ๐ปโ๐ง" type="tts">kvinnelig mekaniker: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ง">bil | elektriker | hรฅndverker | hudtype 3 | kvinne | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ฉ๐ผโ๐ง" type="tts">kvinnelig mekaniker: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ง">bil | elektriker | hรฅndverker | hudtype 4 | kvinne | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ฉ๐ฝโ๐ง" type="tts">kvinnelig mekaniker: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ง">bil | elektriker | hรฅndverker | hudtype 5 | kvinne | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ฉ๐พโ๐ง" type="tts">kvinnelig mekaniker: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ง">bil | elektriker | hรฅndverker | hudtype 6 | kvinne | mekaniker | motor | rรธrlegger</annotation>
<annotation cp="๐ฉ๐ฟโ๐ง" type="tts">kvinnelig mekaniker: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ญ">arbeider | fabrikk | hudtype 1โ2 | industri | industriarbeider | produksjon</annotation>
<annotation cp="๐ง๐ปโ๐ญ" type="tts">industriarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ญ">arbeider | fabrikk | hudtype 3 | industri | industriarbeider | produksjon</annotation>
<annotation cp="๐ง๐ผโ๐ญ" type="tts">industriarbeider: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ญ">arbeider | fabrikk | hudtype 4 | industri | industriarbeider | produksjon</annotation>
<annotation cp="๐ง๐ฝโ๐ญ" type="tts">industriarbeider: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ญ">arbeider | fabrikk | hudtype 5 | industri | industriarbeider | produksjon</annotation>
<annotation cp="๐ง๐พโ๐ญ" type="tts">industriarbeider: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ญ">arbeider | fabrikk | hudtype 6 | industri | industriarbeider | produksjon</annotation>
<annotation cp="๐ง๐ฟโ๐ญ" type="tts">industriarbeider: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ญ">arbeider | fabrikk | hudtype 1โ2 | industri | industriarbeider | mann | produksjon</annotation>
<annotation cp="๐จ๐ปโ๐ญ" type="tts">mannlig industriarbeider: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ญ">arbeider | fabrikk | hudtype 3 | industri | industriarbeider | mann | produksjon</annotation>
<annotation cp="๐จ๐ผโ๐ญ" type="tts">mannlig industriarbeider: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ญ">arbeider | fabrikk | hudtype 4 | industri | industriarbeider | mann | produksjon</annotation>
<annotation cp="๐จ๐ฝโ๐ญ" type="tts">mannlig industriarbeider: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ญ">arbeider | fabrikk | hudtype 5 | industri | industriarbeider | mann | produksjon</annotation>
<annotation cp="๐จ๐พโ๐ญ" type="tts">mannlig industriarbeider: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ญ">arbeider | fabrikk | hudtype 6 | industri | industriarbeider | mann | produksjon</annotation>
<annotation cp="๐จ๐ฟโ๐ญ" type="tts">mannlig industriarbeider: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ญ">arbeider | fabrikk | hudtype 1โ2 | industri | industriarbeider | kvinne | produksjon</annotation>
<annotation cp="๐ฉ๐ปโ๐ญ" type="tts">kvinnelig industriarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ญ">arbeider | fabrikk | hudtype 3 | industri | industriarbeider | kvinne | produksjon</annotation>
<annotation cp="๐ฉ๐ผโ๐ญ" type="tts">kvinnelig industriarbeider: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ญ">arbeider | fabrikk | hudtype 4 | industri | industriarbeider | kvinne | produksjon</annotation>
<annotation cp="๐ฉ๐ฝโ๐ญ" type="tts">kvinnelig industriarbeider: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ญ">arbeider | fabrikk | hudtype 5 | industri | industriarbeider | kvinne | produksjon</annotation>
<annotation cp="๐ฉ๐พโ๐ญ" type="tts">kvinnelig industriarbeider: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ญ">arbeider | fabrikk | hudtype 6 | industri | industriarbeider | kvinne | produksjon</annotation>
<annotation cp="๐ฉ๐ฟโ๐ญ" type="tts">kvinnelig industriarbeider: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ผ">hudtype 1โ2 | kontor | leder | nรฆringsliv</annotation>
<annotation cp="๐ง๐ปโ๐ผ" type="tts">kontorarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ผ">hudtype 3 | kontor | leder | nรฆringsliv</annotation>
<annotation cp="๐ง๐ผโ๐ผ" type="tts">kontorarbeider: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ผ">hudtype 4 | kontor | leder | nรฆringsliv</annotation>
<annotation cp="๐ง๐ฝโ๐ผ" type="tts">kontorarbeider: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ผ">hudtype 5 | kontor | leder | nรฆringsliv</annotation>
<annotation cp="๐ง๐พโ๐ผ" type="tts">kontorarbeider: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ผ">hudtype 6 | kontor | leder | nรฆringsliv</annotation>
<annotation cp="๐ง๐ฟโ๐ผ" type="tts">kontorarbeider: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ผ">hudtype 1โ2 | kontor | leder | mann | mannlig kontorarbeider | nรฆringsliv</annotation>
<annotation cp="๐จ๐ปโ๐ผ" type="tts">mannlig kontorarbeider: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ผ">hudtype 3 | kontor | leder | mann | mannlig kontorarbeider | nรฆringsliv</annotation>
<annotation cp="๐จ๐ผโ๐ผ" type="tts">mannlig kontorarbeider: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ผ">hudtype 4 | kontor | leder | mann | mannlig kontorarbeider | nรฆringsliv</annotation>
<annotation cp="๐จ๐ฝโ๐ผ" type="tts">mannlig kontorarbeider: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ผ">hudtype 5 | kontor | leder | mann | mannlig kontorarbeider | nรฆringsliv</annotation>
<annotation cp="๐จ๐พโ๐ผ" type="tts">mannlig kontorarbeider: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ผ">hudtype 6 | kontor | leder | mann | mannlig kontorarbeider | nรฆringsliv</annotation>
<annotation cp="๐จ๐ฟโ๐ผ" type="tts">mannlig kontorarbeider: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ผ">hudtype 1โ2 | kontor | kvinne | kvinnelig kontorarbeider | leder | nรฆringsliv</annotation>
<annotation cp="๐ฉ๐ปโ๐ผ" type="tts">kvinnelig kontorarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ผ">hudtype 3 | kontor | kvinne | kvinnelig kontorarbeider | leder | nรฆringsliv</annotation>
<annotation cp="๐ฉ๐ผโ๐ผ" type="tts">kvinnelig kontorarbeider: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ผ">hudtype 4 | kontor | kvinne | kvinnelig kontorarbeider | leder | nรฆringsliv</annotation>
<annotation cp="๐ฉ๐ฝโ๐ผ" type="tts">kvinnelig kontorarbeider: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ผ">hudtype 5 | kontor | kvinne | kvinnelig kontorarbeider | leder | nรฆringsliv</annotation>
<annotation cp="๐ฉ๐พโ๐ผ" type="tts">kvinnelig kontorarbeider: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ผ">hudtype 6 | kontor | kvinne | kvinnelig kontorarbeider | leder | nรฆringsliv</annotation>
<annotation cp="๐ฉ๐ฟโ๐ผ" type="tts">kvinnelig kontorarbeider: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ฌ">biologi | forsker | forskning | hudtype 1โ2 | kjemi | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ง๐ปโ๐ฌ" type="tts">forsker: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ฌ">biologi | forsker | forskning | hudtype 3 | kjemi | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ง๐ผโ๐ฌ" type="tts">forsker: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ฌ">biologi | forsker | forskning | hudtype 4 | kjemi | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ง๐ฝโ๐ฌ" type="tts">forsker: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ฌ">biologi | forsker | forskning | hudtype 5 | kjemi | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ง๐พโ๐ฌ" type="tts">forsker: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ฌ">biologi | forsker | forskning | hudtype 6 | kjemi | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ง๐ฟโ๐ฌ" type="tts">forsker: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ฌ">biologi | forsker | forskning | hudtype 1โ2 | kjemi | lab | laboratorium | mann | medisin | vitenskap</annotation>
<annotation cp="๐จ๐ปโ๐ฌ" type="tts">mannlig forsker: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ฌ">biologi | forsker | forskning | hudtype 3 | kjemi | lab | laboratorium | mann | medisin | vitenskap</annotation>
<annotation cp="๐จ๐ผโ๐ฌ" type="tts">mannlig forsker: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ฌ">biologi | forsker | forskning | hudtype 4 | kjemi | lab | laboratorium | mann | medisin | vitenskap</annotation>
<annotation cp="๐จ๐ฝโ๐ฌ" type="tts">mannlig forsker: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ฌ">biologi | forsker | forskning | hudtype 5 | kjemi | lab | laboratorium | mann | medisin | vitenskap</annotation>
<annotation cp="๐จ๐พโ๐ฌ" type="tts">mannlig forsker: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ฌ">biologi | forsker | forskning | hudtype 6 | kjemi | lab | laboratorium | mann | medisin | vitenskap</annotation>
<annotation cp="๐จ๐ฟโ๐ฌ" type="tts">mannlig forsker: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ฌ">biologi | forsker | forskning | hudtype 1โ2 | kjemi | kvinne | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ฉ๐ปโ๐ฌ" type="tts">kvinnelig forsker: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ฌ">biologi | forsker | forskning | hudtype 3 | kjemi | kvinne | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ฉ๐ผโ๐ฌ" type="tts">kvinnelig forsker: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฌ">biologi | forsker | forskning | hudtype 4 | kjemi | kvinne | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฌ" type="tts">kvinnelig forsker: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ฌ">biologi | forsker | forskning | hudtype 5 | kjemi | kvinne | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ฉ๐พโ๐ฌ" type="tts">kvinnelig forsker: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฌ">biologi | forsker | forskning | hudtype 6 | kjemi | kvinne | lab | laboratorium | medisin | vitenskap</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฌ" type="tts">kvinnelig forsker: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ป">data | hudtype 1โ2 | IT | koding | programvare | teknologi</annotation>
<annotation cp="๐ง๐ปโ๐ป" type="tts">IT-ekspert: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ป">data | hudtype 3 | IT | koding | programvare | teknologi</annotation>
<annotation cp="๐ง๐ผโ๐ป" type="tts">IT-ekspert: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ป">data | hudtype 4 | IT | koding | programvare | teknologi</annotation>
<annotation cp="๐ง๐ฝโ๐ป" type="tts">IT-ekspert: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ป">data | hudtype 5 | IT | koding | programvare | teknologi</annotation>
<annotation cp="๐ง๐พโ๐ป" type="tts">IT-ekspert: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ป">data | hudtype 6 | IT | koding | programvare | teknologi</annotation>
<annotation cp="๐ง๐ฟโ๐ป" type="tts">IT-ekspert: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ป">data | hudtype 1โ2 | IT | koding | mann | programvare | teknologi</annotation>
<annotation cp="๐จ๐ปโ๐ป" type="tts">mannlig IT-ekspert: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ป">data | hudtype 3 | IT | koding | mann | programvare | teknologi</annotation>
<annotation cp="๐จ๐ผโ๐ป" type="tts">mannlig IT-ekspert: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ป">data | hudtype 4 | IT | koding | mann | programvare | teknologi</annotation>
<annotation cp="๐จ๐ฝโ๐ป" type="tts">mannlig IT-ekspert: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ป">data | hudtype 5 | IT | koding | mann | programvare | teknologi</annotation>
<annotation cp="๐จ๐พโ๐ป" type="tts">mannlig IT-ekspert: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ป">data | hudtype 6 | IT | koding | mann | programvare | teknologi</annotation>
<annotation cp="๐จ๐ฟโ๐ป" type="tts">mannlig IT-ekspert: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ป">data | hudtype 1โ2 | IT | koding | kvinne | programvare | teknologi</annotation>
<annotation cp="๐ฉ๐ปโ๐ป" type="tts">kvinnelig IT-ekspert: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ป">data | hudtype 3 | IT | koding | kvinne | programvare | teknologi</annotation>
<annotation cp="๐ฉ๐ผโ๐ป" type="tts">kvinnelig IT-ekspert: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ป">data | hudtype 4 | IT | koding | kvinne | programvare | teknologi</annotation>
<annotation cp="๐ฉ๐ฝโ๐ป" type="tts">kvinnelig IT-ekspert: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ป">data | hudtype 5 | IT | koding | kvinne | programvare | teknologi</annotation>
<annotation cp="๐ฉ๐พโ๐ป" type="tts">kvinnelig IT-ekspert: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ป">data | hudtype 6 | IT | koding | kvinne | programvare | teknologi</annotation>
<annotation cp="๐ฉ๐ฟโ๐ป" type="tts">kvinnelig IT-ekspert: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ค">artist | hudtype 1โ2 | konsert | rock | sanger</annotation>
<annotation cp="๐ง๐ปโ๐ค" type="tts">artist: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ค">artist | hudtype 3 | konsert | rock | sanger</annotation>
<annotation cp="๐ง๐ผโ๐ค" type="tts">artist: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ค">artist | hudtype 4 | konsert | rock | sanger</annotation>
<annotation cp="๐ง๐ฝโ๐ค" type="tts">artist: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ค">artist | hudtype 5 | konsert | rock | sanger</annotation>
<annotation cp="๐ง๐พโ๐ค" type="tts">artist: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ค">artist | hudtype 6 | konsert | rock | sanger</annotation>
<annotation cp="๐ง๐ฟโ๐ค" type="tts">artist: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ค">artist | hudtype 1โ2 | konsert | mann | rock | sanger</annotation>
<annotation cp="๐จ๐ปโ๐ค" type="tts">mannlig artist: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ค">artist | hudtype 3 | konsert | mann | rock | sanger</annotation>
<annotation cp="๐จ๐ผโ๐ค" type="tts">mannlig artist: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ค">artist | hudtype 4 | konsert | mann | rock | sanger</annotation>
<annotation cp="๐จ๐ฝโ๐ค" type="tts">mannlig artist: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ค">artist | hudtype 5 | konsert | mann | rock | sanger</annotation>
<annotation cp="๐จ๐พโ๐ค" type="tts">mannlig artist: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ค">artist | hudtype 6 | konsert | mann | rock | sanger</annotation>
<annotation cp="๐จ๐ฟโ๐ค" type="tts">mannlig artist: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ค">artist | hudtype 1โ2 | konsert | kvinne | rock | sanger</annotation>
<annotation cp="๐ฉ๐ปโ๐ค" type="tts">kvinnelig artist: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ค">artist | hudtype 3 | konsert | kvinne | rock | sanger</annotation>
<annotation cp="๐ฉ๐ผโ๐ค" type="tts">kvinnelig artist: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ค">artist | hudtype 4 | konsert | kvinne | rock | sanger</annotation>
<annotation cp="๐ฉ๐ฝโ๐ค" type="tts">kvinnelig artist: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ค">artist | hudtype 5 | konsert | kvinne | rock | sanger</annotation>
<annotation cp="๐ฉ๐พโ๐ค" type="tts">kvinnelig artist: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ค">artist | hudtype 6 | konsert | kvinne | rock | sanger</annotation>
<annotation cp="๐ฉ๐ฟโ๐ค" type="tts">kvinnelig artist: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐จ">hudtype 1โ2 | kunstner | maler</annotation>
<annotation cp="๐ง๐ปโ๐จ" type="tts">kunstner: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐จ">hudtype 3 | kunstner | maler</annotation>
<annotation cp="๐ง๐ผโ๐จ" type="tts">kunstner: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐จ">hudtype 4 | kunstner | maler</annotation>
<annotation cp="๐ง๐ฝโ๐จ" type="tts">kunstner: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐จ">hudtype 5 | kunstner | maler</annotation>
<annotation cp="๐ง๐พโ๐จ" type="tts">kunstner: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐จ">hudtype 6 | kunstner | maler</annotation>
<annotation cp="๐ง๐ฟโ๐จ" type="tts">kunstner: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐จ">hudtype 1โ2 | kunstner | maler | mann</annotation>
<annotation cp="๐จ๐ปโ๐จ" type="tts">mannlig kunstner: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐จ">hudtype 3 | kunstner | maler | mann</annotation>
<annotation cp="๐จ๐ผโ๐จ" type="tts">mannlig kunstner: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐จ">hudtype 4 | kunstner | maler | mann</annotation>
<annotation cp="๐จ๐ฝโ๐จ" type="tts">mannlig kunstner: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐จ">hudtype 5 | kunstner | maler | mann</annotation>
<annotation cp="๐จ๐พโ๐จ" type="tts">mannlig kunstner: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐จ">hudtype 6 | kunstner | maler | mann</annotation>
<annotation cp="๐จ๐ฟโ๐จ" type="tts">mannlig kunstner: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐จ">hudtype 1โ2 | kunstner | kvinne | maler</annotation>
<annotation cp="๐ฉ๐ปโ๐จ" type="tts">kvinnelig kunstner: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐จ">hudtype 3 | kunstner | kvinne | maler</annotation>
<annotation cp="๐ฉ๐ผโ๐จ" type="tts">kvinnelig kunstner: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐จ">hudtype 4 | kunstner | kvinne | maler</annotation>
<annotation cp="๐ฉ๐ฝโ๐จ" type="tts">kvinnelig kunstner: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐จ">hudtype 5 | kunstner | kvinne | maler</annotation>
<annotation cp="๐ฉ๐พโ๐จ" type="tts">kvinnelig kunstner: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐จ">hudtype 6 | kunstner | kvinne | maler</annotation>
<annotation cp="๐ฉ๐ฟโ๐จ" type="tts">kvinnelig kunstner: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">fly | hudtype 1โ2 | pilot</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">pilot: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">fly | hudtype 3 | pilot</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">pilot: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">fly | hudtype 4 | pilot</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">pilot: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">fly | hudtype 5 | pilot</annotation>
<annotation cp="๐ง๐พโโ" type="tts">pilot: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">fly | hudtype 6 | pilot</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">pilot: hudtype 6</annotation>
<annotation cp="๐จ๐ปโโ">fly | hudtype 1โ2 | mann | pilot</annotation>
<annotation cp="๐จ๐ปโโ" type="tts">mannlig pilot: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโโ">fly | hudtype 3 | mann | pilot</annotation>
<annotation cp="๐จ๐ผโโ" type="tts">mannlig pilot: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโโ">fly | hudtype 4 | mann | pilot</annotation>
<annotation cp="๐จ๐ฝโโ" type="tts">mannlig pilot: hudtype 4</annotation>
<annotation cp="๐จ๐พโโ">fly | hudtype 5 | mann | pilot</annotation>
<annotation cp="๐จ๐พโโ" type="tts">mannlig pilot: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโโ">fly | hudtype 6 | mann | pilot</annotation>
<annotation cp="๐จ๐ฟโโ" type="tts">mannlig pilot: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโโ">fly | hudtype 1โ2 | kvinne | pilot</annotation>
<annotation cp="๐ฉ๐ปโโ" type="tts">kvinnelig pilot: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโโ">fly | hudtype 3 | kvinne | pilot</annotation>
<annotation cp="๐ฉ๐ผโโ" type="tts">kvinnelig pilot: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโโ">fly | hudtype 4 | kvinne | pilot</annotation>
<annotation cp="๐ฉ๐ฝโโ" type="tts">kvinnelig pilot: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโโ">fly | hudtype 5 | kvinne | pilot</annotation>
<annotation cp="๐ฉ๐พโโ" type="tts">kvinnelig pilot: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโโ">fly | hudtype 6 | kvinne | pilot</annotation>
<annotation cp="๐ฉ๐ฟโโ" type="tts">kvinnelig pilot: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐">astronaut | hudtype 1โ2 | romfart | verdensrommet</annotation>
<annotation cp="๐ง๐ปโ๐" type="tts">astronaut: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐">astronaut | hudtype 3 | romfart | verdensrommet</annotation>
<annotation cp="๐ง๐ผโ๐" type="tts">astronaut: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐">astronaut | hudtype 4 | romfart | verdensrommet</annotation>
<annotation cp="๐ง๐ฝโ๐" type="tts">astronaut: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐">astronaut | hudtype 5 | romfart | verdensrommet</annotation>
<annotation cp="๐ง๐พโ๐" type="tts">astronaut: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐">astronaut | hudtype 6 | romfart | verdensrommet</annotation>
<annotation cp="๐ง๐ฟโ๐" type="tts">astronaut: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐">astronaut | hudtype 1โ2 | mann | romfart | verdensrommet</annotation>
<annotation cp="๐จ๐ปโ๐" type="tts">mannlig astronaut: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐">astronaut | hudtype 3 | mann | romfart | verdensrommet</annotation>
<annotation cp="๐จ๐ผโ๐" type="tts">mannlig astronaut: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐">astronaut | hudtype 4 | mann | romfart | verdensrommet</annotation>
<annotation cp="๐จ๐ฝโ๐" type="tts">mannlig astronaut: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐">astronaut | hudtype 5 | mann | romfart | verdensrommet</annotation>
<annotation cp="๐จ๐พโ๐" type="tts">mannlig astronaut: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐">astronaut | hudtype 6 | mann | romfart | verdensrommet</annotation>
<annotation cp="๐จ๐ฟโ๐" type="tts">mannlig astronaut: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐">astronaut | hudtype 1โ2 | kvinne | romfart | verdensrommet</annotation>
<annotation cp="๐ฉ๐ปโ๐" type="tts">kvinnelig astronaut: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐">astronaut | hudtype 3 | kvinne | romfart | verdensrommet</annotation>
<annotation cp="๐ฉ๐ผโ๐" type="tts">kvinnelig astronaut: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐">astronaut | hudtype 4 | kvinne | romfart | verdensrommet</annotation>
<annotation cp="๐ฉ๐ฝโ๐" type="tts">kvinnelig astronaut: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐">astronaut | hudtype 5 | kvinne | romfart | verdensrommet</annotation>
<annotation cp="๐ฉ๐พโ๐" type="tts">kvinnelig astronaut: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐">astronaut | hudtype 6 | kvinne | romfart | verdensrommet</annotation>
<annotation cp="๐ฉ๐ฟโ๐" type="tts">kvinnelig astronaut: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 1โ2</annotation>
<annotation cp="๐ง๐ปโ๐" type="tts">brannkonstabel: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 3</annotation>
<annotation cp="๐ง๐ผโ๐" type="tts">brannkonstabel: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 4</annotation>
<annotation cp="๐ง๐ฝโ๐" type="tts">brannkonstabel: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 5</annotation>
<annotation cp="๐ง๐พโ๐" type="tts">brannkonstabel: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 6</annotation>
<annotation cp="๐ง๐ฟโ๐" type="tts">brannkonstabel: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 1โ2 | mann</annotation>
<annotation cp="๐จ๐ปโ๐" type="tts">mannlig brannkonstabel: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 3 | mann</annotation>
<annotation cp="๐จ๐ผโ๐" type="tts">mannlig brannkonstabel: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 4 | mann</annotation>
<annotation cp="๐จ๐ฝโ๐" type="tts">mannlig brannkonstabel: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 5 | mann</annotation>
<annotation cp="๐จ๐พโ๐" type="tts">mannlig brannkonstabel: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 6 | mann</annotation>
<annotation cp="๐จ๐ฟโ๐" type="tts">mannlig brannkonstabel: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 1โ2 | kvinne</annotation>
<annotation cp="๐ฉ๐ปโ๐" type="tts">kvinnelig brannkonstabel: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 3 | kvinne</annotation>
<annotation cp="๐ฉ๐ผโ๐" type="tts">kvinnelig brannkonstabel: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 4 | kvinne</annotation>
<annotation cp="๐ฉ๐ฝโ๐" type="tts">kvinnelig brannkonstabel: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 5 | kvinne</annotation>
<annotation cp="๐ฉ๐พโ๐" type="tts">kvinnelig brannkonstabel: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐">brannbil | brannkonstabel | brannmann | brannvesenet | hudtype 6 | kvinne</annotation>
<annotation cp="๐ฉ๐ฟโ๐" type="tts">kvinnelig brannkonstabel: hudtype 6</annotation>
<annotation cp="๐ฎ๐ป">betjent | hudtype 1โ2 | menneske | politi</annotation>
<annotation cp="๐ฎ๐ป" type="tts">politibetjent: hudtype 1โ2</annotation>
<annotation cp="๐ฎ๐ผ">betjent | hudtype 3 | menneske | politi</annotation>
<annotation cp="๐ฎ๐ผ" type="tts">politibetjent: hudtype 3</annotation>
<annotation cp="๐ฎ๐ฝ">betjent | hudtype 4 | menneske | politi</annotation>
<annotation cp="๐ฎ๐ฝ" type="tts">politibetjent: hudtype 4</annotation>
<annotation cp="๐ฎ๐พ">betjent | hudtype 5 | menneske | politi</annotation>
<annotation cp="๐ฎ๐พ" type="tts">politibetjent: hudtype 5</annotation>
<annotation cp="๐ฎ๐ฟ">betjent | hudtype 6 | menneske | politi</annotation>
<annotation cp="๐ฎ๐ฟ" type="tts">politibetjent: hudtype 6</annotation>
<annotation cp="๐ฎ๐ปโโ">betjent | hudtype 1โ2 | mann | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ปโโ" type="tts">mannlig politibetjent: hudtype 1โ2</annotation>
<annotation cp="๐ฎ๐ผโโ">betjent | hudtype 3 | mann | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ผโโ" type="tts">mannlig politibetjent: hudtype 3</annotation>
<annotation cp="๐ฎ๐ฝโโ">betjent | hudtype 4 | mann | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ฝโโ" type="tts">mannlig politibetjent: hudtype 4</annotation>
<annotation cp="๐ฎ๐พโโ">betjent | hudtype 5 | mann | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐พโโ" type="tts">mannlig politibetjent: hudtype 5</annotation>
<annotation cp="๐ฎ๐ฟโโ">betjent | hudtype 6 | mann | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ฟโโ" type="tts">mannlig politibetjent: hudtype 6</annotation>
<annotation cp="๐ฎ๐ปโโ">betjent | hudtype 1โ2 | kvinne | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ปโโ" type="tts">kvinnelig politibetjent: hudtype 1โ2</annotation>
<annotation cp="๐ฎ๐ผโโ">betjent | hudtype 3 | kvinne | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ผโโ" type="tts">kvinnelig politibetjent: hudtype 3</annotation>
<annotation cp="๐ฎ๐ฝโโ">betjent | hudtype 4 | kvinne | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ฝโโ" type="tts">kvinnelig politibetjent: hudtype 4</annotation>
<annotation cp="๐ฎ๐พโโ">betjent | hudtype 5 | kvinne | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐พโโ" type="tts">kvinnelig politibetjent: hudtype 5</annotation>
<annotation cp="๐ฎ๐ฟโโ">betjent | hudtype 6 | kvinne | politi | politibetjent</annotation>
<annotation cp="๐ฎ๐ฟโโ" type="tts">kvinnelig politibetjent: hudtype 6</annotation>
<annotation cp="๐ต๐ป">detektiv | hudtype 1โ2 | spion</annotation>
<annotation cp="๐ต๐ป" type="tts">detektiv: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผ">detektiv | hudtype 3 | spion</annotation>
<annotation cp="๐ต๐ผ" type="tts">detektiv: hudtype 3</annotation>
<annotation cp="๐ต๐ฝ">detektiv | hudtype 4 | spion</annotation>
<annotation cp="๐ต๐ฝ" type="tts">detektiv: hudtype 4</annotation>
<annotation cp="๐ต๐พ">detektiv | hudtype 5 | spion</annotation>
<annotation cp="๐ต๐พ" type="tts">detektiv: hudtype 5</annotation>
<annotation cp="๐ต๐ฟ">detektiv | hudtype 6 | spion</annotation>
<annotation cp="๐ต๐ฟ" type="tts">detektiv: hudtype 6</annotation>
<annotation cp="๐ต๐ปโโ">etterforske | forbrytelse | hudtype 1โ2 | mann | privatdetektiv</annotation>
<annotation cp="๐ต๐ปโโ" type="tts">mannlig detektiv: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผโโ">etterforske | forbrytelse | hudtype 3 | mann | privatdetektiv</annotation>
<annotation cp="๐ต๐ผโโ" type="tts">mannlig detektiv: hudtype 3</annotation>
<annotation cp="๐ต๐ฝโโ">etterforske | forbrytelse | hudtype 4 | mann | privatdetektiv</annotation>
<annotation cp="๐ต๐ฝโโ" type="tts">mannlig detektiv: hudtype 4</annotation>
<annotation cp="๐ต๐พโโ">etterforske | forbrytelse | hudtype 5 | mann | privatdetektiv</annotation>
<annotation cp="๐ต๐พโโ" type="tts">mannlig detektiv: hudtype 5</annotation>
<annotation cp="๐ต๐ฟโโ">etterforske | forbrytelse | hudtype 6 | mann | privatdetektiv</annotation>
<annotation cp="๐ต๐ฟโโ" type="tts">mannlig detektiv: hudtype 6</annotation>
<annotation cp="๐ต๐ปโโ">etterforske | forbrytelse | hudtype 1โ2 | kvinne | privatdetektiv</annotation>
<annotation cp="๐ต๐ปโโ" type="tts">kvinnelig detektiv: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผโโ">etterforske | forbrytelse | hudtype 3 | kvinne | privatdetektiv</annotation>
<annotation cp="๐ต๐ผโโ" type="tts">kvinnelig detektiv: hudtype 3</annotation>
<annotation cp="๐ต๐ฝโโ">etterforske | forbrytelse | hudtype 4 | kvinne | privatdetektiv</annotation>
<annotation cp="๐ต๐ฝโโ" type="tts">kvinnelig detektiv: hudtype 4</annotation>
<annotation cp="๐ต๐พโโ">etterforske | forbrytelse | hudtype 5 | kvinne | privatdetektiv</annotation>
<annotation cp="๐ต๐พโโ" type="tts">kvinnelig detektiv: hudtype 5</annotation>
<annotation cp="๐ต๐ฟโโ">etterforske | forbrytelse | hudtype 6 | kvinne | privatdetektiv</annotation>
<annotation cp="๐ต๐ฟโโ" type="tts">kvinnelig detektiv: hudtype 6</annotation>
<annotation cp="๐๐ป">gardist | hudtype 1โ2 | menneske | vakt</annotation>
<annotation cp="๐๐ป" type="tts">gardist: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">gardist | hudtype 3 | menneske | vakt</annotation>
<annotation cp="๐๐ผ" type="tts">gardist: hudtype 3</annotation>
<annotation cp="๐๐ฝ">gardist | hudtype 4 | menneske | vakt</annotation>
<annotation cp="๐๐ฝ" type="tts">gardist: hudtype 4</annotation>
<annotation cp="๐๐พ">gardist | hudtype 5 | menneske | vakt</annotation>
<annotation cp="๐๐พ" type="tts">gardist: hudtype 5</annotation>
<annotation cp="๐๐ฟ">gardist | hudtype 6 | menneske | vakt</annotation>
<annotation cp="๐๐ฟ" type="tts">gardist: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">gardist | hudtype 1โ2 | mann | vakt</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig gardist: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">gardist | hudtype 3 | mann | vakt</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig gardist: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">gardist | hudtype 4 | mann | vakt</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig gardist: hudtype 4</annotation>
<annotation cp="๐๐พโโ">gardist | hudtype 5 | mann | vakt</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig gardist: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">gardist | hudtype 6 | mann | vakt</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig gardist: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">gardist | hudtype 1โ2 | kvinne | vakt</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig gardist: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">gardist | hudtype 3 | kvinne | vakt</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig gardist: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">gardist | hudtype 4 | kvinne | vakt</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig gardist: hudtype 4</annotation>
<annotation cp="๐๐พโโ">gardist | hudtype 5 | kvinne | vakt</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig gardist: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">gardist | hudtype 6 | kvinne | vakt</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig gardist: hudtype 6</annotation>
<annotation cp="๐ท๐ป">anlegg | anleggsarbeider | arbeider | hjelm | hudtype 1โ2 | ingeniรธr | menneske</annotation>
<annotation cp="๐ท๐ป" type="tts">anleggsarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ท๐ผ">anlegg | anleggsarbeider | arbeider | hjelm | hudtype 3 | ingeniรธr | menneske</annotation>
<annotation cp="๐ท๐ผ" type="tts">anleggsarbeider: hudtype 3</annotation>
<annotation cp="๐ท๐ฝ">anlegg | anleggsarbeider | arbeider | hjelm | hudtype 4 | ingeniรธr | menneske</annotation>
<annotation cp="๐ท๐ฝ" type="tts">anleggsarbeider: hudtype 4</annotation>
<annotation cp="๐ท๐พ">anlegg | anleggsarbeider | arbeider | hjelm | hudtype 5 | ingeniรธr | menneske</annotation>
<annotation cp="๐ท๐พ" type="tts">anleggsarbeider: hudtype 5</annotation>
<annotation cp="๐ท๐ฟ">anlegg | anleggsarbeider | arbeider | hjelm | hudtype 6 | ingeniรธr | menneske</annotation>
<annotation cp="๐ท๐ฟ" type="tts">anleggsarbeider: hudtype 6</annotation>
<annotation cp="๐ท๐ปโโ">anlegg | arbeider | bygg | hjelm | hudtype 1โ2 | ingeniรธr | mann</annotation>
<annotation cp="๐ท๐ปโโ" type="tts">mannlig anleggsarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ท๐ผโโ">anlegg | arbeider | bygg | hjelm | hudtype 3 | ingeniรธr | mann</annotation>
<annotation cp="๐ท๐ผโโ" type="tts">mannlig anleggsarbeider: hudtype 3</annotation>
<annotation cp="๐ท๐ฝโโ">anlegg | arbeider | bygg | hjelm | hudtype 4 | ingeniรธr | mann</annotation>
<annotation cp="๐ท๐ฝโโ" type="tts">mannlig anleggsarbeider: hudtype 4</annotation>
<annotation cp="๐ท๐พโโ">anlegg | arbeider | bygg | hjelm | hudtype 5 | ingeniรธr | mann</annotation>
<annotation cp="๐ท๐พโโ" type="tts">mannlig anleggsarbeider: hudtype 5</annotation>
<annotation cp="๐ท๐ฟโโ">anlegg | arbeider | bygg | hjelm | hudtype 6 | ingeniรธr | mann</annotation>
<annotation cp="๐ท๐ฟโโ" type="tts">mannlig anleggsarbeider: hudtype 6</annotation>
<annotation cp="๐ท๐ปโโ">anlegg | arbeider | bygg | hjelm | hudtype 1โ2 | ingeniรธr | kvinne</annotation>
<annotation cp="๐ท๐ปโโ" type="tts">kvinnelig anleggsarbeider: hudtype 1โ2</annotation>
<annotation cp="๐ท๐ผโโ">anlegg | arbeider | bygg | hjelm | hudtype 3 | ingeniรธr | kvinne</annotation>
<annotation cp="๐ท๐ผโโ" type="tts">kvinnelig anleggsarbeider: hudtype 3</annotation>
<annotation cp="๐ท๐ฝโโ">anlegg | arbeider | bygg | hjelm | hudtype 4 | ingeniรธr | kvinne</annotation>
<annotation cp="๐ท๐ฝโโ" type="tts">kvinnelig anleggsarbeider: hudtype 4</annotation>
<annotation cp="๐ท๐พโโ">anlegg | arbeider | bygg | hjelm | hudtype 5 | ingeniรธr | kvinne</annotation>
<annotation cp="๐ท๐พโโ" type="tts">kvinnelig anleggsarbeider: hudtype 5</annotation>
<annotation cp="๐ท๐ฟโโ">anlegg | arbeider | bygg | hjelm | hudtype 6 | ingeniรธr | kvinne</annotation>
<annotation cp="๐ท๐ฟโโ" type="tts">kvinnelig anleggsarbeider: hudtype 6</annotation>
<annotation cp="๐คด๐ป">hudtype 1โ2 | prins</annotation>
<annotation cp="๐คด๐ป" type="tts">prins: hudtype 1โ2</annotation>
<annotation cp="๐คด๐ผ">hudtype 3 | prins</annotation>
<annotation cp="๐คด๐ผ" type="tts">prins: hudtype 3</annotation>
<annotation cp="๐คด๐ฝ">hudtype 4 | prins</annotation>
<annotation cp="๐คด๐ฝ" type="tts">prins: hudtype 4</annotation>
<annotation cp="๐คด๐พ">hudtype 5 | prins</annotation>
<annotation cp="๐คด๐พ" type="tts">prins: hudtype 5</annotation>
<annotation cp="๐คด๐ฟ">hudtype 6 | prins</annotation>
<annotation cp="๐คด๐ฟ" type="tts">prins: hudtype 6</annotation>
<annotation cp="๐ธ๐ป">eventyr | fantasy | hudtype 1โ2 | menneske | prinsesse</annotation>
<annotation cp="๐ธ๐ป" type="tts">prinsesse: hudtype 1โ2</annotation>
<annotation cp="๐ธ๐ผ">eventyr | fantasy | hudtype 3 | menneske | prinsesse</annotation>
<annotation cp="๐ธ๐ผ" type="tts">prinsesse: hudtype 3</annotation>
<annotation cp="๐ธ๐ฝ">eventyr | fantasy | hudtype 4 | menneske | prinsesse</annotation>
<annotation cp="๐ธ๐ฝ" type="tts">prinsesse: hudtype 4</annotation>
<annotation cp="๐ธ๐พ">eventyr | fantasy | hudtype 5 | menneske | prinsesse</annotation>
<annotation cp="๐ธ๐พ" type="tts">prinsesse: hudtype 5</annotation>
<annotation cp="๐ธ๐ฟ">eventyr | fantasy | hudtype 6 | menneske | prinsesse</annotation>
<annotation cp="๐ธ๐ฟ" type="tts">prinsesse: hudtype 6</annotation>
<annotation cp="๐ณ๐ป">hudtype 1โ2 | menneske | turban | turbankledd person</annotation>
<annotation cp="๐ณ๐ป" type="tts">turbankledd person: hudtype 1โ2</annotation>
<annotation cp="๐ณ๐ผ">hudtype 3 | menneske | turban | turbankledd person</annotation>
<annotation cp="๐ณ๐ผ" type="tts">turbankledd person: hudtype 3</annotation>
<annotation cp="๐ณ๐ฝ">hudtype 4 | menneske | turban | turbankledd person</annotation>
<annotation cp="๐ณ๐ฝ" type="tts">turbankledd person: hudtype 4</annotation>
<annotation cp="๐ณ๐พ">hudtype 5 | menneske | turban | turbankledd person</annotation>
<annotation cp="๐ณ๐พ" type="tts">turbankledd person: hudtype 5</annotation>
<annotation cp="๐ณ๐ฟ">hudtype 6 | menneske | turban | turbankledd person</annotation>
<annotation cp="๐ณ๐ฟ" type="tts">turbankledd person: hudtype 6</annotation>
<annotation cp="๐ณ๐ปโโ">hudtype 1โ2 | mann | turban | turbankledd mann</annotation>
<annotation cp="๐ณ๐ปโโ" type="tts">turbankledd mann: hudtype 1โ2</annotation>
<annotation cp="๐ณ๐ผโโ">hudtype 3 | mann | turban | turbankledd mann</annotation>
<annotation cp="๐ณ๐ผโโ" type="tts">turbankledd mann: hudtype 3</annotation>
<annotation cp="๐ณ๐ฝโโ">hudtype 4 | mann | turban | turbankledd mann</annotation>
<annotation cp="๐ณ๐ฝโโ" type="tts">turbankledd mann: hudtype 4</annotation>
<annotation cp="๐ณ๐พโโ">hudtype 5 | mann | turban | turbankledd mann</annotation>
<annotation cp="๐ณ๐พโโ" type="tts">turbankledd mann: hudtype 5</annotation>
<annotation cp="๐ณ๐ฟโโ">hudtype 6 | mann | turban | turbankledd mann</annotation>
<annotation cp="๐ณ๐ฟโโ" type="tts">turbankledd mann: hudtype 6</annotation>
<annotation cp="๐ณ๐ปโโ">hudtype 1โ2 | kvinne | turban | turbankledd kvinne</annotation>
<annotation cp="๐ณ๐ปโโ" type="tts">turbankledd kvinne: hudtype 1โ2</annotation>
<annotation cp="๐ณ๐ผโโ">hudtype 3 | kvinne | turban | turbankledd kvinne</annotation>
<annotation cp="๐ณ๐ผโโ" type="tts">turbankledd kvinne: hudtype 3</annotation>
<annotation cp="๐ณ๐ฝโโ">hudtype 4 | kvinne | turban | turbankledd kvinne</annotation>
<annotation cp="๐ณ๐ฝโโ" type="tts">turbankledd kvinne: hudtype 4</annotation>
<annotation cp="๐ณ๐พโโ">hudtype 5 | kvinne | turban | turbankledd kvinne</annotation>
<annotation cp="๐ณ๐พโโ" type="tts">turbankledd kvinne: hudtype 5</annotation>
<annotation cp="๐ณ๐ฟโโ">hudtype 6 | kvinne | turban | turbankledd kvinne</annotation>
<annotation cp="๐ณ๐ฟโโ" type="tts">turbankledd kvinne: hudtype 6</annotation>
<annotation cp="๐ฒ๐ป">gua pi mao | hatt | hudtype 1โ2 | lue | mann | mann med kinesisk lue | menneske</annotation>
<annotation cp="๐ฒ๐ป" type="tts">mann med kinesisk lue: hudtype 1โ2</annotation>
<annotation cp="๐ฒ๐ผ">gua pi mao | hatt | hudtype 3 | lue | mann | mann med kinesisk lue | menneske</annotation>
<annotation cp="๐ฒ๐ผ" type="tts">mann med kinesisk lue: hudtype 3</annotation>
<annotation cp="๐ฒ๐ฝ">gua pi mao | hatt | hudtype 4 | lue | mann | mann med kinesisk lue | menneske</annotation>
<annotation cp="๐ฒ๐ฝ" type="tts">mann med kinesisk lue: hudtype 4</annotation>
<annotation cp="๐ฒ๐พ">gua pi mao | hatt | hudtype 5 | lue | mann | mann med kinesisk lue | menneske</annotation>
<annotation cp="๐ฒ๐พ" type="tts">mann med kinesisk lue: hudtype 5</annotation>
<annotation cp="๐ฒ๐ฟ">gua pi mao | hatt | hudtype 6 | lue | mann | mann med kinesisk lue | menneske</annotation>
<annotation cp="๐ฒ๐ฟ" type="tts">mann med kinesisk lue: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hijab | hodeskjerf | hodeslรธr | hudtype 1โ2 | kvinne med hodeslรธr | muslim</annotation>
<annotation cp="๐ง๐ป" type="tts">kvinne med hodeslรธr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hijab | hodeskjerf | hodeslรธr | hudtype 3 | kvinne med hodeslรธr | muslim</annotation>
<annotation cp="๐ง๐ผ" type="tts">kvinne med hodeslรธr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hijab | hodeskjerf | hodeslรธr | hudtype 4 | kvinne med hodeslรธr | muslim</annotation>
<annotation cp="๐ง๐ฝ" type="tts">kvinne med hodeslรธr: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hijab | hodeskjerf | hodeslรธr | hudtype 5 | kvinne med hodeslรธr | muslim</annotation>
<annotation cp="๐ง๐พ" type="tts">kvinne med hodeslรธr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hijab | hodeskjerf | hodeslรธr | hudtype 6 | kvinne med hodeslรธr | muslim</annotation>
<annotation cp="๐ง๐ฟ" type="tts">kvinne med hodeslรธr: hudtype 6</annotation>
<annotation cp="๐คต๐ป">brudgom | hudtype 1โ2 | mann | mann i smoking | smoking</annotation>
<annotation cp="๐คต๐ป" type="tts">mann i smoking: hudtype 1โ2</annotation>
<annotation cp="๐คต๐ผ">brudgom | hudtype 3 | mann | mann i smoking | smoking</annotation>
<annotation cp="๐คต๐ผ" type="tts">mann i smoking: hudtype 3</annotation>
<annotation cp="๐คต๐ฝ">brudgom | hudtype 4 | mann | mann i smoking | smoking</annotation>
<annotation cp="๐คต๐ฝ" type="tts">mann i smoking: hudtype 4</annotation>
<annotation cp="๐คต๐พ">brudgom | hudtype 5 | mann | mann i smoking | smoking</annotation>
<annotation cp="๐คต๐พ" type="tts">mann i smoking: hudtype 5</annotation>
<annotation cp="๐คต๐ฟ">brudgom | hudtype 6 | mann | mann i smoking | smoking</annotation>
<annotation cp="๐คต๐ฟ" type="tts">mann i smoking: hudtype 6</annotation>
<annotation cp="๐ฐ๐ป">brud | brud med slรธr | bryllup | hudtype 1โ2 | mennesker | slรธr</annotation>
<annotation cp="๐ฐ๐ป" type="tts">brud: hudtype 1โ2</annotation>
<annotation cp="๐ฐ๐ผ">brud | brud med slรธr | bryllup | hudtype 3 | mennesker | slรธr</annotation>
<annotation cp="๐ฐ๐ผ" type="tts">brud: hudtype 3</annotation>
<annotation cp="๐ฐ๐ฝ">brud | brud med slรธr | bryllup | hudtype 4 | mennesker | slรธr</annotation>
<annotation cp="๐ฐ๐ฝ" type="tts">brud: hudtype 4</annotation>
<annotation cp="๐ฐ๐พ">brud | brud med slรธr | bryllup | hudtype 5 | mennesker | slรธr</annotation>
<annotation cp="๐ฐ๐พ" type="tts">brud: hudtype 5</annotation>
<annotation cp="๐ฐ๐ฟ">brud | brud med slรธr | bryllup | hudtype 6 | mennesker | slรธr</annotation>
<annotation cp="๐ฐ๐ฟ" type="tts">brud: hudtype 6</annotation>
<annotation cp="๐คฐ๐ป">gravid | hudtype 1โ2 | kvinne</annotation>
<annotation cp="๐คฐ๐ป" type="tts">gravid kvinne: hudtype 1โ2</annotation>
<annotation cp="๐คฐ๐ผ">gravid | hudtype 3 | kvinne</annotation>
<annotation cp="๐คฐ๐ผ" type="tts">gravid kvinne: hudtype 3</annotation>
<annotation cp="๐คฐ๐ฝ">gravid | hudtype 4 | kvinne</annotation>
<annotation cp="๐คฐ๐ฝ" type="tts">gravid kvinne: hudtype 4</annotation>
<annotation cp="๐คฐ๐พ">gravid | hudtype 5 | kvinne</annotation>
<annotation cp="๐คฐ๐พ" type="tts">gravid kvinne: hudtype 5</annotation>
<annotation cp="๐คฐ๐ฟ">gravid | hudtype 6 | kvinne</annotation>
<annotation cp="๐คฐ๐ฟ" type="tts">gravid kvinne: hudtype 6</annotation>
<annotation cp="๐คฑ๐ป">ammer | amming | baby | bryst | hudtype 1โ2 | morsmelk</annotation>
<annotation cp="๐คฑ๐ป" type="tts">ammer: hudtype 1โ2</annotation>
<annotation cp="๐คฑ๐ผ">ammer | amming | baby | bryst | hudtype 3 | morsmelk</annotation>
<annotation cp="๐คฑ๐ผ" type="tts">ammer: hudtype 3</annotation>
<annotation cp="๐คฑ๐ฝ">ammer | amming | baby | bryst | hudtype 4 | morsmelk</annotation>
<annotation cp="๐คฑ๐ฝ" type="tts">ammer: hudtype 4</annotation>
<annotation cp="๐คฑ๐พ">ammer | amming | baby | bryst | hudtype 5 | morsmelk</annotation>
<annotation cp="๐คฑ๐พ" type="tts">ammer: hudtype 5</annotation>
<annotation cp="๐คฑ๐ฟ">ammer | amming | baby | bryst | hudtype 6 | morsmelk</annotation>
<annotation cp="๐คฑ๐ฟ" type="tts">ammer: hudtype 6</annotation>
<annotation cp="๐ผ๐ป">ansikt | babyengel | engel | eventyr | hudtype 1โ2</annotation>
<annotation cp="๐ผ๐ป" type="tts">babyengel: hudtype 1โ2</annotation>
<annotation cp="๐ผ๐ผ">ansikt | babyengel | engel | eventyr | hudtype 3</annotation>
<annotation cp="๐ผ๐ผ" type="tts">babyengel: hudtype 3</annotation>
<annotation cp="๐ผ๐ฝ">ansikt | babyengel | engel | eventyr | hudtype 4</annotation>
<annotation cp="๐ผ๐ฝ" type="tts">babyengel: hudtype 4</annotation>
<annotation cp="๐ผ๐พ">ansikt | babyengel | engel | eventyr | hudtype 5</annotation>
<annotation cp="๐ผ๐พ" type="tts">babyengel: hudtype 5</annotation>
<annotation cp="๐ผ๐ฟ">ansikt | babyengel | engel | eventyr | hudtype 6</annotation>
<annotation cp="๐ผ๐ฟ" type="tts">babyengel: hudtype 6</annotation>
<annotation cp="๐
๐ป">feiring | hudtype 1โ2 | jul | julenissen | nissefar | nissen</annotation>
<annotation cp="๐
๐ป" type="tts">julenissen: hudtype 1โ2</annotation>
<annotation cp="๐
๐ผ">feiring | hudtype 3 | jul | julenissen | nissefar | nissen</annotation>
<annotation cp="๐
๐ผ" type="tts">julenissen: hudtype 3</annotation>
<annotation cp="๐
๐ฝ">feiring | hudtype 4 | jul | julenissen | nissefar | nissen</annotation>
<annotation cp="๐
๐ฝ" type="tts">julenissen: hudtype 4</annotation>
<annotation cp="๐
๐พ">feiring | hudtype 5 | jul | julenissen | nissefar | nissen</annotation>
<annotation cp="๐
๐พ" type="tts">julenissen: hudtype 5</annotation>
<annotation cp="๐
๐ฟ">feiring | hudtype 6 | jul | julenissen | nissefar | nissen</annotation>
<annotation cp="๐
๐ฟ" type="tts">julenissen: hudtype 6</annotation>
<annotation cp="๐คถ๐ป">hudtype 1โ2 | jul | julenissemor | mor | nisse</annotation>
<annotation cp="๐คถ๐ป" type="tts">julenissemor: hudtype 1โ2</annotation>
<annotation cp="๐คถ๐ผ">hudtype 3 | jul | julenissemor | mor | nisse</annotation>
<annotation cp="๐คถ๐ผ" type="tts">julenissemor: hudtype 3</annotation>
<annotation cp="๐คถ๐ฝ">hudtype 4 | jul | julenissemor | mor | nisse</annotation>
<annotation cp="๐คถ๐ฝ" type="tts">julenissemor: hudtype 4</annotation>
<annotation cp="๐คถ๐พ">hudtype 5 | jul | julenissemor | mor | nisse</annotation>
<annotation cp="๐คถ๐พ" type="tts">julenissemor: hudtype 5</annotation>
<annotation cp="๐คถ๐ฟ">hudtype 6 | jul | julenissemor | mor | nisse</annotation>
<annotation cp="๐คถ๐ฟ" type="tts">julenissemor: hudtype 6</annotation>
<annotation cp="๐ฆธ๐ป">god | helt | heltinne | hudtype 1โ2 | superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ป" type="tts">superhelt: hudtype 1โ2</annotation>
<annotation cp="๐ฆธ๐ผ">god | helt | heltinne | hudtype 3 | superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ผ" type="tts">superhelt: hudtype 3</annotation>
<annotation cp="๐ฆธ๐ฝ">god | helt | heltinne | hudtype 4 | superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฝ" type="tts">superhelt: hudtype 4</annotation>
<annotation cp="๐ฆธ๐พ">god | helt | heltinne | hudtype 5 | superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐พ" type="tts">superhelt: hudtype 5</annotation>
<annotation cp="๐ฆธ๐ฟ">god | helt | heltinne | hudtype 6 | superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฟ" type="tts">superhelt: hudtype 6</annotation>
<annotation cp="๐ฆธ๐ปโโ">god | helt | hudtype 1โ2 | mann | mannlig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ปโโ" type="tts">mannlig superhelt: hudtype 1โ2</annotation>
<annotation cp="๐ฆธ๐ผโโ">god | helt | hudtype 3 | mann | mannlig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ผโโ" type="tts">mannlig superhelt: hudtype 3</annotation>
<annotation cp="๐ฆธ๐ฝโโ">god | helt | hudtype 4 | mann | mannlig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฝโโ" type="tts">mannlig superhelt: hudtype 4</annotation>
<annotation cp="๐ฆธ๐พโโ">god | helt | hudtype 5 | mann | mannlig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐พโโ" type="tts">mannlig superhelt: hudtype 5</annotation>
<annotation cp="๐ฆธ๐ฟโโ">god | helt | hudtype 6 | mann | mannlig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฟโโ" type="tts">mannlig superhelt: hudtype 6</annotation>
<annotation cp="๐ฆธ๐ปโโ">god | helt | heltinne | hudtype 1โ2 | kvinne | kvinnelig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ปโโ" type="tts">kvinnelig superhelt: hudtype 1โ2</annotation>
<annotation cp="๐ฆธ๐ผโโ">god | helt | heltinne | hudtype 3 | kvinne | kvinnelig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ผโโ" type="tts">kvinnelig superhelt: hudtype 3</annotation>
<annotation cp="๐ฆธ๐ฝโโ">god | helt | heltinne | hudtype 4 | kvinne | kvinnelig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฝโโ" type="tts">kvinnelig superhelt: hudtype 4</annotation>
<annotation cp="๐ฆธ๐พโโ">god | helt | heltinne | hudtype 5 | kvinne | kvinnelig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐พโโ" type="tts">kvinnelig superhelt: hudtype 5</annotation>
<annotation cp="๐ฆธ๐ฟโโ">god | helt | heltinne | hudtype 6 | kvinne | kvinnelig superhelt | superkrefter</annotation>
<annotation cp="๐ฆธ๐ฟโโ" type="tts">kvinnelig superhelt: hudtype 6</annotation>
<annotation cp="๐ฆน๐ป">hudtype 1โ2 | kriminell | ond | skurk | superkrefter | superskurk</annotation>
<annotation cp="๐ฆน๐ป" type="tts">superskurk: hudtype 1โ2</annotation>
<annotation cp="๐ฆน๐ผ">hudtype 3 | kriminell | ond | skurk | superkrefter | superskurk</annotation>
<annotation cp="๐ฆน๐ผ" type="tts">superskurk: hudtype 3</annotation>
<annotation cp="๐ฆน๐ฝ">hudtype 4 | kriminell | ond | skurk | superkrefter | superskurk</annotation>
<annotation cp="๐ฆน๐ฝ" type="tts">superskurk: hudtype 4</annotation>
<annotation cp="๐ฆน๐พ">hudtype 5 | kriminell | ond | skurk | superkrefter | superskurk</annotation>
<annotation cp="๐ฆน๐พ" type="tts">superskurk: hudtype 5</annotation>
<annotation cp="๐ฆน๐ฟ">hudtype 6 | kriminell | ond | skurk | superkrefter | superskurk</annotation>
<annotation cp="๐ฆน๐ฟ" type="tts">superskurk: hudtype 6</annotation>
<annotation cp="๐ฆน๐ปโโ">hudtype 1โ2 | kriminell | mann | mannlig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ปโโ" type="tts">mannlig superskurk: hudtype 1โ2</annotation>
<annotation cp="๐ฆน๐ผโโ">hudtype 3 | kriminell | mann | mannlig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ผโโ" type="tts">mannlig superskurk: hudtype 3</annotation>
<annotation cp="๐ฆน๐ฝโโ">hudtype 4 | kriminell | mann | mannlig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ฝโโ" type="tts">mannlig superskurk: hudtype 4</annotation>
<annotation cp="๐ฆน๐พโโ">hudtype 5 | kriminell | mann | mannlig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐พโโ" type="tts">mannlig superskurk: hudtype 5</annotation>
<annotation cp="๐ฆน๐ฟโโ">hudtype 6 | kriminell | mann | mannlig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ฟโโ" type="tts">mannlig superskurk: hudtype 6</annotation>
<annotation cp="๐ฆน๐ปโโ">hudtype 1โ2 | kriminell | kvinne | kvinnelig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ปโโ" type="tts">kvinnelig superskurk: hudtype 1โ2</annotation>
<annotation cp="๐ฆน๐ผโโ">hudtype 3 | kriminell | kvinne | kvinnelig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ผโโ" type="tts">kvinnelig superskurk: hudtype 3</annotation>
<annotation cp="๐ฆน๐ฝโโ">hudtype 4 | kriminell | kvinne | kvinnelig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ฝโโ" type="tts">kvinnelig superskurk: hudtype 4</annotation>
<annotation cp="๐ฆน๐พโโ">hudtype 5 | kriminell | kvinne | kvinnelig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐พโโ" type="tts">kvinnelig superskurk: hudtype 5</annotation>
<annotation cp="๐ฆน๐ฟโโ">hudtype 6 | kriminell | kvinne | kvinnelig superskurk | ond | skurk | superkrefter</annotation>
<annotation cp="๐ฆน๐ฟโโ" type="tts">kvinnelig superskurk: hudtype 6</annotation>
<annotation cp="๐ง๐ป">heks | hudtype 1โ2 | trollkvinne | trollmann | trollperson</annotation>
<annotation cp="๐ง๐ป" type="tts">trollperson: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">heks | hudtype 3 | trollkvinne | trollmann | trollperson</annotation>
<annotation cp="๐ง๐ผ" type="tts">trollperson: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">heks | hudtype 4 | trollkvinne | trollmann | trollperson</annotation>
<annotation cp="๐ง๐ฝ" type="tts">trollperson: hudtype 4</annotation>
<annotation cp="๐ง๐พ">heks | hudtype 5 | trollkvinne | trollmann | trollperson</annotation>
<annotation cp="๐ง๐พ" type="tts">trollperson: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">heks | hudtype 6 | trollkvinne | trollmann | trollperson</annotation>
<annotation cp="๐ง๐ฟ" type="tts">trollperson: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">heksemester | hudtype 1โ2 | trollmann</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">trollmann: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">heksemester | hudtype 3 | trollmann</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">trollmann: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">heksemester | hudtype 4 | trollmann</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">trollmann: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">heksemester | hudtype 5 | trollmann</annotation>
<annotation cp="๐ง๐พโโ" type="tts">trollmann: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">heksemester | hudtype 6 | trollmann</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">trollmann: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">heks | hudtype 1โ2 | trollkvinne</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">trollkvinne: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">heks | hudtype 3 | trollkvinne</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">trollkvinne: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">heks | hudtype 4 | trollkvinne</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">trollkvinne: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">heks | hudtype 5 | trollkvinne</annotation>
<annotation cp="๐ง๐พโโ" type="tts">trollkvinne: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">heks | hudtype 6 | trollkvinne</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">trollkvinne: hudtype 6</annotation>
<annotation cp="๐ง๐ป">fe | hudtype 1โ2 | Oberon | Puck | Titania</annotation>
<annotation cp="๐ง๐ป" type="tts">fe: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">fe | hudtype 3 | Oberon | Puck | Titania</annotation>
<annotation cp="๐ง๐ผ" type="tts">fe: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">fe | hudtype 4 | Oberon | Puck | Titania</annotation>
<annotation cp="๐ง๐ฝ" type="tts">fe: hudtype 4</annotation>
<annotation cp="๐ง๐พ">fe | hudtype 5 | Oberon | Puck | Titania</annotation>
<annotation cp="๐ง๐พ" type="tts">fe: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">fe | hudtype 6 | Oberon | Puck | Titania</annotation>
<annotation cp="๐ง๐ฟ" type="tts">fe: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">fe | hudtype 1โ2 | mannlig fe | Oberon | Puck</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mannlig fe: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">fe | hudtype 3 | mannlig fe | Oberon | Puck</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mannlig fe: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">fe | hudtype 4 | mannlig fe | Oberon | Puck</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mannlig fe: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">fe | hudtype 5 | mannlig fe | Oberon | Puck</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mannlig fe: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">fe | hudtype 6 | mannlig fe | Oberon | Puck</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mannlig fe: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">fe | hudtype 1โ2 | kvinnelig fe | Titania</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinnelig fe: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">fe | hudtype 3 | kvinnelig fe | Titania</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinnelig fe: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">fe | hudtype 4 | kvinnelig fe | Titania</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinnelig fe: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">fe | hudtype 5 | kvinnelig fe | Titania</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinnelig fe: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">fe | hudtype 6 | kvinnelig fe | Titania</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinnelig fe: hudtype 6</annotation>
<annotation cp="๐ง๐ป">Dracula | hudtype 1โ2 | vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ป" type="tts">vampyr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">Dracula | hudtype 3 | vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ผ" type="tts">vampyr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">Dracula | hudtype 4 | vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฝ" type="tts">vampyr: hudtype 4</annotation>
<annotation cp="๐ง๐พ">Dracula | hudtype 5 | vampyr | vandรธd</annotation>
<annotation cp="๐ง๐พ" type="tts">vampyr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">Dracula | hudtype 6 | vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฟ" type="tts">vampyr: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">Dracula | hudtype 1โ2 | mannlig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mannlig vampyr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">Dracula | hudtype 3 | mannlig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mannlig vampyr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">Dracula | hudtype 4 | mannlig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mannlig vampyr: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">Dracula | hudtype 5 | mannlig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mannlig vampyr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">Dracula | hudtype 6 | mannlig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mannlig vampyr: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kvinnelig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinnelig vampyr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kvinnelig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinnelig vampyr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kvinnelig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinnelig vampyr: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kvinnelig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinnelig vampyr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kvinnelig vampyr | vandรธd</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinnelig vampyr: hudtype 6</annotation>
<annotation cp="๐ง๐ป">havfrue | havkvinne | havmann | havperson | hudtype 1โ2</annotation>
<annotation cp="๐ง๐ป" type="tts">havperson: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">havfrue | havkvinne | havmann | havperson | hudtype 3</annotation>
<annotation cp="๐ง๐ผ" type="tts">havperson: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">havfrue | havkvinne | havmann | havperson | hudtype 4</annotation>
<annotation cp="๐ง๐ฝ" type="tts">havperson: hudtype 4</annotation>
<annotation cp="๐ง๐พ">havfrue | havkvinne | havmann | havperson | hudtype 5</annotation>
<annotation cp="๐ง๐พ" type="tts">havperson: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">havfrue | havkvinne | havmann | havperson | hudtype 6</annotation>
<annotation cp="๐ง๐ฟ" type="tts">havperson: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">havmann | hudtype 1โ2 | Triton</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">havmann: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">havmann | hudtype 3 | Triton</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">havmann: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">havmann | hudtype 4 | Triton</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">havmann: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">havmann | hudtype 5 | Triton</annotation>
<annotation cp="๐ง๐พโโ" type="tts">havmann: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">havmann | hudtype 6 | Triton</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">havmann: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">havfrue | havkvinne | hudtype 1โ2</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">havfrue: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">havfrue | havkvinne | hudtype 3</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">havfrue: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">havfrue | havkvinne | hudtype 4</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">havfrue: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">havfrue | havkvinne | hudtype 5</annotation>
<annotation cp="๐ง๐พโโ" type="tts">havfrue: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">havfrue | havkvinne | hudtype 6</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">havfrue: hudtype 6</annotation>
<annotation cp="๐ง๐ป">alv | hudtype 1โ2 | magi</annotation>
<annotation cp="๐ง๐ป" type="tts">alv: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">alv | hudtype 3 | magi</annotation>
<annotation cp="๐ง๐ผ" type="tts">alv: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">alv | hudtype 4 | magi</annotation>
<annotation cp="๐ง๐ฝ" type="tts">alv: hudtype 4</annotation>
<annotation cp="๐ง๐พ">alv | hudtype 5 | magi</annotation>
<annotation cp="๐ง๐พ" type="tts">alv: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">alv | hudtype 6 | magi</annotation>
<annotation cp="๐ง๐ฟ" type="tts">alv: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | magi | mannlig alv</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mannlig alv: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | magi | mannlig alv</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mannlig alv: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | magi | mannlig alv</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mannlig alv: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | magi | mannlig alv</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mannlig alv: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | magi | mannlig alv</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mannlig alv: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kvinnelig alv | magi</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinnelig alv: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kvinnelig alv | magi</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinnelig alv: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kvinnelig alv | magi</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinnelig alv: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kvinnelig alv | magi</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinnelig alv: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kvinnelig alv | magi</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinnelig alv: hudtype 6</annotation>
<annotation cp="๐๐ป">ansikt | ansiktsmassasje | hudtype 1โ2 | massasje | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ป" type="tts">ansiktsmassasje: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">ansikt | ansiktsmassasje | hudtype 3 | massasje | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ผ" type="tts">ansiktsmassasje: hudtype 3</annotation>
<annotation cp="๐๐ฝ">ansikt | ansiktsmassasje | hudtype 4 | massasje | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ฝ" type="tts">ansiktsmassasje: hudtype 4</annotation>
<annotation cp="๐๐พ">ansikt | ansiktsmassasje | hudtype 5 | massasje | skjรธnnhetssalong</annotation>
<annotation cp="๐๐พ" type="tts">ansiktsmassasje: hudtype 5</annotation>
<annotation cp="๐๐ฟ">ansikt | ansiktsmassasje | hudtype 6 | massasje | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ฟ" type="tts">ansiktsmassasje: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">ansikt | avslapning | hodemassasje | hudtype 1โ2 | mann | mann som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som fรฅr ansiktsmassasje: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">ansikt | avslapning | hodemassasje | hudtype 3 | mann | mann som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som fรฅr ansiktsmassasje: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">ansikt | avslapning | hodemassasje | hudtype 4 | mann | mann som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som fรฅr ansiktsmassasje: hudtype 4</annotation>
<annotation cp="๐๐พโโ">ansikt | avslapning | hodemassasje | hudtype 5 | mann | mann som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som fรฅr ansiktsmassasje: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">ansikt | avslapning | hodemassasje | hudtype 6 | mann | mann som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som fรฅr ansiktsmassasje: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">ansikt | avslapning | hodemassasje | hudtype 1โ2 | kvinne | kvinne som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som fรฅr ansiktsmassasje: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">ansikt | avslapning | hodemassasje | hudtype 3 | kvinne | kvinne som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som fรฅr ansiktsmassasje: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">ansikt | avslapning | hodemassasje | hudtype 4 | kvinne | kvinne som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som fรฅr ansiktsmassasje: hudtype 4</annotation>
<annotation cp="๐๐พโโ">ansikt | avslapning | hodemassasje | hudtype 5 | kvinne | kvinne som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som fรฅr ansiktsmassasje: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">ansikt | avslapning | hodemassasje | hudtype 6 | kvinne | kvinne som fรฅr ansiktsmassasje | massasje | velvรฆre</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som fรฅr ansiktsmassasje: hudtype 6</annotation>
<annotation cp="๐๐ป">frisรธr | hรฅrklipp | hudtype 1โ2 | salong | skjรธnnhet | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ป" type="tts">hรฅrklipp: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">frisรธr | hรฅrklipp | hudtype 3 | salong | skjรธnnhet | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ผ" type="tts">hรฅrklipp: hudtype 3</annotation>
<annotation cp="๐๐ฝ">frisรธr | hรฅrklipp | hudtype 4 | salong | skjรธnnhet | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ฝ" type="tts">hรฅrklipp: hudtype 4</annotation>
<annotation cp="๐๐พ">frisรธr | hรฅrklipp | hudtype 5 | salong | skjรธnnhet | skjรธnnhetssalong</annotation>
<annotation cp="๐๐พ" type="tts">hรฅrklipp: hudtype 5</annotation>
<annotation cp="๐๐ฟ">frisรธr | hรฅrklipp | hudtype 6 | salong | skjรธnnhet | skjรธnnhetssalong</annotation>
<annotation cp="๐๐ฟ" type="tts">hรฅrklipp: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">frisรธr | hรฅrklipp | hudtype 1โ2 | mann | mann som fรฅr hรฅrklipp | sveis</annotation>
<annotation cp="๐๐ปโโ" type="tts">mann som fรฅr hรฅrklipp: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">frisรธr | hรฅrklipp | hudtype 3 | mann | mann som fรฅr hรฅrklipp | sveis</annotation>
<annotation cp="๐๐ผโโ" type="tts">mann som fรฅr hรฅrklipp: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">frisรธr | hรฅrklipp | hudtype 4 | mann | mann som fรฅr hรฅrklipp | sveis</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mann som fรฅr hรฅrklipp: hudtype 4</annotation>
<annotation cp="๐๐พโโ">frisรธr | hรฅrklipp | hudtype 5 | mann | mann som fรฅr hรฅrklipp | sveis</annotation>
<annotation cp="๐๐พโโ" type="tts">mann som fรฅr hรฅrklipp: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">frisรธr | hรฅrklipp | hudtype 6 | mann | mann som fรฅr hรฅrklipp | sveis</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mann som fรฅr hรฅrklipp: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">frisรธr | frisyre | hรฅrklipp | hudtype 1โ2 | kvinne | kvinne som fรฅr hรฅrklipp</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinne som fรฅr hรฅrklipp: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">frisรธr | frisyre | hรฅrklipp | hudtype 3 | kvinne | kvinne som fรฅr hรฅrklipp</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinne som fรฅr hรฅrklipp: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">frisรธr | frisyre | hรฅrklipp | hudtype 4 | kvinne | kvinne som fรฅr hรฅrklipp</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinne som fรฅr hรฅrklipp: hudtype 4</annotation>
<annotation cp="๐๐พโโ">frisรธr | frisyre | hรฅrklipp | hudtype 5 | kvinne | kvinne som fรฅr hรฅrklipp</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinne som fรฅr hรฅrklipp: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">frisรธr | frisyre | hรฅrklipp | hudtype 6 | kvinne | kvinne som fรฅr hรฅrklipp</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinne som fรฅr hรฅrklipp: hudtype 6</annotation>
<annotation cp="๐ถ๐ป">fotgjenger | gรฅ | gรฅende | hudtype 1โ2</annotation>
<annotation cp="๐ถ๐ป" type="tts">fotgjenger: hudtype 1โ2</annotation>
<annotation cp="๐ถ๐ผ">fotgjenger | gรฅ | gรฅende | hudtype 3</annotation>
<annotation cp="๐ถ๐ผ" type="tts">fotgjenger: hudtype 3</annotation>
<annotation cp="๐ถ๐ฝ">fotgjenger | gรฅ | gรฅende | hudtype 4</annotation>
<annotation cp="๐ถ๐ฝ" type="tts">fotgjenger: hudtype 4</annotation>
<annotation cp="๐ถ๐พ">fotgjenger | gรฅ | gรฅende | hudtype 5</annotation>
<annotation cp="๐ถ๐พ" type="tts">fotgjenger: hudtype 5</annotation>
<annotation cp="๐ถ๐ฟ">fotgjenger | gรฅ | gรฅende | hudtype 6</annotation>
<annotation cp="๐ถ๐ฟ" type="tts">fotgjenger: hudtype 6</annotation>
<annotation cp="๐ถ๐ปโโ">fotgjenger | gรฅ | hudtype 1โ2 | mann | mannlig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ปโโ" type="tts">mannlig fotgjenger: hudtype 1โ2</annotation>
<annotation cp="๐ถ๐ผโโ">fotgjenger | gรฅ | hudtype 3 | mann | mannlig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ผโโ" type="tts">mannlig fotgjenger: hudtype 3</annotation>
<annotation cp="๐ถ๐ฝโโ">fotgjenger | gรฅ | hudtype 4 | mann | mannlig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ฝโโ" type="tts">mannlig fotgjenger: hudtype 4</annotation>
<annotation cp="๐ถ๐พโโ">fotgjenger | gรฅ | hudtype 5 | mann | mannlig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐พโโ" type="tts">mannlig fotgjenger: hudtype 5</annotation>
<annotation cp="๐ถ๐ฟโโ">fotgjenger | gรฅ | hudtype 6 | mann | mannlig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ฟโโ" type="tts">mannlig fotgjenger: hudtype 6</annotation>
<annotation cp="๐ถ๐ปโโ">fotgjenger | gรฅ | hudtype 1โ2 | kvinne | kvinnelig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ปโโ" type="tts">kvinnelig fotgjenger: hudtype 1โ2</annotation>
<annotation cp="๐ถ๐ผโโ">fotgjenger | gรฅ | hudtype 3 | kvinne | kvinnelig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ผโโ" type="tts">kvinnelig fotgjenger: hudtype 3</annotation>
<annotation cp="๐ถ๐ฝโโ">fotgjenger | gรฅ | hudtype 4 | kvinne | kvinnelig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ฝโโ" type="tts">kvinnelig fotgjenger: hudtype 4</annotation>
<annotation cp="๐ถ๐พโโ">fotgjenger | gรฅ | hudtype 5 | kvinne | kvinnelig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐พโโ" type="tts">kvinnelig fotgjenger: hudtype 5</annotation>
<annotation cp="๐ถ๐ฟโโ">fotgjenger | gรฅ | hudtype 6 | kvinne | kvinnelig fotgjenger | tur</annotation>
<annotation cp="๐ถ๐ฟโโ" type="tts">kvinnelig fotgjenger: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | person som stรฅr | stรฅ</annotation>
<annotation cp="๐ง๐ป" type="tts">person som stรฅr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | person som stรฅr | stรฅ</annotation>
<annotation cp="๐ง๐ผ" type="tts">person som stรฅr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | person som stรฅr | stรฅ</annotation>
<annotation cp="๐ง๐ฝ" type="tts">person som stรฅr: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | person som stรฅr | stรฅ</annotation>
<annotation cp="๐ง๐พ" type="tts">person som stรฅr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | person som stรฅr | stรฅ</annotation>
<annotation cp="๐ง๐ฟ" type="tts">person som stรฅr: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | mann | stรฅr</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mann som stรฅr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | mann | stรฅr</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mann som stรฅr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | mann | stรฅr</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mann som stรฅr: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | mann | stรฅr</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mann som stรฅr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | mann | stรฅr</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mann som stรฅr: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kvinne | stรฅr</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinne som stรฅr: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kvinne | stรฅr</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinne som stรฅr: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kvinne | stรฅr</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinne som stรฅr: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kvinne | stรฅr</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinne som stรฅr: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kvinne | stรฅr</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinne som stรฅr: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | knele | kneler | person som kneler</annotation>
<annotation cp="๐ง๐ป" type="tts">person som kneler: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | knele | kneler | person som kneler</annotation>
<annotation cp="๐ง๐ผ" type="tts">person som kneler: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | knele | kneler | person som kneler</annotation>
<annotation cp="๐ง๐ฝ" type="tts">person som kneler: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | knele | kneler | person som kneler</annotation>
<annotation cp="๐ง๐พ" type="tts">person som kneler: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | knele | kneler | person som kneler</annotation>
<annotation cp="๐ง๐ฟ" type="tts">person som kneler: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kneler | mann</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mann som kneler: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kneler | mann</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mann som kneler: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kneler | mann</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mann som kneler: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kneler | mann</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mann som kneler: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kneler | mann</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mann som kneler: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kneler | kvinne</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinne som kneler: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kneler | kvinne</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinne som kneler: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kneler | kvinne</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinne som kneler: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kneler | kvinne</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinne som kneler: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kneler | kvinne</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinne som kneler: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ฆฏ">blind | hudtype 1โ2 | tilgjengelighet</annotation>
<annotation cp="๐ง๐ปโ๐ฆฏ" type="tts">person med blindestokk: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ฆฏ">blind | hudtype 3 | tilgjengelighet</annotation>
<annotation cp="๐ง๐ผโ๐ฆฏ" type="tts">person med blindestokk: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฏ">blind | hudtype 4 | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฏ" type="tts">person med blindestokk: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ฆฏ">blind | hudtype 5 | tilgjengelighet</annotation>
<annotation cp="๐ง๐พโ๐ฆฏ" type="tts">person med blindestokk: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฏ">blind | hudtype 6 | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฏ" type="tts">person med blindestokk: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ฆฏ">blind | hudtype 1โ2 | mann | mann med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐จ๐ปโ๐ฆฏ" type="tts">mann med blindestokk: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ฆฏ">blind | hudtype 3 | mann | mann med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐จ๐ผโ๐ฆฏ" type="tts">mann med blindestokk: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฏ">blind | hudtype 4 | mann | mann med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฏ" type="tts">mann med blindestokk: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ฆฏ">blind | hudtype 5 | mann | mann med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐จ๐พโ๐ฆฏ" type="tts">mann med blindestokk: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฏ">blind | hudtype 6 | mann | mann med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฏ" type="tts">mann med blindestokk: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฏ">blind | hudtype 1โ2 | kvinne | kvinne med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฏ" type="tts">kvinne med blindestokk: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฏ">blind | hudtype 3 | kvinne | kvinne med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฏ" type="tts">kvinne med blindestokk: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฏ">blind | hudtype 4 | kvinne | kvinne med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฏ" type="tts">kvinne med blindestokk: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฏ">blind | hudtype 5 | kvinne | kvinne med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฏ" type="tts">kvinne med blindestokk: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฏ">blind | hudtype 6 | kvinne | kvinne med blindestokk | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฏ" type="tts">kvinne med blindestokk: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ฆผ">hudtype 1โ2 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ปโ๐ฆผ" type="tts">person i motorisert rullestol: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ฆผ">hudtype 3 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ผโ๐ฆผ" type="tts">person i motorisert rullestol: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ฆผ">hudtype 4 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฝโ๐ฆผ" type="tts">person i motorisert rullestol: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ฆผ">hudtype 5 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐พโ๐ฆผ" type="tts">person i motorisert rullestol: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ฆผ">hudtype 6 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฟโ๐ฆผ" type="tts">person i motorisert rullestol: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ฆผ">hudtype 1โ2 | mann | mann i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ปโ๐ฆผ" type="tts">mann i motorisert rullestol: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ฆผ">hudtype 3 | mann | mann i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ผโ๐ฆผ" type="tts">mann i motorisert rullestol: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ฆผ">hudtype 4 | mann | mann i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฝโ๐ฆผ" type="tts">mann i motorisert rullestol: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ฆผ">hudtype 5 | mann | mann i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐พโ๐ฆผ" type="tts">mann i motorisert rullestol: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ฆผ">hudtype 6 | mann | mann i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฟโ๐ฆผ" type="tts">mann i motorisert rullestol: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆผ">hudtype 1โ2 | kvinne | kvinne i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆผ" type="tts">kvinne i motorisert rullestol: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆผ">hudtype 3 | kvinne | kvinne i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆผ" type="tts">kvinne i motorisert rullestol: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆผ">hudtype 4 | kvinne | kvinne i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆผ" type="tts">kvinne i motorisert rullestol: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ฆผ">hudtype 5 | kvinne | kvinne i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐พโ๐ฆผ" type="tts">kvinne i motorisert rullestol: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆผ">hudtype 6 | kvinne | kvinne i motorisert rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆผ" type="tts">kvinne i motorisert rullestol: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐ฆฝ">hudtype 1โ2 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ปโ๐ฆฝ" type="tts">person i manuell rullestol: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐ฆฝ">hudtype 3 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ผโ๐ฆฝ" type="tts">person i manuell rullestol: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฝ">hudtype 4 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฝโ๐ฆฝ" type="tts">person i manuell rullestol: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐ฆฝ">hudtype 5 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐พโ๐ฆฝ" type="tts">person i manuell rullestol: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฝ">hudtype 6 | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ง๐ฟโ๐ฆฝ" type="tts">person i manuell rullestol: hudtype 6</annotation>
<annotation cp="๐จ๐ปโ๐ฆฝ">hudtype 1โ2 | mann | mann i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ปโ๐ฆฝ" type="tts">mann i manuell rullestol: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐ฆฝ">hudtype 3 | mann | mann i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ผโ๐ฆฝ" type="tts">mann i manuell rullestol: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฝ">hudtype 4 | mann | mann i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฝโ๐ฆฝ" type="tts">mann i manuell rullestol: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐ฆฝ">hudtype 5 | mann | mann i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐พโ๐ฆฝ" type="tts">mann i manuell rullestol: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฝ">hudtype 6 | mann | mann i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐จ๐ฟโ๐ฆฝ" type="tts">mann i manuell rullestol: hudtype 6</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฝ">hudtype 1โ2 | kvinne | kvinne i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ปโ๐ฆฝ" type="tts">kvinne i manuell rullestol: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฝ">hudtype 3 | kvinne | kvinne i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ผโ๐ฆฝ" type="tts">kvinne i manuell rullestol: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฝ">hudtype 4 | kvinne | kvinne i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฝโ๐ฆฝ" type="tts">kvinne i manuell rullestol: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฝ">hudtype 5 | kvinne | kvinne i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐พโ๐ฆฝ" type="tts">kvinne i manuell rullestol: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฝ">hudtype 6 | kvinne | kvinne i manuell rullestol | rullestol | tilgjengelighet</annotation>
<annotation cp="๐ฉ๐ฟโ๐ฆฝ" type="tts">kvinne i manuell rullestol: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | jogger | jogging | lรธper | lรธping | maraton | sport</annotation>
<annotation cp="๐๐ป" type="tts">lรธper: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | jogger | jogging | lรธper | lรธping | maraton | sport</annotation>
<annotation cp="๐๐ผ" type="tts">lรธper: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | jogger | jogging | lรธper | lรธping | maraton | sport</annotation>
<annotation cp="๐๐ฝ" type="tts">lรธper: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | jogger | jogging | lรธper | lรธping | maraton | sport</annotation>
<annotation cp="๐๐พ" type="tts">lรธper: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | jogger | jogging | lรธper | lรธping | maraton | sport</annotation>
<annotation cp="๐๐ฟ" type="tts">lรธper: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | jogge | lรธpe | mann | maraton</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig lรธper: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | jogge | lรธpe | mann | maraton</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig lรธper: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | jogge | lรธpe | mann | maraton</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig lรธper: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | jogge | lรธpe | mann | maraton</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig lรธper: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | jogge | lรธpe | mann | maraton</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig lรธper: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | jogge | kvinne | lรธpe | maraton</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig lรธper: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | jogge | kvinne | lรธpe | maraton</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig lรธper: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | jogge | kvinne | lรธpe | maraton</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig lรธper: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | jogge | kvinne | lรธpe | maraton</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig lรธper: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | jogge | kvinne | lรธpe | maraton</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig lรธper: hudtype 6</annotation>
<annotation cp="๐๐ป">dans | dansende kvinne | hudtype 1โ2 | kvinne</annotation>
<annotation cp="๐๐ป" type="tts">dansende kvinne: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">dans | dansende kvinne | hudtype 3 | kvinne</annotation>
<annotation cp="๐๐ผ" type="tts">dansende kvinne: hudtype 3</annotation>
<annotation cp="๐๐ฝ">dans | dansende kvinne | hudtype 4 | kvinne</annotation>
<annotation cp="๐๐ฝ" type="tts">dansende kvinne: hudtype 4</annotation>
<annotation cp="๐๐พ">dans | dansende kvinne | hudtype 5 | kvinne</annotation>
<annotation cp="๐๐พ" type="tts">dansende kvinne: hudtype 5</annotation>
<annotation cp="๐๐ฟ">dans | dansende kvinne | hudtype 6 | kvinne</annotation>
<annotation cp="๐๐ฟ" type="tts">dansende kvinne: hudtype 6</annotation>
<annotation cp="๐บ๐ป">dans | dansende mann | hudtype 1โ2 | mann</annotation>
<annotation cp="๐บ๐ป" type="tts">dansende mann: hudtype 1โ2</annotation>
<annotation cp="๐บ๐ผ">dans | dansende mann | hudtype 3 | mann</annotation>
<annotation cp="๐บ๐ผ" type="tts">dansende mann: hudtype 3</annotation>
<annotation cp="๐บ๐ฝ">dans | dansende mann | hudtype 4 | mann</annotation>
<annotation cp="๐บ๐ฝ" type="tts">dansende mann: hudtype 4</annotation>
<annotation cp="๐บ๐พ">dans | dansende mann | hudtype 5 | mann</annotation>
<annotation cp="๐บ๐พ" type="tts">dansende mann: hudtype 5</annotation>
<annotation cp="๐บ๐ฟ">dans | dansende mann | hudtype 6 | mann</annotation>
<annotation cp="๐บ๐ฟ" type="tts">dansende mann: hudtype 6</annotation>
<annotation cp="๐ด๐ป">business | dress | forretningsmann | hudtype 1โ2 | mann | svevende mann i dress</annotation>
<annotation cp="๐ด๐ป" type="tts">svevende mann i dress: hudtype 1โ2</annotation>
<annotation cp="๐ด๐ผ">business | dress | forretningsmann | hudtype 3 | mann | svevende mann i dress</annotation>
<annotation cp="๐ด๐ผ" type="tts">svevende mann i dress: hudtype 3</annotation>
<annotation cp="๐ด๐ฝ">business | dress | forretningsmann | hudtype 4 | mann | svevende mann i dress</annotation>
<annotation cp="๐ด๐ฝ" type="tts">svevende mann i dress: hudtype 4</annotation>
<annotation cp="๐ด๐พ">business | dress | forretningsmann | hudtype 5 | mann | svevende mann i dress</annotation>
<annotation cp="๐ด๐พ" type="tts">svevende mann i dress: hudtype 5</annotation>
<annotation cp="๐ด๐ฟ">business | dress | forretningsmann | hudtype 6 | mann | svevende mann i dress</annotation>
<annotation cp="๐ด๐ฟ" type="tts">svevende mann i dress: hudtype 6</annotation>
<annotation cp="๐ง๐ป">dampbad | hudtype 1โ2 | person i badstu | sauna</annotation>
<annotation cp="๐ง๐ป" type="tts">person i badstu: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">dampbad | hudtype 3 | person i badstu | sauna</annotation>
<annotation cp="๐ง๐ผ" type="tts">person i badstu: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">dampbad | hudtype 4 | person i badstu | sauna</annotation>
<annotation cp="๐ง๐ฝ" type="tts">person i badstu: hudtype 4</annotation>
<annotation cp="๐ง๐พ">dampbad | hudtype 5 | person i badstu | sauna</annotation>
<annotation cp="๐ง๐พ" type="tts">person i badstu: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">dampbad | hudtype 6 | person i badstu | sauna</annotation>
<annotation cp="๐ง๐ฟ" type="tts">person i badstu: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">dampbad | hudtype 1โ2 | mann i badstu | sauna</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mann i badstu: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">dampbad | hudtype 3 | mann i badstu | sauna</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mann i badstu: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">dampbad | hudtype 4 | mann i badstu | sauna</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mann i badstu: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">dampbad | hudtype 5 | mann i badstu | sauna</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mann i badstu: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">dampbad | hudtype 6 | mann i badstu | sauna</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mann i badstu: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">dampbad | hudtype 1โ2 | kvinne i badstu | sauna</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinne i badstu: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">dampbad | hudtype 3 | kvinne i badstu | sauna</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinne i badstu: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">dampbad | hudtype 4 | kvinne i badstu | sauna</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinne i badstu: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">dampbad | hudtype 5 | kvinne i badstu | sauna</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinne i badstu: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">dampbad | hudtype 6 | kvinne i badstu | sauna</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinne i badstu: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | klatrer | klatring</annotation>
<annotation cp="๐ง๐ป" type="tts">klatrer: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | klatrer | klatring</annotation>
<annotation cp="๐ง๐ผ" type="tts">klatrer: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | klatrer | klatring</annotation>
<annotation cp="๐ง๐ฝ" type="tts">klatrer: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | klatrer | klatring</annotation>
<annotation cp="๐ง๐พ" type="tts">klatrer: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | klatrer | klatring</annotation>
<annotation cp="๐ง๐ฟ" type="tts">klatrer: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | klatring | mannlig klatrer</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mannlig klatrer: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | klatring | mannlig klatrer</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mannlig klatrer: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | klatring | mannlig klatrer</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mannlig klatrer: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | klatring | mannlig klatrer</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mannlig klatrer: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | klatring | mannlig klatrer</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mannlig klatrer: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | klatring | kvinnelig klatrer</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinnelig klatrer: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | klatring | kvinnelig klatrer</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinnelig klatrer: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | klatring | kvinnelig klatrer</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinnelig klatrer: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | klatring | kvinnelig klatrer</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinnelig klatrer: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | klatring | kvinnelig klatrer</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinnelig klatrer: hudtype 6</annotation>
<annotation cp="๐๐ป">galopp | hest | hesteveddelรธp | hudtype 1โ2 | jockey | lรธp | sport | veddelรธpshest</annotation>
<annotation cp="๐๐ป" type="tts">hesteveddelรธp: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">galopp | hest | hesteveddelรธp | hudtype 3 | jockey | lรธp | sport | veddelรธpshest</annotation>
<annotation cp="๐๐ผ" type="tts">hesteveddelรธp: hudtype 3</annotation>
<annotation cp="๐๐ฝ">galopp | hest | hesteveddelรธp | hudtype 4 | jockey | lรธp | sport | veddelรธpshest</annotation>
<annotation cp="๐๐ฝ" type="tts">hesteveddelรธp: hudtype 4</annotation>
<annotation cp="๐๐พ">galopp | hest | hesteveddelรธp | hudtype 5 | jockey | lรธp | sport | veddelรธpshest</annotation>
<annotation cp="๐๐พ" type="tts">hesteveddelรธp: hudtype 5</annotation>
<annotation cp="๐๐ฟ">galopp | hest | hesteveddelรธp | hudtype 6 | jockey | lรธp | sport | veddelรธpshest</annotation>
<annotation cp="๐๐ฟ" type="tts">hesteveddelรธp: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | snรธbrett | snรธbrettkjรธring | snowboard | snowboarder | snowboarding | vintersport</annotation>
<annotation cp="๐๐ป" type="tts">snowboarder: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | snรธbrett | snรธbrettkjรธring | snowboard | snowboarder | snowboarding | vintersport</annotation>
<annotation cp="๐๐ผ" type="tts">snowboarder: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | snรธbrett | snรธbrettkjรธring | snowboard | snowboarder | snowboarding | vintersport</annotation>
<annotation cp="๐๐ฝ" type="tts">snowboarder: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | snรธbrett | snรธbrettkjรธring | snowboard | snowboarder | snowboarding | vintersport</annotation>
<annotation cp="๐๐พ" type="tts">snowboarder: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | snรธbrett | snรธbrettkjรธring | snowboard | snowboarder | snowboarding | vintersport</annotation>
<annotation cp="๐๐ฟ" type="tts">snowboarder: hudtype 6</annotation>
<annotation cp="๐๐ป">ball | golf | golfspiller | hudtype 1โ2</annotation>
<annotation cp="๐๐ป" type="tts">golfspiller: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">ball | golf | golfspiller | hudtype 3</annotation>
<annotation cp="๐๐ผ" type="tts">golfspiller: hudtype 3</annotation>
<annotation cp="๐๐ฝ">ball | golf | golfspiller | hudtype 4</annotation>
<annotation cp="๐๐ฝ" type="tts">golfspiller: hudtype 4</annotation>
<annotation cp="๐๐พ">ball | golf | golfspiller | hudtype 5</annotation>
<annotation cp="๐๐พ" type="tts">golfspiller: hudtype 5</annotation>
<annotation cp="๐๐ฟ">ball | golf | golfspiller | hudtype 6</annotation>
<annotation cp="๐๐ฟ" type="tts">golfspiller: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">golf | golfspiller | hudtype 1โ2 | mann | mannlig golfspiller</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig golfspiller: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">golf | golfspiller | hudtype 3 | mann | mannlig golfspiller</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig golfspiller: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">golf | golfspiller | hudtype 4 | mann | mannlig golfspiller</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig golfspiller: hudtype 4</annotation>
<annotation cp="๐๐พโโ">golf | golfspiller | hudtype 5 | mann | mannlig golfspiller</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig golfspiller: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">golf | golfspiller | hudtype 6 | mann | mannlig golfspiller</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig golfspiller: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">golf | golfspiller | hudtype 1โ2 | kvinne | kvinnelig golfspiller</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig golfspiller: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">golf | golfspiller | hudtype 3 | kvinne | kvinnelig golfspiller</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig golfspiller: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">golf | golfspiller | hudtype 4 | kvinne | kvinnelig golfspiller</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig golfspiller: hudtype 4</annotation>
<annotation cp="๐๐พโโ">golf | golfspiller | hudtype 5 | kvinne | kvinnelig golfspiller</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig golfspiller: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">golf | golfspiller | hudtype 6 | kvinne | kvinnelig golfspiller</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig golfspiller: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | sport | surfer | surfing</annotation>
<annotation cp="๐๐ป" type="tts">surfer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | sport | surfer | surfing</annotation>
<annotation cp="๐๐ผ" type="tts">surfer: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | sport | surfer | surfing</annotation>
<annotation cp="๐๐ฝ" type="tts">surfer: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | sport | surfer | surfing</annotation>
<annotation cp="๐๐พ" type="tts">surfer: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | sport | surfer | surfing</annotation>
<annotation cp="๐๐ฟ" type="tts">surfer: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | mann | mannlig surfer | surfing</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig surfer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | mann | mannlig surfer | surfing</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig surfer: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | mann | mannlig surfer | surfing</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig surfer: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | mann | mannlig surfer | surfing</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig surfer: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | mann | mannlig surfer | surfing</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig surfer: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | kvinne | kvinnelig surfer | surfing</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig surfer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | kvinne | kvinnelig surfer | surfing</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig surfer: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | kvinne | kvinnelig surfer | surfing</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig surfer: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | kvinne | kvinnelig surfer | surfing</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig surfer: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | kvinne | kvinnelig surfer | surfing</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig surfer: hudtype 6</annotation>
<annotation cp="๐ฃ๐ป">bรฅt | fartรธy | hudtype 1โ2 | person i robรฅt</annotation>
<annotation cp="๐ฃ๐ป" type="tts">person i robรฅt: hudtype 1โ2</annotation>
<annotation cp="๐ฃ๐ผ">bรฅt | fartรธy | hudtype 3 | person i robรฅt</annotation>
<annotation cp="๐ฃ๐ผ" type="tts">person i robรฅt: hudtype 3</annotation>
<annotation cp="๐ฃ๐ฝ">bรฅt | fartรธy | hudtype 4 | person i robรฅt</annotation>
<annotation cp="๐ฃ๐ฝ" type="tts">person i robรฅt: hudtype 4</annotation>
<annotation cp="๐ฃ๐พ">bรฅt | fartรธy | hudtype 5 | person i robรฅt</annotation>
<annotation cp="๐ฃ๐พ" type="tts">person i robรฅt: hudtype 5</annotation>
<annotation cp="๐ฃ๐ฟ">bรฅt | fartรธy | hudtype 6 | person i robรฅt</annotation>
<annotation cp="๐ฃ๐ฟ" type="tts">person i robรฅt: hudtype 6</annotation>
<annotation cp="๐ฃ๐ปโโ">bรฅt | hudtype 1โ2 | mann | mann i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ปโโ" type="tts">mann i robรฅt: hudtype 1โ2</annotation>
<annotation cp="๐ฃ๐ผโโ">bรฅt | hudtype 3 | mann | mann i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ผโโ" type="tts">mann i robรฅt: hudtype 3</annotation>
<annotation cp="๐ฃ๐ฝโโ">bรฅt | hudtype 4 | mann | mann i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ฝโโ" type="tts">mann i robรฅt: hudtype 4</annotation>
<annotation cp="๐ฃ๐พโโ">bรฅt | hudtype 5 | mann | mann i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐พโโ" type="tts">mann i robรฅt: hudtype 5</annotation>
<annotation cp="๐ฃ๐ฟโโ">bรฅt | hudtype 6 | mann | mann i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ฟโโ" type="tts">mann i robรฅt: hudtype 6</annotation>
<annotation cp="๐ฃ๐ปโโ">bรฅt | hudtype 1โ2 | kvinne | kvinne i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ปโโ" type="tts">kvinne i robรฅt: hudtype 1โ2</annotation>
<annotation cp="๐ฃ๐ผโโ">bรฅt | hudtype 3 | kvinne | kvinne i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ผโโ" type="tts">kvinne i robรฅt: hudtype 3</annotation>
<annotation cp="๐ฃ๐ฝโโ">bรฅt | hudtype 4 | kvinne | kvinne i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ฝโโ" type="tts">kvinne i robรฅt: hudtype 4</annotation>
<annotation cp="๐ฃ๐พโโ">bรฅt | hudtype 5 | kvinne | kvinne i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐พโโ" type="tts">kvinne i robรฅt: hudtype 5</annotation>
<annotation cp="๐ฃ๐ฟโโ">bรฅt | hudtype 6 | kvinne | kvinne i robรฅt | ro | robรฅt</annotation>
<annotation cp="๐ฃ๐ฟโโ" type="tts">kvinne i robรฅt: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | sport | svรธmme | svรธmmer | svรธmming</annotation>
<annotation cp="๐๐ป" type="tts">svรธmmer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | sport | svรธmme | svรธmmer | svรธmming</annotation>
<annotation cp="๐๐ผ" type="tts">svรธmmer: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | sport | svรธmme | svรธmmer | svรธmming</annotation>
<annotation cp="๐๐ฝ" type="tts">svรธmmer: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | sport | svรธmme | svรธmmer | svรธmming</annotation>
<annotation cp="๐๐พ" type="tts">svรธmmer: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | sport | svรธmme | svรธmmer | svรธmming</annotation>
<annotation cp="๐๐ฟ" type="tts">svรธmmer: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | mann | mannlig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig svรธmmer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | mann | mannlig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig svรธmmer: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | mann | mannlig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig svรธmmer: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | mann | mannlig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig svรธmmer: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | mann | mannlig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig svรธmmer: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">hudtype 1โ2 | kvinne | kvinnelig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig svรธmmer: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">hudtype 3 | kvinne | kvinnelig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig svรธmmer: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">hudtype 4 | kvinne | kvinnelig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig svรธmmer: hudtype 4</annotation>
<annotation cp="๐๐พโโ">hudtype 5 | kvinne | kvinnelig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig svรธmmer: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">hudtype 6 | kvinne | kvinnelig svรธmmer | svรธmme | svรธmming</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig svรธmmer: hudtype 6</annotation>
<annotation cp="โน๐ป">ball | ballsport | hudtype 1โ2 | person med ball</annotation>
<annotation cp="โน๐ป" type="tts">person med ball: hudtype 1โ2</annotation>
<annotation cp="โน๐ผ">ball | ballsport | hudtype 3 | person med ball</annotation>
<annotation cp="โน๐ผ" type="tts">person med ball: hudtype 3</annotation>
<annotation cp="โน๐ฝ">ball | ballsport | hudtype 4 | person med ball</annotation>
<annotation cp="โน๐ฝ" type="tts">person med ball: hudtype 4</annotation>
<annotation cp="โน๐พ">ball | ballsport | hudtype 5 | person med ball</annotation>
<annotation cp="โน๐พ" type="tts">person med ball: hudtype 5</annotation>
<annotation cp="โน๐ฟ">ball | ballsport | hudtype 6 | person med ball</annotation>
<annotation cp="โน๐ฟ" type="tts">person med ball: hudtype 6</annotation>
<annotation cp="โน๐ปโโ">ballsport | hudtype 1โ2 | mann | mann med ball</annotation>
<annotation cp="โน๐ปโโ" type="tts">mann med ball: hudtype 1โ2</annotation>
<annotation cp="โน๐ผโโ">ballsport | hudtype 3 | mann | mann med ball</annotation>
<annotation cp="โน๐ผโโ" type="tts">mann med ball: hudtype 3</annotation>
<annotation cp="โน๐ฝโโ">ballsport | hudtype 4 | mann | mann med ball</annotation>
<annotation cp="โน๐ฝโโ" type="tts">mann med ball: hudtype 4</annotation>
<annotation cp="โน๐พโโ">ballsport | hudtype 5 | mann | mann med ball</annotation>
<annotation cp="โน๐พโโ" type="tts">mann med ball: hudtype 5</annotation>
<annotation cp="โน๐ฟโโ">ballsport | hudtype 6 | mann | mann med ball</annotation>
<annotation cp="โน๐ฟโโ" type="tts">mann med ball: hudtype 6</annotation>
<annotation cp="โน๐ปโโ">ballsport | hudtype 1โ2 | kvinne | kvinne med ball</annotation>
<annotation cp="โน๐ปโโ" type="tts">kvinne med ball: hudtype 1โ2</annotation>
<annotation cp="โน๐ผโโ">ballsport | hudtype 3 | kvinne | kvinne med ball</annotation>
<annotation cp="โน๐ผโโ" type="tts">kvinne med ball: hudtype 3</annotation>
<annotation cp="โน๐ฝโโ">ballsport | hudtype 4 | kvinne | kvinne med ball</annotation>
<annotation cp="โน๐ฝโโ" type="tts">kvinne med ball: hudtype 4</annotation>
<annotation cp="โน๐พโโ">ballsport | hudtype 5 | kvinne | kvinne med ball</annotation>
<annotation cp="โน๐พโโ" type="tts">kvinne med ball: hudtype 5</annotation>
<annotation cp="โน๐ฟโโ">ballsport | hudtype 6 | kvinne | kvinne med ball</annotation>
<annotation cp="โน๐ฟโโ" type="tts">kvinne med ball: hudtype 6</annotation>
<annotation cp="๐๐ป">hudtype 1โ2 | lรธfter | vekt | vektlรธfter</annotation>
<annotation cp="๐๐ป" type="tts">vektlรธfter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hudtype 3 | lรธfter | vekt | vektlรธfter</annotation>
<annotation cp="๐๐ผ" type="tts">vektlรธfter: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hudtype 4 | lรธfter | vekt | vektlรธfter</annotation>
<annotation cp="๐๐ฝ" type="tts">vektlรธfter: hudtype 4</annotation>
<annotation cp="๐๐พ">hudtype 5 | lรธfter | vekt | vektlรธfter</annotation>
<annotation cp="๐๐พ" type="tts">vektlรธfter: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hudtype 6 | lรธfter | vekt | vektlรธfter</annotation>
<annotation cp="๐๐ฟ" type="tts">vektlรธfter: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">bodybuilding | hudtype 1โ2 | mann | mannlig vektlรธfter | vektlรธfter</annotation>
<annotation cp="๐๐ปโโ" type="tts">mannlig vektlรธfter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">bodybuilding | hudtype 3 | mann | mannlig vektlรธfter | vektlรธfter</annotation>
<annotation cp="๐๐ผโโ" type="tts">mannlig vektlรธfter: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">bodybuilding | hudtype 4 | mann | mannlig vektlรธfter | vektlรธfter</annotation>
<annotation cp="๐๐ฝโโ" type="tts">mannlig vektlรธfter: hudtype 4</annotation>
<annotation cp="๐๐พโโ">bodybuilding | hudtype 5 | mann | mannlig vektlรธfter | vektlรธfter</annotation>
<annotation cp="๐๐พโโ" type="tts">mannlig vektlรธfter: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">bodybuilding | hudtype 6 | mann | mannlig vektlรธfter | vektlรธfter</annotation>
<annotation cp="๐๐ฟโโ" type="tts">mannlig vektlรธfter: hudtype 6</annotation>
<annotation cp="๐๐ปโโ">bodybuilding | hudtype 1โ2 | kvinne | kvinnelig vektlรธfter | vektlรธfting</annotation>
<annotation cp="๐๐ปโโ" type="tts">kvinnelig vektlรธfter: hudtype 1โ2</annotation>
<annotation cp="๐๐ผโโ">bodybuilding | hudtype 3 | kvinne | kvinnelig vektlรธfter | vektlรธfting</annotation>
<annotation cp="๐๐ผโโ" type="tts">kvinnelig vektlรธfter: hudtype 3</annotation>
<annotation cp="๐๐ฝโโ">bodybuilding | hudtype 4 | kvinne | kvinnelig vektlรธfter | vektlรธfting</annotation>
<annotation cp="๐๐ฝโโ" type="tts">kvinnelig vektlรธfter: hudtype 4</annotation>
<annotation cp="๐๐พโโ">bodybuilding | hudtype 5 | kvinne | kvinnelig vektlรธfter | vektlรธfting</annotation>
<annotation cp="๐๐พโโ" type="tts">kvinnelig vektlรธfter: hudtype 5</annotation>
<annotation cp="๐๐ฟโโ">bodybuilding | hudtype 6 | kvinne | kvinnelig vektlรธfter | vektlรธfting</annotation>
<annotation cp="๐๐ฟโโ" type="tts">kvinnelig vektlรธfter: hudtype 6</annotation>
<annotation cp="๐ด๐ป">hudtype 1โ2 | sykkel | sykle | syklist</annotation>
<annotation cp="๐ด๐ป" type="tts">syklist: hudtype 1โ2</annotation>
<annotation cp="๐ด๐ผ">hudtype 3 | sykkel | sykle | syklist</annotation>
<annotation cp="๐ด๐ผ" type="tts">syklist: hudtype 3</annotation>
<annotation cp="๐ด๐ฝ">hudtype 4 | sykkel | sykle | syklist</annotation>
<annotation cp="๐ด๐ฝ" type="tts">syklist: hudtype 4</annotation>
<annotation cp="๐ด๐พ">hudtype 5 | sykkel | sykle | syklist</annotation>
<annotation cp="๐ด๐พ" type="tts">syklist: hudtype 5</annotation>
<annotation cp="๐ด๐ฟ">hudtype 6 | sykkel | sykle | syklist</annotation>
<annotation cp="๐ด๐ฟ" type="tts">syklist: hudtype 6</annotation>
<annotation cp="๐ด๐ปโโ">hudtype 1โ2 | mann | mannlig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ปโโ" type="tts">mannlig syklist: hudtype 1โ2</annotation>
<annotation cp="๐ด๐ผโโ">hudtype 3 | mann | mannlig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ผโโ" type="tts">mannlig syklist: hudtype 3</annotation>
<annotation cp="๐ด๐ฝโโ">hudtype 4 | mann | mannlig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ฝโโ" type="tts">mannlig syklist: hudtype 4</annotation>
<annotation cp="๐ด๐พโโ">hudtype 5 | mann | mannlig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐พโโ" type="tts">mannlig syklist: hudtype 5</annotation>
<annotation cp="๐ด๐ฟโโ">hudtype 6 | mann | mannlig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ฟโโ" type="tts">mannlig syklist: hudtype 6</annotation>
<annotation cp="๐ด๐ปโโ">hudtype 1โ2 | kvinne | kvinnelig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ปโโ" type="tts">kvinnelig syklist: hudtype 1โ2</annotation>
<annotation cp="๐ด๐ผโโ">hudtype 3 | kvinne | kvinnelig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ผโโ" type="tts">kvinnelig syklist: hudtype 3</annotation>
<annotation cp="๐ด๐ฝโโ">hudtype 4 | kvinne | kvinnelig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ฝโโ" type="tts">kvinnelig syklist: hudtype 4</annotation>
<annotation cp="๐ด๐พโโ">hudtype 5 | kvinne | kvinnelig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐พโโ" type="tts">kvinnelig syklist: hudtype 5</annotation>
<annotation cp="๐ด๐ฟโโ">hudtype 6 | kvinne | kvinnelig syklist | sykkel | sykle</annotation>
<annotation cp="๐ด๐ฟโโ" type="tts">kvinnelig syklist: hudtype 6</annotation>
<annotation cp="๐ต๐ป">hudtype 1โ2 | mountainbike | sykkel | terrengsykkel | terrengsyklist</annotation>
<annotation cp="๐ต๐ป" type="tts">terrengsyklist: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผ">hudtype 3 | mountainbike | sykkel | terrengsykkel | terrengsyklist</annotation>
<annotation cp="๐ต๐ผ" type="tts">terrengsyklist: hudtype 3</annotation>
<annotation cp="๐ต๐ฝ">hudtype 4 | mountainbike | sykkel | terrengsykkel | terrengsyklist</annotation>
<annotation cp="๐ต๐ฝ" type="tts">terrengsyklist: hudtype 4</annotation>
<annotation cp="๐ต๐พ">hudtype 5 | mountainbike | sykkel | terrengsykkel | terrengsyklist</annotation>
<annotation cp="๐ต๐พ" type="tts">terrengsyklist: hudtype 5</annotation>
<annotation cp="๐ต๐ฟ">hudtype 6 | mountainbike | sykkel | terrengsykkel | terrengsyklist</annotation>
<annotation cp="๐ต๐ฟ" type="tts">terrengsyklist: hudtype 6</annotation>
<annotation cp="๐ต๐ปโโ">hudtype 1โ2 | mann | mann pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ปโโ" type="tts">mann pรฅ terrengsykkel: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผโโ">hudtype 3 | mann | mann pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ผโโ" type="tts">mann pรฅ terrengsykkel: hudtype 3</annotation>
<annotation cp="๐ต๐ฝโโ">hudtype 4 | mann | mann pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ฝโโ" type="tts">mann pรฅ terrengsykkel: hudtype 4</annotation>
<annotation cp="๐ต๐พโโ">hudtype 5 | mann | mann pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐พโโ" type="tts">mann pรฅ terrengsykkel: hudtype 5</annotation>
<annotation cp="๐ต๐ฟโโ">hudtype 6 | mann | mann pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ฟโโ" type="tts">mann pรฅ terrengsykkel: hudtype 6</annotation>
<annotation cp="๐ต๐ปโโ">hudtype 1โ2 | kvinne | kvinne pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ปโโ" type="tts">kvinne pรฅ terrengsykkel: hudtype 1โ2</annotation>
<annotation cp="๐ต๐ผโโ">hudtype 3 | kvinne | kvinne pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ผโโ" type="tts">kvinne pรฅ terrengsykkel: hudtype 3</annotation>
<annotation cp="๐ต๐ฝโโ">hudtype 4 | kvinne | kvinne pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ฝโโ" type="tts">kvinne pรฅ terrengsykkel: hudtype 4</annotation>
<annotation cp="๐ต๐พโโ">hudtype 5 | kvinne | kvinne pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐พโโ" type="tts">kvinne pรฅ terrengsykkel: hudtype 5</annotation>
<annotation cp="๐ต๐ฟโโ">hudtype 6 | kvinne | kvinne pรฅ terrengsykkel | mountainbike | sykkel | terrengsykkel</annotation>
<annotation cp="๐ต๐ฟโโ" type="tts">kvinne pรฅ terrengsykkel: hudtype 6</annotation>
<annotation cp="๐คธ๐ป">gym | gymnastikk | hudtype 1โ2 | person | slรฅ hjul | sport</annotation>
<annotation cp="๐คธ๐ป" type="tts">slรฅ hjul: hudtype 1โ2</annotation>
<annotation cp="๐คธ๐ผ">gym | gymnastikk | hudtype 3 | person | slรฅ hjul | sport</annotation>
<annotation cp="๐คธ๐ผ" type="tts">slรฅ hjul: hudtype 3</annotation>
<annotation cp="๐คธ๐ฝ">gym | gymnastikk | hudtype 4 | person | slรฅ hjul | sport</annotation>
<annotation cp="๐คธ๐ฝ" type="tts">slรฅ hjul: hudtype 4</annotation>
<annotation cp="๐คธ๐พ">gym | gymnastikk | hudtype 5 | person | slรฅ hjul | sport</annotation>
<annotation cp="๐คธ๐พ" type="tts">slรฅ hjul: hudtype 5</annotation>
<annotation cp="๐คธ๐ฟ">gym | gymnastikk | hudtype 6 | person | slรฅ hjul | sport</annotation>
<annotation cp="๐คธ๐ฟ" type="tts">slรฅ hjul: hudtype 6</annotation>
<annotation cp="๐คธ๐ปโโ">hudtype 1โ2 | mann | mann som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ปโโ" type="tts">mann som slรฅr hjul: hudtype 1โ2</annotation>
<annotation cp="๐คธ๐ผโโ">hudtype 3 | mann | mann som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ผโโ" type="tts">mann som slรฅr hjul: hudtype 3</annotation>
<annotation cp="๐คธ๐ฝโโ">hudtype 4 | mann | mann som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ฝโโ" type="tts">mann som slรฅr hjul: hudtype 4</annotation>
<annotation cp="๐คธ๐พโโ">hudtype 5 | mann | mann som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐พโโ" type="tts">mann som slรฅr hjul: hudtype 5</annotation>
<annotation cp="๐คธ๐ฟโโ">hudtype 6 | mann | mann som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ฟโโ" type="tts">mann som slรฅr hjul: hudtype 6</annotation>
<annotation cp="๐คธ๐ปโโ">hudtype 1โ2 | kvinne | kvinne som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ปโโ" type="tts">kvinne som slรฅr hjul: hudtype 1โ2</annotation>
<annotation cp="๐คธ๐ผโโ">hudtype 3 | kvinne | kvinne som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ผโโ" type="tts">kvinne som slรฅr hjul: hudtype 3</annotation>
<annotation cp="๐คธ๐ฝโโ">hudtype 4 | kvinne | kvinne som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ฝโโ" type="tts">kvinne som slรฅr hjul: hudtype 4</annotation>
<annotation cp="๐คธ๐พโโ">hudtype 5 | kvinne | kvinne som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐พโโ" type="tts">kvinne som slรฅr hjul: hudtype 5</annotation>
<annotation cp="๐คธ๐ฟโโ">hudtype 6 | kvinne | kvinne som slรฅr hjul | slรฅ hjul</annotation>
<annotation cp="๐คธ๐ฟโโ" type="tts">kvinne som slรฅr hjul: hudtype 6</annotation>
<annotation cp="๐คฝ๐ป">hudtype 1โ2 | person | polo | sport | vann | vannpolo</annotation>
<annotation cp="๐คฝ๐ป" type="tts">vannpolo: hudtype 1โ2</annotation>
<annotation cp="๐คฝ๐ผ">hudtype 3 | person | polo | sport | vann | vannpolo</annotation>
<annotation cp="๐คฝ๐ผ" type="tts">vannpolo: hudtype 3</annotation>
<annotation cp="๐คฝ๐ฝ">hudtype 4 | person | polo | sport | vann | vannpolo</annotation>
<annotation cp="๐คฝ๐ฝ" type="tts">vannpolo: hudtype 4</annotation>
<annotation cp="๐คฝ๐พ">hudtype 5 | person | polo | sport | vann | vannpolo</annotation>
<annotation cp="๐คฝ๐พ" type="tts">vannpolo: hudtype 5</annotation>
<annotation cp="๐คฝ๐ฟ">hudtype 6 | person | polo | sport | vann | vannpolo</annotation>
<annotation cp="๐คฝ๐ฟ" type="tts">vannpolo: hudtype 6</annotation>
<annotation cp="๐คฝ๐ปโโ">hudtype 1โ2 | mann | mannlig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ปโโ" type="tts">mannlig vannpolospiller: hudtype 1โ2</annotation>
<annotation cp="๐คฝ๐ผโโ">hudtype 3 | mann | mannlig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ผโโ" type="tts">mannlig vannpolospiller: hudtype 3</annotation>
<annotation cp="๐คฝ๐ฝโโ">hudtype 4 | mann | mannlig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ฝโโ" type="tts">mannlig vannpolospiller: hudtype 4</annotation>
<annotation cp="๐คฝ๐พโโ">hudtype 5 | mann | mannlig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐พโโ" type="tts">mannlig vannpolospiller: hudtype 5</annotation>
<annotation cp="๐คฝ๐ฟโโ">hudtype 6 | mann | mannlig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ฟโโ" type="tts">mannlig vannpolospiller: hudtype 6</annotation>
<annotation cp="๐คฝ๐ปโโ">hudtype 1โ2 | kvinne | kvinnelig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ปโโ" type="tts">kvinnelig vannpolospiller: hudtype 1โ2</annotation>
<annotation cp="๐คฝ๐ผโโ">hudtype 3 | kvinne | kvinnelig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ผโโ" type="tts">kvinnelig vannpolospiller: hudtype 3</annotation>
<annotation cp="๐คฝ๐ฝโโ">hudtype 4 | kvinne | kvinnelig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ฝโโ" type="tts">kvinnelig vannpolospiller: hudtype 4</annotation>
<annotation cp="๐คฝ๐พโโ">hudtype 5 | kvinne | kvinnelig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐พโโ" type="tts">kvinnelig vannpolospiller: hudtype 5</annotation>
<annotation cp="๐คฝ๐ฟโโ">hudtype 6 | kvinne | kvinnelig vannpolospiller | vannpolo</annotation>
<annotation cp="๐คฝ๐ฟโโ" type="tts">kvinnelig vannpolospiller: hudtype 6</annotation>
<annotation cp="๐คพ๐ป">ball | hรฅndball | hudtype 1โ2 | person | sport</annotation>
<annotation cp="๐คพ๐ป" type="tts">hรฅndball: hudtype 1โ2</annotation>
<annotation cp="๐คพ๐ผ">ball | hรฅndball | hudtype 3 | person | sport</annotation>
<annotation cp="๐คพ๐ผ" type="tts">hรฅndball: hudtype 3</annotation>
<annotation cp="๐คพ๐ฝ">ball | hรฅndball | hudtype 4 | person | sport</annotation>
<annotation cp="๐คพ๐ฝ" type="tts">hรฅndball: hudtype 4</annotation>
<annotation cp="๐คพ๐พ">ball | hรฅndball | hudtype 5 | person | sport</annotation>
<annotation cp="๐คพ๐พ" type="tts">hรฅndball: hudtype 5</annotation>
<annotation cp="๐คพ๐ฟ">ball | hรฅndball | hudtype 6 | person | sport</annotation>
<annotation cp="๐คพ๐ฟ" type="tts">hรฅndball: hudtype 6</annotation>
<annotation cp="๐คพ๐ปโโ">hรฅndball | hudtype 1โ2 | mann | mannlig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ปโโ" type="tts">mannlig hรฅndballspiller: hudtype 1โ2</annotation>
<annotation cp="๐คพ๐ผโโ">hรฅndball | hudtype 3 | mann | mannlig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ผโโ" type="tts">mannlig hรฅndballspiller: hudtype 3</annotation>
<annotation cp="๐คพ๐ฝโโ">hรฅndball | hudtype 4 | mann | mannlig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ฝโโ" type="tts">mannlig hรฅndballspiller: hudtype 4</annotation>
<annotation cp="๐คพ๐พโโ">hรฅndball | hudtype 5 | mann | mannlig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐พโโ" type="tts">mannlig hรฅndballspiller: hudtype 5</annotation>
<annotation cp="๐คพ๐ฟโโ">hรฅndball | hudtype 6 | mann | mannlig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ฟโโ" type="tts">mannlig hรฅndballspiller: hudtype 6</annotation>
<annotation cp="๐คพ๐ปโโ">hรฅndball | hudtype 1โ2 | kvinne | kvinnelig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ปโโ" type="tts">kvinnelig hรฅndballspiller: hudtype 1โ2</annotation>
<annotation cp="๐คพ๐ผโโ">hรฅndball | hudtype 3 | kvinne | kvinnelig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ผโโ" type="tts">kvinnelig hรฅndballspiller: hudtype 3</annotation>
<annotation cp="๐คพ๐ฝโโ">hรฅndball | hudtype 4 | kvinne | kvinnelig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ฝโโ" type="tts">kvinnelig hรฅndballspiller: hudtype 4</annotation>
<annotation cp="๐คพ๐พโโ">hรฅndball | hudtype 5 | kvinne | kvinnelig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐พโโ" type="tts">kvinnelig hรฅndballspiller: hudtype 5</annotation>
<annotation cp="๐คพ๐ฟโโ">hรฅndball | hudtype 6 | kvinne | kvinnelig hรฅndballspiller</annotation>
<annotation cp="๐คพ๐ฟโโ" type="tts">kvinnelig hรฅndballspiller: hudtype 6</annotation>
<annotation cp="๐คน๐ป">balanse | ferdighet | hudtype 1โ2 | multitasking | sjonglering</annotation>
<annotation cp="๐คน๐ป" type="tts">sjonglering: hudtype 1โ2</annotation>
<annotation cp="๐คน๐ผ">balanse | ferdighet | hudtype 3 | multitasking | sjonglering</annotation>
<annotation cp="๐คน๐ผ" type="tts">sjonglering: hudtype 3</annotation>
<annotation cp="๐คน๐ฝ">balanse | ferdighet | hudtype 4 | multitasking | sjonglering</annotation>
<annotation cp="๐คน๐ฝ" type="tts">sjonglering: hudtype 4</annotation>
<annotation cp="๐คน๐พ">balanse | ferdighet | hudtype 5 | multitasking | sjonglering</annotation>
<annotation cp="๐คน๐พ" type="tts">sjonglering: hudtype 5</annotation>
<annotation cp="๐คน๐ฟ">balanse | ferdighet | hudtype 6 | multitasking | sjonglering</annotation>
<annotation cp="๐คน๐ฟ" type="tts">sjonglering: hudtype 6</annotation>
<annotation cp="๐คน๐ปโโ">hudtype 1โ2 | mann | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ปโโ" type="tts">mannlig sjonglรธr: hudtype 1โ2</annotation>
<annotation cp="๐คน๐ผโโ">hudtype 3 | mann | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ผโโ" type="tts">mannlig sjonglรธr: hudtype 3</annotation>
<annotation cp="๐คน๐ฝโโ">hudtype 4 | mann | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ฝโโ" type="tts">mannlig sjonglรธr: hudtype 4</annotation>
<annotation cp="๐คน๐พโโ">hudtype 5 | mann | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐พโโ" type="tts">mannlig sjonglรธr: hudtype 5</annotation>
<annotation cp="๐คน๐ฟโโ">hudtype 6 | mann | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ฟโโ" type="tts">mannlig sjonglรธr: hudtype 6</annotation>
<annotation cp="๐คน๐ปโโ">hudtype 1โ2 | kvinne | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ปโโ" type="tts">kvinnelig sjonglรธr: hudtype 1โ2</annotation>
<annotation cp="๐คน๐ผโโ">hudtype 3 | kvinne | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ผโโ" type="tts">kvinnelig sjonglรธr: hudtype 3</annotation>
<annotation cp="๐คน๐ฝโโ">hudtype 4 | kvinne | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ฝโโ" type="tts">kvinnelig sjonglรธr: hudtype 4</annotation>
<annotation cp="๐คน๐พโโ">hudtype 5 | kvinne | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐พโโ" type="tts">kvinnelig sjonglรธr: hudtype 5</annotation>
<annotation cp="๐คน๐ฟโโ">hudtype 6 | kvinne | multitasking | sirkus | sjonglere</annotation>
<annotation cp="๐คน๐ฟโโ" type="tts">kvinnelig sjonglรธr: hudtype 6</annotation>
<annotation cp="๐ง๐ป">hudtype 1โ2 | lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ป" type="tts">lotusstilling: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผ">hudtype 3 | lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ผ" type="tts">lotusstilling: hudtype 3</annotation>
<annotation cp="๐ง๐ฝ">hudtype 4 | lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฝ" type="tts">lotusstilling: hudtype 4</annotation>
<annotation cp="๐ง๐พ">hudtype 5 | lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐พ" type="tts">lotusstilling: hudtype 5</annotation>
<annotation cp="๐ง๐ฟ">hudtype 6 | lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฟ" type="tts">lotusstilling: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | mann i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">mann i lotusstilling: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | mann i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">mann i lotusstilling: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | mann i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">mann i lotusstilling: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | mann i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐พโโ" type="tts">mann i lotusstilling: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | mann i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">mann i lotusstilling: hudtype 6</annotation>
<annotation cp="๐ง๐ปโโ">hudtype 1โ2 | kvinne i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ปโโ" type="tts">kvinne i lotusstilling: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโโ">hudtype 3 | kvinne i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ผโโ" type="tts">kvinne i lotusstilling: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโโ">hudtype 4 | kvinne i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฝโโ" type="tts">kvinne i lotusstilling: hudtype 4</annotation>
<annotation cp="๐ง๐พโโ">hudtype 5 | kvinne i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐พโโ" type="tts">kvinne i lotusstilling: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโโ">hudtype 6 | kvinne i lotusstilling | meditasjon | yoga</annotation>
<annotation cp="๐ง๐ฟโโ" type="tts">kvinne i lotusstilling: hudtype 6</annotation>
<annotation cp="๐๐ป">bad | badekar | hudtype 1โ2 | person i badekar</annotation>
<annotation cp="๐๐ป" type="tts">person i badekar: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">bad | badekar | hudtype 3 | person i badekar</annotation>
<annotation cp="๐๐ผ" type="tts">person i badekar: hudtype 3</annotation>
<annotation cp="๐๐ฝ">bad | badekar | hudtype 4 | person i badekar</annotation>
<annotation cp="๐๐ฝ" type="tts">person i badekar: hudtype 4</annotation>
<annotation cp="๐๐พ">bad | badekar | hudtype 5 | person i badekar</annotation>
<annotation cp="๐๐พ" type="tts">person i badekar: hudtype 5</annotation>
<annotation cp="๐๐ฟ">bad | badekar | hudtype 6 | person i badekar</annotation>
<annotation cp="๐๐ฟ" type="tts">person i badekar: hudtype 6</annotation>
<annotation cp="๐๐ป">hotell | hudtype 1โ2 | person i seng | sove</annotation>
<annotation cp="๐๐ป" type="tts">person i seng: hudtype 1โ2</annotation>
<annotation cp="๐๐ผ">hotell | hudtype 3 | person i seng | sove</annotation>
<annotation cp="๐๐ผ" type="tts">person i seng: hudtype 3</annotation>
<annotation cp="๐๐ฝ">hotell | hudtype 4 | person i seng | sove</annotation>
<annotation cp="๐๐ฝ" type="tts">person i seng: hudtype 4</annotation>
<annotation cp="๐๐พ">hotell | hudtype 5 | person i seng | sove</annotation>
<annotation cp="๐๐พ" type="tts">person i seng: hudtype 5</annotation>
<annotation cp="๐๐ฟ">hotell | hudtype 6 | person i seng | sove</annotation>
<annotation cp="๐๐ฟ" type="tts">person i seng: hudtype 6</annotation>
<annotation cp="๐ง๐ปโ๐คโ๐ง๐ป">hรฅnd | holde hender | hudtype 1โ2 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ปโ๐คโ๐ง๐ป" type="tts">personer som leier: hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐คโ๐ง๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 3 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ผโ๐คโ๐ง๐ป" type="tts">personer som leier: hudtype 3, hudtype 1โ2</annotation>
<annotation cp="๐ง๐ผโ๐คโ๐ง๐ผ">hรฅnd | holde hender | hudtype 3 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ผโ๐คโ๐ง๐ผ" type="tts">personer som leier: hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 4 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ป" type="tts">personer som leier: hudtype 4, hudtype 1โ2</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 4 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ผ" type="tts">personer som leier: hudtype 4, hudtype 3</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ฝ">hรฅnd | holde hender | hudtype 4 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฝโ๐คโ๐ง๐ฝ" type="tts">personer som leier: hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 5 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ป" type="tts">personer som leier: hudtype 5, hudtype 1โ2</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 5 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ผ" type="tts">personer som leier: hudtype 5, hudtype 3</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ฝ">hรฅnd | holde hender | hudtype 4 | hudtype 5 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐ฝ" type="tts">personer som leier: hudtype 5, hudtype 4</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐พ">hรฅnd | holde hender | hudtype 5 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐พโ๐คโ๐ง๐พ" type="tts">personer som leier: hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 6 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ป" type="tts">personer som leier: hudtype 6, hudtype 1โ2</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 6 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ผ" type="tts">personer som leier: hudtype 6, hudtype 3</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ฝ">hรฅnd | holde hender | hudtype 4 | hudtype 6 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ฝ" type="tts">personer som leier: hudtype 6, hudtype 4</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐พ">hรฅnd | holde hender | hudtype 5 | hudtype 6 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐พ" type="tts">personer som leier: hudtype 6, hudtype 5</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ฟ">hรฅnd | holde hender | hudtype 6 | par | personer | personer som leier</annotation>
<annotation cp="๐ง๐ฟโ๐คโ๐ง๐ฟ" type="tts">personer som leier: hudtype 6</annotation>
<annotation cp="๐ญ๐ป">hรฅnd | holder hender | hudtype 1โ2 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ญ๐ป" type="tts">kvinner som leier: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐ฉ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 3 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐ฉ๐ป" type="tts">kvinner som leier: hudtype 3, hudtype 1โ2</annotation>
<annotation cp="๐ญ๐ผ">hรฅnd | holder hender | hudtype 3 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ญ๐ผ" type="tts">kvinner som leier: hudtype 3</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐ฉ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 4 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐ฉ๐ป" type="tts">kvinner som leier: hudtype 4, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐ฉ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 4 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐ฉ๐ผ" type="tts">kvinner som leier: hudtype 4, hudtype 3</annotation>
<annotation cp="๐ญ๐ฝ">hรฅnd | holder hender | hudtype 4 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ญ๐ฝ" type="tts">kvinner som leier: hudtype 4</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 5 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ป" type="tts">kvinner som leier: hudtype 5, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 5 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ผ" type="tts">kvinner som leier: hudtype 5, hudtype 3</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ฝ">hรฅnd | holder hender | hudtype 4 | hudtype 5 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐ฉ๐ฝ" type="tts">kvinner som leier: hudtype 5, hudtype 4</annotation>
<annotation cp="๐ญ๐พ">hรฅnd | holder hender | hudtype 5 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ญ๐พ" type="tts">kvinner som leier: hudtype 5</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 6 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ป" type="tts">kvinner som leier: hudtype 6, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 6 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ผ" type="tts">kvinner som leier: hudtype 6, hudtype 3</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ฝ">hรฅnd | holder hender | hudtype 4 | hudtype 6 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐ฝ" type="tts">kvinner som leier: hudtype 6, hudtype 4</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐พ">hรฅnd | holder hender | hudtype 5 | hudtype 6 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐ฉ๐พ" type="tts">kvinner som leier: hudtype 6, hudtype 5</annotation>
<annotation cp="๐ญ๐ฟ">hรฅnd | holder hender | hudtype 6 | kvinne | kvinner som leier | par</annotation>
<annotation cp="๐ญ๐ฟ" type="tts">kvinner som leier: hudtype 6</annotation>
<annotation cp="๐ซ๐ป">hรฅnd | holder hender | hudtype 1โ2 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ซ๐ป" type="tts">mann og kvinne som leier: hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ผ">hรฅnd | holder hender | hudtype 1โ2 | hudtype 3 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ผ" type="tts">mann og kvinne som leier: hudtype 1โ2, hudtype 3</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ฝ">hรฅnd | holder hender | hudtype 1โ2 | hudtype 4 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ฝ" type="tts">mann og kvinne som leier: hudtype 1โ2, hudtype 4</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐พ">hรฅnd | holder hender | hudtype 1โ2 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐พ" type="tts">mann og kvinne som leier: hudtype 1โ2, hudtype 5</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ฟ">hรฅnd | holder hender | hudtype 1โ2 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ปโ๐คโ๐จ๐ฟ" type="tts">mann og kvinne som leier: hudtype 1โ2, hudtype 6</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 3 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ป" type="tts">mann og kvinne som leier: hudtype 3, hudtype 1โ2</annotation>
<annotation cp="๐ซ๐ผ">hรฅnd | holder hender | hudtype 3 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ซ๐ผ" type="tts">mann og kvinne som leier: hudtype 3</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ฝ">hรฅnd | holder hender | hudtype 3 | hudtype 4 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ฝ" type="tts">mann og kvinne som leier: hudtype 3, hudtype 4</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐พ">hรฅnd | holder hender | hudtype 3 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐พ" type="tts">mann og kvinne som leier: hudtype 3, hudtype 5</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ฟ">hรฅnd | holder hender | hudtype 3 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ผโ๐คโ๐จ๐ฟ" type="tts">mann og kvinne som leier: hudtype 3, hudtype 6</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 4 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ป" type="tts">mann og kvinne som leier: hudtype 4, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 4 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ผ" type="tts">mann og kvinne som leier: hudtype 4, hudtype 3</annotation>
<annotation cp="๐ซ๐ฝ">hรฅnd | holder hender | hudtype 4 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ซ๐ฝ" type="tts">mann og kvinne som leier: hudtype 4</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐พ">hรฅnd | holder hender | hudtype 4 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐พ" type="tts">mann og kvinne som leier: hudtype 4, hudtype 5</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ฟ">hรฅnd | holder hender | hudtype 4 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฝโ๐คโ๐จ๐ฟ" type="tts">mann og kvinne som leier: hudtype 4, hudtype 6</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ป" type="tts">mann og kvinne som leier: hudtype 5, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ผ" type="tts">mann og kvinne som leier: hudtype 5, hudtype 3</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ฝ">hรฅnd | holder hender | hudtype 4 | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ฝ" type="tts">mann og kvinne som leier: hudtype 5, hudtype 4</annotation>
<annotation cp="๐ซ๐พ">hรฅnd | holder hender | hudtype 5 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ซ๐พ" type="tts">mann og kvinne som leier: hudtype 5</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ฟ">hรฅnd | holder hender | hudtype 5 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐พโ๐คโ๐จ๐ฟ" type="tts">mann og kvinne som leier: hudtype 5, hudtype 6</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ป">hรฅnd | holder hender | hudtype 1โ2 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ป" type="tts">mann og kvinne som leier: hudtype 6, hudtype 1โ2</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ผ">hรฅnd | holder hender | hudtype 3 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ผ" type="tts">mann og kvinne som leier: hudtype 6, hudtype 3</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ฝ">hรฅnd | holder hender | hudtype 4 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐ฝ" type="tts">mann og kvinne som leier: hudtype 6, hudtype 4</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐พ">hรฅnd | holder hender | hudtype 5 | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ฉ๐ฟโ๐คโ๐จ๐พ" type="tts">mann og kvinne som leier: hudtype 6, hudtype 5</annotation>
<annotation cp="๐ซ๐ฟ">hรฅnd | holder hender | hudtype 6 | kvinne | mann | mann og kvinne som leier | par</annotation>
<annotation cp="๐ซ๐ฟ" type="tts">mann og kvinne som leier: hudtype 6</annotation>
<annotation cp="๐ฌ๐ป">hรฅnd | holde hender | hudtype 1โ2 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐ฌ๐ป" type="tts">menn som leier: hudtype 1โ2</annotation>
<annotation cp="๐จ๐ผโ๐คโ๐จ๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 3 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ผโ๐คโ๐จ๐ป" type="tts">menn som leier: hudtype 3, hudtype 1โ2</annotation>
<annotation cp="๐ฌ๐ผ">hรฅnd | holde hender | hudtype 3 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐ฌ๐ผ" type="tts">menn som leier: hudtype 3</annotation>
<annotation cp="๐จ๐ฝโ๐คโ๐จ๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 4 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฝโ๐คโ๐จ๐ป" type="tts">menn som leier: hudtype 4, hudtype 1โ2</annotation>
<annotation cp="๐จ๐ฝโ๐คโ๐จ๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 4 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฝโ๐คโ๐จ๐ผ" type="tts">menn som leier: hudtype 4, hudtype 3</annotation>
<annotation cp="๐ฌ๐ฝ">hรฅnd | holde hender | hudtype 4 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐ฌ๐ฝ" type="tts">menn som leier: hudtype 4</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 5 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ป" type="tts">menn som leier: hudtype 5, hudtype 1โ2</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 5 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ผ" type="tts">menn som leier: hudtype 5, hudtype 3</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ฝ">hรฅnd | holde hender | hudtype 4 | hudtype 5 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐พโ๐คโ๐จ๐ฝ" type="tts">menn som leier: hudtype 5, hudtype 4</annotation>
<annotation cp="๐ฌ๐พ">hรฅnd | holde hender | hudtype 5 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐ฌ๐พ" type="tts">menn som leier: hudtype 5</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ป">hรฅnd | holde hender | hudtype 1โ2 | hudtype 6 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ป" type="tts">menn som leier: hudtype 6, hudtype 1โ2</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ผ">hรฅnd | holde hender | hudtype 3 | hudtype 6 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ผ" type="tts">menn som leier: hudtype 6, hudtype 3</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ฝ">hรฅnd | holde hender | hudtype 4 | hudtype 6 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐ฝ" type="tts">menn som leier: hudtype 6, hudtype 4</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐พ">hรฅnd | holde hender | hudtype 5 | hudtype 6 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐จ๐ฟโ๐คโ๐จ๐พ" type="tts">menn som leier: hudtype 6, hudtype 5</annotation>
<annotation cp="๐ฌ๐ฟ">hรฅnd | holde hender | hudtype 6 | mann | menn | menn som leier | par | stjernetegn | tvillingene</annotation>
<annotation cp="๐ฌ๐ฟ" type="tts">menn som leier: hudtype 6</annotation>
<annotation cp="๐ฉโโคโ๐โ๐จ">kvinne | kyss | kyssing | mann | mennesker | romantikk</annotation>
<annotation cp="๐ฉโโคโ๐โ๐จ" type="tts">kyss: kvinne, mann</annotation>
<annotation cp="๐จโโคโ๐โ๐จ">kyss | kyssing | mann | mennesker | romantikk</annotation>
<annotation cp="๐จโโคโ๐โ๐จ" type="tts">kyss: mann, mann</annotation>
<annotation cp="๐ฉโโคโ๐โ๐ฉ">kvinne | kyss | kyssing | mennesker | romantikk</annotation>
<annotation cp="๐ฉโโคโ๐โ๐ฉ" type="tts">kyss: kvinne, kvinne</annotation>
<annotation cp="๐ฉโโคโ๐จ">hjerte | kjรฆrlighet | kvinne | mann | mennesker | par med hjerte | romantikk</annotation>
<annotation cp="๐ฉโโคโ๐จ" type="tts">par med hjerte: kvinne, mann</annotation>
<annotation cp="๐จโโคโ๐จ">hjerte | kjรฆrlighet | mann | mennesker | par med hjerte | romantikk</annotation>
<annotation cp="๐จโโคโ๐จ" type="tts">par med hjerte: mann, mann</annotation>
<annotation cp="๐ฉโโคโ๐ฉ">hjerte | kjรฆrlighet | kvinne | mennesker | par med hjerte | romantikk</annotation>
<annotation cp="๐ฉโโคโ๐ฉ" type="tts">par med hjerte: kvinne, kvinne</annotation>
<annotation cp="๐จโ๐ฉโ๐ฆ">barn | familie | far | gutt | kvinne | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฉโ๐ฆ" type="tts">familie: mann, kvinne, gutt</annotation>
<annotation cp="๐จโ๐ฉโ๐ง">barn | familie | far | jente | kvinne | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฉโ๐ง" type="tts">familie: mann, kvinne, jente</annotation>
<annotation cp="๐จโ๐ฉโ๐งโ๐ฆ">barn | familie | far | gutt | jente | kvinne | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฉโ๐งโ๐ฆ" type="tts">familie: mann, kvinne, jente, gutt</annotation>
<annotation cp="๐จโ๐ฉโ๐ฆโ๐ฆ">barn | familie | far | gutt | kvinne | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฉโ๐ฆโ๐ฆ" type="tts">familie: mann, kvinne, gutt, gutt</annotation>
<annotation cp="๐จโ๐ฉโ๐งโ๐ง">barn | familie | far | jente | kvinne | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฉโ๐งโ๐ง" type="tts">familie: mann, kvinne, jente, jente</annotation>
<annotation cp="๐จโ๐จโ๐ฆ">barn | familie | far | gutt | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐จโ๐ฆ" type="tts">familie: mann, mann, gutt</annotation>
<annotation cp="๐จโ๐จโ๐ง">barn | familie | far | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐จโ๐ง" type="tts">familie: mann, mann, jente</annotation>
<annotation cp="๐จโ๐จโ๐งโ๐ฆ">barn | familie | far | gutt | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐จโ๐งโ๐ฆ" type="tts">familie: mann, mann, jente, gutt</annotation>
<annotation cp="๐จโ๐จโ๐ฆโ๐ฆ">barn | familie | far | gutt | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐จโ๐ฆโ๐ฆ" type="tts">familie: mann, mann, gutt, gutt</annotation>
<annotation cp="๐จโ๐จโ๐งโ๐ง">barn | familie | far | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐จโ๐งโ๐ง" type="tts">familie: mann, mann, jente, jente</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ฆ">barn | familie | far | gutt | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ฆ" type="tts">familie: kvinne, kvinne, gutt</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ง">barn | familie | far | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ง" type="tts">familie: kvinne, kvinne, jente</annotation>
<annotation cp="๐ฉโ๐ฉโ๐งโ๐ฆ">barn | familie | far | gutt | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฉโ๐งโ๐ฆ" type="tts">familie: kvinne, kvinne, jente, gutt</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ฆโ๐ฆ">barn | familie | far | gutt | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฉโ๐ฆโ๐ฆ" type="tts">familie: kvinne, kvinne, gutt, gutt</annotation>
<annotation cp="๐ฉโ๐ฉโ๐งโ๐ง">barn | familie | far | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฉโ๐งโ๐ง" type="tts">familie: kvinne, kvinne, jente, jente</annotation>
<annotation cp="๐จโ๐ฆ">barn | familie | far | gutt | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฆ" type="tts">familie: mann, gutt</annotation>
<annotation cp="๐จโ๐ฆโ๐ฆ">barn | familie | far | gutt | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ฆโ๐ฆ" type="tts">familie: mann, gutt, gutt</annotation>
<annotation cp="๐จโ๐ง">barn | familie | far | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐ง" type="tts">familie: mann, jente</annotation>
<annotation cp="๐จโ๐งโ๐ฆ">barn | familie | far | gutt | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐งโ๐ฆ" type="tts">familie: mann, jente, gutt</annotation>
<annotation cp="๐จโ๐งโ๐ง">barn | familie | far | jente | mann | mennesker | mor</annotation>
<annotation cp="๐จโ๐งโ๐ง" type="tts">familie: mann, jente, jente</annotation>
<annotation cp="๐ฉโ๐ฆ">barn | familie | far | gutt | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฆ" type="tts">familie: kvinne, gutt</annotation>
<annotation cp="๐ฉโ๐ฆโ๐ฆ">barn | familie | far | gutt | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ฆโ๐ฆ" type="tts">familie: kvinne, gutt, gutt</annotation>
<annotation cp="๐ฉโ๐ง">barn | familie | far | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐ง" type="tts">familie: kvinne, jente</annotation>
<annotation cp="๐ฉโ๐งโ๐ฆ">barn | familie | far | gutt | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐งโ๐ฆ" type="tts">familie: kvinne, jente, gutt</annotation>
<annotation cp="๐ฉโ๐งโ๐ง">barn | familie | far | jente | kvinne | mennesker | mor</annotation>
<annotation cp="๐ฉโ๐งโ๐ง" type="tts">familie: kvinne, jente, jente</annotation>
<annotation cp="#โฃ">taster</annotation>
<annotation cp="#โฃ" type="tts">taster: #</annotation>
<annotation cp="*โฃ">taster</annotation>
<annotation cp="*โฃ" type="tts">taster: *</annotation>
<annotation cp="๐">taster</annotation>
<annotation cp="๐" type="tts">taster: 10</annotation>
<annotation cp="๐ฆ๐จ">flagg</annotation>
<annotation cp="๐ฆ๐จ" type="tts">flagg: Ascension</annotation>
<annotation cp="๐ฆ๐ฉ">flagg</annotation>
<annotation cp="๐ฆ๐ฉ" type="tts">flagg: Andorra</annotation>
<annotation cp="๐ฆ๐ช">flagg</annotation>
<annotation cp="๐ฆ๐ช" type="tts">flagg: De forente arabiske emirater</annotation>
<annotation cp="๐ฆ๐ซ">flagg</annotation>
<annotation cp="๐ฆ๐ซ" type="tts">flagg: Afghanistan</annotation>
<annotation cp="๐ฆ๐ฌ">flagg</annotation>
<annotation cp="๐ฆ๐ฌ" type="tts">flagg: Antigua og Barbuda</annotation>
<annotation cp="๐ฆ๐ฎ">flagg</annotation>
<annotation cp="๐ฆ๐ฎ" type="tts">flagg: Anguilla</annotation>
<annotation cp="๐ฆ๐ฑ">flagg</annotation>
<annotation cp="๐ฆ๐ฑ" type="tts">flagg: Albania</annotation>
<annotation cp="๐ฆ๐ฒ">flagg</annotation>
<annotation cp="๐ฆ๐ฒ" type="tts">flagg: Armenia</annotation>
<annotation cp="๐ฆ๐ด">flagg</annotation>
<annotation cp="๐ฆ๐ด" type="tts">flagg: Angola</annotation>
<annotation cp="๐ฆ๐ถ">flagg</annotation>
<annotation cp="๐ฆ๐ถ" type="tts">flagg: Antarktis</annotation>
<annotation cp="๐ฆ๐ท">flagg</annotation>
<annotation cp="๐ฆ๐ท" type="tts">flagg: Argentina</annotation>
<annotation cp="๐ฆ๐ธ">flagg</annotation>
<annotation cp="๐ฆ๐ธ" type="tts">flagg: Amerikansk Samoa</annotation>
<annotation cp="๐ฆ๐น">flagg</annotation>
<annotation cp="๐ฆ๐น" type="tts">flagg: รsterrike</annotation>
<annotation cp="๐ฆ๐บ">flagg</annotation>
<annotation cp="๐ฆ๐บ" type="tts">flagg: Australia</annotation>
<annotation cp="๐ฆ๐ผ">flagg</annotation>
<annotation cp="๐ฆ๐ผ" type="tts">flagg: Aruba</annotation>
<annotation cp="๐ฆ๐ฝ">flagg</annotation>
<annotation cp="๐ฆ๐ฝ" type="tts">flagg: ร
land</annotation>
<annotation cp="๐ฆ๐ฟ">flagg</annotation>
<annotation cp="๐ฆ๐ฟ" type="tts">flagg: Aserbajdsjan</annotation>
<annotation cp="๐ง๐ฆ">flagg</annotation>
<annotation cp="๐ง๐ฆ" type="tts">flagg: Bosnia-Hercegovina</annotation>
<annotation cp="๐ง๐ง">flagg</annotation>
<annotation cp="๐ง๐ง" type="tts">flagg: Barbados</annotation>
<annotation cp="๐ง๐ฉ">flagg</annotation>
<annotation cp="๐ง๐ฉ" type="tts">flagg: Bangladesh</annotation>
<annotation cp="๐ง๐ช">flagg</annotation>
<annotation cp="๐ง๐ช" type="tts">flagg: Belgia</annotation>
<annotation cp="๐ง๐ซ">flagg</annotation>
<annotation cp="๐ง๐ซ" type="tts">flagg: Burkina Faso</annotation>
<annotation cp="๐ง๐ฌ">flagg</annotation>
<annotation cp="๐ง๐ฌ" type="tts">flagg: Bulgaria</annotation>
<annotation cp="๐ง๐ญ">flagg</annotation>
<annotation cp="๐ง๐ญ" type="tts">flagg: Bahrain</annotation>
<annotation cp="๐ง๐ฎ">flagg</annotation>
<annotation cp="๐ง๐ฎ" type="tts">flagg: Burundi</annotation>
<annotation cp="๐ง๐ฏ">flagg</annotation>
<annotation cp="๐ง๐ฏ" type="tts">flagg: Benin</annotation>
<annotation cp="๐ง๐ฑ">flagg</annotation>
<annotation cp="๐ง๐ฑ" type="tts">flagg: Saint-Barthรฉlemy</annotation>
<annotation cp="๐ง๐ฒ">flagg</annotation>
<annotation cp="๐ง๐ฒ" type="tts">flagg: Bermuda</annotation>
<annotation cp="๐ง๐ณ">flagg</annotation>
<annotation cp="๐ง๐ณ" type="tts">flagg: Brunei</annotation>
<annotation cp="๐ง๐ด">flagg</annotation>
<annotation cp="๐ง๐ด" type="tts">flagg: Bolivia</annotation>
<annotation cp="๐ง๐ถ">flagg</annotation>
<annotation cp="๐ง๐ถ" type="tts">flagg: Karibisk Nederland</annotation>
<annotation cp="๐ง๐ท">flagg</annotation>
<annotation cp="๐ง๐ท" type="tts">flagg: Brasil</annotation>
<annotation cp="๐ง๐ธ">flagg</annotation>
<annotation cp="๐ง๐ธ" type="tts">flagg: Bahamas</annotation>
<annotation cp="๐ง๐น">flagg</annotation>
<annotation cp="๐ง๐น" type="tts">flagg: Bhutan</annotation>
<annotation cp="๐ง๐ป">flagg</annotation>
<annotation cp="๐ง๐ป" type="tts">flagg: Bouvetรธya</annotation>
<annotation cp="๐ง๐ผ">flagg</annotation>
<annotation cp="๐ง๐ผ" type="tts">flagg: Botswana</annotation>
<annotation cp="๐ง๐พ">flagg</annotation>
<annotation cp="๐ง๐พ" type="tts">flagg: Hviterussland</annotation>
<annotation cp="๐ง๐ฟ">flagg</annotation>
<annotation cp="๐ง๐ฟ" type="tts">flagg: Belize</annotation>
<annotation cp="๐จ๐ฆ">flagg</annotation>
<annotation cp="๐จ๐ฆ" type="tts">flagg: Canada</annotation>
<annotation cp="๐จ๐จ">flagg</annotation>
<annotation cp="๐จ๐จ" type="tts">flagg: Kokosรธyene</annotation>
<annotation cp="๐จ๐ฉ">flagg</annotation>
<annotation cp="๐จ๐ฉ" type="tts">flagg: Kongo-Kinshasa</annotation>
<annotation cp="๐จ๐ซ">flagg</annotation>
<annotation cp="๐จ๐ซ" type="tts">flagg: Den sentralafrikanske republikk</annotation>
<annotation cp="๐จ๐ฌ">flagg</annotation>
<annotation cp="๐จ๐ฌ" type="tts">flagg: Kongo-Brazzaville</annotation>
<annotation cp="๐จ๐ญ">flagg</annotation>
<annotation cp="๐จ๐ญ" type="tts">flagg: Sveits</annotation>
<annotation cp="๐จ๐ฎ">flagg</annotation>
<annotation cp="๐จ๐ฎ" type="tts">flagg: Elfenbenskysten</annotation>
<annotation cp="๐จ๐ฐ">flagg</annotation>
<annotation cp="๐จ๐ฐ" type="tts">flagg: Cookรธyene</annotation>
<annotation cp="๐จ๐ฑ">flagg</annotation>
<annotation cp="๐จ๐ฑ" type="tts">flagg: Chile</annotation>
<annotation cp="๐จ๐ฒ">flagg</annotation>
<annotation cp="๐จ๐ฒ" type="tts">flagg: Kamerun</annotation>
<annotation cp="๐จ๐ณ">flagg</annotation>
<annotation cp="๐จ๐ณ" type="tts">flagg: Kina</annotation>
<annotation cp="๐จ๐ด">flagg</annotation>
<annotation cp="๐จ๐ด" type="tts">flagg: Colombia</annotation>
<annotation cp="๐จ๐ต">flagg</annotation>
<annotation cp="๐จ๐ต" type="tts">flagg: Clippertonรธya</annotation>
<annotation cp="๐จ๐ท">flagg</annotation>
<annotation cp="๐จ๐ท" type="tts">flagg: Costa Rica</annotation>
<annotation cp="๐จ๐บ">flagg</annotation>
<annotation cp="๐จ๐บ" type="tts">flagg: Cuba</annotation>
<annotation cp="๐จ๐ป">flagg</annotation>
<annotation cp="๐จ๐ป" type="tts">flagg: Kapp Verde</annotation>
<annotation cp="๐จ๐ผ">flagg</annotation>
<annotation cp="๐จ๐ผ" type="tts">flagg: Curaรงao</annotation>
<annotation cp="๐จ๐ฝ">flagg</annotation>
<annotation cp="๐จ๐ฝ" type="tts">flagg: Christmasรธya</annotation>
<annotation cp="๐จ๐พ">flagg</annotation>
<annotation cp="๐จ๐พ" type="tts">flagg: Kypros</annotation>
<annotation cp="๐จ๐ฟ">flagg</annotation>
<annotation cp="๐จ๐ฟ" type="tts">flagg: Tsjekkia</annotation>
<annotation cp="๐ฉ๐ช">flagg</annotation>
<annotation cp="๐ฉ๐ช" type="tts">flagg: Tyskland</annotation>
<annotation cp="๐ฉ๐ฌ">flagg</annotation>
<annotation cp="๐ฉ๐ฌ" type="tts">flagg: Diego Garcia</annotation>
<annotation cp="๐ฉ๐ฏ">flagg</annotation>
<annotation cp="๐ฉ๐ฏ" type="tts">flagg: Djibouti</annotation>
<annotation cp="๐ฉ๐ฐ">flagg</annotation>
<annotation cp="๐ฉ๐ฐ" type="tts">flagg: Danmark</annotation>
<annotation cp="๐ฉ๐ฒ">flagg</annotation>
<annotation cp="๐ฉ๐ฒ" type="tts">flagg: Dominica</annotation>
<annotation cp="๐ฉ๐ด">flagg</annotation>
<annotation cp="๐ฉ๐ด" type="tts">flagg: Den dominikanske republikk</annotation>
<annotation cp="๐ฉ๐ฟ">flagg</annotation>
<annotation cp="๐ฉ๐ฟ" type="tts">flagg: Algerie</annotation>
<annotation cp="๐ช๐ฆ">flagg</annotation>
<annotation cp="๐ช๐ฆ" type="tts">flagg: Ceuta og Melilla</annotation>
<annotation cp="๐ช๐จ">flagg</annotation>
<annotation cp="๐ช๐จ" type="tts">flagg: Ecuador</annotation>
<annotation cp="๐ช๐ช">flagg</annotation>
<annotation cp="๐ช๐ช" type="tts">flagg: Estland</annotation>
<annotation cp="๐ช๐ฌ">flagg</annotation>
<annotation cp="๐ช๐ฌ" type="tts">flagg: Egypt</annotation>
<annotation cp="๐ช๐ญ">flagg</annotation>
<annotation cp="๐ช๐ญ" type="tts">flagg: Vest-Sahara</annotation>
<annotation cp="๐ช๐ท">flagg</annotation>
<annotation cp="๐ช๐ท" type="tts">flagg: Eritrea</annotation>
<annotation cp="๐ช๐ธ">flagg</annotation>
<annotation cp="๐ช๐ธ" type="tts">flagg: Spania</annotation>
<annotation cp="๐ช๐น">flagg</annotation>
<annotation cp="๐ช๐น" type="tts">flagg: Etiopia</annotation>
<annotation cp="๐ช๐บ">flagg</annotation>
<annotation cp="๐ช๐บ" type="tts">flagg: EU</annotation>
<annotation cp="๐ซ๐ฎ">flagg</annotation>
<annotation cp="๐ซ๐ฎ" type="tts">flagg: Finland</annotation>
<annotation cp="๐ซ๐ฏ">flagg</annotation>
<annotation cp="๐ซ๐ฏ" type="tts">flagg: Fiji</annotation>
<annotation cp="๐ซ๐ฐ">flagg</annotation>
<annotation cp="๐ซ๐ฐ" type="tts">flagg: Falklandsรธyene</annotation>
<annotation cp="๐ซ๐ฒ">flagg</annotation>
<annotation cp="๐ซ๐ฒ" type="tts">flagg: Mikronesiafรธderasjonen</annotation>
<annotation cp="๐ซ๐ด">flagg</annotation>
<annotation cp="๐ซ๐ด" type="tts">flagg: Fรฆrรธyene</annotation>
<annotation cp="๐ซ๐ท">flagg</annotation>
<annotation cp="๐ซ๐ท" type="tts">flagg: Frankrike</annotation>
<annotation cp="๐ฌ๐ฆ">flagg</annotation>
<annotation cp="๐ฌ๐ฆ" type="tts">flagg: Gabon</annotation>
<annotation cp="๐ฌ๐ง">flagg</annotation>
<annotation cp="๐ฌ๐ง" type="tts">flagg: Storbritannia</annotation>
<annotation cp="๐ฌ๐ฉ">flagg</annotation>
<annotation cp="๐ฌ๐ฉ" type="tts">flagg: Grenada</annotation>
<annotation cp="๐ฌ๐ช">flagg</annotation>
<annotation cp="๐ฌ๐ช" type="tts">flagg: Georgia</annotation>
<annotation cp="๐ฌ๐ซ">flagg</annotation>
<annotation cp="๐ฌ๐ซ" type="tts">flagg: Fransk Guyana</annotation>
<annotation cp="๐ฌ๐ฌ">flagg</annotation>
<annotation cp="๐ฌ๐ฌ" type="tts">flagg: Guernsey</annotation>
<annotation cp="๐ฌ๐ญ">flagg</annotation>
<annotation cp="๐ฌ๐ญ" type="tts">flagg: Ghana</annotation>
<annotation cp="๐ฌ๐ฎ">flagg</annotation>
<annotation cp="๐ฌ๐ฎ" type="tts">flagg: Gibraltar</annotation>
<annotation cp="๐ฌ๐ฑ">flagg</annotation>
<annotation cp="๐ฌ๐ฑ" type="tts">flagg: Grรธnland</annotation>
<annotation cp="๐ฌ๐ฒ">flagg</annotation>
<annotation cp="๐ฌ๐ฒ" type="tts">flagg: Gambia</annotation>
<annotation cp="๐ฌ๐ณ">flagg</annotation>
<annotation cp="๐ฌ๐ณ" type="tts">flagg: Guinea</annotation>
<annotation cp="๐ฌ๐ต">flagg</annotation>
<annotation cp="๐ฌ๐ต" type="tts">flagg: Guadeloupe</annotation>
<annotation cp="๐ฌ๐ถ">flagg</annotation>
<annotation cp="๐ฌ๐ถ" type="tts">flagg: Ekvatorial-Guinea</annotation>
<annotation cp="๐ฌ๐ท">flagg</annotation>
<annotation cp="๐ฌ๐ท" type="tts">flagg: Hellas</annotation>
<annotation cp="๐ฌ๐ธ">flagg</annotation>
<annotation cp="๐ฌ๐ธ" type="tts">flagg: Sรธr-Georgia og Sรธr-Sandwichรธyene</annotation>
<annotation cp="๐ฌ๐น">flagg</annotation>
<annotation cp="๐ฌ๐น" type="tts">flagg: Guatemala</annotation>
<annotation cp="๐ฌ๐บ">flagg</annotation>
<annotation cp="๐ฌ๐บ" type="tts">flagg: Guam</annotation>
<annotation cp="๐ฌ๐ผ">flagg</annotation>
<annotation cp="๐ฌ๐ผ" type="tts">flagg: Guinea-Bissau</annotation>
<annotation cp="๐ฌ๐พ">flagg</annotation>
<annotation cp="๐ฌ๐พ" type="tts">flagg: Guyana</annotation>
<annotation cp="๐ญ๐ฐ">flagg</annotation>
<annotation cp="๐ญ๐ฐ" type="tts">flagg: Hongkong S.A.R. Kina</annotation>
<annotation cp="๐ญ๐ฒ">flagg</annotation>
<annotation cp="๐ญ๐ฒ" type="tts">flagg: Heard- og McDonaldรธyene</annotation>
<annotation cp="๐ญ๐ณ">flagg</annotation>
<annotation cp="๐ญ๐ณ" type="tts">flagg: Honduras</annotation>
<annotation cp="๐ญ๐ท">flagg</annotation>
<annotation cp="๐ญ๐ท" type="tts">flagg: Kroatia</annotation>
<annotation cp="๐ญ๐น">flagg</annotation>
<annotation cp="๐ญ๐น" type="tts">flagg: Haiti</annotation>
<annotation cp="๐ญ๐บ">flagg</annotation>
<annotation cp="๐ญ๐บ" type="tts">flagg: Ungarn</annotation>
<annotation cp="๐ฎ๐จ">flagg</annotation>
<annotation cp="๐ฎ๐จ" type="tts">flagg: Kanariรธyene</annotation>
<annotation cp="๐ฎ๐ฉ">flagg</annotation>
<annotation cp="๐ฎ๐ฉ" type="tts">flagg: Indonesia</annotation>
<annotation cp="๐ฎ๐ช">flagg</annotation>
<annotation cp="๐ฎ๐ช" type="tts">flagg: Irland</annotation>
<annotation cp="๐ฎ๐ฑ">flagg</annotation>
<annotation cp="๐ฎ๐ฑ" type="tts">flagg: Israel</annotation>
<annotation cp="๐ฎ๐ฒ">flagg</annotation>
<annotation cp="๐ฎ๐ฒ" type="tts">flagg: Man</annotation>
<annotation cp="๐ฎ๐ณ">flagg</annotation>
<annotation cp="๐ฎ๐ณ" type="tts">flagg: India</annotation>
<annotation cp="๐ฎ๐ด">flagg</annotation>
<annotation cp="๐ฎ๐ด" type="tts">flagg: Det britiske territoriet i Indiahavet</annotation>
<annotation cp="๐ฎ๐ถ">flagg</annotation>
<annotation cp="๐ฎ๐ถ" type="tts">flagg: Irak</annotation>
<annotation cp="๐ฎ๐ท">flagg</annotation>
<annotation cp="๐ฎ๐ท" type="tts">flagg: Iran</annotation>
<annotation cp="๐ฎ๐ธ">flagg</annotation>
<annotation cp="๐ฎ๐ธ" type="tts">flagg: Island</annotation>
<annotation cp="๐ฎ๐น">flagg</annotation>
<annotation cp="๐ฎ๐น" type="tts">flagg: Italia</annotation>
<annotation cp="๐ฏ๐ช">flagg</annotation>
<annotation cp="๐ฏ๐ช" type="tts">flagg: Jersey</annotation>
<annotation cp="๐ฏ๐ฒ">flagg</annotation>
<annotation cp="๐ฏ๐ฒ" type="tts">flagg: Jamaica</annotation>
<annotation cp="๐ฏ๐ด">flagg</annotation>
<annotation cp="๐ฏ๐ด" type="tts">flagg: Jordan</annotation>
<annotation cp="๐ฏ๐ต">flagg</annotation>
<annotation cp="๐ฏ๐ต" type="tts">flagg: Japan</annotation>
<annotation cp="๐ฐ๐ช">flagg</annotation>
<annotation cp="๐ฐ๐ช" type="tts">flagg: Kenya</annotation>
<annotation cp="๐ฐ๐ฌ">flagg</annotation>
<annotation cp="๐ฐ๐ฌ" type="tts">flagg: Kirgisistan</annotation>
<annotation cp="๐ฐ๐ญ">flagg</annotation>
<annotation cp="๐ฐ๐ญ" type="tts">flagg: Kambodsja</annotation>
<annotation cp="๐ฐ๐ฎ">flagg</annotation>
<annotation cp="๐ฐ๐ฎ" type="tts">flagg: Kiribati</annotation>
<annotation cp="๐ฐ๐ฒ">flagg</annotation>
<annotation cp="๐ฐ๐ฒ" type="tts">flagg: Komorene</annotation>
<annotation cp="๐ฐ๐ณ">flagg</annotation>
<annotation cp="๐ฐ๐ณ" type="tts">flagg: Saint Kitts og Nevis</annotation>
<annotation cp="๐ฐ๐ต">flagg</annotation>
<annotation cp="๐ฐ๐ต" type="tts">flagg: Nord-Korea</annotation>
<annotation cp="๐ฐ๐ท">flagg</annotation>
<annotation cp="๐ฐ๐ท" type="tts">flagg: Sรธr-Korea</annotation>
<annotation cp="๐ฐ๐ผ">flagg</annotation>
<annotation cp="๐ฐ๐ผ" type="tts">flagg: Kuwait</annotation>
<annotation cp="๐ฐ๐พ">flagg</annotation>
<annotation cp="๐ฐ๐พ" type="tts">flagg: Caymanรธyene</annotation>
<annotation cp="๐ฐ๐ฟ">flagg</annotation>
<annotation cp="๐ฐ๐ฟ" type="tts">flagg: Kasakhstan</annotation>
<annotation cp="๐ฑ๐ฆ">flagg</annotation>
<annotation cp="๐ฑ๐ฆ" type="tts">flagg: Laos</annotation>
<annotation cp="๐ฑ๐ง">flagg</annotation>
<annotation cp="๐ฑ๐ง" type="tts">flagg: Libanon</annotation>
<annotation cp="๐ฑ๐จ">flagg</annotation>
<annotation cp="๐ฑ๐จ" type="tts">flagg: St. Lucia</annotation>
<annotation cp="๐ฑ๐ฎ">flagg</annotation>
<annotation cp="๐ฑ๐ฎ" type="tts">flagg: Liechtenstein</annotation>
<annotation cp="๐ฑ๐ฐ">flagg</annotation>
<annotation cp="๐ฑ๐ฐ" type="tts">flagg: Sri Lanka</annotation>
<annotation cp="๐ฑ๐ท">flagg</annotation>
<annotation cp="๐ฑ๐ท" type="tts">flagg: Liberia</annotation>
<annotation cp="๐ฑ๐ธ">flagg</annotation>
<annotation cp="๐ฑ๐ธ" type="tts">flagg: Lesotho</annotation>
<annotation cp="๐ฑ๐น">flagg</annotation>
<annotation cp="๐ฑ๐น" type="tts">flagg: Litauen</annotation>
<annotation cp="๐ฑ๐บ">flagg</annotation>
<annotation cp="๐ฑ๐บ" type="tts">flagg: Luxemburg</annotation>
<annotation cp="๐ฑ๐ป">flagg</annotation>
<annotation cp="๐ฑ๐ป" type="tts">flagg: Latvia</annotation>
<annotation cp="๐ฑ๐พ">flagg</annotation>
<annotation cp="๐ฑ๐พ" type="tts">flagg: Libya</annotation>
<annotation cp="๐ฒ๐ฆ">flagg</annotation>
<annotation cp="๐ฒ๐ฆ" type="tts">flagg: Marokko</annotation>
<annotation cp="๐ฒ๐จ">flagg</annotation>
<annotation cp="๐ฒ๐จ" type="tts">flagg: Monaco</annotation>
<annotation cp="๐ฒ๐ฉ">flagg</annotation>
<annotation cp="๐ฒ๐ฉ" type="tts">flagg: Moldova</annotation>
<annotation cp="๐ฒ๐ช">flagg</annotation>
<annotation cp="๐ฒ๐ช" type="tts">flagg: Montenegro</annotation>
<annotation cp="๐ฒ๐ซ">flagg</annotation>
<annotation cp="๐ฒ๐ซ" type="tts">flagg: Saint-Martin</annotation>
<annotation cp="๐ฒ๐ฌ">flagg</annotation>
<annotation cp="๐ฒ๐ฌ" type="tts">flagg: Madagaskar</annotation>
<annotation cp="๐ฒ๐ญ">flagg</annotation>
<annotation cp="๐ฒ๐ญ" type="tts">flagg: Marshallรธyene</annotation>
<annotation cp="๐ฒ๐ฐ">flagg</annotation>
<annotation cp="๐ฒ๐ฐ" type="tts">flagg: Nord-Makedonia</annotation>
<annotation cp="๐ฒ๐ฑ">flagg</annotation>
<annotation cp="๐ฒ๐ฑ" type="tts">flagg: Mali</annotation>
<annotation cp="๐ฒ๐ฒ">flagg</annotation>
<annotation cp="๐ฒ๐ฒ" type="tts">flagg: Myanmar (Burma)</annotation>
<annotation cp="๐ฒ๐ณ">flagg</annotation>
<annotation cp="๐ฒ๐ณ" type="tts">flagg: Mongolia</annotation>
<annotation cp="๐ฒ๐ด">flagg</annotation>
<annotation cp="๐ฒ๐ด" type="tts">flagg: Macao S.A.R. Kina</annotation>
<annotation cp="๐ฒ๐ต">flagg</annotation>
<annotation cp="๐ฒ๐ต" type="tts">flagg: Nord-Marianene</annotation>
<annotation cp="๐ฒ๐ถ">flagg</annotation>
<annotation cp="๐ฒ๐ถ" type="tts">flagg: Martinique</annotation>
<annotation cp="๐ฒ๐ท">flagg</annotation>
<annotation cp="๐ฒ๐ท" type="tts">flagg: Mauritania</annotation>
<annotation cp="๐ฒ๐ธ">flagg</annotation>
<annotation cp="๐ฒ๐ธ" type="tts">flagg: Montserrat</annotation>
<annotation cp="๐ฒ๐น">flagg</annotation>
<annotation cp="๐ฒ๐น" type="tts">flagg: Malta</annotation>
<annotation cp="๐ฒ๐บ">flagg</annotation>
<annotation cp="๐ฒ๐บ" type="tts">flagg: Mauritius</annotation>
<annotation cp="๐ฒ๐ป">flagg</annotation>
<annotation cp="๐ฒ๐ป" type="tts">flagg: Maldivene</annotation>
<annotation cp="๐ฒ๐ผ">flagg</annotation>
<annotation cp="๐ฒ๐ผ" type="tts">flagg: Malawi</annotation>
<annotation cp="๐ฒ๐ฝ">flagg</annotation>
<annotation cp="๐ฒ๐ฝ" type="tts">flagg: Mexico</annotation>
<annotation cp="๐ฒ๐พ">flagg</annotation>
<annotation cp="๐ฒ๐พ" type="tts">flagg: Malaysia</annotation>
<annotation cp="๐ฒ๐ฟ">flagg</annotation>
<annotation cp="๐ฒ๐ฟ" type="tts">flagg: Mosambik</annotation>
<annotation cp="๐ณ๐ฆ">flagg</annotation>
<annotation cp="๐ณ๐ฆ" type="tts">flagg: Namibia</annotation>
<annotation cp="๐ณ๐จ">flagg</annotation>
<annotation cp="๐ณ๐จ" type="tts">flagg: Ny-Caledonia</annotation>
<annotation cp="๐ณ๐ช">flagg</annotation>
<annotation cp="๐ณ๐ช" type="tts">flagg: Niger</annotation>
<annotation cp="๐ณ๐ซ">flagg</annotation>
<annotation cp="๐ณ๐ซ" type="tts">flagg: Norfolkรธya</annotation>
<annotation cp="๐ณ๐ฌ">flagg</annotation>
<annotation cp="๐ณ๐ฌ" type="tts">flagg: Nigeria</annotation>
<annotation cp="๐ณ๐ฎ">flagg</annotation>
<annotation cp="๐ณ๐ฎ" type="tts">flagg: Nicaragua</annotation>
<annotation cp="๐ณ๐ฑ">flagg</annotation>
<annotation cp="๐ณ๐ฑ" type="tts">flagg: Nederland</annotation>
<annotation cp="๐ณ๐ด">flagg</annotation>
<annotation cp="๐ณ๐ด" type="tts">flagg: Norge</annotation>
<annotation cp="๐ณ๐ต">flagg</annotation>
<annotation cp="๐ณ๐ต" type="tts">flagg: Nepal</annotation>
<annotation cp="๐ณ๐ท">flagg</annotation>
<annotation cp="๐ณ๐ท" type="tts">flagg: Nauru</annotation>
<annotation cp="๐ณ๐บ">flagg</annotation>
<annotation cp="๐ณ๐บ" type="tts">flagg: Niue</annotation>
<annotation cp="๐ณ๐ฟ">flagg</annotation>
<annotation cp="๐ณ๐ฟ" type="tts">flagg: New Zealand</annotation>
<annotation cp="๐ด๐ฒ">flagg</annotation>
<annotation cp="๐ด๐ฒ" type="tts">flagg: Oman</annotation>
<annotation cp="๐ต๐ฆ">flagg</annotation>
<annotation cp="๐ต๐ฆ" type="tts">flagg: Panama</annotation>
<annotation cp="๐ต๐ช">flagg</annotation>
<annotation cp="๐ต๐ช" type="tts">flagg: Peru</annotation>
<annotation cp="๐ต๐ซ">flagg</annotation>
<annotation cp="๐ต๐ซ" type="tts">flagg: Fransk Polynesia</annotation>
<annotation cp="๐ต๐ฌ">flagg</annotation>
<annotation cp="๐ต๐ฌ" type="tts">flagg: Papua Ny-Guinea</annotation>
<annotation cp="๐ต๐ญ">flagg</annotation>
<annotation cp="๐ต๐ญ" type="tts">flagg: Filippinene</annotation>
<annotation cp="๐ต๐ฐ">flagg</annotation>
<annotation cp="๐ต๐ฐ" type="tts">flagg: Pakistan</annotation>
<annotation cp="๐ต๐ฑ">flagg</annotation>
<annotation cp="๐ต๐ฑ" type="tts">flagg: Polen</annotation>
<annotation cp="๐ต๐ฒ">flagg</annotation>
<annotation cp="๐ต๐ฒ" type="tts">flagg: Saint-Pierre-et-Miquelon</annotation>
<annotation cp="๐ต๐ณ">flagg</annotation>
<annotation cp="๐ต๐ณ" type="tts">flagg: Pitcairnรธyene</annotation>
<annotation cp="๐ต๐ท">flagg</annotation>
<annotation cp="๐ต๐ท" type="tts">flagg: Puerto Rico</annotation>
<annotation cp="๐ต๐ธ">flagg</annotation>
<annotation cp="๐ต๐ธ" type="tts">flagg: Det palestinske omrรฅdet</annotation>
<annotation cp="๐ต๐น">flagg</annotation>
<annotation cp="๐ต๐น" type="tts">flagg: Portugal</annotation>
<annotation cp="๐ต๐ผ">flagg</annotation>
<annotation cp="๐ต๐ผ" type="tts">flagg: Palau</annotation>
<annotation cp="๐ต๐พ">flagg</annotation>
<annotation cp="๐ต๐พ" type="tts">flagg: Paraguay</annotation>
<annotation cp="๐ถ๐ฆ">flagg</annotation>
<annotation cp="๐ถ๐ฆ" type="tts">flagg: Qatar</annotation>
<annotation cp="๐ท๐ช">flagg</annotation>
<annotation cp="๐ท๐ช" type="tts">flagg: Rรฉunion</annotation>
<annotation cp="๐ท๐ด">flagg</annotation>
<annotation cp="๐ท๐ด" type="tts">flagg: Romania</annotation>
<annotation cp="๐ท๐ธ">flagg</annotation>
<annotation cp="๐ท๐ธ" type="tts">flagg: Serbia</annotation>
<annotation cp="๐ท๐บ">flagg</annotation>
<annotation cp="๐ท๐บ" type="tts">flagg: Russland</annotation>
<annotation cp="๐ท๐ผ">flagg</annotation>
<annotation cp="๐ท๐ผ" type="tts">flagg: Rwanda</annotation>
<annotation cp="๐ธ๐ฆ">flagg</annotation>
<annotation cp="๐ธ๐ฆ" type="tts">flagg: Saudi-Arabia</annotation>
<annotation cp="๐ธ๐ง">flagg</annotation>
<annotation cp="๐ธ๐ง" type="tts">flagg: Salomonรธyene</annotation>
<annotation cp="๐ธ๐จ">flagg</annotation>
<annotation cp="๐ธ๐จ" type="tts">flagg: Seychellene</annotation>
<annotation cp="๐ธ๐ฉ">flagg</annotation>
<annotation cp="๐ธ๐ฉ" type="tts">flagg: Sudan</annotation>
<annotation cp="๐ธ๐ช">flagg</annotation>
<annotation cp="๐ธ๐ช" type="tts">flagg: Sverige</annotation>
<annotation cp="๐ธ๐ฌ">flagg</annotation>
<annotation cp="๐ธ๐ฌ" type="tts">flagg: Singapore</annotation>
<annotation cp="๐ธ๐ญ">flagg</annotation>
<annotation cp="๐ธ๐ญ" type="tts">flagg: St. Helena</annotation>
<annotation cp="๐ธ๐ฎ">flagg</annotation>
<annotation cp="๐ธ๐ฎ" type="tts">flagg: Slovenia</annotation>
<annotation cp="๐ธ๐ฏ">flagg</annotation>
<annotation cp="๐ธ๐ฏ" type="tts">flagg: Svalbard og Jan Mayen</annotation>
<annotation cp="๐ธ๐ฐ">flagg</annotation>
<annotation cp="๐ธ๐ฐ" type="tts">flagg: Slovakia</annotation>
<annotation cp="๐ธ๐ฑ">flagg</annotation>
<annotation cp="๐ธ๐ฑ" type="tts">flagg: Sierra Leone</annotation>
<annotation cp="๐ธ๐ฒ">flagg</annotation>
<annotation cp="๐ธ๐ฒ" type="tts">flagg: San Marino</annotation>
<annotation cp="๐ธ๐ณ">flagg</annotation>
<annotation cp="๐ธ๐ณ" type="tts">flagg: Senegal</annotation>
<annotation cp="๐ธ๐ด">flagg</annotation>
<annotation cp="๐ธ๐ด" type="tts">flagg: Somalia</annotation>
<annotation cp="๐ธ๐ท">flagg</annotation>
<annotation cp="๐ธ๐ท" type="tts">flagg: Surinam</annotation>
<annotation cp="๐ธ๐ธ">flagg</annotation>
<annotation cp="๐ธ๐ธ" type="tts">flagg: Sรธr-Sudan</annotation>
<annotation cp="๐ธ๐น">flagg</annotation>
<annotation cp="๐ธ๐น" type="tts">flagg: Sรฃo Tomรฉ og Prรญncipe</annotation>
<annotation cp="๐ธ๐ป">flagg</annotation>
<annotation cp="๐ธ๐ป" type="tts">flagg: El Salvador</annotation>
<annotation cp="๐ธ๐ฝ">flagg</annotation>
<annotation cp="๐ธ๐ฝ" type="tts">flagg: Sint Maarten</annotation>
<annotation cp="๐ธ๐พ">flagg</annotation>
<annotation cp="๐ธ๐พ" type="tts">flagg: Syria</annotation>
<annotation cp="๐ธ๐ฟ">flagg</annotation>
<annotation cp="๐ธ๐ฟ" type="tts">flagg: Eswatini</annotation>
<annotation cp="๐น๐ฆ">flagg</annotation>
<annotation cp="๐น๐ฆ" type="tts">flagg: Tristan da Cunha</annotation>
<annotation cp="๐น๐จ">flagg</annotation>
<annotation cp="๐น๐จ" type="tts">flagg: Turks- og Caicosรธyene</annotation>
<annotation cp="๐น๐ฉ">flagg</annotation>
<annotation cp="๐น๐ฉ" type="tts">flagg: Tsjad</annotation>
<annotation cp="๐น๐ซ">flagg</annotation>
<annotation cp="๐น๐ซ" type="tts">flagg: De franske sรธrterritorier</annotation>
<annotation cp="๐น๐ฌ">flagg</annotation>
<annotation cp="๐น๐ฌ" type="tts">flagg: Togo</annotation>
<annotation cp="๐น๐ญ">flagg</annotation>
<annotation cp="๐น๐ญ" type="tts">flagg: Thailand</annotation>
<annotation cp="๐น๐ฏ">flagg</annotation>
<annotation cp="๐น๐ฏ" type="tts">flagg: Tadsjikistan</annotation>
<annotation cp="๐น๐ฐ">flagg</annotation>
<annotation cp="๐น๐ฐ" type="tts">flagg: Tokelau</annotation>
<annotation cp="๐น๐ฑ">flagg</annotation>
<annotation cp="๐น๐ฑ" type="tts">flagg: รst-Timor</annotation>
<annotation cp="๐น๐ฒ">flagg</annotation>
<annotation cp="๐น๐ฒ" type="tts">flagg: Turkmenistan</annotation>
<annotation cp="๐น๐ณ">flagg</annotation>
<annotation cp="๐น๐ณ" type="tts">flagg: Tunisia</annotation>
<annotation cp="๐น๐ด">flagg</annotation>
<annotation cp="๐น๐ด" type="tts">flagg: Tonga</annotation>
<annotation cp="๐น๐ท">flagg</annotation>
<annotation cp="๐น๐ท" type="tts">flagg: Tyrkia</annotation>
<annotation cp="๐น๐น">flagg</annotation>
<annotation cp="๐น๐น" type="tts">flagg: Trinidad og Tobago</annotation>
<annotation cp="๐น๐ป">flagg</annotation>
<annotation cp="๐น๐ป" type="tts">flagg: Tuvalu</annotation>
<annotation cp="๐น๐ผ">flagg</annotation>
<annotation cp="๐น๐ผ" type="tts">flagg: Taiwan</annotation>
<annotation cp="๐น๐ฟ">flagg</annotation>
<annotation cp="๐น๐ฟ" type="tts">flagg: Tanzania</annotation>
<annotation cp="๐บ๐ฆ">flagg</annotation>
<annotation cp="๐บ๐ฆ" type="tts">flagg: Ukraina</annotation>
<annotation cp="๐บ๐ฌ">flagg</annotation>
<annotation cp="๐บ๐ฌ" type="tts">flagg: Uganda</annotation>
<annotation cp="๐บ๐ฒ">flagg</annotation>
<annotation cp="๐บ๐ฒ" type="tts">flagg: USAs ytre รธyer</annotation>
<annotation cp="๐บ๐ณ">flagg</annotation>
<annotation cp="๐บ๐ณ" type="tts">flagg: FN</annotation>
<annotation cp="๐บ๐ธ">flagg</annotation>
<annotation cp="๐บ๐ธ" type="tts">flagg: USA</annotation>
<annotation cp="๐บ๐พ">flagg</annotation>
<annotation cp="๐บ๐พ" type="tts">flagg: Uruguay</annotation>
<annotation cp="๐บ๐ฟ">flagg</annotation>
<annotation cp="๐บ๐ฟ" type="tts">flagg: Usbekistan</annotation>
<annotation cp="๐ป๐ฆ">flagg</annotation>
<annotation cp="๐ป๐ฆ" type="tts">flagg: Vatikanstaten</annotation>
<annotation cp="๐ป๐จ">flagg</annotation>
<annotation cp="๐ป๐จ" type="tts">flagg: St. Vincent og Grenadinene</annotation>
<annotation cp="๐ป๐ช">flagg</annotation>
<annotation cp="๐ป๐ช" type="tts">flagg: Venezuela</annotation>
<annotation cp="๐ป๐ฌ">flagg</annotation>
<annotation cp="๐ป๐ฌ" type="tts">flagg: De britiske jomfruรธyene</annotation>
<annotation cp="๐ป๐ฎ">flagg</annotation>
<annotation cp="๐ป๐ฎ" type="tts">flagg: De amerikanske jomfruรธyene</annotation>
<annotation cp="๐ป๐ณ">flagg</annotation>
<annotation cp="๐ป๐ณ" type="tts">flagg: Vietnam</annotation>
<annotation cp="๐ป๐บ">flagg</annotation>
<annotation cp="๐ป๐บ" type="tts">flagg: Vanuatu</annotation>
<annotation cp="๐ผ๐ซ">flagg</annotation>
<annotation cp="๐ผ๐ซ" type="tts">flagg: Wallis og Futuna</annotation>
<annotation cp="๐ผ๐ธ">flagg</annotation>
<annotation cp="๐ผ๐ธ" type="tts">flagg: Samoa</annotation>
<annotation cp="๐ฝ๐ฐ">flagg</annotation>
<annotation cp="๐ฝ๐ฐ" type="tts">flagg: Kosovo</annotation>
<annotation cp="๐พ๐ช">flagg</annotation>
<annotation cp="๐พ๐ช" type="tts">flagg: Jemen</annotation>
<annotation cp="๐พ๐น">flagg</annotation>
<annotation cp="๐พ๐น" type="tts">flagg: Mayotte</annotation>
<annotation cp="๐ฟ๐ฆ">flagg</annotation>
<annotation cp="๐ฟ๐ฆ" type="tts">flagg: Sรธr-Afrika</annotation>
<annotation cp="๐ฟ๐ฒ">flagg</annotation>
<annotation cp="๐ฟ๐ฒ" type="tts">flagg: Zambia</annotation>
<annotation cp="๐ฟ๐ผ">flagg</annotation>
<annotation cp="๐ฟ๐ผ" type="tts">flagg: Zimbabwe</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ">flagg</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ" type="tts">flagg: England</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ">flagg</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ" type="tts">flagg: Skottland</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ">flagg</annotation>
<annotation cp="๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ" type="tts">flagg: Wales</annotation>
<annotation cp="0โฃ">taster</annotation>
<annotation cp="0โฃ" type="tts">taster: 0</annotation>
<annotation cp="1โฃ">taster</annotation>
<annotation cp="1โฃ" type="tts">taster: 1</annotation>
<annotation cp="2โฃ">taster</annotation>
<annotation cp="2โฃ" type="tts">taster: 2</annotation>
<annotation cp="3โฃ">taster</annotation>
<annotation cp="3โฃ" type="tts">taster: 3</annotation>
<annotation cp="4โฃ">taster</annotation>
<annotation cp="4โฃ" type="tts">taster: 4</annotation>
<annotation cp="5โฃ">taster</annotation>
<annotation cp="5โฃ" type="tts">taster: 5</annotation>
<annotation cp="6โฃ">taster</annotation>
<annotation cp="6โฃ" type="tts">taster: 6</annotation>
<annotation cp="7โฃ">taster</annotation>
<annotation cp="7โฃ" type="tts">taster: 7</annotation>
<annotation cp="8โฃ">taster</annotation>
<annotation cp="8โฃ" type="tts">taster: 8</annotation>
<annotation cp="9โฃ">taster</annotation>
<annotation cp="9โฃ" type="tts">taster: 9</annotation>
</annotations>
</ldml>
|