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
|
<?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="es"/>
<territory type="MX"/>
</identity>
<annotations>
<annotation cp="🤚🏻">dorso de la mano | tono de piel claro</annotation>
<annotation cp="🤚🏻" type="tts">dorso de la mano: tono de piel claro</annotation>
<annotation cp="🤚🏼">dorso de la mano | tono de piel claro medio</annotation>
<annotation cp="🤚🏼" type="tts">dorso de la mano: tono de piel claro medio</annotation>
<annotation cp="🤚🏽">dorso de la mano | tono de piel medio</annotation>
<annotation cp="🤚🏽" type="tts">dorso de la mano: tono de piel medio</annotation>
<annotation cp="🤚🏾">dorso de la mano | tono de piel oscuro medio</annotation>
<annotation cp="🤚🏾" type="tts">dorso de la mano: tono de piel oscuro medio</annotation>
<annotation cp="🤚🏿">dorso de la mano | tono de piel oscuro</annotation>
<annotation cp="🤚🏿" type="tts">dorso de la mano: tono de piel oscuro</annotation>
<annotation cp="🖐🏻">dedos | mano | mano abierta | palma de la mano | tono de piel claro</annotation>
<annotation cp="🖐🏼">dedos | mano | mano abierta | palma de la mano | tono de piel claro medio</annotation>
<annotation cp="🖐🏽">dedos | mano | mano abierta | palma de la mano | tono de piel medio</annotation>
<annotation cp="🖐🏾">dedos | mano | mano abierta | palma de la mano | tono de piel oscuro medio</annotation>
<annotation cp="🖐🏿">dedos | mano | mano abierta | palma de la mano | tono de piel oscuro</annotation>
<annotation cp="✋🏻">mano | mano abierta | palma de la mano | tono de piel claro</annotation>
<annotation cp="✋🏼">mano | mano abierta | palma de la mano | tono de piel claro medio</annotation>
<annotation cp="✋🏽">mano | mano abierta | palma de la mano | tono de piel medio</annotation>
<annotation cp="✋🏾">mano | mano abierta | palma de la mano | tono de piel oscuro medio</annotation>
<annotation cp="✋🏿">mano | mano abierta | palma de la mano | tono de piel oscuro</annotation>
<annotation cp="🖖🏻">saludo | spock | star | tono de piel claro | trek | vulcano</annotation>
<annotation cp="🖖🏼">saludo | spock | star | tono de piel claro medio | trek | vulcano</annotation>
<annotation cp="🖖🏽">saludo | spock | star | tono de piel medio | trek | vulcano</annotation>
<annotation cp="🖖🏾">saludo | spock | star | tono de piel oscuro medio | trek | vulcano</annotation>
<annotation cp="🖖🏿">saludo | spock | star | tono de piel oscuro | trek | vulcano</annotation>
<annotation cp="👌🏻">señal de aprobación con la mano | tono de piel claro</annotation>
<annotation cp="👌🏻" type="tts">señal de aprobación con la mano: tono de piel claro</annotation>
<annotation cp="👌🏼">señal de aprobación con la mano | tono de piel claro medio</annotation>
<annotation cp="👌🏼" type="tts">señal de aprobación con la mano: tono de piel claro medio</annotation>
<annotation cp="👌🏽">señal de aprobación con la mano | tono de piel medio</annotation>
<annotation cp="👌🏽" type="tts">señal de aprobación con la mano: tono de piel medio</annotation>
<annotation cp="👌🏾">señal de aprobación con la mano | tono de piel oscuro medio</annotation>
<annotation cp="👌🏾" type="tts">señal de aprobación con la mano: tono de piel oscuro medio</annotation>
<annotation cp="👌🏿">señal de aprobación con la mano | tono de piel oscuro</annotation>
<annotation cp="👌🏿" type="tts">señal de aprobación con la mano: tono de piel oscuro</annotation>
<annotation cp="✌🏻">amor y paz | mano con señal de victoria | tijera | tono de piel claro | victoria</annotation>
<annotation cp="✌🏻" type="tts">mano con señal de victoria: tono de piel claro</annotation>
<annotation cp="✌🏼">amor y paz | mano con señal de victoria | tijera | tono de piel claro medio | victoria</annotation>
<annotation cp="✌🏼" type="tts">mano con señal de victoria: tono de piel claro medio</annotation>
<annotation cp="✌🏽">amor y paz | mano con señal de victoria | tijera | tono de piel medio | victoria</annotation>
<annotation cp="✌🏽" type="tts">mano con señal de victoria: tono de piel medio</annotation>
<annotation cp="✌🏾">amor y paz | mano con señal de victoria | tijera | tono de piel oscuro medio | victoria</annotation>
<annotation cp="✌🏾" type="tts">mano con señal de victoria: tono de piel oscuro medio</annotation>
<annotation cp="✌🏿">amor y paz | mano con señal de victoria | tijera | tono de piel oscuro | victoria</annotation>
<annotation cp="✌🏿" type="tts">mano con señal de victoria: tono de piel oscuro</annotation>
<annotation cp="🤞🏻">dedos cruzados | mano | suerte | tono de piel claro</annotation>
<annotation cp="🤞🏼">dedos cruzados | mano | suerte | tono de piel claro medio</annotation>
<annotation cp="🤞🏽">dedos cruzados | mano | suerte | tono de piel medio</annotation>
<annotation cp="🤞🏾">dedos cruzados | mano | suerte | tono de piel oscuro medio</annotation>
<annotation cp="🤞🏿">dedos cruzados | mano | suerte | tono de piel oscuro</annotation>
<annotation cp="🤘🏻">cuernos | dedos | mano haciendo los cuernos | rock | roll | tono de piel claro</annotation>
<annotation cp="🤘🏻" type="tts">mano haciendo los cuernos: tono de piel claro</annotation>
<annotation cp="🤘🏼">cuernos | dedos | mano haciendo los cuernos | rock | roll | tono de piel claro medio</annotation>
<annotation cp="🤘🏼" type="tts">mano haciendo los cuernos: tono de piel claro medio</annotation>
<annotation cp="🤘🏽">cuernos | dedos | mano haciendo los cuernos | rock | roll | tono de piel medio</annotation>
<annotation cp="🤘🏽" type="tts">mano haciendo los cuernos: tono de piel medio</annotation>
<annotation cp="🤘🏾">cuernos | dedos | mano haciendo los cuernos | rock | roll | tono de piel oscuro medio</annotation>
<annotation cp="🤘🏾" type="tts">mano haciendo los cuernos: tono de piel oscuro medio</annotation>
<annotation cp="🤘🏿">cuernos | dedos | mano haciendo los cuernos | rock | roll | tono de piel oscuro</annotation>
<annotation cp="🤘🏿" type="tts">mano haciendo los cuernos: tono de piel oscuro</annotation>
<annotation cp="🤙🏻">gesto | llamada | mano | mano haciendo el gesto de llamar | tono de piel claro</annotation>
<annotation cp="🤙🏻" type="tts">mano haciendo el gesto de llamar: tono de piel claro</annotation>
<annotation cp="🤙🏼">gesto | llamada | mano | mano haciendo el gesto de llamar | tono de piel claro medio</annotation>
<annotation cp="🤙🏼" type="tts">mano haciendo el gesto de llamar: tono de piel claro medio</annotation>
<annotation cp="🤙🏽">gesto | llamada | mano | mano haciendo el gesto de llamar | tono de piel medio</annotation>
<annotation cp="🤙🏽" type="tts">mano haciendo el gesto de llamar: tono de piel medio</annotation>
<annotation cp="🤙🏾">gesto | llamada | mano | mano haciendo el gesto de llamar | tono de piel oscuro medio</annotation>
<annotation cp="🤙🏾" type="tts">mano haciendo el gesto de llamar: tono de piel oscuro medio</annotation>
<annotation cp="🤙🏿">gesto | llamada | mano | mano haciendo el gesto de llamar | tono de piel oscuro</annotation>
<annotation cp="🤙🏿" type="tts">mano haciendo el gesto de llamar: tono de piel oscuro</annotation>
<annotation cp="👈🏻">apuntar | dedo | dorso | índice | índice hacia la izquierda | mano con dedo índice hacia la izquierda | tono de piel claro</annotation>
<annotation cp="👈🏻" type="tts">mano con dedo índice hacia la izquierda: tono de piel claro</annotation>
<annotation cp="👈🏼">apuntar | dedo | dorso | índice | índice hacia la izquierda | mano con dedo índice hacia la izquierda | tono de piel claro medio</annotation>
<annotation cp="👈🏼" type="tts">mano con dedo índice hacia la izquierda: tono de piel claro medio</annotation>
<annotation cp="👈🏽">apuntar | dedo | dorso | índice | índice hacia la izquierda | mano con dedo índice hacia la izquierda | tono de piel medio</annotation>
<annotation cp="👈🏽" type="tts">mano con dedo índice hacia la izquierda: tono de piel medio</annotation>
<annotation cp="👈🏾">apuntar | dedo | dorso | índice | índice hacia la izquierda | mano con dedo índice hacia la izquierda | tono de piel oscuro medio</annotation>
<annotation cp="👈🏾" type="tts">mano con dedo índice hacia la izquierda: tono de piel oscuro medio</annotation>
<annotation cp="👈🏿">apuntar | dedo | dorso | índice | índice hacia la izquierda | mano con dedo índice hacia la izquierda | tono de piel oscuro</annotation>
<annotation cp="👈🏿" type="tts">mano con dedo índice hacia la izquierda: tono de piel oscuro</annotation>
<annotation cp="👉🏻">apuntar | dedo | dorso | índice | índice hacia la derecha | mano con dedo índice hacia la derecha | tono de piel claro</annotation>
<annotation cp="👉🏻" type="tts">mano con dedo índice hacia la derecha: tono de piel claro</annotation>
<annotation cp="👉🏼">apuntar | dedo | dorso | índice | índice hacia la derecha | mano con dedo índice hacia la derecha | tono de piel claro medio</annotation>
<annotation cp="👉🏼" type="tts">mano con dedo índice hacia la derecha: tono de piel claro medio</annotation>
<annotation cp="👉🏽">apuntar | dedo | dorso | índice | índice hacia la derecha | mano con dedo índice hacia la derecha | tono de piel medio</annotation>
<annotation cp="👉🏽" type="tts">mano con dedo índice hacia la derecha: tono de piel medio</annotation>
<annotation cp="👉🏾">apuntar | dedo | dorso | índice | índice hacia la derecha | mano con dedo índice hacia la derecha | tono de piel oscuro medio</annotation>
<annotation cp="👉🏾" type="tts">mano con dedo índice hacia la derecha: tono de piel oscuro medio</annotation>
<annotation cp="👉🏿">apuntar | dedo | dorso | índice | índice hacia la derecha | mano con dedo índice hacia la derecha | tono de piel oscuro</annotation>
<annotation cp="👉🏿" type="tts">mano con dedo índice hacia la derecha: tono de piel oscuro</annotation>
<annotation cp="👆🏻">apuntar | dedo | índice | mano | señalar | tono de piel claro</annotation>
<annotation cp="👆🏼">apuntar | dedo | índice | mano | señalar | tono de piel claro medio</annotation>
<annotation cp="👆🏽">apuntar | dedo | índice | mano | señalar | tono de piel medio</annotation>
<annotation cp="👆🏾">apuntar | dedo | índice | mano | señalar | tono de piel oscuro medio</annotation>
<annotation cp="👆🏿">apuntar | dedo | índice | mano | señalar | tono de piel oscuro</annotation>
<annotation cp="🖕🏻">dedo | insulto | mano | mano con el dedo medio levantado | medio | tono de piel claro</annotation>
<annotation cp="🖕🏻" type="tts">mano con el dedo medio levantado: tono de piel claro</annotation>
<annotation cp="🖕🏼">dedo | insulto | mano | mano con el dedo medio levantado | medio | tono de piel claro medio</annotation>
<annotation cp="🖕🏼" type="tts">mano con el dedo medio levantado: tono de piel claro medio</annotation>
<annotation cp="🖕🏽">dedo | insulto | mano | mano con el dedo medio levantado | medio | tono de piel medio</annotation>
<annotation cp="🖕🏽" type="tts">mano con el dedo medio levantado: tono de piel medio</annotation>
<annotation cp="🖕🏾">dedo | insulto | mano | mano con el dedo medio levantado | medio | tono de piel oscuro medio</annotation>
<annotation cp="🖕🏾" type="tts">mano con el dedo medio levantado: tono de piel oscuro medio</annotation>
<annotation cp="🖕🏿">dedo | insulto | mano | mano con el dedo medio levantado | medio | tono de piel oscuro</annotation>
<annotation cp="🖕🏿" type="tts">mano con el dedo medio levantado: tono de piel oscuro</annotation>
<annotation cp="👇🏻">abajo | apuntar | índice | mano | señalar | tono de piel claro</annotation>
<annotation cp="👇🏼">abajo | apuntar | índice | mano | señalar | tono de piel claro medio</annotation>
<annotation cp="👇🏽">abajo | apuntar | índice | mano | señalar | tono de piel medio</annotation>
<annotation cp="👇🏾">abajo | apuntar | índice | mano | señalar | tono de piel oscuro medio</annotation>
<annotation cp="👇🏿">abajo | apuntar | índice | mano | señalar | tono de piel oscuro</annotation>
<annotation cp="☝🏻">apuntar | arriba | dedo índice hacia arriba | índice | señalar | tono de piel claro</annotation>
<annotation cp="☝🏼">apuntar | arriba | dedo índice hacia arriba | índice | señalar | tono de piel claro medio</annotation>
<annotation cp="☝🏽">apuntar | arriba | dedo índice hacia arriba | índice | señalar | tono de piel medio</annotation>
<annotation cp="☝🏾">apuntar | arriba | dedo índice hacia arriba | índice | señalar | tono de piel oscuro medio</annotation>
<annotation cp="☝🏿">apuntar | arriba | dedo índice hacia arriba | índice | señalar | tono de piel oscuro</annotation>
<annotation cp="👍🏻">+1 | de acuerdo | OK | pulgar | señal de OK | tono de piel claro</annotation>
<annotation cp="👍🏼">+1 | de acuerdo | OK | pulgar | señal de OK | tono de piel claro medio</annotation>
<annotation cp="👍🏽">+1 | de acuerdo | OK | pulgar | señal de OK | tono de piel medio</annotation>
<annotation cp="👍🏾">+1 | de acuerdo | OK | pulgar | señal de OK | tono de piel oscuro medio</annotation>
<annotation cp="👍🏿">+1 | de acuerdo | OK | pulgar | señal de OK | tono de piel oscuro</annotation>
<annotation cp="👎🏻">-1 | abajo | desacuerdo | mano | pulgar | tono de piel claro</annotation>
<annotation cp="👎🏼">-1 | abajo | desacuerdo | mano | pulgar | tono de piel claro medio</annotation>
<annotation cp="👎🏽">-1 | abajo | desacuerdo | mano | pulgar | tono de piel medio</annotation>
<annotation cp="👎🏾">-1 | abajo | desacuerdo | mano | pulgar | tono de piel oscuro medio</annotation>
<annotation cp="👎🏿">-1 | abajo | desacuerdo | mano | pulgar | tono de piel oscuro</annotation>
<annotation cp="✊🏻">puño en alto | tono de piel claro</annotation>
<annotation cp="✊🏻" type="tts">puño en alto: tono de piel claro</annotation>
<annotation cp="✊🏼">puño en alto | tono de piel claro medio</annotation>
<annotation cp="✊🏼" type="tts">puño en alto: tono de piel claro medio</annotation>
<annotation cp="✊🏽">puño en alto | tono de piel medio</annotation>
<annotation cp="✊🏽" type="tts">puño en alto: tono de piel medio</annotation>
<annotation cp="✊🏾">puño en alto | tono de piel oscuro medio</annotation>
<annotation cp="✊🏾" type="tts">puño en alto: tono de piel oscuro medio</annotation>
<annotation cp="✊🏿">puño en alto | tono de piel oscuro</annotation>
<annotation cp="✊🏿" type="tts">puño en alto: tono de piel oscuro</annotation>
<annotation cp="🤛🏻">izquierda | puño | puño hacia la izquierda | tono de piel claro</annotation>
<annotation cp="🤛🏻" type="tts">puño hacia la izquierda: tono de piel claro</annotation>
<annotation cp="🤛🏼">izquierda | puño | puño hacia la izquierda | tono de piel claro medio</annotation>
<annotation cp="🤛🏼" type="tts">puño hacia la izquierda: tono de piel claro medio</annotation>
<annotation cp="🤛🏽">izquierda | puño | puño hacia la izquierda | tono de piel medio</annotation>
<annotation cp="🤛🏽" type="tts">puño hacia la izquierda: tono de piel medio</annotation>
<annotation cp="🤛🏾">izquierda | puño | puño hacia la izquierda | tono de piel oscuro medio</annotation>
<annotation cp="🤛🏾" type="tts">puño hacia la izquierda: tono de piel oscuro medio</annotation>
<annotation cp="🤛🏿">izquierda | puño | puño hacia la izquierda | tono de piel oscuro</annotation>
<annotation cp="🤛🏿" type="tts">puño hacia la izquierda: tono de piel oscuro</annotation>
<annotation cp="🤜🏻">derecha | puño | puño hacia la derecha | tono de piel claro</annotation>
<annotation cp="🤜🏻" type="tts">puño hacia la derecha: tono de piel claro</annotation>
<annotation cp="🤜🏼">derecha | puño | puño hacia la derecha | tono de piel claro medio</annotation>
<annotation cp="🤜🏼" type="tts">puño hacia la derecha: tono de piel claro medio</annotation>
<annotation cp="🤜🏽">derecha | puño | puño hacia la derecha | tono de piel medio</annotation>
<annotation cp="🤜🏽" type="tts">puño hacia la derecha: tono de piel medio</annotation>
<annotation cp="🤜🏾">derecha | puño | puño hacia la derecha | tono de piel oscuro medio</annotation>
<annotation cp="🤜🏾" type="tts">puño hacia la derecha: tono de piel oscuro medio</annotation>
<annotation cp="🤜🏿">derecha | puño | puño hacia la derecha | tono de piel oscuro</annotation>
<annotation cp="🤜🏿" type="tts">puño hacia la derecha: tono de piel oscuro</annotation>
<annotation cp="🙌🏻">chocar | cinco | festejo | manos | manos levantadas celebrando | tono de piel claro</annotation>
<annotation cp="🙌🏻" type="tts">manos levantadas celebrando: tono de piel claro</annotation>
<annotation cp="🙌🏼">chocar | cinco | festejo | manos | manos levantadas celebrando | tono de piel claro medio</annotation>
<annotation cp="🙌🏼" type="tts">manos levantadas celebrando: tono de piel claro medio</annotation>
<annotation cp="🙌🏽">chocar | cinco | festejo | manos | manos levantadas celebrando | tono de piel medio</annotation>
<annotation cp="🙌🏽" type="tts">manos levantadas celebrando: tono de piel medio</annotation>
<annotation cp="🙌🏾">chocar | cinco | festejo | manos | manos levantadas celebrando | tono de piel oscuro medio</annotation>
<annotation cp="🙌🏾" type="tts">manos levantadas celebrando: tono de piel oscuro medio</annotation>
<annotation cp="🙌🏿">chocar | cinco | festejo | manos | manos levantadas celebrando | tono de piel oscuro</annotation>
<annotation cp="🙌🏿" type="tts">manos levantadas celebrando: tono de piel oscuro</annotation>
<annotation cp="🙏🏻">favor | gracias | oración | orar | rezar | tono de piel claro</annotation>
<annotation cp="🙏🏼">favor | gracias | oración | orar | rezar | tono de piel claro medio</annotation>
<annotation cp="🙏🏽">favor | gracias | oración | orar | rezar | tono de piel medio</annotation>
<annotation cp="🙏🏾">favor | gracias | oración | orar | rezar | tono de piel oscuro medio</annotation>
<annotation cp="🙏🏿">favor | gracias | oración | orar | rezar | tono de piel oscuro</annotation>
<annotation cp="💅🏻">esmalte | pintarse las uñas | tono de piel claro | uñas</annotation>
<annotation cp="💅🏼">esmalte | pintarse las uñas | tono de piel claro medio | uñas</annotation>
<annotation cp="💅🏽">esmalte | pintarse las uñas | tono de piel medio | uñas</annotation>
<annotation cp="💅🏾">esmalte | pintarse las uñas | tono de piel oscuro medio | uñas</annotation>
<annotation cp="💅🏿">esmalte | pintarse las uñas | tono de piel oscuro | uñas</annotation>
<annotation cp="🤳🏻">selfi | tono de piel claro</annotation>
<annotation cp="🤳🏻" type="tts">selfi: tono de piel claro</annotation>
<annotation cp="🤳🏼">selfi | tono de piel claro medio</annotation>
<annotation cp="🤳🏼" type="tts">selfi: tono de piel claro medio</annotation>
<annotation cp="🤳🏽">selfi | tono de piel medio</annotation>
<annotation cp="🤳🏽" type="tts">selfi: tono de piel medio</annotation>
<annotation cp="🤳🏾">selfi | tono de piel oscuro medio</annotation>
<annotation cp="🤳🏾" type="tts">selfi: tono de piel oscuro medio</annotation>
<annotation cp="🤳🏿">selfi | tono de piel oscuro</annotation>
<annotation cp="🤳🏿" type="tts">selfi: tono de piel oscuro</annotation>
<annotation cp="👶🏻">bebé | cara | infante | nene | tono de piel claro</annotation>
<annotation cp="👶🏼">bebé | cara | infante | nene | tono de piel claro medio</annotation>
<annotation cp="👶🏽">bebé | cara | infante | nene | tono de piel medio</annotation>
<annotation cp="👶🏾">bebé | cara | infante | nene | tono de piel oscuro medio</annotation>
<annotation cp="👶🏿">bebé | cara | infante | nene | tono de piel oscuro</annotation>
<annotation cp="🧒🏻">joven | tono de piel claro</annotation>
<annotation cp="🧒🏻" type="tts">joven: tono de piel claro</annotation>
<annotation cp="🧒🏼">joven | tono de piel claro medio</annotation>
<annotation cp="🧒🏼" type="tts">joven: tono de piel claro medio</annotation>
<annotation cp="🧒🏽">joven | tono de piel medio</annotation>
<annotation cp="🧒🏽" type="tts">joven: tono de piel medio</annotation>
<annotation cp="🧒🏾">joven | tono de piel oscuro medio</annotation>
<annotation cp="🧒🏾" type="tts">joven: tono de piel oscuro medio</annotation>
<annotation cp="🧒🏿">joven | tono de piel oscuro</annotation>
<annotation cp="🧒🏿" type="tts">joven: tono de piel oscuro</annotation>
<annotation cp="🧑🏻">persona | tono de piel claro</annotation>
<annotation cp="🧑🏻" type="tts">persona: tono de piel claro</annotation>
<annotation cp="🧑🏼">persona | tono de piel claro medio</annotation>
<annotation cp="🧑🏼" type="tts">persona: tono de piel claro medio</annotation>
<annotation cp="🧑🏽">persona | tono de piel medio</annotation>
<annotation cp="🧑🏽" type="tts">persona: tono de piel medio</annotation>
<annotation cp="🧑🏾">persona | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾" type="tts">persona: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿">persona | tono de piel oscuro</annotation>
<annotation cp="🧑🏿" type="tts">persona: tono de piel oscuro</annotation>
<annotation cp="👱🏻">cara | persona rubia | tono de piel claro</annotation>
<annotation cp="👱🏼">cara | persona rubia | tono de piel claro medio</annotation>
<annotation cp="👱🏽">cara | persona rubia | tono de piel medio</annotation>
<annotation cp="👱🏾">cara | persona rubia | tono de piel oscuro medio</annotation>
<annotation cp="👱🏿">cara | persona rubia | tono de piel oscuro</annotation>
<annotation cp="🧑🦰">pelirrojo | persona</annotation>
<annotation cp="🧑🦰" type="tts">persona: pelirrojo</annotation>
<annotation cp="🧑🏻🦰">pelirrojo | persona | tono de piel claro</annotation>
<annotation cp="🧑🏻🦰" type="tts">persona: tono de piel claro y pelirrojo</annotation>
<annotation cp="🧑🏼🦰">pelirrojo | persona | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🦰" type="tts">persona: tono de piel claro medio y pelirrojo</annotation>
<annotation cp="🧑🏽🦰">pelirrojo | persona | tono de piel medio</annotation>
<annotation cp="🧑🏽🦰" type="tts">persona: tono de piel medio y pelirrojo</annotation>
<annotation cp="🧑🏾🦰">pelirrojo | persona | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🦰" type="tts">persona: tono de piel oscuro medio y pelirrojo</annotation>
<annotation cp="🧑🏿🦰">pelirrojo | persona | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🦰" type="tts">persona: tono de piel oscuro y pelirrojo</annotation>
<annotation cp="🧑🦱">pelo enrulado | persona</annotation>
<annotation cp="🧑🦱" type="tts">persona: pelo enrulado</annotation>
<annotation cp="🧑🏻🦱">pelo enrulado | persona | tono de piel claro</annotation>
<annotation cp="🧑🏻🦱" type="tts">persona: tono de piel claro y pelo enrulado</annotation>
<annotation cp="🧑🏼🦱">pelo enrulado | persona | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🦱" type="tts">persona: tono de piel claro medio y pelo enrulado</annotation>
<annotation cp="🧑🏽🦱">pelo enrulado | persona | tono de piel medio</annotation>
<annotation cp="🧑🏽🦱" type="tts">persona: tono de piel medio y pelo enrulado</annotation>
<annotation cp="🧑🏾🦱">pelo enrulado | persona | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🦱" type="tts">persona: tono de piel oscuro medio y pelo enrulado</annotation>
<annotation cp="🧑🏿🦱">pelo enrulado | persona | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🦱" type="tts">persona: tono de piel oscuro y pelo enrulado</annotation>
<annotation cp="🧑🦳">pelo canoso | persona</annotation>
<annotation cp="🧑🦳" type="tts">persona: pelo canoso</annotation>
<annotation cp="🧑🏻🦳">pelo canoso | persona | tono de piel claro</annotation>
<annotation cp="🧑🏻🦳" type="tts">persona: tono de piel claro y pelo canoso</annotation>
<annotation cp="🧑🏼🦳">pelo canoso | persona | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🦳" type="tts">persona: tono de piel claro medio y pelo canoso</annotation>
<annotation cp="🧑🏽🦳">pelo canoso | persona | tono de piel medio</annotation>
<annotation cp="🧑🏽🦳" type="tts">persona: tono de piel medio y pelo canoso</annotation>
<annotation cp="🧑🏾🦳">pelo canoso | persona | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🦳" type="tts">persona: tono de piel oscuro medio y pelo canoso</annotation>
<annotation cp="🧑🏿🦳">pelo canoso | persona | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🦳" type="tts">persona: tono de piel oscuro y pelo canoso</annotation>
<annotation cp="🧑🦲">calvo | persona</annotation>
<annotation cp="🧑🦲" type="tts">persona: calvo</annotation>
<annotation cp="🧑🏻🦲">calvo | persona | tono de piel claro</annotation>
<annotation cp="🧑🏻🦲" type="tts">persona: tono de piel claro y calvo</annotation>
<annotation cp="🧑🏼🦲">calvo | persona | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🦲" type="tts">persona: tono de piel claro medio y calvo</annotation>
<annotation cp="🧑🏽🦲">calvo | persona | tono de piel medio</annotation>
<annotation cp="🧑🏽🦲" type="tts">persona: tono de piel medio y calvo</annotation>
<annotation cp="🧑🏾🦲">calvo | persona | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🦲" type="tts">persona: tono de piel oscuro medio y calvo</annotation>
<annotation cp="🧑🏿🦲">calvo | persona | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🦲" type="tts">persona: tono de piel oscuro y calvo</annotation>
<annotation cp="👨🏻">adulto | cara | persona | señor | tono de piel claro</annotation>
<annotation cp="👨🏼">adulto | cara | persona | señor | tono de piel claro medio</annotation>
<annotation cp="👨🏽">adulto | cara | persona | señor | tono de piel medio</annotation>
<annotation cp="👨🏾">adulto | cara | persona | señor | tono de piel oscuro medio</annotation>
<annotation cp="👨🏿">adulto | cara | persona | señor | tono de piel oscuro</annotation>
<annotation cp="🧔🏻">barba | barbón | cara | persona con barba | tono de piel claro</annotation>
<annotation cp="🧔🏼">barba | barbón | cara | persona con barba | tono de piel claro medio</annotation>
<annotation cp="🧔🏽">barba | barbón | cara | persona con barba | tono de piel medio</annotation>
<annotation cp="🧔🏾">barba | barbón | cara | persona con barba | tono de piel oscuro medio</annotation>
<annotation cp="🧔🏿">barba | barbón | cara | persona con barba | tono de piel oscuro</annotation>
<annotation cp="👱🏻♂">cara | güero | hombre rubio | rubio | tono de piel claro</annotation>
<annotation cp="👱🏼♂">cara | güero | hombre rubio | rubio | tono de piel claro medio</annotation>
<annotation cp="👱🏽♂">cara | güero | hombre rubio | rubio | tono de piel medio</annotation>
<annotation cp="👱🏾♂">cara | güero | hombre rubio | rubio | tono de piel oscuro medio</annotation>
<annotation cp="👱🏿♂">cara | güero | hombre rubio | rubio | tono de piel oscuro</annotation>
<annotation cp="👨🦰">adulto | cara | pelirrojo | persona | señor</annotation>
<annotation cp="👨🦰" type="tts">hombre: pelirrojo</annotation>
<annotation cp="👨🏻🦰">adulto | cara | pelirrojo | persona | señor | tono de piel claro</annotation>
<annotation cp="👨🏻🦰" type="tts">hombre: tono de piel claro y pelirrojo</annotation>
<annotation cp="👨🏼🦰">adulto | cara | pelirrojo | persona | señor | tono de piel claro medio</annotation>
<annotation cp="👨🏼🦰" type="tts">hombre: tono de piel claro medio y pelirrojo</annotation>
<annotation cp="👨🏽🦰">adulto | cara | pelirrojo | persona | señor | tono de piel medio</annotation>
<annotation cp="👨🏽🦰" type="tts">hombre: tono de piel medio y pelirrojo</annotation>
<annotation cp="👨🏾🦰">adulto | cara | pelirrojo | persona | señor | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🦰" type="tts">hombre: tono de piel oscuro medio y pelirrojo</annotation>
<annotation cp="👨🏿🦰">adulto | cara | pelirrojo | persona | señor | tono de piel oscuro</annotation>
<annotation cp="👨🏿🦰" type="tts">hombre: tono de piel oscuro y pelirrojo</annotation>
<annotation cp="👨🦱">adulto | cara | pelo enrulado | persona | señor</annotation>
<annotation cp="👨🦱" type="tts">hombre: pelo enrulado</annotation>
<annotation cp="👨🏻🦱">adulto | cara | pelo enrulado | persona | señor | tono de piel claro</annotation>
<annotation cp="👨🏻🦱" type="tts">hombre: tono de piel claro y pelo enrulado</annotation>
<annotation cp="👨🏼🦱">adulto | cara | pelo enrulado | persona | señor | tono de piel claro medio</annotation>
<annotation cp="👨🏼🦱" type="tts">hombre: tono de piel claro medio y pelo enrulado</annotation>
<annotation cp="👨🏽🦱">adulto | cara | pelo enrulado | persona | señor | tono de piel medio</annotation>
<annotation cp="👨🏽🦱" type="tts">hombre: tono de piel medio y pelo enrulado</annotation>
<annotation cp="👨🏾🦱">adulto | cara | pelo enrulado | persona | señor | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🦱" type="tts">hombre: tono de piel oscuro medio y pelo enrulado</annotation>
<annotation cp="👨🏿🦱">adulto | cara | pelo enrulado | persona | señor | tono de piel oscuro</annotation>
<annotation cp="👨🏿🦱" type="tts">hombre: tono de piel oscuro y pelo enrulado</annotation>
<annotation cp="👨🦳">adulto | cara | pelo canoso | persona | señor</annotation>
<annotation cp="👨🦳" type="tts">hombre: pelo canoso</annotation>
<annotation cp="👨🏻🦳">adulto | cara | pelo canoso | persona | señor | tono de piel claro</annotation>
<annotation cp="👨🏻🦳" type="tts">hombre: tono de piel claro y pelo canoso</annotation>
<annotation cp="👨🏼🦳">adulto | cara | pelo canoso | persona | señor | tono de piel claro medio</annotation>
<annotation cp="👨🏼🦳" type="tts">hombre: tono de piel claro medio y pelo canoso</annotation>
<annotation cp="👨🏽🦳">adulto | cara | pelo canoso | persona | señor | tono de piel medio</annotation>
<annotation cp="👨🏽🦳" type="tts">hombre: tono de piel medio y pelo canoso</annotation>
<annotation cp="👨🏾🦳">adulto | cara | pelo canoso | persona | señor | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🦳" type="tts">hombre: tono de piel oscuro medio y pelo canoso</annotation>
<annotation cp="👨🏿🦳">adulto | cara | pelo canoso | persona | señor | tono de piel oscuro</annotation>
<annotation cp="👨🏿🦳" type="tts">hombre: tono de piel oscuro y pelo canoso</annotation>
<annotation cp="👨🦲">adulto | calvo | cara | persona | señor</annotation>
<annotation cp="👨🦲" type="tts">hombre: calvo</annotation>
<annotation cp="👨🏻🦲">adulto | calvo | cara | persona | señor | tono de piel claro</annotation>
<annotation cp="👨🏻🦲" type="tts">hombre: tono de piel claro y calvo</annotation>
<annotation cp="👨🏼🦲">adulto | calvo | cara | persona | señor | tono de piel claro medio</annotation>
<annotation cp="👨🏼🦲" type="tts">hombre: tono de piel claro medio y calvo</annotation>
<annotation cp="👨🏽🦲">adulto | calvo | cara | persona | señor | tono de piel medio</annotation>
<annotation cp="👨🏽🦲" type="tts">hombre: tono de piel medio y calvo</annotation>
<annotation cp="👨🏾🦲">adulto | calvo | cara | persona | señor | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🦲" type="tts">hombre: tono de piel oscuro medio y calvo</annotation>
<annotation cp="👨🏿🦲">adulto | calvo | cara | persona | señor | tono de piel oscuro</annotation>
<annotation cp="👨🏿🦲" type="tts">hombre: tono de piel oscuro y calvo</annotation>
<annotation cp="👱🏻♀">cara | güera | mujer | mujer rubia | tono de piel claro</annotation>
<annotation cp="👱🏼♀">cara | güera | mujer | mujer rubia | tono de piel claro medio</annotation>
<annotation cp="👱🏽♀">cara | güera | mujer | mujer rubia | tono de piel medio</annotation>
<annotation cp="👱🏾♀">cara | güera | mujer | mujer rubia | tono de piel oscuro medio</annotation>
<annotation cp="👱🏿♀">cara | güera | mujer | mujer rubia | tono de piel oscuro</annotation>
<annotation cp="👩🦰">cara | pelirrojo | persona | señora</annotation>
<annotation cp="👩🦰" type="tts">mujer: pelirrojo</annotation>
<annotation cp="👩🏻🦰">cara | pelirrojo | persona | señora | tono de piel claro</annotation>
<annotation cp="👩🏻🦰" type="tts">mujer: tono de piel claro y pelirrojo</annotation>
<annotation cp="👩🏼🦰">cara | pelirrojo | persona | señora | tono de piel claro medio</annotation>
<annotation cp="👩🏼🦰" type="tts">mujer: tono de piel claro medio y pelirrojo</annotation>
<annotation cp="👩🏽🦰">cara | pelirrojo | persona | señora | tono de piel medio</annotation>
<annotation cp="👩🏽🦰" type="tts">mujer: tono de piel medio y pelirrojo</annotation>
<annotation cp="👩🏾🦰">cara | pelirrojo | persona | señora | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🦰" type="tts">mujer: tono de piel oscuro medio y pelirrojo</annotation>
<annotation cp="👩🏿🦰">cara | pelirrojo | persona | señora | tono de piel oscuro</annotation>
<annotation cp="👩🏿🦰" type="tts">mujer: tono de piel oscuro y pelirrojo</annotation>
<annotation cp="👩🦱">cara | pelo enrulado | persona | señora</annotation>
<annotation cp="👩🦱" type="tts">mujer: pelo enrulado</annotation>
<annotation cp="👩🏻🦱">cara | pelo enrulado | persona | señora | tono de piel claro</annotation>
<annotation cp="👩🏻🦱" type="tts">mujer: tono de piel claro y pelo enrulado</annotation>
<annotation cp="👩🏼🦱">cara | pelo enrulado | persona | señora | tono de piel claro medio</annotation>
<annotation cp="👩🏼🦱" type="tts">mujer: tono de piel claro medio y pelo enrulado</annotation>
<annotation cp="👩🏽🦱">cara | pelo enrulado | persona | señora | tono de piel medio</annotation>
<annotation cp="👩🏽🦱" type="tts">mujer: tono de piel medio y pelo enrulado</annotation>
<annotation cp="👩🏾🦱">cara | pelo enrulado | persona | señora | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🦱" type="tts">mujer: tono de piel oscuro medio y pelo enrulado</annotation>
<annotation cp="👩🏿🦱">cara | pelo enrulado | persona | señora | tono de piel oscuro</annotation>
<annotation cp="👩🏿🦱" type="tts">mujer: tono de piel oscuro y pelo enrulado</annotation>
<annotation cp="👩🦳">cara | pelo canoso | persona | señora</annotation>
<annotation cp="👩🦳" type="tts">mujer: pelo canoso</annotation>
<annotation cp="👩🏻🦳">cara | pelo canoso | persona | señora | tono de piel claro</annotation>
<annotation cp="👩🏻🦳" type="tts">mujer: tono de piel claro y pelo canoso</annotation>
<annotation cp="👩🏼🦳">cara | pelo canoso | persona | señora | tono de piel claro medio</annotation>
<annotation cp="👩🏼🦳" type="tts">mujer: tono de piel claro medio y pelo canoso</annotation>
<annotation cp="👩🏽🦳">cara | pelo canoso | persona | señora | tono de piel medio</annotation>
<annotation cp="👩🏽🦳" type="tts">mujer: tono de piel medio y pelo canoso</annotation>
<annotation cp="👩🏾🦳">cara | pelo canoso | persona | señora | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🦳" type="tts">mujer: tono de piel oscuro medio y pelo canoso</annotation>
<annotation cp="👩🏿🦳">cara | pelo canoso | persona | señora | tono de piel oscuro</annotation>
<annotation cp="👩🏿🦳" type="tts">mujer: tono de piel oscuro y pelo canoso</annotation>
<annotation cp="👩🦲">calvo | cara | persona | señora</annotation>
<annotation cp="👩🦲" type="tts">mujer: calvo</annotation>
<annotation cp="👩🏻🦲">calvo | cara | persona | señora | tono de piel claro</annotation>
<annotation cp="👩🏻🦲" type="tts">mujer: tono de piel claro y calvo</annotation>
<annotation cp="👩🏼🦲">calvo | cara | persona | señora | tono de piel claro medio</annotation>
<annotation cp="👩🏼🦲" type="tts">mujer: tono de piel claro medio y calvo</annotation>
<annotation cp="👩🏽🦲">calvo | cara | persona | señora | tono de piel medio</annotation>
<annotation cp="👩🏽🦲" type="tts">mujer: tono de piel medio y calvo</annotation>
<annotation cp="👩🏾🦲">calvo | cara | persona | señora | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🦲" type="tts">mujer: tono de piel oscuro medio y calvo</annotation>
<annotation cp="👩🏿🦲">calvo | cara | persona | señora | tono de piel oscuro</annotation>
<annotation cp="👩🏿🦲" type="tts">mujer: tono de piel oscuro y calvo</annotation>
<annotation cp="🧓🏻">persona mayor | tono de piel claro</annotation>
<annotation cp="🧓🏻" type="tts">persona mayor: tono de piel claro</annotation>
<annotation cp="🧓🏼">persona mayor | tono de piel claro medio</annotation>
<annotation cp="🧓🏼" type="tts">persona mayor: tono de piel claro medio</annotation>
<annotation cp="🧓🏽">persona mayor | tono de piel medio</annotation>
<annotation cp="🧓🏽" type="tts">persona mayor: tono de piel medio</annotation>
<annotation cp="🧓🏾">persona mayor | tono de piel oscuro medio</annotation>
<annotation cp="🧓🏾" type="tts">persona mayor: tono de piel oscuro medio</annotation>
<annotation cp="🧓🏿">persona mayor | tono de piel oscuro</annotation>
<annotation cp="🧓🏿" type="tts">persona mayor: tono de piel oscuro</annotation>
<annotation cp="🙍🏻">persona frunciendo el ceño | tono de piel claro</annotation>
<annotation cp="🙍🏻" type="tts">persona frunciendo el ceño: tono de piel claro</annotation>
<annotation cp="🙍🏼">persona frunciendo el ceño | tono de piel claro medio</annotation>
<annotation cp="🙍🏼" type="tts">persona frunciendo el ceño: tono de piel claro medio</annotation>
<annotation cp="🙍🏽">persona frunciendo el ceño | tono de piel medio</annotation>
<annotation cp="🙍🏽" type="tts">persona frunciendo el ceño: tono de piel medio</annotation>
<annotation cp="🙍🏾">persona frunciendo el ceño | tono de piel oscuro medio</annotation>
<annotation cp="🙍🏾" type="tts">persona frunciendo el ceño: tono de piel oscuro medio</annotation>
<annotation cp="🙍🏿">persona frunciendo el ceño | tono de piel oscuro</annotation>
<annotation cp="🙍🏿" type="tts">persona frunciendo el ceño: tono de piel oscuro</annotation>
<annotation cp="🙍🏻♀">mujer frunciendo el ceño | tono de piel claro</annotation>
<annotation cp="🙍🏻♀" type="tts">mujer frunciendo el ceño: tono de piel claro</annotation>
<annotation cp="🙍🏼♀">mujer frunciendo el ceño | tono de piel claro medio</annotation>
<annotation cp="🙍🏼♀" type="tts">mujer frunciendo el ceño: tono de piel claro medio</annotation>
<annotation cp="🙍🏽♀">mujer frunciendo el ceño | tono de piel medio</annotation>
<annotation cp="🙍🏽♀" type="tts">mujer frunciendo el ceño: tono de piel medio</annotation>
<annotation cp="🙍🏾♀">mujer frunciendo el ceño | tono de piel oscuro medio</annotation>
<annotation cp="🙍🏾♀" type="tts">mujer frunciendo el ceño: tono de piel oscuro medio</annotation>
<annotation cp="🙍🏿♀">mujer frunciendo el ceño | tono de piel oscuro</annotation>
<annotation cp="🙍🏿♀" type="tts">mujer frunciendo el ceño: tono de piel oscuro</annotation>
<annotation cp="🙎🏻">persona haciendo pucheros | tono de piel claro</annotation>
<annotation cp="🙎🏻" type="tts">persona haciendo pucheros: tono de piel claro</annotation>
<annotation cp="🙎🏼">persona haciendo pucheros | tono de piel claro medio</annotation>
<annotation cp="🙎🏼" type="tts">persona haciendo pucheros: tono de piel claro medio</annotation>
<annotation cp="🙎🏽">persona haciendo pucheros | tono de piel medio</annotation>
<annotation cp="🙎🏽" type="tts">persona haciendo pucheros: tono de piel medio</annotation>
<annotation cp="🙎🏾">persona haciendo pucheros | tono de piel oscuro medio</annotation>
<annotation cp="🙎🏾" type="tts">persona haciendo pucheros: tono de piel oscuro medio</annotation>
<annotation cp="🙎🏿">persona haciendo pucheros | tono de piel oscuro</annotation>
<annotation cp="🙎🏿" type="tts">persona haciendo pucheros: tono de piel oscuro</annotation>
<annotation cp="🙅🏻">persona haciendo el gesto de "no" | tono de piel claro</annotation>
<annotation cp="🙅🏻" type="tts">persona haciendo el gesto de "no": tono de piel claro</annotation>
<annotation cp="🙅🏼">persona haciendo el gesto de "no" | tono de piel claro medio</annotation>
<annotation cp="🙅🏼" type="tts">persona haciendo el gesto de "no": tono de piel claro medio</annotation>
<annotation cp="🙅🏽">persona haciendo el gesto de "no" | tono de piel medio</annotation>
<annotation cp="🙅🏽" type="tts">persona haciendo el gesto de "no": tono de piel medio</annotation>
<annotation cp="🙅🏾">persona haciendo el gesto de "no" | tono de piel oscuro medio</annotation>
<annotation cp="🙅🏾" type="tts">persona haciendo el gesto de "no": tono de piel oscuro medio</annotation>
<annotation cp="🙅🏿">persona haciendo el gesto de "no" | tono de piel oscuro</annotation>
<annotation cp="🙅🏿" type="tts">persona haciendo el gesto de "no": tono de piel oscuro</annotation>
<annotation cp="🙆🏻">persona haciendo el gesto de "de acuerdo" | tono de piel claro</annotation>
<annotation cp="🙆🏻" type="tts">persona haciendo el gesto de "de acuerdo": tono de piel claro</annotation>
<annotation cp="🙆🏼">persona haciendo el gesto de "de acuerdo" | tono de piel claro medio</annotation>
<annotation cp="🙆🏼" type="tts">persona haciendo el gesto de "de acuerdo": tono de piel claro medio</annotation>
<annotation cp="🙆🏽">persona haciendo el gesto de "de acuerdo" | tono de piel medio</annotation>
<annotation cp="🙆🏽" type="tts">persona haciendo el gesto de "de acuerdo": tono de piel medio</annotation>
<annotation cp="🙆🏾">persona haciendo el gesto de "de acuerdo" | tono de piel oscuro medio</annotation>
<annotation cp="🙆🏾" type="tts">persona haciendo el gesto de "de acuerdo": tono de piel oscuro medio</annotation>
<annotation cp="🙆🏿">persona haciendo el gesto de "de acuerdo" | tono de piel oscuro</annotation>
<annotation cp="🙆🏿" type="tts">persona haciendo el gesto de "de acuerdo": tono de piel oscuro</annotation>
<annotation cp="💁🏻">información | mesa | persona | persona de mostrador de información | persona en mostrador de información | tono de piel claro</annotation>
<annotation cp="💁🏻" type="tts">persona de mostrador de información: tono de piel claro</annotation>
<annotation cp="💁🏼">información | mesa | persona | persona de mostrador de información | persona en mostrador de información | tono de piel claro medio</annotation>
<annotation cp="💁🏼" type="tts">persona de mostrador de información: tono de piel claro medio</annotation>
<annotation cp="💁🏽">información | mesa | persona | persona de mostrador de información | persona en mostrador de información | tono de piel medio</annotation>
<annotation cp="💁🏽" type="tts">persona de mostrador de información: tono de piel medio</annotation>
<annotation cp="💁🏾">información | mesa | persona | persona de mostrador de información | persona en mostrador de información | tono de piel oscuro medio</annotation>
<annotation cp="💁🏾" type="tts">persona de mostrador de información: tono de piel oscuro medio</annotation>
<annotation cp="💁🏿">información | mesa | persona | persona de mostrador de información | persona en mostrador de información | tono de piel oscuro</annotation>
<annotation cp="💁🏿" type="tts">persona de mostrador de información: tono de piel oscuro</annotation>
<annotation cp="💁🏻♂">empleado | hombre | hombre en mostrador de información | información | mesa | tono de piel claro</annotation>
<annotation cp="💁🏼♂">empleado | hombre | hombre en mostrador de información | información | mesa | tono de piel claro medio</annotation>
<annotation cp="💁🏽♂">empleado | hombre | hombre en mostrador de información | información | mesa | tono de piel medio</annotation>
<annotation cp="💁🏾♂">empleado | hombre | hombre en mostrador de información | información | mesa | tono de piel oscuro medio</annotation>
<annotation cp="💁🏿♂">empleado | hombre | hombre en mostrador de información | información | mesa | tono de piel oscuro</annotation>
<annotation cp="💁🏻♀">empleada | información | mesa | mujer | mujer en mostrador de información | tono de piel claro</annotation>
<annotation cp="💁🏼♀">empleada | información | mesa | mujer | mujer en mostrador de información | tono de piel claro medio</annotation>
<annotation cp="💁🏽♀">empleada | información | mesa | mujer | mujer en mostrador de información | tono de piel medio</annotation>
<annotation cp="💁🏾♀">empleada | información | mesa | mujer | mujer en mostrador de información | tono de piel oscuro medio</annotation>
<annotation cp="💁🏿♀">empleada | información | mesa | mujer | mujer en mostrador de información | tono de piel oscuro</annotation>
<annotation cp="🙋🏻">levantar | mano | persona | persona levantando la mano | tono de piel claro | yo</annotation>
<annotation cp="🙋🏼">levantar | mano | persona | persona levantando la mano | tono de piel claro medio | yo</annotation>
<annotation cp="🙋🏽">levantar | mano | persona | persona levantando la mano | tono de piel medio | yo</annotation>
<annotation cp="🙋🏾">levantar | mano | persona | persona levantando la mano | tono de piel oscuro medio | yo</annotation>
<annotation cp="🙋🏿">levantar | mano | persona | persona levantando la mano | tono de piel oscuro | yo</annotation>
<annotation cp="🤦🏻">persona con la mano en la frente | tono de piel claro</annotation>
<annotation cp="🤦🏼">persona con la mano en la frente | tono de piel claro medio</annotation>
<annotation cp="🤦🏽">persona con la mano en la frente | tono de piel medio</annotation>
<annotation cp="🤦🏾">persona con la mano en la frente | tono de piel oscuro medio</annotation>
<annotation cp="🤦🏿">persona con la mano en la frente | tono de piel oscuro</annotation>
<annotation cp="🤦🏻♂">exasperación | facepalm | hombre | hombre con la mano en la frente | incredulidad | tono de piel claro</annotation>
<annotation cp="🤦🏼♂">exasperación | facepalm | hombre | hombre con la mano en la frente | incredulidad | tono de piel claro medio</annotation>
<annotation cp="🤦🏽♂">exasperación | facepalm | hombre | hombre con la mano en la frente | incredulidad | tono de piel medio</annotation>
<annotation cp="🤦🏾♂">exasperación | facepalm | hombre | hombre con la mano en la frente | incredulidad | tono de piel oscuro medio</annotation>
<annotation cp="🤦🏿♂">exasperación | facepalm | hombre | hombre con la mano en la frente | incredulidad | tono de piel oscuro</annotation>
<annotation cp="🤦🏻♀">exasperación | facepalm | incredulidad | mujer | mujer con la mano en la frente | tono de piel claro</annotation>
<annotation cp="🤦🏼♀">exasperación | facepalm | incredulidad | mujer | mujer con la mano en la frente | tono de piel claro medio</annotation>
<annotation cp="🤦🏽♀">exasperación | facepalm | incredulidad | mujer | mujer con la mano en la frente | tono de piel medio</annotation>
<annotation cp="🤦🏾♀">exasperación | facepalm | incredulidad | mujer | mujer con la mano en la frente | tono de piel oscuro medio</annotation>
<annotation cp="🤦🏿♀">exasperación | facepalm | incredulidad | mujer | mujer con la mano en la frente | tono de piel oscuro</annotation>
<annotation cp="🤷🏻">duda | encogerse | hombros | ignorancia | indiferencia | tono de piel claro</annotation>
<annotation cp="🤷🏼">duda | encogerse | hombros | ignorancia | indiferencia | tono de piel claro medio</annotation>
<annotation cp="🤷🏽">duda | encogerse | hombros | ignorancia | indiferencia | tono de piel medio</annotation>
<annotation cp="🤷🏾">duda | encogerse | hombros | ignorancia | indiferencia | tono de piel oscuro medio</annotation>
<annotation cp="🤷🏿">duda | encogerse | hombros | ignorancia | indiferencia | tono de piel oscuro</annotation>
<annotation cp="👨🏻⚕">doctor | enfermero | médico | profesional sanitario hombre | tono de piel claro</annotation>
<annotation cp="👨🏼⚕">doctor | enfermero | médico | profesional sanitario hombre | tono de piel claro medio</annotation>
<annotation cp="👨🏽⚕">doctor | enfermero | médico | profesional sanitario hombre | tono de piel medio</annotation>
<annotation cp="👨🏾⚕">doctor | enfermero | médico | profesional sanitario hombre | tono de piel oscuro medio</annotation>
<annotation cp="👨🏿⚕">doctor | enfermero | médico | profesional sanitario hombre | tono de piel oscuro</annotation>
<annotation cp="👩🏻⚕">doctora | enfermera | médica | profesional sanitario mujer | tono de piel claro</annotation>
<annotation cp="👩🏼⚕">doctora | enfermera | médica | profesional sanitario mujer | tono de piel claro medio</annotation>
<annotation cp="👩🏽⚕">doctora | enfermera | médica | profesional sanitario mujer | tono de piel medio</annotation>
<annotation cp="👩🏾⚕">doctora | enfermera | médica | profesional sanitario mujer | tono de piel oscuro medio</annotation>
<annotation cp="👩🏿⚕">doctora | enfermera | médica | profesional sanitario mujer | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🎓">alumno | estudiante | graduado | tono de piel claro</annotation>
<annotation cp="🧑🏼🎓">alumno | estudiante | graduado | tono de piel claro medio</annotation>
<annotation cp="🧑🏽🎓">alumno | estudiante | graduado | tono de piel medio</annotation>
<annotation cp="🧑🏾🎓">alumno | estudiante | graduado | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🎓">alumno | estudiante | graduado | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🏫">instructor | maestro | profesor | tono de piel claro</annotation>
<annotation cp="🧑🏻🏫" type="tts">maestro: tono de piel claro</annotation>
<annotation cp="🧑🏼🏫">instructor | maestro | profesor | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🏫" type="tts">maestro: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🏫">instructor | maestro | profesor | tono de piel medio</annotation>
<annotation cp="🧑🏽🏫" type="tts">maestro: tono de piel medio</annotation>
<annotation cp="🧑🏾🏫">instructor | maestro | profesor | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🏫" type="tts">maestro: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🏫">instructor | maestro | profesor | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🏫" type="tts">maestro: tono de piel oscuro</annotation>
<annotation cp="🧑🏻⚖" type="tts">juez: tono de piel claro</annotation>
<annotation cp="🧑🏼⚖" type="tts">juez: tono de piel claro medio</annotation>
<annotation cp="🧑🏽⚖" type="tts">juez: tono de piel medio</annotation>
<annotation cp="🧑🏾⚖" type="tts">juez: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿⚖" type="tts">juez: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🌾">granjero | jardinero | ranchero | tono de piel claro</annotation>
<annotation cp="🧑🏻🌾" type="tts">granjero: tono de piel claro</annotation>
<annotation cp="🧑🏼🌾">granjero | jardinero | ranchero | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🌾" type="tts">granjero: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🌾">granjero | jardinero | ranchero | tono de piel medio</annotation>
<annotation cp="🧑🏽🌾" type="tts">granjero: tono de piel medio</annotation>
<annotation cp="🧑🏾🌾">granjero | jardinero | ranchero | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🌾" type="tts">granjero: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🌾">granjero | jardinero | ranchero | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🌾" type="tts">granjero: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🍳">chef | cocinero | tono de piel claro</annotation>
<annotation cp="🧑🏻🍳" type="tts">cocinero: tono de piel claro</annotation>
<annotation cp="🧑🏼🍳">chef | cocinero | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🍳" type="tts">cocinero: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🍳">chef | cocinero | tono de piel medio</annotation>
<annotation cp="🧑🏽🍳" type="tts">cocinero: tono de piel medio</annotation>
<annotation cp="🧑🏾🍳">chef | cocinero | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🍳" type="tts">cocinero: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🍳">chef | cocinero | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🍳" type="tts">cocinero: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🔧">electricista | fontanero | mecánico | operario | tono de piel claro</annotation>
<annotation cp="🧑🏻🔧" type="tts">mecánico: tono de piel claro</annotation>
<annotation cp="🧑🏼🔧">electricista | fontanero | mecánico | operario | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🔧" type="tts">mecánico: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🔧">electricista | fontanero | mecánico | operario | tono de piel medio</annotation>
<annotation cp="🧑🏽🔧" type="tts">mecánico: tono de piel medio</annotation>
<annotation cp="🧑🏾🔧">electricista | fontanero | mecánico | operario | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🔧" type="tts">mecánico: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🔧">electricista | fontanero | mecánico | operario | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🔧" type="tts">mecánico: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🏭">fábrica | industrial | montaje | obrero | tono de piel claro</annotation>
<annotation cp="🧑🏻🏭" type="tts">obrero de fábrica: tono de piel claro</annotation>
<annotation cp="🧑🏼🏭">fábrica | industrial | montaje | obrero | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🏭" type="tts">obrero de fábrica: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🏭">fábrica | industrial | montaje | obrero | tono de piel medio</annotation>
<annotation cp="🧑🏽🏭" type="tts">obrero de fábrica: tono de piel medio</annotation>
<annotation cp="🧑🏾🏭">fábrica | industrial | montaje | obrero | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🏭" type="tts">obrero de fábrica: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🏭">fábrica | industrial | montaje | obrero | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🏭" type="tts">obrero de fábrica: tono de piel oscuro</annotation>
<annotation cp="🧑🏻💼">arquitecto | empresa | gerente | oficinista | tono de piel claro</annotation>
<annotation cp="🧑🏼💼">arquitecto | empresa | gerente | oficinista | tono de piel claro medio</annotation>
<annotation cp="🧑🏽💼">arquitecto | empresa | gerente | oficinista | tono de piel medio</annotation>
<annotation cp="🧑🏾💼">arquitecto | empresa | gerente | oficinista | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿💼">arquitecto | empresa | gerente | oficinista | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🔬">biólogo | científico | físico | ingeniero | químico | tono de piel claro</annotation>
<annotation cp="🧑🏻🔬" type="tts">científico: tono de piel claro</annotation>
<annotation cp="🧑🏼🔬">biólogo | científico | físico | ingeniero | químico | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🔬" type="tts">científico: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🔬">biólogo | científico | físico | ingeniero | químico | tono de piel medio</annotation>
<annotation cp="🧑🏽🔬" type="tts">científico: tono de piel medio</annotation>
<annotation cp="🧑🏾🔬">biólogo | científico | físico | ingeniero | químico | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🔬" type="tts">científico: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🔬">biólogo | científico | físico | ingeniero | químico | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🔬" type="tts">científico: tono de piel oscuro</annotation>
<annotation cp="🧑🏻💻">desarrollador | inventor | programador | software | tecnólogo | tono de piel claro</annotation>
<annotation cp="🧑🏻💻" type="tts">tecnólogo: tono de piel claro</annotation>
<annotation cp="🧑🏼💻">desarrollador | inventor | programador | software | tecnólogo | tono de piel claro medio</annotation>
<annotation cp="🧑🏼💻" type="tts">tecnólogo: tono de piel claro medio</annotation>
<annotation cp="🧑🏽💻">desarrollador | inventor | programador | software | tecnólogo | tono de piel medio</annotation>
<annotation cp="🧑🏽💻" type="tts">tecnólogo: tono de piel medio</annotation>
<annotation cp="🧑🏾💻">desarrollador | inventor | programador | software | tecnólogo | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾💻" type="tts">tecnólogo: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿💻">desarrollador | inventor | programador | software | tecnólogo | tono de piel oscuro</annotation>
<annotation cp="🧑🏿💻" type="tts">tecnólogo: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🎤">actor | animador | cantante | estrella | rock | tono de piel claro</annotation>
<annotation cp="🧑🏼🎤">actor | animador | cantante | estrella | rock | tono de piel claro medio</annotation>
<annotation cp="🧑🏽🎤">actor | animador | cantante | estrella | rock | tono de piel medio</annotation>
<annotation cp="🧑🏾🎤">actor | animador | cantante | estrella | rock | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🎤">actor | animador | cantante | estrella | rock | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🎨">artista | paleta | tono de piel claro</annotation>
<annotation cp="🧑🏼🎨">artista | paleta | tono de piel claro medio</annotation>
<annotation cp="🧑🏽🎨">artista | paleta | tono de piel medio</annotation>
<annotation cp="🧑🏾🎨">artista | paleta | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🎨">artista | paleta | tono de piel oscuro</annotation>
<annotation cp="🧑🏻✈">avión | piloto | tono de piel claro</annotation>
<annotation cp="🧑🏼✈">avión | piloto | tono de piel claro medio</annotation>
<annotation cp="🧑🏽✈">avión | piloto | tono de piel medio</annotation>
<annotation cp="🧑🏾✈">avión | piloto | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿✈">avión | piloto | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🚀">astronauta | cohete | tono de piel claro</annotation>
<annotation cp="🧑🏼🚀">astronauta | cohete | tono de piel claro medio</annotation>
<annotation cp="🧑🏽🚀">astronauta | cohete | tono de piel medio</annotation>
<annotation cp="🧑🏾🚀">astronauta | cohete | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🚀">astronauta | cohete | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🚒">bombero | camión de bomberos | tono de piel claro</annotation>
<annotation cp="🧑🏼🚒">bombero | camión de bomberos | tono de piel claro medio</annotation>
<annotation cp="🧑🏽🚒">bombero | camión de bomberos | tono de piel medio</annotation>
<annotation cp="🧑🏾🚒">bombero | camión de bomberos | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🚒">bombero | camión de bomberos | tono de piel oscuro</annotation>
<annotation cp="👨🏻🚒">bombero | tono de piel claro</annotation>
<annotation cp="👨🏼🚒">bombero | tono de piel claro medio</annotation>
<annotation cp="👨🏽🚒">bombero | tono de piel medio</annotation>
<annotation cp="👨🏾🚒">bombero | tono de piel oscuro medio</annotation>
<annotation cp="👨🏿🚒">bombero | tono de piel oscuro</annotation>
<annotation cp="👩🏻🚒">bombera | tono de piel claro</annotation>
<annotation cp="👩🏼🚒">bombera | tono de piel claro medio</annotation>
<annotation cp="👩🏽🚒">bombera | tono de piel medio</annotation>
<annotation cp="👩🏾🚒">bombera | tono de piel oscuro medio</annotation>
<annotation cp="👩🏿🚒">bombera | tono de piel oscuro</annotation>
<annotation cp="👮🏻">agente | oficial | policía | tono de piel claro</annotation>
<annotation cp="👮🏼">agente | oficial | policía | tono de piel claro medio</annotation>
<annotation cp="👮🏽">agente | oficial | policía | tono de piel medio</annotation>
<annotation cp="👮🏾">agente | oficial | policía | tono de piel oscuro medio</annotation>
<annotation cp="👮🏿">agente | oficial | policía | tono de piel oscuro</annotation>
<annotation cp="👮🏻♂">agente | agente de policía hombre | oficial hombre | policía | tono de piel claro</annotation>
<annotation cp="👮🏼♂">agente | agente de policía hombre | oficial hombre | policía | tono de piel claro medio</annotation>
<annotation cp="👮🏽♂">agente | agente de policía hombre | oficial hombre | policía | tono de piel medio</annotation>
<annotation cp="👮🏾♂">agente | agente de policía hombre | oficial hombre | policía | tono de piel oscuro medio</annotation>
<annotation cp="👮🏿♂">agente | agente de policía hombre | oficial hombre | policía | tono de piel oscuro</annotation>
<annotation cp="👮🏻♀">agente | agente de policía mujer | oficial mujer | policía | tono de piel claro</annotation>
<annotation cp="👮🏼♀">agente | agente de policía mujer | oficial mujer | policía | tono de piel claro medio</annotation>
<annotation cp="👮🏽♀">agente | agente de policía mujer | oficial mujer | policía | tono de piel medio</annotation>
<annotation cp="👮🏾♀">agente | agente de policía mujer | oficial mujer | policía | tono de piel oscuro medio</annotation>
<annotation cp="👮🏿♀">agente | agente de policía mujer | oficial mujer | policía | tono de piel oscuro</annotation>
<annotation cp="🕵🏻">detective | espía | investigador | investigar | lupa | tono de piel claro</annotation>
<annotation cp="🕵🏼">detective | espía | investigador | investigar | lupa | tono de piel claro medio</annotation>
<annotation cp="🕵🏽">detective | espía | investigador | investigar | lupa | tono de piel medio</annotation>
<annotation cp="🕵🏾">detective | espía | investigador | investigar | lupa | tono de piel oscuro medio</annotation>
<annotation cp="🕵🏿">detective | espía | investigador | investigar | lupa | tono de piel oscuro</annotation>
<annotation cp="💂🏻">guardia real | guardia real británica | guardia real con sombrero | guardia real inglesa | tono de piel claro</annotation>
<annotation cp="💂🏼">guardia real | guardia real británica | guardia real con sombrero | guardia real inglesa | tono de piel claro medio</annotation>
<annotation cp="💂🏽">guardia real | guardia real británica | guardia real con sombrero | guardia real inglesa | tono de piel medio</annotation>
<annotation cp="💂🏾">guardia real | guardia real británica | guardia real con sombrero | guardia real inglesa | tono de piel oscuro medio</annotation>
<annotation cp="💂🏿">guardia real | guardia real británica | guardia real con sombrero | guardia real inglesa | tono de piel oscuro</annotation>
<annotation cp="💂🏻♂">hombre de guardia real | hombre de guardia real británica | hombre de la guardia real con sombrero | hombre vigilante | tono de piel claro</annotation>
<annotation cp="💂🏼♂">hombre de guardia real | hombre de guardia real británica | hombre de la guardia real con sombrero | hombre vigilante | tono de piel claro medio</annotation>
<annotation cp="💂🏽♂">hombre de guardia real | hombre de guardia real británica | hombre de la guardia real con sombrero | hombre vigilante | tono de piel medio</annotation>
<annotation cp="💂🏾♂">hombre de guardia real | hombre de guardia real británica | hombre de la guardia real con sombrero | hombre vigilante | tono de piel oscuro medio</annotation>
<annotation cp="💂🏿♂">hombre de guardia real | hombre de guardia real británica | hombre de la guardia real con sombrero | hombre vigilante | tono de piel oscuro</annotation>
<annotation cp="💂🏻♀">mujer de guardia real | mujer de la guardia real británica | mujer guardia real con sombrero | mujer vigilante | tono de piel claro</annotation>
<annotation cp="💂🏼♀">mujer de guardia real | mujer de la guardia real británica | mujer guardia real con sombrero | mujer vigilante | tono de piel claro medio</annotation>
<annotation cp="💂🏽♀">mujer de guardia real | mujer de la guardia real británica | mujer guardia real con sombrero | mujer vigilante | tono de piel medio</annotation>
<annotation cp="💂🏾♀">mujer de guardia real | mujer de la guardia real británica | mujer guardia real con sombrero | mujer vigilante | tono de piel oscuro medio</annotation>
<annotation cp="💂🏿♀">mujer de guardia real | mujer de la guardia real británica | mujer guardia real con sombrero | mujer vigilante | tono de piel oscuro</annotation>
<annotation cp="👷🏻">persona obrera de construcción | tono de piel claro</annotation>
<annotation cp="👷🏻" type="tts">persona obrera de construcción: tono de piel claro</annotation>
<annotation cp="👷🏼">persona obrera de construcción | tono de piel claro medio</annotation>
<annotation cp="👷🏼" type="tts">persona obrera de construcción: tono de piel claro medio</annotation>
<annotation cp="👷🏽">persona obrera de construcción | tono de piel medio</annotation>
<annotation cp="👷🏽" type="tts">persona obrera de construcción: tono de piel medio</annotation>
<annotation cp="👷🏾">persona obrera de construcción | tono de piel oscuro medio</annotation>
<annotation cp="👷🏾" type="tts">persona obrera de construcción: tono de piel oscuro medio</annotation>
<annotation cp="👷🏿">persona obrera de construcción | tono de piel oscuro</annotation>
<annotation cp="👷🏿" type="tts">persona obrera de construcción: tono de piel oscuro</annotation>
<annotation cp="👷🏻♂">obrero de construcción | tono de piel claro</annotation>
<annotation cp="👷🏻♂" type="tts">obrero de construcción: tono de piel claro</annotation>
<annotation cp="👷🏼♂">obrero de construcción | tono de piel claro medio</annotation>
<annotation cp="👷🏼♂" type="tts">obrero de construcción: tono de piel claro medio</annotation>
<annotation cp="👷🏽♂">obrero de construcción | tono de piel medio</annotation>
<annotation cp="👷🏽♂" type="tts">obrero de construcción: tono de piel medio</annotation>
<annotation cp="👷🏾♂">obrero de construcción | tono de piel oscuro medio</annotation>
<annotation cp="👷🏾♂" type="tts">obrero de construcción: tono de piel oscuro medio</annotation>
<annotation cp="👷🏿♂">obrero de construcción | tono de piel oscuro</annotation>
<annotation cp="👷🏿♂" type="tts">obrero de construcción: tono de piel oscuro</annotation>
<annotation cp="👷🏻♀">obrera de construcción | tono de piel claro</annotation>
<annotation cp="👷🏻♀" type="tts">obrera de construcción: tono de piel claro</annotation>
<annotation cp="👷🏼♀">obrera de construcción | tono de piel claro medio</annotation>
<annotation cp="👷🏼♀" type="tts">obrera de construcción: tono de piel claro medio</annotation>
<annotation cp="👷🏽♀">obrera de construcción | tono de piel medio</annotation>
<annotation cp="👷🏽♀" type="tts">obrera de construcción: tono de piel medio</annotation>
<annotation cp="👷🏾♀">obrera de construcción | tono de piel oscuro medio</annotation>
<annotation cp="👷🏾♀" type="tts">obrera de construcción: tono de piel oscuro medio</annotation>
<annotation cp="👷🏿♀">obrera de construcción | tono de piel oscuro</annotation>
<annotation cp="👷🏿♀" type="tts">obrera de construcción: tono de piel oscuro</annotation>
<annotation cp="🤴🏻">cara | cuento | fantasía | persona | realeza | tono de piel claro</annotation>
<annotation cp="🤴🏼">cara | cuento | fantasía | persona | realeza | tono de piel claro medio</annotation>
<annotation cp="🤴🏽">cara | cuento | fantasía | persona | realeza | tono de piel medio</annotation>
<annotation cp="🤴🏾">cara | cuento | fantasía | persona | realeza | tono de piel oscuro medio</annotation>
<annotation cp="🤴🏿">cara | cuento | fantasía | persona | realeza | tono de piel oscuro</annotation>
<annotation cp="👸🏻">cara | cuento | fantasía | persona | realeza | tono de piel claro</annotation>
<annotation cp="👸🏼">cara | cuento | fantasía | persona | realeza | tono de piel claro medio</annotation>
<annotation cp="👸🏽">cara | cuento | fantasía | persona | realeza | tono de piel medio</annotation>
<annotation cp="👸🏾">cara | cuento | fantasía | persona | realeza | tono de piel oscuro medio</annotation>
<annotation cp="👸🏿">cara | cuento | fantasía | persona | realeza | tono de piel oscuro</annotation>
<annotation cp="👳🏻">cara | persona | tono de piel claro | turbante</annotation>
<annotation cp="👳🏼">cara | persona | tono de piel claro medio | turbante</annotation>
<annotation cp="👳🏽">cara | persona | tono de piel medio | turbante</annotation>
<annotation cp="👳🏾">cara | persona | tono de piel oscuro medio | turbante</annotation>
<annotation cp="👳🏿">cara | persona | tono de piel oscuro | turbante</annotation>
<annotation cp="👰🏻">boda | casamiento | mujer | novia | tono de piel claro | velo</annotation>
<annotation cp="👰🏼">boda | casamiento | mujer | novia | tono de piel claro medio | velo</annotation>
<annotation cp="👰🏽">boda | casamiento | mujer | novia | tono de piel medio | velo</annotation>
<annotation cp="👰🏾">boda | casamiento | mujer | novia | tono de piel oscuro medio | velo</annotation>
<annotation cp="👰🏿">boda | casamiento | mujer | novia | tono de piel oscuro | velo</annotation>
<annotation cp="👼🏻">ángel | bebé | cara | cuento de hadas | fantasía | tono de piel claro</annotation>
<annotation cp="👼🏼">ángel | bebé | cara | cuento de hadas | fantasía | tono de piel claro medio</annotation>
<annotation cp="👼🏽">ángel | bebé | cara | cuento de hadas | fantasía | tono de piel medio</annotation>
<annotation cp="👼🏾">ángel | bebé | cara | cuento de hadas | fantasía | tono de piel oscuro medio</annotation>
<annotation cp="👼🏿">ángel | bebé | cara | cuento de hadas | fantasía | tono de piel oscuro</annotation>
<annotation cp="🎅🏻">claus | Navidad | noel | papá | santa | tono de piel claro</annotation>
<annotation cp="🎅🏼">claus | Navidad | noel | papá | santa | tono de piel claro medio</annotation>
<annotation cp="🎅🏽">claus | Navidad | noel | papá | santa | tono de piel medio</annotation>
<annotation cp="🎅🏾">claus | Navidad | noel | papá | santa | tono de piel oscuro medio</annotation>
<annotation cp="🎅🏿">claus | Navidad | noel | papá | santa | tono de piel oscuro</annotation>
<annotation cp="🤶🏻">mamá | mamá noel | Navidad | señora Claus | tono de piel claro</annotation>
<annotation cp="🤶🏼">mamá | mamá noel | Navidad | señora Claus | tono de piel claro medio</annotation>
<annotation cp="🤶🏽">mamá | mamá noel | Navidad | señora Claus | tono de piel medio</annotation>
<annotation cp="🤶🏾">mamá | mamá noel | Navidad | señora Claus | tono de piel oscuro medio</annotation>
<annotation cp="🤶🏿">mamá | mamá noel | Navidad | señora Claus | tono de piel oscuro</annotation>
<annotation cp="🦸🏻">bien | héroe | heroína | superheroína | superpoder | tono de piel claro</annotation>
<annotation cp="🦸🏻" type="tts">superheroína: tono de piel claro</annotation>
<annotation cp="🦸🏼">bien | héroe | heroína | superheroína | superpoder | tono de piel claro medio</annotation>
<annotation cp="🦸🏼" type="tts">superheroína: tono de piel claro medio</annotation>
<annotation cp="🦸🏽">bien | héroe | heroína | superheroína | superpoder | tono de piel medio</annotation>
<annotation cp="🦸🏽" type="tts">superheroína: tono de piel medio</annotation>
<annotation cp="🦸🏾">bien | héroe | heroína | superheroína | superpoder | tono de piel oscuro medio</annotation>
<annotation cp="🦸🏾" type="tts">superheroína: tono de piel oscuro medio</annotation>
<annotation cp="🦸🏿">bien | héroe | heroína | superheroína | superpoder | tono de piel oscuro</annotation>
<annotation cp="🦸🏿" type="tts">superheroína: tono de piel oscuro</annotation>
<annotation cp="🦸🏻♂">bien | héroe | hombre | superhéroe | superpoder | tono de piel claro</annotation>
<annotation cp="🦸🏼♂">bien | héroe | hombre | superhéroe | superpoder | tono de piel claro medio</annotation>
<annotation cp="🦸🏽♂">bien | héroe | hombre | superhéroe | superpoder | tono de piel medio</annotation>
<annotation cp="🦸🏾♂">bien | héroe | hombre | superhéroe | superpoder | tono de piel oscuro medio</annotation>
<annotation cp="🦸🏿♂">bien | héroe | hombre | superhéroe | superpoder | tono de piel oscuro</annotation>
<annotation cp="🦸🏻♀">bien | héroe | heroína | mujer | mujer superheroína | superpoder | tono de piel claro</annotation>
<annotation cp="🦸🏻♀" type="tts">mujer superheroína: tono de piel claro</annotation>
<annotation cp="🦸🏼♀">bien | héroe | heroína | mujer | mujer superheroína | superpoder | tono de piel claro medio</annotation>
<annotation cp="🦸🏼♀" type="tts">mujer superheroína: tono de piel claro medio</annotation>
<annotation cp="🦸🏽♀">bien | héroe | heroína | mujer | mujer superheroína | superpoder | tono de piel medio</annotation>
<annotation cp="🦸🏽♀" type="tts">mujer superheroína: tono de piel medio</annotation>
<annotation cp="🦸🏾♀">bien | héroe | heroína | mujer | mujer superheroína | superpoder | tono de piel oscuro medio</annotation>
<annotation cp="🦸🏾♀" type="tts">mujer superheroína: tono de piel oscuro medio</annotation>
<annotation cp="🦸🏿♀">bien | héroe | heroína | mujer | mujer superheroína | superpoder | tono de piel oscuro</annotation>
<annotation cp="🦸🏿♀" type="tts">mujer superheroína: tono de piel oscuro</annotation>
<annotation cp="🦹🏻">delito | mal | superpoder | supervillano | tono de piel claro | villano</annotation>
<annotation cp="🦹🏻" type="tts">supervillano: tono de piel claro</annotation>
<annotation cp="🦹🏼">delito | mal | superpoder | supervillano | tono de piel claro medio | villano</annotation>
<annotation cp="🦹🏼" type="tts">supervillano: tono de piel claro medio</annotation>
<annotation cp="🦹🏽">delito | mal | superpoder | supervillano | tono de piel medio | villano</annotation>
<annotation cp="🦹🏽" type="tts">supervillano: tono de piel medio</annotation>
<annotation cp="🦹🏾">delito | mal | superpoder | supervillano | tono de piel oscuro medio | villano</annotation>
<annotation cp="🦹🏾" type="tts">supervillano: tono de piel oscuro medio</annotation>
<annotation cp="🦹🏿">delito | mal | superpoder | supervillano | tono de piel oscuro | villano</annotation>
<annotation cp="🦹🏿" type="tts">supervillano: tono de piel oscuro</annotation>
<annotation cp="🦹🏻♂">delito | hombre | hombre supervillano | mal | superpoder | tono de piel claro | villano</annotation>
<annotation cp="🦹🏻♂" type="tts">hombre supervillano: tono de piel claro</annotation>
<annotation cp="🦹🏼♂">delito | hombre | hombre supervillano | mal | superpoder | tono de piel claro medio | villano</annotation>
<annotation cp="🦹🏼♂" type="tts">hombre supervillano: tono de piel claro medio</annotation>
<annotation cp="🦹🏽♂">delito | hombre | hombre supervillano | mal | superpoder | tono de piel medio | villano</annotation>
<annotation cp="🦹🏽♂" type="tts">hombre supervillano: tono de piel medio</annotation>
<annotation cp="🦹🏾♂">delito | hombre | hombre supervillano | mal | superpoder | tono de piel oscuro medio | villano</annotation>
<annotation cp="🦹🏾♂" type="tts">hombre supervillano: tono de piel oscuro medio</annotation>
<annotation cp="🦹🏿♂">delito | hombre | hombre supervillano | mal | superpoder | tono de piel oscuro | villano</annotation>
<annotation cp="🦹🏿♂" type="tts">hombre supervillano: tono de piel oscuro</annotation>
<annotation cp="🦹🏻♀">delito | mal | mujer | superpoder | supervillana | tono de piel claro | villana</annotation>
<annotation cp="🦹🏼♀">delito | mal | mujer | superpoder | supervillana | tono de piel claro medio | villana</annotation>
<annotation cp="🦹🏽♀">delito | mal | mujer | superpoder | supervillana | tono de piel medio | villana</annotation>
<annotation cp="🦹🏾♀">delito | mal | mujer | superpoder | supervillana | tono de piel oscuro medio | villana</annotation>
<annotation cp="🦹🏿♀">delito | mal | mujer | superpoder | supervillana | tono de piel oscuro | villana</annotation>
<annotation cp="🧚🏻">campanita | hada | oberón | puck | titania | tono de piel claro</annotation>
<annotation cp="🧚🏼">campanita | hada | oberón | puck | titania | tono de piel claro medio</annotation>
<annotation cp="🧚🏽">campanita | hada | oberón | puck | titania | tono de piel medio</annotation>
<annotation cp="🧚🏾">campanita | hada | oberón | puck | titania | tono de piel oscuro medio</annotation>
<annotation cp="🧚🏿">campanita | hada | oberón | puck | titania | tono de piel oscuro</annotation>
<annotation cp="🧛🏻">drácula | muerto viviente | tono de piel claro | vampiro</annotation>
<annotation cp="🧛🏼">drácula | muerto viviente | tono de piel claro medio | vampiro</annotation>
<annotation cp="🧛🏽">drácula | muerto viviente | tono de piel medio | vampiro</annotation>
<annotation cp="🧛🏾">drácula | muerto viviente | tono de piel oscuro medio | vampiro</annotation>
<annotation cp="🧛🏿">drácula | muerto viviente | tono de piel oscuro | vampiro</annotation>
<annotation cp="🧛🏻♂">drácula | muerto viviente | tono de piel claro | vampiro</annotation>
<annotation cp="🧛🏼♂">drácula | muerto viviente | tono de piel claro medio | vampiro</annotation>
<annotation cp="🧛🏽♂">drácula | muerto viviente | tono de piel medio | vampiro</annotation>
<annotation cp="🧛🏾♂">drácula | muerto viviente | tono de piel oscuro medio | vampiro</annotation>
<annotation cp="🧛🏿♂">drácula | muerto viviente | tono de piel oscuro | vampiro</annotation>
<annotation cp="🧛🏻♀">muerta viviente | tono de piel claro | vampiresa</annotation>
<annotation cp="🧛🏼♀">muerta viviente | tono de piel claro medio | vampiresa</annotation>
<annotation cp="🧛🏽♀">muerta viviente | tono de piel medio | vampiresa</annotation>
<annotation cp="🧛🏾♀">muerta viviente | tono de piel oscuro medio | vampiresa</annotation>
<annotation cp="🧛🏿♀">muerta viviente | tono de piel oscuro | vampiresa</annotation>
<annotation cp="💆🏻">persona recibiendo masaje | tono de piel claro</annotation>
<annotation cp="💆🏻" type="tts">persona recibiendo masaje: tono de piel claro</annotation>
<annotation cp="💆🏼">persona recibiendo masaje | tono de piel claro medio</annotation>
<annotation cp="💆🏼" type="tts">persona recibiendo masaje: tono de piel claro medio</annotation>
<annotation cp="💆🏽">persona recibiendo masaje | tono de piel medio</annotation>
<annotation cp="💆🏽" type="tts">persona recibiendo masaje: tono de piel medio</annotation>
<annotation cp="💆🏾">persona recibiendo masaje | tono de piel oscuro medio</annotation>
<annotation cp="💆🏾" type="tts">persona recibiendo masaje: tono de piel oscuro medio</annotation>
<annotation cp="💆🏿">persona recibiendo masaje | tono de piel oscuro</annotation>
<annotation cp="💆🏿" type="tts">persona recibiendo masaje: tono de piel oscuro</annotation>
<annotation cp="💇🏻">persona cortándose el pelo | tono de piel claro</annotation>
<annotation cp="💇🏻" type="tts">persona cortándose el pelo: tono de piel claro</annotation>
<annotation cp="💇🏼">persona cortándose el pelo | tono de piel claro medio</annotation>
<annotation cp="💇🏼" type="tts">persona cortándose el pelo: tono de piel claro medio</annotation>
<annotation cp="💇🏽">persona cortándose el pelo | tono de piel medio</annotation>
<annotation cp="💇🏽" type="tts">persona cortándose el pelo: tono de piel medio</annotation>
<annotation cp="💇🏾">persona cortándose el pelo | tono de piel oscuro medio</annotation>
<annotation cp="💇🏾" type="tts">persona cortándose el pelo: tono de piel oscuro medio</annotation>
<annotation cp="💇🏿">persona cortándose el pelo | tono de piel oscuro</annotation>
<annotation cp="💇🏿" type="tts">persona cortándose el pelo: tono de piel oscuro</annotation>
<annotation cp="💇🏻♂">corte de pelo | hombre | pelo | peluquería | salón | tono de piel claro</annotation>
<annotation cp="💇🏼♂">corte de pelo | hombre | pelo | peluquería | salón | tono de piel claro medio</annotation>
<annotation cp="💇🏽♂">corte de pelo | hombre | pelo | peluquería | salón | tono de piel medio</annotation>
<annotation cp="💇🏾♂">corte de pelo | hombre | pelo | peluquería | salón | tono de piel oscuro medio</annotation>
<annotation cp="💇🏿♂">corte de pelo | hombre | pelo | peluquería | salón | tono de piel oscuro</annotation>
<annotation cp="💇🏻♀">corte de pelo | mujer | pelo | peluquería | peluquero | tono de piel claro</annotation>
<annotation cp="💇🏼♀">corte de pelo | mujer | pelo | peluquería | peluquero | tono de piel claro medio</annotation>
<annotation cp="💇🏽♀">corte de pelo | mujer | pelo | peluquería | peluquero | tono de piel medio</annotation>
<annotation cp="💇🏾♀">corte de pelo | mujer | pelo | peluquería | peluquero | tono de piel oscuro medio</annotation>
<annotation cp="💇🏿♀">corte de pelo | mujer | pelo | peluquería | peluquero | tono de piel oscuro</annotation>
<annotation cp="🧑🏻🦯">accesibilidad | ciego | tono de piel claro</annotation>
<annotation cp="🧑🏻🦯" type="tts">Persona con bastón blanco: tono de piel claro</annotation>
<annotation cp="🧑🏼🦯">accesibilidad | ciego | tono de piel claro medio</annotation>
<annotation cp="🧑🏼🦯" type="tts">Persona con bastón blanco: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🦯">accesibilidad | ciego | tono de piel medio</annotation>
<annotation cp="🧑🏽🦯" type="tts">Persona con bastón blanco: tono de piel medio</annotation>
<annotation cp="🧑🏾🦯">accesibilidad | ciego | tono de piel oscuro medio</annotation>
<annotation cp="🧑🏾🦯" type="tts">Persona con bastón blanco: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🦯">accesibilidad | ciego | tono de piel oscuro</annotation>
<annotation cp="🧑🏿🦯" type="tts">Persona con bastón blanco: tono de piel oscuro</annotation>
<annotation cp="🧑🏻🦼" type="tts">Persona en silla de ruedas motorizada: tono de piel claro</annotation>
<annotation cp="🧑🏼🦼" type="tts">Persona en silla de ruedas motorizada: tono de piel claro medio</annotation>
<annotation cp="🧑🏽🦼" type="tts">Persona en silla de ruedas motorizada: tono de piel medio</annotation>
<annotation cp="🧑🏾🦼" type="tts">Persona en silla de ruedas motorizada: tono de piel oscuro medio</annotation>
<annotation cp="🧑🏿🦼" type="tts">Persona en silla de ruedas motorizada: tono de piel oscuro</annotation>
<annotation cp="💃🏻">bailarina | tono de piel claro</annotation>
<annotation cp="💃🏻" type="tts">bailarina: tono de piel claro</annotation>
<annotation cp="💃🏼">bailarina | tono de piel claro medio</annotation>
<annotation cp="💃🏼" type="tts">bailarina: tono de piel claro medio</annotation>
<annotation cp="💃🏽">bailarina | tono de piel medio</annotation>
<annotation cp="💃🏽" type="tts">bailarina: tono de piel medio</annotation>
<annotation cp="💃🏾">bailarina | tono de piel oscuro medio</annotation>
<annotation cp="💃🏾" type="tts">bailarina: tono de piel oscuro medio</annotation>
<annotation cp="💃🏿">bailarina | tono de piel oscuro</annotation>
<annotation cp="💃🏿" type="tts">bailarina: tono de piel oscuro</annotation>
<annotation cp="🕺🏻">bailarín | tono de piel claro</annotation>
<annotation cp="🕺🏻" type="tts">bailarín: tono de piel claro</annotation>
<annotation cp="🕺🏼">bailarín | tono de piel claro medio</annotation>
<annotation cp="🕺🏼" type="tts">bailarín: tono de piel claro medio</annotation>
<annotation cp="🕺🏽">bailarín | tono de piel medio</annotation>
<annotation cp="🕺🏽" type="tts">bailarín: tono de piel medio</annotation>
<annotation cp="🕺🏾">bailarín | tono de piel oscuro medio</annotation>
<annotation cp="🕺🏾" type="tts">bailarín: tono de piel oscuro medio</annotation>
<annotation cp="🕺🏿">bailarín | tono de piel oscuro</annotation>
<annotation cp="🕺🏿" type="tts">bailarín: tono de piel oscuro</annotation>
<annotation cp="🧖🏻">persona en sauna | tono de piel claro</annotation>
<annotation cp="🧖🏻" type="tts">persona en sauna: tono de piel claro</annotation>
<annotation cp="🧖🏼">persona en sauna | tono de piel claro medio</annotation>
<annotation cp="🧖🏼" type="tts">persona en sauna: tono de piel claro medio</annotation>
<annotation cp="🧖🏽">persona en sauna | tono de piel medio</annotation>
<annotation cp="🧖🏽" type="tts">persona en sauna: tono de piel medio</annotation>
<annotation cp="🧖🏾">persona en sauna | tono de piel oscuro medio</annotation>
<annotation cp="🧖🏾" type="tts">persona en sauna: tono de piel oscuro medio</annotation>
<annotation cp="🧖🏿">persona en sauna | tono de piel oscuro</annotation>
<annotation cp="🧖🏿" type="tts">persona en sauna: tono de piel oscuro</annotation>
<annotation cp="🧖🏻♂">hombre en sauna | tono de piel claro</annotation>
<annotation cp="🧖🏻♂" type="tts">hombre en sauna: tono de piel claro</annotation>
<annotation cp="🧖🏼♂">hombre en sauna | tono de piel claro medio</annotation>
<annotation cp="🧖🏼♂" type="tts">hombre en sauna: tono de piel claro medio</annotation>
<annotation cp="🧖🏽♂">hombre en sauna | tono de piel medio</annotation>
<annotation cp="🧖🏽♂" type="tts">hombre en sauna: tono de piel medio</annotation>
<annotation cp="🧖🏾♂">hombre en sauna | tono de piel oscuro medio</annotation>
<annotation cp="🧖🏾♂" type="tts">hombre en sauna: tono de piel oscuro medio</annotation>
<annotation cp="🧖🏿♂">hombre en sauna | tono de piel oscuro</annotation>
<annotation cp="🧖🏿♂" type="tts">hombre en sauna: tono de piel oscuro</annotation>
<annotation cp="🧖🏻♀">mujer en sauna | tono de piel claro</annotation>
<annotation cp="🧖🏻♀" type="tts">mujer en sauna: tono de piel claro</annotation>
<annotation cp="🧖🏼♀">mujer en sauna | tono de piel claro medio</annotation>
<annotation cp="🧖🏼♀" type="tts">mujer en sauna: tono de piel claro medio</annotation>
<annotation cp="🧖🏽♀">mujer en sauna | tono de piel medio</annotation>
<annotation cp="🧖🏽♀" type="tts">mujer en sauna: tono de piel medio</annotation>
<annotation cp="🧖🏾♀">mujer en sauna | tono de piel oscuro medio</annotation>
<annotation cp="🧖🏾♀" type="tts">mujer en sauna: tono de piel oscuro medio</annotation>
<annotation cp="🧖🏿♀">mujer en sauna | tono de piel oscuro</annotation>
<annotation cp="🧖🏿♀" type="tts">mujer en sauna: tono de piel oscuro</annotation>
<annotation cp="🏌🏻">persona jugando al golf | tono de piel claro</annotation>
<annotation cp="🏌🏻" type="tts">persona jugando al golf: tono de piel claro</annotation>
<annotation cp="🏌🏼">persona jugando al golf | tono de piel claro medio</annotation>
<annotation cp="🏌🏼" type="tts">persona jugando al golf: tono de piel claro medio</annotation>
<annotation cp="🏌🏽">persona jugando al golf | tono de piel medio</annotation>
<annotation cp="🏌🏽" type="tts">persona jugando al golf: tono de piel medio</annotation>
<annotation cp="🏌🏾">persona jugando al golf | tono de piel oscuro medio</annotation>
<annotation cp="🏌🏾" type="tts">persona jugando al golf: tono de piel oscuro medio</annotation>
<annotation cp="🏌🏿">persona jugando al golf | tono de piel oscuro</annotation>
<annotation cp="🏌🏿" type="tts">persona jugando al golf: tono de piel oscuro</annotation>
<annotation cp="🏄🏻">persona haciendo surf | tono de piel claro</annotation>
<annotation cp="🏄🏻" type="tts">persona haciendo surf: tono de piel claro</annotation>
<annotation cp="🏄🏼">persona haciendo surf | tono de piel claro medio</annotation>
<annotation cp="🏄🏼" type="tts">persona haciendo surf: tono de piel claro medio</annotation>
<annotation cp="🏄🏽">persona haciendo surf | tono de piel medio</annotation>
<annotation cp="🏄🏽" type="tts">persona haciendo surf: tono de piel medio</annotation>
<annotation cp="🏄🏾">persona haciendo surf | tono de piel oscuro medio</annotation>
<annotation cp="🏄🏾" type="tts">persona haciendo surf: tono de piel oscuro medio</annotation>
<annotation cp="🏄🏿">persona haciendo surf | tono de piel oscuro</annotation>
<annotation cp="🏄🏿" type="tts">persona haciendo surf: tono de piel oscuro</annotation>
<annotation cp="🚣🏻♂">hombre remando | tono de piel claro</annotation>
<annotation cp="🚣🏻♂" type="tts">hombre remando: tono de piel claro</annotation>
<annotation cp="🚣🏼♂">hombre remando | tono de piel claro medio</annotation>
<annotation cp="🚣🏼♂" type="tts">hombre remando: tono de piel claro medio</annotation>
<annotation cp="🚣🏽♂">hombre remando | tono de piel medio</annotation>
<annotation cp="🚣🏽♂" type="tts">hombre remando: tono de piel medio</annotation>
<annotation cp="🚣🏾♂">hombre remando | tono de piel oscuro medio</annotation>
<annotation cp="🚣🏾♂" type="tts">hombre remando: tono de piel oscuro medio</annotation>
<annotation cp="🚣🏿♂">hombre remando | tono de piel oscuro</annotation>
<annotation cp="🚣🏿♂" type="tts">hombre remando: tono de piel oscuro</annotation>
<annotation cp="🚣🏻♀">mujer remando | tono de piel claro</annotation>
<annotation cp="🚣🏻♀" type="tts">mujer remando: tono de piel claro</annotation>
<annotation cp="🚣🏼♀">mujer remando | tono de piel claro medio</annotation>
<annotation cp="🚣🏼♀" type="tts">mujer remando: tono de piel claro medio</annotation>
<annotation cp="🚣🏽♀">mujer remando | tono de piel medio</annotation>
<annotation cp="🚣🏽♀" type="tts">mujer remando: tono de piel medio</annotation>
<annotation cp="🚣🏾♀">mujer remando | tono de piel oscuro medio</annotation>
<annotation cp="🚣🏾♀" type="tts">mujer remando: tono de piel oscuro medio</annotation>
<annotation cp="🚣🏿♀">mujer remando | tono de piel oscuro</annotation>
<annotation cp="🚣🏿♀" type="tts">mujer remando: tono de piel oscuro</annotation>
<annotation cp="🏊🏻♂">hombre | hombre nadando | nadar | natación | tono de piel claro</annotation>
<annotation cp="🏊🏼♂">hombre | hombre nadando | nadar | natación | tono de piel claro medio</annotation>
<annotation cp="🏊🏽♂">hombre | hombre nadando | nadar | natación | tono de piel medio</annotation>
<annotation cp="🏊🏾♂">hombre | hombre nadando | nadar | natación | tono de piel oscuro medio</annotation>
<annotation cp="🏊🏿♂">hombre | hombre nadando | nadar | natación | tono de piel oscuro</annotation>
<annotation cp="🏊🏻♀">mujer | mujer nadando | nadar | natación | tono de piel claro</annotation>
<annotation cp="🏊🏼♀">mujer | mujer nadando | nadar | natación | tono de piel claro medio</annotation>
<annotation cp="🏊🏽♀">mujer | mujer nadando | nadar | natación | tono de piel medio</annotation>
<annotation cp="🏊🏾♀">mujer | mujer nadando | nadar | natación | tono de piel oscuro medio</annotation>
<annotation cp="🏊🏿♀">mujer | mujer nadando | nadar | natación | tono de piel oscuro</annotation>
<annotation cp="⛹🏻">persona botando un balón | tono de piel claro</annotation>
<annotation cp="⛹🏻" type="tts">persona botando un balón: tono de piel claro</annotation>
<annotation cp="⛹🏼">persona botando un balón | tono de piel claro medio</annotation>
<annotation cp="⛹🏼" type="tts">persona botando un balón: tono de piel claro medio</annotation>
<annotation cp="⛹🏽">persona botando un balón | tono de piel medio</annotation>
<annotation cp="⛹🏽" type="tts">persona botando un balón: tono de piel medio</annotation>
<annotation cp="⛹🏾">persona botando un balón | tono de piel oscuro medio</annotation>
<annotation cp="⛹🏾" type="tts">persona botando un balón: tono de piel oscuro medio</annotation>
<annotation cp="⛹🏿">persona botando un balón | tono de piel oscuro</annotation>
<annotation cp="⛹🏿" type="tts">persona botando un balón: tono de piel oscuro</annotation>
<annotation cp="🏋🏻">fisicoculturismo | gimnasio | gym | halterofilia | pesas | tono de piel claro</annotation>
<annotation cp="🏋🏼">fisicoculturismo | gimnasio | gym | halterofilia | pesas | tono de piel claro medio</annotation>
<annotation cp="🏋🏽">fisicoculturismo | gimnasio | gym | halterofilia | pesas | tono de piel medio</annotation>
<annotation cp="🏋🏾">fisicoculturismo | gimnasio | gym | halterofilia | pesas | tono de piel oscuro medio</annotation>
<annotation cp="🏋🏿">fisicoculturismo | gimnasio | gym | halterofilia | pesas | tono de piel oscuro</annotation>
<annotation cp="🚵🏻">bicicleta | ciclismo de montaña | ciclista | montaña | tono de piel claro</annotation>
<annotation cp="🚵🏼">bicicleta | ciclismo de montaña | ciclista | montaña | tono de piel claro medio</annotation>
<annotation cp="🚵🏽">bicicleta | ciclismo de montaña | ciclista | montaña | tono de piel medio</annotation>
<annotation cp="🚵🏾">bicicleta | ciclismo de montaña | ciclista | montaña | tono de piel oscuro medio</annotation>
<annotation cp="🚵🏿">bicicleta | ciclismo de montaña | ciclista | montaña | tono de piel oscuro</annotation>
<annotation cp="🤸🏻">persona haciendo una vuelta de carro | tono de piel claro</annotation>
<annotation cp="🤸🏻" type="tts">persona haciendo una vuelta de carro: tono de piel claro</annotation>
<annotation cp="🤸🏼">persona haciendo una vuelta de carro | tono de piel claro medio</annotation>
<annotation cp="🤸🏼" type="tts">persona haciendo una vuelta de carro: tono de piel claro medio</annotation>
<annotation cp="🤸🏽">persona haciendo una vuelta de carro | tono de piel medio</annotation>
<annotation cp="🤸🏽" type="tts">persona haciendo una vuelta de carro: tono de piel medio</annotation>
<annotation cp="🤸🏾">persona haciendo una vuelta de carro | tono de piel oscuro medio</annotation>
<annotation cp="🤸🏾" type="tts">persona haciendo una vuelta de carro: tono de piel oscuro medio</annotation>
<annotation cp="🤸🏿">persona haciendo una vuelta de carro | tono de piel oscuro</annotation>
<annotation cp="🤸🏿" type="tts">persona haciendo una vuelta de carro: tono de piel oscuro</annotation>
<annotation cp="🤸🏻♂">hombre haciendo una vuelta de carro | tono de piel claro</annotation>
<annotation cp="🤸🏻♂" type="tts">hombre haciendo una vuelta de carro: tono de piel claro</annotation>
<annotation cp="🤸🏼♂">hombre haciendo una vuelta de carro | tono de piel claro medio</annotation>
<annotation cp="🤸🏼♂" type="tts">hombre haciendo una vuelta de carro: tono de piel claro medio</annotation>
<annotation cp="🤸🏽♂">hombre haciendo una vuelta de carro | tono de piel medio</annotation>
<annotation cp="🤸🏽♂" type="tts">hombre haciendo una vuelta de carro: tono de piel medio</annotation>
<annotation cp="🤸🏾♂">hombre haciendo una vuelta de carro | tono de piel oscuro medio</annotation>
<annotation cp="🤸🏾♂" type="tts">hombre haciendo una vuelta de carro: tono de piel oscuro medio</annotation>
<annotation cp="🤸🏿♂">hombre haciendo una vuelta de carro | tono de piel oscuro</annotation>
<annotation cp="🤸🏿♂" type="tts">hombre haciendo una vuelta de carro: tono de piel oscuro</annotation>
<annotation cp="🤸🏻♀">mujer haciendo una vuelta de carro | tono de piel claro</annotation>
<annotation cp="🤸🏻♀" type="tts">mujer haciendo una vuelta de carro: tono de piel claro</annotation>
<annotation cp="🤸🏼♀">mujer haciendo una vuelta de carro | tono de piel claro medio</annotation>
<annotation cp="🤸🏼♀" type="tts">mujer haciendo una vuelta de carro: tono de piel claro medio</annotation>
<annotation cp="🤸🏽♀">mujer haciendo una vuelta de carro | tono de piel medio</annotation>
<annotation cp="🤸🏽♀" type="tts">mujer haciendo una vuelta de carro: tono de piel medio</annotation>
<annotation cp="🤸🏾♀">mujer haciendo una vuelta de carro | tono de piel oscuro medio</annotation>
<annotation cp="🤸🏾♀" type="tts">mujer haciendo una vuelta de carro: tono de piel oscuro medio</annotation>
<annotation cp="🤸🏿♀">mujer haciendo una vuelta de carro | tono de piel oscuro</annotation>
<annotation cp="🤸🏿♀" type="tts">mujer haciendo una vuelta de carro: tono de piel oscuro</annotation>
<annotation cp="🤽🏻">deporte acuático | deportista | persona | tono de piel claro | waterpolo</annotation>
<annotation cp="🤽🏼">deporte acuático | deportista | persona | tono de piel claro medio | waterpolo</annotation>
<annotation cp="🤽🏽">deporte acuático | deportista | persona | tono de piel medio | waterpolo</annotation>
<annotation cp="🤽🏾">deporte acuático | deportista | persona | tono de piel oscuro medio | waterpolo</annotation>
<annotation cp="🤽🏿">deporte acuático | deportista | persona | tono de piel oscuro | waterpolo</annotation>
<annotation cp="🤹🏻">malabarista | tono de piel claro</annotation>
<annotation cp="🤹🏻" type="tts">malabarista: tono de piel claro</annotation>
<annotation cp="🤹🏼">malabarista | tono de piel claro medio</annotation>
<annotation cp="🤹🏼" type="tts">malabarista: tono de piel claro medio</annotation>
<annotation cp="🤹🏽">malabarista | tono de piel medio</annotation>
<annotation cp="🤹🏽" type="tts">malabarista: tono de piel medio</annotation>
<annotation cp="🤹🏾">malabarista | tono de piel oscuro medio</annotation>
<annotation cp="🤹🏾" type="tts">malabarista: tono de piel oscuro medio</annotation>
<annotation cp="🤹🏿">malabarista | tono de piel oscuro</annotation>
<annotation cp="🤹🏿" type="tts">malabarista: tono de piel oscuro</annotation>
<annotation cp="🛀🏻">persona en tina | tono de piel claro</annotation>
<annotation cp="🛀🏻" type="tts">persona en tina: tono de piel claro</annotation>
<annotation cp="🛀🏼">persona en tina | tono de piel claro medio</annotation>
<annotation cp="🛀🏼" type="tts">persona en tina: tono de piel claro medio</annotation>
<annotation cp="🛀🏽">persona en tina | tono de piel medio</annotation>
<annotation cp="🛀🏽" type="tts">persona en tina: tono de piel medio</annotation>
<annotation cp="🛀🏾">persona en tina | tono de piel oscuro medio</annotation>
<annotation cp="🛀🏾" type="tts">persona en tina: tono de piel oscuro medio</annotation>
<annotation cp="🛀🏿">persona en tina | tono de piel oscuro</annotation>
<annotation cp="🛀🏿" type="tts">persona en tina: tono de piel oscuro</annotation>
<annotation cp="👭🏻">amor | gemelas | mujeres | pareja | tono de piel claro</annotation>
<annotation cp="👩🏼🤝👩🏻">amor | gemelas | mujeres | pareja | tono de piel claro | tono de piel claro medio</annotation>
<annotation cp="👭🏼">amor | gemelas | mujeres | pareja | tono de piel claro medio</annotation>
<annotation cp="👩🏽🤝👩🏻">amor | gemelas | mujeres | pareja | tono de piel claro | tono de piel medio</annotation>
<annotation cp="👩🏽🤝👩🏼">amor | gemelas | mujeres | pareja | tono de piel claro medio | tono de piel medio</annotation>
<annotation cp="👭🏽">amor | gemelas | mujeres | pareja | tono de piel medio</annotation>
<annotation cp="👩🏾🤝👩🏻">amor | gemelas | mujeres | pareja | tono de piel claro | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🤝👩🏼">amor | gemelas | mujeres | pareja | tono de piel claro medio | tono de piel oscuro medio</annotation>
<annotation cp="👩🏾🤝👩🏽">amor | gemelas | mujeres | pareja | tono de piel medio | tono de piel oscuro medio</annotation>
<annotation cp="👭🏾">amor | gemelas | mujeres | pareja | tono de piel oscuro medio</annotation>
<annotation cp="👩🏿🤝👩🏻">amor | gemelas | mujeres | pareja | tono de piel claro | tono de piel oscuro</annotation>
<annotation cp="👩🏿🤝👩🏼">amor | gemelas | mujeres | pareja | tono de piel claro medio | tono de piel oscuro</annotation>
<annotation cp="👩🏿🤝👩🏽">amor | gemelas | mujeres | pareja | tono de piel medio | tono de piel oscuro</annotation>
<annotation cp="👩🏿🤝👩🏾">amor | gemelas | mujeres | pareja | tono de piel oscuro | tono de piel oscuro medio</annotation>
<annotation cp="👭🏿">amor | gemelas | mujeres | pareja | tono de piel oscuro</annotation>
<annotation cp="👬🏻">amor | gemelos | hombres | pareja | tono de piel claro</annotation>
<annotation cp="👨🏼🤝👨🏻">amor | gemelos | hombres | pareja | tono de piel claro | tono de piel claro medio</annotation>
<annotation cp="👬🏼">amor | gemelos | hombres | pareja | tono de piel claro medio</annotation>
<annotation cp="👨🏽🤝👨🏻">amor | gemelos | hombres | pareja | tono de piel claro | tono de piel medio</annotation>
<annotation cp="👨🏽🤝👨🏼">amor | gemelos | hombres | pareja | tono de piel claro medio | tono de piel medio</annotation>
<annotation cp="👬🏽">amor | gemelos | hombres | pareja | tono de piel medio</annotation>
<annotation cp="👨🏾🤝👨🏻">amor | gemelos | hombres | pareja | tono de piel claro | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🤝👨🏼">amor | gemelos | hombres | pareja | tono de piel claro medio | tono de piel oscuro medio</annotation>
<annotation cp="👨🏾🤝👨🏽">amor | gemelos | hombres | pareja | tono de piel medio | tono de piel oscuro medio</annotation>
<annotation cp="👬🏾">amor | gemelos | hombres | pareja | tono de piel oscuro medio</annotation>
<annotation cp="👨🏿🤝👨🏻">amor | gemelos | hombres | pareja | tono de piel claro | tono de piel oscuro</annotation>
<annotation cp="👨🏿🤝👨🏼">amor | gemelos | hombres | pareja | tono de piel claro medio | tono de piel oscuro</annotation>
<annotation cp="👨🏿🤝👨🏽">amor | gemelos | hombres | pareja | tono de piel medio | tono de piel oscuro</annotation>
<annotation cp="👨🏿🤝👨🏾">amor | gemelos | hombres | pareja | tono de piel oscuro | tono de piel oscuro medio</annotation>
<annotation cp="👬🏿">amor | gemelos | hombres | pareja | tono de piel oscuro</annotation>
<annotation cp="👩❤💋👨">beso | hombre | mujer</annotation>
<annotation cp="👩❤💋👨" type="tts">beso: mujer y hombre</annotation>
<annotation cp="👨❤💋👨">beso | hombre</annotation>
<annotation cp="👨❤💋👨" type="tts">beso: hombre y hombre</annotation>
<annotation cp="👩❤💋👩">beso | mujer</annotation>
<annotation cp="👩❤💋👩" type="tts">beso: mujer y mujer</annotation>
<annotation cp="👩❤👨">hombre | hombre y mujer enamorados | mujer</annotation>
<annotation cp="👩❤👨" type="tts">hombre y mujer enamorados: mujer y hombre</annotation>
<annotation cp="👨❤👨">hombre | hombre y mujer enamorados</annotation>
<annotation cp="👨❤👨" type="tts">hombre y mujer enamorados: hombre y hombre</annotation>
<annotation cp="👩❤👩">hombre y mujer enamorados | mujer</annotation>
<annotation cp="👩❤👩" type="tts">hombre y mujer enamorados: mujer y mujer</annotation>
<annotation cp="👨👩👦">familia | hija | hijo | hombre | madre | mujer | niño | padre</annotation>
<annotation cp="👨👩👧">familia | hija | hijo | hombre | madre | mujer | niña | padre</annotation>
<annotation cp="👨👩👧👦">familia | hija | hijo | hombre | madre | mujer | niña | niño | padre</annotation>
<annotation cp="👨👩👦👦">familia | hija | hijo | hombre | madre | mujer | niño | padre</annotation>
<annotation cp="👨👩👧👧">familia | hija | hijo | hombre | madre | mujer | niña | padre</annotation>
<annotation cp="👨👨👦">familia | hija | hijo | hombre | madre | niño | padre</annotation>
<annotation cp="👨👨👧">familia | hija | hijo | hombre | madre | niña | padre</annotation>
<annotation cp="👨👨👧👦">familia | hija | hijo | hombre | madre | niña | niño | padre</annotation>
<annotation cp="👨👨👦👦">familia | hija | hijo | hombre | madre | niño | padre</annotation>
<annotation cp="👨👨👧👧">familia | hija | hijo | hombre | madre | niña | padre</annotation>
<annotation cp="👩👩👦">familia | hija | hijo | madre | mujer | niño | padre</annotation>
<annotation cp="👩👩👧">familia | hija | hijo | madre | mujer | niña | padre</annotation>
<annotation cp="👩👩👧👦">familia | hija | hijo | madre | mujer | niña | niño | padre</annotation>
<annotation cp="👩👩👦👦">familia | hija | hijo | madre | mujer | niño | padre</annotation>
<annotation cp="👩👩👧👧">familia | hija | hijo | madre | mujer | niña | padre</annotation>
<annotation cp="👨👦">familia | hija | hijo | hombre | madre | niño | padre</annotation>
<annotation cp="👨👦👦">familia | hija | hijo | hombre | madre | niño | padre</annotation>
<annotation cp="👨👧">familia | hija | hijo | hombre | madre | niña | padre</annotation>
<annotation cp="👨👧👦">familia | hija | hijo | hombre | madre | niña | niño | padre</annotation>
<annotation cp="👨👧👧">familia | hija | hijo | hombre | madre | niña | padre</annotation>
<annotation cp="👩👦">familia | hija | hijo | madre | mujer | niño | padre</annotation>
<annotation cp="👩👦👦">familia | hija | hijo | madre | mujer | niño | padre</annotation>
<annotation cp="👩👧">familia | hija | hijo | madre | mujer | niña | padre</annotation>
<annotation cp="👩👧👦">familia | hija | hijo | madre | mujer | niña | niño | padre</annotation>
<annotation cp="👩👧👧">familia | hija | hijo | madre | mujer | niña | padre</annotation>
<annotation cp="#⃣">tecla</annotation>
<annotation cp="#⃣" type="tts">tecla: #</annotation>
<annotation cp="*⃣">tecla</annotation>
<annotation cp="*⃣" type="tts">tecla: *</annotation>
<annotation cp="🔟">tecla</annotation>
<annotation cp="🔟" type="tts">tecla: 10</annotation>
<annotation cp="🇧🇦" type="tts">bandera: Bosnia y Herzegovina</annotation>
<annotation cp="🇨🇮" type="tts">bandera: Côte d’Ivoire</annotation>
<annotation cp="🇬🇬" type="tts">bandera: Guernsey</annotation>
<annotation cp="🇷🇴" type="tts">bandera: Rumania</annotation>
<annotation cp="🇸🇦" type="tts">bandera: Arabia Saudita</annotation>
<annotation cp="🇸🇿" type="tts">bandera: Eswatini</annotation>
<annotation cp="🇹🇦" type="tts">bandera: Tristán de Acuña</annotation>
<annotation cp="🇺🇲" type="tts">bandera: Islas menores alejadas de EE. UU.</annotation>
<annotation cp="🇺🇳" type="tts">bandera: ONU</annotation>
<annotation cp="0⃣">tecla</annotation>
<annotation cp="0⃣" type="tts">tecla: 0</annotation>
<annotation cp="1⃣">tecla</annotation>
<annotation cp="1⃣" type="tts">tecla: 1</annotation>
<annotation cp="2⃣">tecla</annotation>
<annotation cp="2⃣" type="tts">tecla: 2</annotation>
<annotation cp="3⃣">tecla</annotation>
<annotation cp="3⃣" type="tts">tecla: 3</annotation>
<annotation cp="4⃣">tecla</annotation>
<annotation cp="4⃣" type="tts">tecla: 4</annotation>
<annotation cp="5⃣">tecla</annotation>
<annotation cp="5⃣" type="tts">tecla: 5</annotation>
<annotation cp="6⃣">tecla</annotation>
<annotation cp="6⃣" type="tts">tecla: 6</annotation>
<annotation cp="7⃣">tecla</annotation>
<annotation cp="7⃣" type="tts">tecla: 7</annotation>
<annotation cp="8⃣">tecla</annotation>
<annotation cp="8⃣" type="tts">tecla: 8</annotation>
<annotation cp="9⃣">tecla</annotation>
<annotation cp="9⃣" type="tts">tecla: 9</annotation>
</annotations>
</ldml>
|