File size: 53,391 Bytes
6dd15e9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 |
{
"modelspec.architecture": "stable-diffusion-xl-v1-base/lora",
"ss_network_dim": 8.0,
"ss_text_encoder_lr": 0.0001,
"ss_session_id": "1637153125",
"ss_adaptive_noise_scale": null,
"ss_min_bucket_reso": 256,
"ss_scale_weight_norms": 1.0,
"ss_base_model_version": "sdxl_base_v1-0",
"ss_network_module": "lycoris.kohya",
"sshs_legacy_hash": "1c3163c1",
"ss_optimizer": "torch.optim.adamw.AdamW",
"ss_loss_type": "l2",
"ss_num_train_images": 121,
"ss_huber_c": "0.1",
"ss_multires_noise_discount": 0.1,
"ss_training_comment": "None",
"ss_epoch": 400,
"ss_debiased_estimation": true,
"modelspec.date": "2024-04-30T12:20:38",
"ss_sd_scripts_commit_hash": "71e2c91330a9d866ec05cdd10584bbb962896a99",
"ss_max_token_length": null,
"ss_sd_model_hash": "IsADirectory",
"ss_output_name": "analbeads",
"modelspec.title": "analbeads",
"ss_min_snr_gamma": null,
"ss_num_batches_per_epoch": 12,
"ss_dataset_dirs": {
"1_anal_beads_in_ass": {
"n_repeats": 1,
"img_count": 57
},
"2_anal_beads_in_pussy": {
"n_repeats": 2,
"img_count": 32
}
},
"ss_full_fp16": true,
"modelspec.resolution": "512x512",
"ss_steps": 400,
"modelspec.prediction_type": "epsilon",
"ss_lr_scheduler": "cosine",
"ss_v2": true,
"ss_new_sd_model_hash": "IsADirectory",
"ss_keep_tokens": true,
"ss_flip_aug": true,
"ss_noise_offset": null,
"ss_resolution": "(512, 512)",
"ss_cache_latents": true,
"ss_color_aug": true,
"modelspec.implementation": "https://github.com/Stability-AI/generative-models",
"ss_enable_bucket": true,
"ss_bucket_no_upscale": true,
"ss_clip_skip": null,
"ss_shuffle_caption": true,
"ss_learning_rate": 0.0001,
"ss_seed": 1040412308,
"ss_max_train_steps": 400,
"ss_face_crop_aug_range": "None",
"ss_reg_dataset_dirs": {},
"ss_max_grad_norm": 1.0,
"modelspec.sai_model_spec": "1.0.0",
"ss_batch_size_per_device": 8,
"ss_prior_loss_weight": 1.0,
"ss_zero_terminal_snr": true,
"ss_ip_noise_gamma": null,
"ss_bucket_info": {
"buckets": {
"0": {
"resolution": [
352,
704
],
"count": 2
},
"1": {
"resolution": [
384,
640
],
"count": 2
},
"2": {
"resolution": [
384,
672
],
"count": 1
},
"3": {
"resolution": [
416,
608
],
"count": 26
},
"4": {
"resolution": [
448,
576
],
"count": 9
},
"5": {
"resolution": [
480,
544
],
"count": 15
},
"6": {
"resolution": [
512,
512
],
"count": 16
},
"7": {
"resolution": [
544,
480
],
"count": 9
},
"8": {
"resolution": [
576,
448
],
"count": 13
},
"9": {
"resolution": [
608,
416
],
"count": 13
},
"10": {
"resolution": [
640,
384
],
"count": 4
},
"11": {
"resolution": [
672,
384
],
"count": 8
},
"12": {
"resolution": [
704,
352
],
"count": 2
},
"13": {
"resolution": [
832,
288
],
"count": 1
}
},
"mean_img_ar_error": 0.030717991411589842
},
"ss_network_args": {
"preset": "full",
"conv_dim": "256",
"conv_alpha": "4",
"use_tucker": "False",
"use_scalar": "False",
"rank_dropout_scale": "False",
"algo": "locon",
"dora_wd": "True",
"train_norm": "False",
"block_dims": "8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8",
"block_alphas": "0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625",
"dropout": 0.0
},
"ss_random_crop": true,
"ss_caption_dropout_every_n_epochs": 0,
"ss_gradient_accumulation_steps": 12,
"ss_training_finished_at": "2024-04-30 14:20:38.303796",
"ss_caption_tag_dropout_rate": 0.0,
"sshs_model_hash": "e96ded124c460d99846d4a03300eb096a2a621cc1f2f65672f6786bd32876200",
"ss_network_alpha": 4.0,
"ss_ip_noise_gamma_random_strength": "False",
"ss_huber_schedule": "snr",
"ss_max_bucket_reso": 1024,
"ss_num_epochs": 400,
"ss_caption_dropout_rate": 0.0,
"ss_network_dropout": 0.0,
"ss_noise_offset_random_strength": "False",
"ss_lowram": true,
"ss_total_batch_size": 192,
"ss_mixed_precision": "fp16",
"ss_num_reg_images": 0,
"ss_gradient_checkpointing": true,
"ss_lr_warmup_steps": 0,
"ss_multires_noise_iterations": 10.0,
"ss_unet_lr": 0.0001,
"ss_training_started_at": "2024-04-30 06:05:25.290761",
"ss_sd_model_name": "",
"ss_tag_frequency": {
"1_anal_beads_in_ass": {
"rating_explicit": 57,
"ambiguous gender": 8,
"anal": 57,
"anal bead pull": 29,
"anal beads": 57,
"anal beads in ass": 57,
"anal juice": 21,
"anal penetration": 57,
"anal tugging": 7,
"anthro": 53,
"armwear": 7,
"black body": 8,
"black fur": 4,
"bodily fluids": 52,
"bridle": 1,
"butt": 42,
"clothing": 32,
"drooling": 6,
"duo": 18,
"fur": 34,
"girly": 19,
"hair": 22,
"legwear": 13,
"long hair": 5,
"male": 40,
"male/ambiguous": 6,
"male penetrated": 18,
"object in ass": 57,
"pawpads": 10,
"penetration": 57,
"reins": 1,
"saliva": 14,
"sex": 16,
"sex toy": 57,
"sex toy in ass": 57,
"sex toy insertion": 57,
"thong": 1,
"tongue": 22,
"tongue out": 19,
"underwear": 9,
"yellow eyes": 6,
"by wizzikt": 11,
"tallyna \\(fursona\\)": 1,
"domestic cat": 6,
"feline": 10,
"digital media \\(artwork\\)": 35,
"4 toes": 5,
":3": 1,
"anus": 35,
"bed": 5,
"black nose": 5,
"blush": 32,
"cute fangs": 1,
"eyelashes": 3,
"feet": 13,
"female": 25,
"feral": 5,
"furniture": 6,
"genitals": 51,
"grey eyes": 1,
"holding object with tail": 1,
"looking at viewer": 15,
"looking pleasured": 22,
"lying": 9,
"lying on bed": 1,
"on bed": 3,
"one eye closed": 7,
"one leg up": 3,
"pussy": 22,
"raised leg": 3,
"smile": 14,
"solo": 30,
"toes": 12,
"white body": 11,
"white fur": 7,
"by kekitopu": 1,
"lotion cat \\(kekitopu\\)": 1,
"goo creature": 2,
"anal storage": 1,
"big breasts": 9,
"biped": 9,
"blonde hair": 2,
"blue body": 6,
"breasts": 18,
"cavity storage": 1,
"clenched teeth": 2,
"crouching": 2,
"dildo": 2,
"dildo sitting": 1,
"dripping": 9,
"enhibitionism": 1,
"excessive genital fluids": 3,
"excessive pussy juice": 1,
"eyes closed": 7,
"falling on dildo": 1,
"falling penetration": 1,
"fitting room": 1,
"genital fluids": 36,
"heart symbol": 10,
"knotted dildo": 2,
"masturbation": 16,
"nude": 20,
"shaking": 8,
"speech bubble": 7,
"sweat": 16,
"teeth": 6,
"text": 21,
"tremble spikes": 2,
"trembling": 2,
"vaginal fluids": 7,
"by sincastermon": 2,
"my hero academia": 1,
"ippan josei": 1,
"fish": 2,
"fox": 4,
"humanoid": 1,
"hybrid": 4,
"marine": 2,
"shark": 2,
"english text": 11,
"5 fingers": 5,
"all fours": 5,
"anthrofied": 5,
"blue scales": 1,
"butt grab": 3,
"disembodied hand": 8,
"eyebrows": 2,
"fingers": 9,
"glistening eyelids": 1,
"hand on butt": 4,
"moan": 1,
"musk": 1,
"musk clouds": 1,
"onomatopoeia": 5,
"open mouth": 18,
"pokemorph": 5,
"scales": 2,
"side boob": 4,
"solo focus": 18,
"sound effects": 6,
"by conditional dnp": 5,
"by whisperfoot": 1,
"vaporeon": 2,
"ambiguous fluids": 1,
"anal squirt": 3,
"ass up": 4,
"big butt": 10,
"black sclera": 1,
"clothed": 16,
"curvy figure": 4,
"elbow gloves": 2,
"exhibitionism": 3,
"female focus": 6,
"fingerless gloves": 1,
"glistening": 6,
"glistening body": 5,
"glistening clothing": 2,
"gloves": 2,
"group": 9,
"handwear": 2,
"huge butt": 2,
"mostly nude": 5,
"partially clothed": 7,
"public": 6,
"spread legs": 9,
"spreading": 11,
"stockings": 5,
"thick thighs": 10,
"voluptuous": 3,
"wide hips": 5,
"by r-mk": 2,
"cynde \\(r-mk\\)": 1,
"lagomorph": 3,
"leporid": 3,
"lopunny": 1,
"anal fingering": 1,
"anal orgasm": 14,
"balls": 32,
"chastity cage": 1,
"chastity device": 1,
"crossgender": 3,
"cum": 31,
"cum while penetrated": 8,
"egyptian": 1,
"ejaculation": 16,
"fingering": 1,
"ftm crossgender": 3,
"genital piercing": 2,
"gold \\(metal\\)": 2,
"gold chastity cage": 1,
"gold chastity device": 1,
"gold jewelry": 2,
"guiche piercing": 1,
"hands-free": 11,
"heart eyes": 3,
"jewelry": 6,
"looking back": 15,
"male fingered": 1,
"male focus": 4,
"nipple chain": 1,
"nipple fetish": 2,
"nipple piercing": 3,
"nipple play": 2,
"nipples": 16,
"penis": 28,
"penis piercing": 2,
"piercing": 7,
"precum": 5,
"precum drip": 3,
"prince albert piercing": 1,
"egyptian mythology": 1,
"middle eastern mythology": 1,
"mythology": 9,
"bast": 1,
"deity": 1,
"after sex": 5,
"animal genitalia": 12,
"animal pussy": 4,
"anus blush": 1,
"bedding": 2,
"bedroom": 1,
"bestiality": 3,
"blanket": 1,
"body blush": 1,
"candle": 1,
"caught": 1,
"circumcised": 2,
"circumcision scar": 1,
"cum in pussy": 9,
"cum inside": 13,
"cum on penis": 5,
"cum string": 1,
"dialogue": 5,
"dust": 1,
"female on human": 4,
"feral penetrated": 4,
"first person view": 1,
"fluffy": 4,
"fluffy butt": 1,
"fluffy tail": 3,
"genital scar": 1,
"glans": 2,
"human on feral": 2,
"human penetrating": 3,
"human penetrating feral": 2,
"humanoid genitalia": 9,
"humanoid penis": 7,
"inside": 7,
"interspecies": 5,
"knocking": 1,
"male/female": 8,
"male on feral": 2,
"nervous": 1,
"night": 1,
"pink anus": 5,
"pussy blush": 1,
"scar": 1,
"stealth sex": 3,
"tail": 24,
"under covers": 1,
"vein": 6,
"veiny penis": 5,
"wall \\(structure\\)": 1,
"wood": 1,
"wood wall": 1,
"by parooty": 1,
"domestic dog": 5,
"human": 7,
"shiba inu": 1,
"spitz": 1,
"anal masturbation": 14,
"cum from ass": 1,
"cum from pussy": 6,
"cum in ass": 4,
"cum in hair": 1,
"cum on butt": 3,
"cum on face": 4,
"cum on hand": 2,
"cum on leg": 2,
"cum on pussy": 1,
"equine genitalia": 5,
"equine pussy": 2,
"hay": 1,
"hooves": 4,
"licking": 3,
"licking lips": 1,
"licking own lips": 1,
"looking up": 1,
"on side": 4,
"self lick": 1,
"toying self": 5,
"underhoof": 3,
"by honovy": 1,
"equid": 3,
"equine": 3,
"horse": 1,
"amber eyes": 1,
"big clitoris": 1,
"big teats": 1,
"black anus": 2,
"black border": 1,
"black pussy": 1,
"border": 2,
"breasts and teats": 1,
"cervix": 1,
"clitoral winking": 1,
"clitoris": 1,
"crotch teats": 1,
"enlarged clitoral glans": 1,
"gaping": 1,
"gaping pussy": 1,
"half-closed eyes": 5,
"horn": 10,
"inverted nipples": 2,
"lactating": 1,
"long neck": 1,
"milk": 1,
"multi breast": 1,
"narrowed eyes": 9,
"orange eyes": 3,
"pink clitoris": 1,
"plump labia": 2,
"presenting": 6,
"presenting anus": 4,
"presenting pussy": 3,
"presenting teats": 1,
"puffy anus": 4,
"puffy nipples": 2,
"raised tail": 8,
"rear view": 15,
"sitting": 5,
"teats": 1,
"urethra": 1,
"baat": 1,
"dragon": 5,
"mythological creature": 8,
"mythological scalie": 5,
"reptile": 3,
"scalie": 7,
"4 fingers": 3,
"backsack": 15,
"dildo shitting": 1,
"food": 1,
"food fetish": 1,
"food play": 1,
"orange body": 5,
"orange fur": 3,
"outside": 2,
"palm tree": 1,
"pawpsicle": 1,
"perineum": 13,
"plant": 4,
"popsicle": 1,
"tree": 2,
"white balls": 4,
"white perineum": 2,
"nick wilde": 2,
"red fox": 2,
"true fox": 2,
"anthro penetrated": 10,
"bedroom eyes": 5,
"big anus": 1,
"blue background": 2,
"blue eyes": 5,
"butt focus": 1,
"easter anal beads": 1,
"easter egg": 1,
"egg": 1,
"gradient background": 1,
"holidays": 2,
"huge anal beads": 7,
"looking back at viewer": 6,
"seductive": 5,
"simple background": 11,
"by rajii": 3,
"easter": 1,
"rabbit": 2,
"abs": 2,
"big penis": 6,
"black nipples": 2,
"erection": 15,
"leaking": 1,
"leaking cum": 5,
"leaking precum": 1,
"membrane \\(anatomy\\)": 1,
"membranous wings": 1,
"muscular": 4,
"muscular anthro": 3,
"muscular male": 2,
"pecs": 2,
"pink eyes": 1,
"pupils": 1,
"purple pupils": 1,
"thick penis": 2,
"wings": 2,
"by voviat": 1,
"microsoft": 1,
"minecraft": 1,
"mojang": 1,
"xbox game studios": 1,
"jean \\(minecraft\\)": 1,
"ender dragon": 1,
"69 \\(number\\)": 1,
"behind the counter": 2,
"cash register": 1,
"clothing lift": 1,
"distracted": 1,
"dress": 1,
"dress lift": 1,
"erect tail": 1,
"eye through hair": 1,
"fail": 1,
"female/ambiguous": 1,
"female penetrated": 7,
"huge penetration": 1,
"inconvenient tail": 1,
"large penetration": 4,
"looking at another": 3,
"lube": 1,
"motion lines": 5,
"no underwear": 2,
"open smile": 4,
"orgasm": 11,
"public sex": 2,
"pussy ejaculation": 1,
"pussy ejaculation while penetrated": 1,
"raised eyebrow": 1,
"rolled up sleeves": 1,
"standing": 3,
"surprise sex": 1,
"sweatdrop": 3,
"tail under skirt": 1,
"tail upskirt": 1,
"toying partner": 5,
"translucent": 1,
"translucent hair": 1,
"unprofessional behavior": 2,
"upskirt": 2,
"waiter": 1,
"whiskers": 1,
"by artbyyellowdog": 1,
"anon": 2,
"helia peppercats": 1,
"alternate version at source": 1,
"balls in underwear": 2,
"multicolored body": 8,
"reflection": 2,
"small tail": 2,
"spots": 2,
"water": 2,
"by monkeyspirit": 2,
"minute": 2,
"bobcat": 2,
"lynx": 3,
"collaboration": 2,
"signature": 6,
"countershading": 5,
"crop top": 2,
"cum on surface": 1,
"footwear": 4,
"pattern armwear": 2,
"pattern clothing": 2,
"pattern footwear": 1,
"pattern legwear": 2,
"pattern socks": 1,
"pattern thigh highs": 1,
"pattern thigh socks": 1,
"pink clothing": 2,
"pink footwear": 1,
"pink legwear": 1,
"pink shirt": 1,
"pink socks": 1,
"pink thigh highs": 1,
"pink thigh socks": 1,
"pink topwear": 1,
"shirt": 5,
"socks": 2,
"striped armwear": 1,
"striped clothing": 2,
"striped footwear": 1,
"striped legwear": 1,
"striped socks": 1,
"striped thigh highs": 1,
"striped thigh socks": 1,
"stripes": 3,
"thigh highs": 2,
"thigh socks": 1,
"topwear": 7,
"by valkoinen": 1,
"kilow \\(kilow21\\)": 1,
"leopardus": 1,
"ocelot": 1,
"animal penis": 8,
"big balls": 4,
"big flare": 2,
"big unflared glans": 1,
"bottomwear": 5,
"equine anus": 3,
"equine penis": 3,
"flared penis": 2,
"gesture": 2,
"hand gesture": 2,
"huge penis": 3,
"kneeling": 2,
"large urethra": 1,
"sex toy background": 2,
"skirt": 2,
"sweaty genitalia": 2,
"unflared": 1,
"v sign": 1,
"wink": 1,
"by spaal": 2,
"my little pony": 1,
"seraphic crimson": 1,
"mythological equine": 1,
"pegasus": 1,
"anal grip": 3,
"arched back": 2,
"bent over": 4,
"bridal gauntlets": 1,
"embarrassed": 1,
"female anthro": 1,
"huge breasts": 3,
"kemono": 1,
"presenting hindquarters": 4,
"spread butt": 2,
"stretched anus": 3,
"by cervina7": 1,
"miranda \\(heatboom\\)": 1,
"areola": 3,
"pink nipples": 2,
"puffy areola": 1,
"by agitype01": 1,
"reshimom \\(thiccwithaq\\)": 1,
"reshiram": 1,
"black balls": 4,
"black perineum": 1,
"blush lines": 3,
"cum drip": 5,
"gynomorph": 2,
"handjob": 1,
"huge balls": 1,
"intersex": 2,
"legs up": 4,
"long penis": 1,
"medial ring": 2,
"multicolored fur": 5,
"penile": 9,
"precum string": 1,
"retracted balls": 1,
"saggy balls": 2,
"scut tail": 1,
"short tail": 1,
"throbbing": 2,
"throbbing penis": 2,
"andromeda phaedra": 1,
"avian": 1,
"deer": 4,
"ahegao": 5,
"alternative fashion": 1,
"ambiguous penetrating": 1,
"ambiguous penetrating male": 1,
"anthro on anthro": 2,
"anthro penetrating": 2,
"anthro penetrating anthro": 1,
"bent legs": 2,
"blue hair": 2,
"clothing on floor": 1,
"collar": 9,
"cum on ground": 4,
"cumshot": 9,
"ear piercing": 5,
"ejaculating while penetrated": 1,
"ejaculation while penetrated": 1,
"emo": 1,
"fishnet clothing": 1,
"fishnet legwear": 1,
"fishnet topwear": 1,
"green body": 1,
"green fur": 1,
"grey body": 8,
"grey fur": 7,
"high heels": 1,
"pink bottomwear": 1,
"pink penis": 3,
"pink skirt": 1,
"platform footwear": 1,
"platform heels": 1,
"presenting balls": 1,
"saliva string": 4,
"scene haircut": 1,
"shaking orgasm": 1,
"tail motion": 3,
"tailwag": 3,
"by pkuai": 1,
"rileymutt": 1,
"bell": 3,
"bell collar": 2,
"buttpop": 1,
"christmas present": 1,
"eyewear": 3,
"gift": 1,
"glasses": 3,
"huge hips": 1,
"pop \\(sound effect\\)": 1,
"snow": 1,
"winter": 1,
"bottomless": 3,
"brown body": 5,
"brown fur": 4,
"brown hair": 2,
"digitigrade": 2,
"humanoid pussy": 2,
"lips on muzzle": 1,
"pink nose": 1,
"profanity": 2,
"tank top": 2,
"two tone body": 3,
"two tone fur": 3,
"vulgar": 1,
"by dimwitdog": 1,
"dimmi \\(character\\)": 1,
"accessory": 2,
"claws": 10,
"cock ring": 1,
"heart \\(marking\\)": 1,
"knot": 4,
"markings": 4,
"penis accessory": 1,
"penis jewelry": 1,
"purple nipples": 1,
"purple pawpads": 2,
"purple penis": 1,
"sheath": 2,
"shivering": 1,
"by katarhein": 1,
"damien woof": 1,
"wolf": 6,
"glass": 1,
"hoodie": 1,
"inside vehicle": 1,
"public exposure": 2,
"public transportation": 1,
"vehicle": 1,
"mega evolution": 1,
"mega lopunny": 1,
"abdominal bulge": 1,
"backwards baseball cap": 1,
"backwards hat": 1,
"baseball cap": 1,
"cum covered": 2,
"fellatio": 2,
"finger in mouth": 1,
"hat": 1,
"head grab": 1,
"headgear": 2,
"headwear": 2,
"male/male": 4,
"messy": 3,
"oral": 4,
"penile penetration": 4,
"penis in ass": 1,
"red clothing": 2,
"red shirt": 1,
"red topwear": 1,
"spank marks": 1,
"tail grab": 1,
"vtuber": 1,
"chester the otter": 1,
"mustelid": 2,
"otter": 1,
"blue skin": 1,
"breath": 2,
"eye roll": 2,
"flower": 1,
"panting": 1,
"pokeball": 6,
"pokeball anal beads": 6,
"pokeball insertion": 6,
"pokeball sex toy": 6,
"purple eyes": 4,
"quadruped": 1,
"tears": 2,
"tears of pleasure": 1,
"thick tail": 1,
"tight fit": 1,
"by ketei": 1,
"kemonoruka": 1,
"trans \\(lore\\)": 1,
"trans woman \\(lore\\)": 1,
"autofellatio": 1,
"cum in mouth": 2,
"cum in own mouth": 1,
"cum in self": 1,
"cum on own face": 1,
"cum on own tongue": 1,
"cum on self": 3,
"cum on tongue": 1,
"oral masturbation": 1,
"penile masturbation": 1,
"by pullmytail": 1,
"wire \\(livepolarity\\)": 1,
"furred dragon": 1,
"furred scalie": 1,
"wingless dragon": 1,
"brown pussy": 1,
"cheek tuft": 1,
"cum splatter": 1,
"double penetration": 3,
"eye markings": 1,
"faceless character": 3,
"faceless male": 3,
"facial tuft": 1,
"fucked silly": 1,
"happy": 2,
"human penetrating female": 1,
"leg grab": 2,
"leg markings": 1,
"male penetrating": 5,
"male penetrating female": 3,
"outline": 1,
"pattern background": 1,
"penis in pussy": 3,
"pokephilia": 1,
"size difference": 2,
"smaller feral": 2,
"socks \\(marking\\)": 1,
"tuft": 6,
"vaginal": 4,
"vaginal penetration": 3,
"white border": 1,
"white outline": 1,
"yellow background": 2,
"by radishflavor": 1,
"nickit": 1,
"ball joints": 1,
"black armwear": 1,
"black clothing": 1,
"black legwear": 1,
"bracelet": 2,
"breast grab": 1,
"breast play": 1,
"breast suck": 1,
"breastfeeding": 1,
"brown eyes": 1,
"chest tuft": 2,
"clothed anthro": 1,
"clothed anthro nude anthro": 1,
"clothing around one leg": 1,
"colored nails": 1,
"cunnilingus": 1,
"dipstick tail": 1,
"doll joints": 1,
"ear lick": 1,
"ear ring": 2,
"eyeshadow": 1,
"facial markings": 2,
"female/female": 1,
"green highlights": 1,
"green nails": 1,
"grey background": 1,
"grey hair": 1,
"group sex": 2,
"hand holding": 1,
"hand on breast": 1,
"head between breasts": 1,
"head markings": 2,
"highlights \\(coloring\\)": 1,
"lesbian pride colors": 1,
"lgbt pride": 1,
"long tail": 1,
"machine": 3,
"makeup": 1,
"multicolored bedding": 1,
"multicolored pillow": 1,
"muscular female": 2,
"nails": 2,
"navel": 3,
"nipple suck": 1,
"nude anthro": 2,
"on back": 2,
"on front": 1,
"orange lesbian pride colors": 1,
"panties": 2,
"panties around one leg": 1,
"panties down": 1,
"panties on foot": 1,
"pattern bottomwear": 1,
"pattern panties": 1,
"pattern underwear": 1,
"pillow": 1,
"pink areola": 1,
"pink tongue": 3,
"pride color bedding": 1,
"pride color pillow": 1,
"pride colors": 1,
"purple armwear": 1,
"purple body": 2,
"purple clothing": 1,
"purple eyeshadow": 1,
"purple fur": 2,
"purple legwear": 1,
"red sclera": 1,
"ring piercing": 2,
"shoulder pads": 1,
"spiked bracelet": 2,
"spiked collar": 1,
"spikes": 3,
"striped bottomwear": 1,
"striped panties": 1,
"striped underwear": 1,
"sucking": 1,
"tail markings": 1,
"tan body": 3,
"tan fur": 2,
"underwear around one leg": 1,
"underwear down": 1,
"white eyes": 1,
"by al sensei908": 1,
"dreamworks": 2,
"five nights at freddy's": 2,
"five nights at freddy's: security breach": 2,
"helluva boss": 2,
"scottgames": 2,
"star fox": 1,
"steel wool studios": 2,
"the bad guys": 1,
"diane foxington": 1,
"krystal \\(star fox\\)": 1,
"loona \\(helluva boss\\)": 2,
"roxanne wolf": 2,
"animatronic": 2,
"demon": 2,
"hellhound": 2,
"lucario": 4,
"robot": 2,
"crossover": 1,
"arm tuft": 1,
"countershade fur": 1,
"countershade torso": 1,
"elbow tuft": 1,
"electronics": 1,
"hair accessory": 1,
"indoor nudity": 1,
"inner ear fluff": 2,
"low-angle view": 1,
"nude female": 1,
"ponytail": 2,
"presenting cream pie": 1,
"pussy juice drip": 1,
"pussy juice string": 1,
"red eyes": 2,
"spread pussy": 1,
"table": 1,
"television": 1,
"wet": 1,
"white hair": 5,
"by wolfling": 2,
"onmyoji": 1,
"hakuro \\(onmyoji\\)": 1,
"3 toes": 3,
"anthro on feral": 1,
"anthro penetrating feral": 1,
"ball size difference": 1,
"bar emanata": 1,
"black eyes": 1,
"black scales": 1,
"contextual arrow": 1,
"darkened balls": 2,
"darkened genitalia": 2,
"directional arrow": 1,
"emanata": 1,
"feral focus": 1,
"finger claws": 1,
"fire": 1,
"grey claws": 1,
"grey scales": 1,
"happy sex": 1,
"iconography": 1,
"internal": 1,
"larger anthro": 1,
"larger male": 1,
"male penetrating male": 1,
"motion arrow": 1,
"motion outline": 1,
"multiple positions": 1,
"orange scales": 1,
"penis size difference": 1,
"pictographics": 1,
"purple sclera": 1,
"smaller male": 1,
"spread anus": 2,
"tan balls": 1,
"tan scales": 1,
"tapering penis": 1,
"wide arrow": 1,
"by zeta-haru": 1,
"charizard": 2,
"lizard": 1,
"salandit": 1,
"bow ribbon": 1,
"collar tag": 1,
"garter straps": 1,
"innie pussy": 1,
"legwear only": 1,
"lingerie": 1,
"mature female": 1,
"stockings only": 1,
"tan perineum": 1,
"by mellonbun": 1,
"misty \\(lewdfruit\\)": 1,
"german shepherd": 1,
"herding dog": 1,
"pastoral dog": 1,
"black skin": 1,
"dutch angle": 1,
"jockstrap": 3,
"male stripper": 1,
"pole": 1,
"red body": 2,
"red skin": 1,
"stripper pole": 1,
"white skin": 1,
"cinnabar embrose": 1,
"barefoot": 3,
"hindpaw": 3,
"legs back": 1,
"paws": 4,
"pink pawpads": 1,
"white background": 2,
"yellow sclera": 2,
"chii \\(nyapple\\)": 1,
"siamese": 1,
"artist name": 1,
"darkened penis": 1,
"darkened perineum": 1,
"foreskin": 3,
"hair over eye": 1,
"one eye obstructed": 1,
"text on clothing": 1,
"text on jockstrap": 1,
"text on shirt": 1,
"text on tank top": 1,
"text on topwear": 1,
"text on underwear": 1,
"by ra4s": 1,
"adventure time": 1,
"cartoon network": 1,
"bronwyn": 1,
"bear": 2,
"rainicorn": 1,
"url": 5,
"cum in goo": 1,
"gas mask": 1,
"latex": 1,
"mask": 1,
"spitroast": 1,
"threesome": 1,
"trio": 1,
"by saku1saya": 1,
"changed \\(video game\\)": 1,
"dr. k \\(changed\\)": 1,
"lin \\(changed\\)": 1,
"puro \\(changed\\)": 1,
"monster": 1,
"cloven hooves": 1,
"hoof focus": 1,
"by smewed": 1,
"deltarune": 2,
"undertale \\(series\\)": 2,
"noelle holiday": 1,
"new world deer": 2,
"reindeer": 2,
"from behind position": 1,
"hand on penis": 1,
"hands between legs": 1,
"human on anthro": 1,
"human penetrating anthro": 1,
"legs together": 2,
"looking at partner": 1,
"male on anthro": 1,
"penis grab": 1,
"pussy juice on penis": 1,
"soles": 2,
"by phallusbro": 1,
"black bear": 1,
"ursine": 1,
"bdsm": 2,
"bondage": 2,
"boots": 1,
"bound": 2,
"cum everywhere": 1,
"cum overflow": 1,
"dominant": 2,
"dominant male": 2,
"draining": 1,
"excessive cum": 2,
"holly \\(plant\\)": 1,
"pink hair": 1,
"public use": 1,
"purple hair": 1,
"silhouette": 1,
"sloppy seconds": 1,
"submissive": 1,
"submissive female": 1,
"suspended in midair": 1,
"suspension": 1,
"wrists together": 1,
"by wolfy-nail": 1,
"christmas": 1,
"jess \\(teckly\\)": 1,
"lol comments": 1,
"back muscles": 1,
"brown nipples": 1,
"buttplug": 1,
"clothed sex": 2,
"combination vibrator": 1,
"cuff \\(restraint\\)": 1,
"cum flow": 1,
"cum pool": 1,
"cum pooling": 1,
"degradation": 1,
"dialogue box": 1,
"discarded sex toy": 1,
"exclamation point": 1,
"frown": 1,
"glistening eyes": 1,
"glistening genitalia": 1,
"glistening hair": 1,
"leash": 1,
"leash pull": 1,
"leashed collar": 1,
"looking down": 1,
"maid uniform": 1,
"multicolored tail": 1,
"plug \\(sex toy\\)": 1,
"pooling": 1,
"rabbit vibrator": 1,
"restraints": 1,
"stuttering": 1,
"talking to viewer": 2,
"toy": 1,
"tsundere": 1,
"uniform": 1,
"vibrator": 1,
"wrist cuffs": 1,
"bethesda softworks": 1,
"fallout": 1,
"fwoof \\(wolfling\\)": 1,
"deathclaw": 1,
"stuck": 1,
"stuck insertion": 1,
"by kinkykong": 1,
"ralsei": 1,
"bovid": 1,
"caprine": 1,
"goat": 1,
"being watched": 1,
"bulge": 3,
"public masturbation": 1,
"coonix": 1,
"gulonine": 1,
"marten": 1,
"musteline": 1,
"antlers": 2,
"blue antlers": 1,
"blue clothing": 1,
"blue horn": 1,
"blue underwear": 1,
"locker": 1,
"locker room": 1,
"male anthro": 1,
"orgasm face": 4,
"purple anal beads": 1,
"purple sex toy": 1,
"toe claws": 3,
"orgest": 1,
"standard pokeball": 2,
"by eto ya": 1,
"glaceon": 1,
"alternate color": 1,
"ball tuft": 1,
"cum bounce": 1,
"patreon logo": 2,
"by zackary911": 2,
"patreon": 2,
"fan character": 1,
"shooty \\(shootysylveon\\)": 1,
"sylveon": 1,
"anal juice string": 1,
"black penis": 1,
"cum on own penis": 2,
"green eyes": 1,
"multicolored penis": 1,
"patreon username": 1,
"pulling hair": 1,
"question mark": 1,
"skull and crossbones": 1,
"touching hair": 1,
"two tone penis": 1,
"white butt": 1,
"multiple images": 1,
"arm support": 2,
"penis tuck": 2,
"pink glans": 1,
"thumbs up": 1,
"by inu-sama": 1,
"prancer": 1,
"apron": 2,
"apron only": 2,
"cum as food": 1,
"cum collecting": 1,
"cum in a cup": 1,
"cum in container": 1,
"fucking machine": 1,
"milking machine": 1,
"mostly nude anthro": 1,
"mostly nude gynomorph": 1,
"mostly nude intersex": 1,
"penis milking": 1,
"penis milking machine": 1,
"selling cum": 1,
"under table": 1,
"working": 1,
"by con5710": 1,
"spinel \\(sepiruth\\)": 1,
"5 toes": 1,
"anthro focus": 1,
"calves up": 1,
"disembodied penis": 1,
"extended arm": 1,
"fingerless \\(marking\\)": 1,
"foot fetish": 1,
"foot focus": 1,
"foot on penis": 1,
"foot play": 1,
"footjob": 1,
"footjob while penetrated": 1,
"forward arm support": 1,
"green toe claws": 1,
"humanoid feet": 1,
"humanoid hands": 1,
"knees together": 1,
"plantigrade": 1,
"raised calf": 1,
"sharp teeth": 1,
"smiling at viewer": 1,
"toejob": 1,
"topless": 2,
"two-footed footjob": 1,
"by tofu froth": 1,
"ball": 1,
"cafe": 1,
"easy access": 1,
"fangs": 1,
"front view": 1,
"genital outline": 2,
"penis outline": 1,
"red apron": 1,
"by oro97": 1,
"blue fur": 2,
"sweaty balls": 1,
"sweaty butt": 2,
"abuse": 1,
"arms tied": 1,
"bad end": 1,
"blood": 1,
"calf grab": 1,
"defeated": 1,
"forced": 1,
"hand on calf": 1,
"hand on leg": 1,
"holding leg": 1,
"jockstrap only": 1,
"rape": 1,
"restrained": 1,
"spread eagle": 1,
"torture": 1,
"underwear only": 1,
"whip": 1,
"whip mark": 1,
"wounded": 1,
"by matchattea": 1,
"instant loss 2koma": 1,
"kung fu panda": 1,
"master tigress": 1,
"pantherine": 2,
"tiger": 1,
"camel toe": 1,
"clothing aside": 1,
"glistening butt": 1,
"outer labia": 1,
"panties aside": 1,
"pussy outline": 1,
"underwear aside": 1,
"by fluffx": 1,
"bottomless female": 1,
"bottomwear down": 1,
"pants": 1,
"pants down": 1,
"by thehumancopier": 1,
"judy hopps": 1,
"blue balls": 1,
"blue perineum": 1,
"bouncing balls": 1,
"crowd": 1,
"master ball": 1,
"offscreen character": 1,
"public nudity": 1,
"stadium": 1,
"throbbing balls": 1,
"black sheath": 1,
"choker": 1,
"detached sheath": 1,
"female on top": 1,
"knot restraint": 1,
"knot sitting": 1,
"male on bottom": 1,
"male penetrating anthro": 1,
"necklace": 1,
"on bottom": 1,
"on top": 1,
"reverse cowgirl position": 1,
"sheath tuft": 1,
"by snowskau": 1,
"lion": 1
},
"2_anal_beads_in_pussy": {
"rating_explicit": 32,
"anal beads": 32,
"anal beads in pussy": 32,
"anthro": 27,
"anus": 14,
"bent over": 2,
"black body": 3,
"blush": 15,
"body blush": 2,
"butt": 15,
"butt blush": 1,
"butt shot": 1,
"close-up": 1,
"female": 32,
"genitals": 30,
"masturbation": 5,
"nude": 14,
"penetration": 32,
"presenting": 5,
"presenting hindquarters": 3,
"pussy": 30,
"raised tail": 6,
"sex toy": 32,
"sex toy in pussy": 32,
"sex toy insertion": 32,
"solo": 20,
"spank marks": 1,
"tail": 17,
"toying self": 3,
"vaginal": 32,
"vaginal masturbation": 3,
"vaginal penetration": 32,
"by freckles": 1,
"nadia \\(moonsword\\)": 1,
"domestic cat": 3,
"feline": 5,
"digital media \\(artwork\\)": 11,
"anal bead pull": 4,
"animal genitalia": 6,
"animal penis": 1,
"ass up": 3,
"ball tuft": 1,
"balls": 3,
"bed": 5,
"bedroom": 1,
"big breasts": 6,
"bodily fluids": 17,
"breasts": 19,
"clenched teeth": 1,
"cunnilingus": 1,
"duo": 10,
"ear piercing": 3,
"ejaculation": 3,
"equine genitalia": 2,
"equine penis": 1,
"erection": 2,
"flesh tunnel": 1,
"fur": 16,
"furniture": 7,
"gaping": 3,
"gaping urethra": 1,
"gauged ear": 1,
"genital fluids": 15,
"grinding on penis": 1,
"hair": 13,
"head down ass up": 1,
"herm": 1,
"herm/female": 1,
"intersex": 3,
"intersex/female": 3,
"looking back": 5,
"mismatched animal penis": 1,
"mismatched genitalia": 1,
"mismatched penis": 1,
"multi urethra": 1,
"nipples": 17,
"object in penis": 1,
"open mouth": 9,
"oral": 1,
"orgasm": 4,
"orgasm face": 1,
"pawpads": 4,
"paws": 3,
"penis": 2,
"piercing": 6,
"precum": 3,
"pussy ejaculation": 3,
"pussy sounding": 1,
"saliva": 3,
"saliva string": 1,
"sex": 6,
"spread pussy": 2,
"spreading": 9,
"teeth": 8,
"thick thighs": 2,
"tongue": 10,
"tongue out": 6,
"tuft": 5,
"urethra": 1,
"urethral": 1,
"urethral all the way through": 1,
"urethral bulge": 1,
"vaginal fluids": 14,
"wet": 1,
"wide hips": 2,
"by androidz": 1,
"holly gwinith": 1,
"luciana \\(vanrixie\\)": 1,
"domestic dog": 9,
"maned wolf": 1,
"areola": 9,
"armpit hair": 1,
"beads": 5,
"body hair": 1,
"clitoris": 5,
"gaping anus": 1,
"green eyes": 3,
"hand behind head": 1,
"navel": 5,
"nipple piercing": 4,
"presenting anus": 3,
"pubes": 1,
"spread legs": 8,
"toy insertion": 1,
"white body": 6,
"white fur": 4,
"by silviaxrk": 1,
"cygames": 1,
"world flipper": 1,
"helga \\(world flipper\\)": 1,
"blue hair": 2,
"forest": 1,
"forest background": 1,
"grey body": 3,
"grey fur": 3,
"nature": 1,
"nature background": 1,
"pink nose": 1,
"pink pawpads": 1,
"plant": 1,
"tree": 1,
"wings": 4,
"yellow eyes": 2,
"by fedmry": 1,
"gabriel serealia": 2,
"avian": 2,
"bird": 2,
"wolf": 4,
"black markings": 1,
"black nose": 2,
"blue eyes": 6,
"bottomless": 2,
"bottomless anthro": 1,
"bottomless female": 1,
"cheek tuft": 1,
"clothed": 3,
"clothing": 9,
"countershade face": 1,
"countershade genitalia": 1,
"countershade pussy": 1,
"countershade torso": 3,
"countershading": 6,
"dark hair": 1,
"erect nipples under clothes": 1,
"eyebrows": 4,
"facial tuft": 1,
"front view": 2,
"gloves \\(marking\\)": 1,
"half-closed eyes": 1,
"hand on belly": 2,
"hand on knee": 1,
"hand on leg": 2,
"hand on own belly": 2,
"hand on own knee": 1,
"hand on own leg": 1,
"inside": 3,
"leg markings": 1,
"looking at viewer": 9,
"lying": 5,
"markings": 3,
"multicolored body": 3,
"narrowed eyes": 5,
"on back": 4,
"pattern clothing": 2,
"pattern shirt": 1,
"pattern topwear": 1,
"question mark": 1,
"shirt": 1,
"short hair": 1,
"socks \\(marking\\)": 1,
"striped clothing": 2,
"striped shirt": 1,
"striped topwear": 1,
"stripes": 4,
"tan body": 1,
"topwear": 3,
"two tone body": 2,
"by diacordst": 1,
"fox": 4,
"5 fingers": 3,
"anal": 4,
"anal penetration": 4,
"ear tag": 1,
"fingers": 4,
"nipple ring": 2,
"object in ass": 3,
"presenting buttplug": 1,
"presenting pussy": 2,
"pussy juice on hand": 1,
"ring piercing": 3,
"sex toy in ass": 3,
"tail aside": 1,
"by veliren rey": 1,
"trisha \\(irvingwrites\\)": 1,
"fennec fox": 1,
"true fox": 1,
"anime eyes": 1,
"bedroom eyes": 3,
"blonde hair": 4,
"harem jewelry": 1,
"harem outfit": 1,
"pinup": 2,
"pose": 2,
"purple background": 2,
"purple clothing": 1,
"seductive": 3,
"simple background": 7,
"smile": 6,
"by sleepyhelen": 1,
"belly": 1,
"black anus": 2,
"black pussy": 3,
"blue belly": 1,
"blue body": 2,
"blue membrane": 1,
"blue scales": 1,
"blue wings": 1,
"claws": 4,
"feral": 4,
"membrane \\(anatomy\\)": 3,
"membranous wings": 3,
"quadruped": 1,
"scales": 4,
"white claws": 1,
"by shadoweyenoom": 1,
"by tabirs": 1,
"mythology": 4,
"taghyrt": 1,
"dragon": 4,
"mythological creature": 4,
"mythological scalie": 4,
"scalie": 4,
"anatomically correct": 2,
"anatomically correct anus": 1,
"anatomically correct genitalia": 1,
"anatomically correct pussy": 1,
"animal pussy": 4,
"big butt": 2,
"collar": 5,
"plump labia": 2,
"pop \\(sound effect\\)": 1,
"pussy juice splatter": 1,
"by pullmytail": 1,
"husky": 1,
"nordic sled dog": 1,
"spitz": 1,
"4 toes": 3,
"ambiguous gender": 4,
"beak": 1,
"feet": 8,
"looking pleasured": 3,
"toes": 5,
"by hioshiru": 1,
"by iskra": 1,
"collaboration": 1,
"beanie": 1,
"black eyeshadow": 1,
"clitoral hood piercing": 1,
"eyebrow piercing": 2,
"eyeshadow": 1,
"facial piercing": 2,
"fingerless gloves": 1,
"fish hook": 1,
"fish hook piercing": 1,
"genital piercing": 1,
"gloves": 1,
"handwear": 1,
"hat": 2,
"headgear": 3,
"headwear": 3,
"hook": 1,
"legwear": 4,
"makeup": 1,
"multicolored fur": 2,
"nose piercing": 1,
"nose ring": 1,
"pattern legwear": 1,
"pattern stockings": 1,
"septum piercing": 1,
"septum ring": 1,
"sitting": 3,
"skinny": 1,
"skinny female": 1,
"stockings": 3,
"striped legwear": 1,
"striped stockings": 1,
"tongue piercing": 1,
"by yhorey san": 1,
"epic games": 1,
"fortnite": 1,
"meow skulls \\(fortnite\\)": 1,
"calico cat": 1,
"3 toes": 1,
"4 fingers": 1,
"arm warmers": 1,
"armwear": 2,
"bare shoulders": 1,
"black areola": 1,
"black claws": 1,
"black fur": 2,
"black nipples": 1,
"detached sleeves": 1,
"digitigrade": 3,
"egg vibrator": 1,
"eyelashes": 3,
"latex": 2,
"leg warmers": 1,
"sex toy under clothing": 1,
"slim": 1,
"striped markings": 1,
"sweat": 3,
"text": 7,
"text on clothing": 1,
"text on hat": 1,
"text on headwear": 1,
"thigh highs": 2,
"toeless legwear": 1,
"translucent": 1,
"translucent clothing": 1,
"translucent topwear": 1,
"tube top": 1,
"vibrator": 3,
"vibrator under clothing": 1,
"vibrators on nipples": 1,
"whiskers": 1,
"by quinto": 1,
"backsack": 1,
"breast lick": 1,
"breast play": 1,
"group": 2,
"holding breast": 1,
"licking": 1,
"male": 1,
"male/female": 1,
"purple body": 2,
"purple eyes": 1,
"purple fur": 1,
"by aympart": 1,
"by erwindraws": 1,
"barty \\(barty\\)": 1,
"bloot \\(bloot\\)": 1,
"deer": 3,
"huge filesize": 2,
"beach": 1,
"bikini": 1,
"blue skin": 1,
"bottomwear": 1,
"buttplug": 2,
"buttplug in ass": 1,
"buttplug insertion": 1,
"clothing aside": 1,
"cloud": 1,
"countershade butt": 1,
"countershade tail": 1,
"ears back": 1,
"fangs": 1,
"fin": 1,
"frown": 1,
"green hair": 2,
"grin": 1,
"huge breasts": 1,
"open frown": 1,
"partially clothed": 1,
"pivoted ears": 1,
"plug \\(sex toy\\)": 2,
"plug insertion": 1,
"public": 1,
"pupils": 1,
"red eyebrows": 1,
"seaside": 1,
"sharp teeth": 1,
"slit pupils": 1,
"solo focus": 3,
"surprised expression": 1,
"swimwear": 1,
"swimwear aside": 1,
"water": 1,
"white skin": 1,
"by anawat": 1,
"fish": 1,
"marine": 1,
"shark": 1,
"ball gag": 3,
"bdsm": 7,
"biped": 5,
"bondage": 7,
"bound": 7,
"curling toes": 1,
"ear tuft": 1,
"female/ambiguous": 2,
"gag": 4,
"gagged": 3,
"gradient background": 2,
"hands behind back": 2,
"hindpaw": 1,
"inner ear fluff": 1,
"oversized ball gag": 1,
"pink areola": 3,
"pink inner ear": 1,
"pink nipples": 6,
"spread toes": 1,
"submissive": 5,
"submissive female": 5,
"toe scrunch": 1,
"toying partner": 3,
"by kittydee": 1,
"kasey kyle": 1,
"lynx": 1,
"artist name": 1,
"against surface": 1,
"against wall": 1,
"amber eyes": 2,
"barefoot": 1,
"border": 1,
"cape": 1,
"cape only": 1,
"captured": 1,
"cuff \\(restraint\\)": 2,
"drooling": 2,
"food gag": 1,
"improvised gag": 1,
"mostly nude": 1,
"offscreen character": 2,
"orange border": 1,
"restraints": 3,
"shackles": 1,
"shadow": 1,
"spread arms": 1,
"spread eagle": 1,
"submissive anthro": 1,
"toe claws": 1,
"by quotermain": 1,
"kinktober": 1,
"english text": 4,
"full-length portrait": 1,
"portrait": 1,
"blindfold": 1,
"chain": 1,
"crystal": 1,
"horn": 3,
"by velannal": 1,
"activision": 2,
"european mythology": 1,
"spyro the dragon": 2,
"corrupt cynder": 1,
"cynder": 2,
"western dragon": 1,
"brown hair": 2,
"female/female": 2,
"soles": 1,
"by kammi-lu": 2,
"oktavia \\(roadkilla12\\)": 1,
"skylar zero": 1,
"red wolf": 1,
"6 breasts": 2,
"accessory": 1,
"arms bent": 1,
"bed sheet": 1,
"bedding": 1,
"bent leg": 1,
"bent legs": 1,
"black hair": 1,
"brown body": 3,
"brown fur": 3,
"brown nipples": 1,
"curved horn": 1,
"floral pattern": 1,
"foreplay": 1,
"gynomorph": 1,
"hair accessory": 1,
"hair tie": 1,
"hand on thigh": 1,
"highlights \\(coloring\\)": 1,
"leg grab": 1,
"leg over shoulder": 1,
"long ears": 1,
"looking at another": 2,
"looking down": 2,
"multi breast": 2,
"on pillow": 1,
"pillow": 2,
"pillow grab": 1,
"planted leg": 1,
"ponytail": 1,
"purple highlights": 1,
"purple scales": 1,
"raised arm": 2,
"raised hand": 1,
"raised leg": 1,
"raised leg grab": 1,
"ridged penis": 1,
"sheath": 1,
"small breasts": 2,
"tapering penis": 1,
"thigh grab": 1,
"touching own stomach": 1,
"touching stomach": 1,
"two tone fur": 1,
"white highlights": 1,
"white stripes": 1,
"yellow body": 2,
"yellow scales": 1,
"by lazybonefox": 1,
"by mcsib": 1,
"nexrese": 1,
"siv \\(mcsib\\)": 1,
"hybrid": 2,
"mustelid": 2,
"otter": 1,
"colored": 1,
"signature": 2,
"embarrassed": 2,
"ineffective censorship": 2,
"kemono": 2,
"looking away": 1,
"multi nipple": 3,
"neck tuft": 1,
"on bed": 2,
"pink pussy": 2,
"white eyes": 1,
"by dwy yeddog": 2,
"censored": 2,
"mosaic censorship": 2,
"arms tied": 3,
"countershade crotch": 1,
"forced": 2,
"fully bound": 1,
"hands above head": 1,
"humiliation": 1,
"legs tied": 2,
"nipple fetish": 1,
"nipple play": 1,
"nipple ring pull": 1,
"orange body": 1,
"orange fur": 1,
"piercing pull": 1,
"stuck": 1,
"suspension": 1,
"suspension bondage": 1,
"torture": 1,
"by mr shy": 1,
"dreamworks": 2,
"the bad guys": 1,
"diane foxington": 1,
"diane foxington \\(furromantic\\)": 1,
"3d \\(artwork\\)": 3,
"moan": 1,
"not furry": 1,
"white background": 2,
"by kionant": 1,
"gardevoir": 1,
"belt buckle": 1,
"bondage chair": 1,
"bondage furniture": 1,
"buzzing": 1,
"chair": 2,
"chair bondage": 1,
"clamp": 1,
"clit torture": 1,
"clitoral": 1,
"clitoral hood": 1,
"clothes pin": 1,
"clothes pin on nipples": 1,
"different sound effects": 1,
"dripping": 3,
"dripping pussy": 2,
"electricity": 1,
"electrode": 1,
"electrostimulation": 1,
"fastener": 1,
"forced orgasm": 1,
"gaping pussy": 1,
"genital torture": 1,
"lactating": 1,
"lactation denial": 1,
"medical gloves": 1,
"motion lines": 1,
"muffled": 1,
"nipple clamp": 2,
"overstimulation": 1,
"pin \\(fastener\\)": 1,
"pink eyes": 1,
"pussy torture": 1,
"rape": 1,
"restrained": 2,
"restrained arms": 1,
"restrained legs": 1,
"sexual torture": 1,
"sound effects": 1,
"straps": 2,
"vibrating": 1,
"vowelless": 1,
"vowelless sound effect": 1,
"vowelless vocalization": 1,
"wand vibrator": 1,
"by loimu": 1,
"loimu \\(character\\)": 1,
"cervine": 1,
"6 nipples": 1,
"anus blush": 1,
"belly blush": 1,
"blush lines": 1,
"blushing profusely": 1,
"dialogue": 1,
"dirty talk": 1,
"flirting": 1,
"flirting look": 1,
"flirting with viewer": 1,
"insult": 1,
"insulting viewer": 1,
"raised eyebrow": 1,
"speech bubble": 1,
"talking feral": 1,
"talking to viewer": 1,
"by parooty": 1,
"101 dalmatians": 1,
"patreon": 1,
"perdita": 1,
"dalmatian": 1,
"abdominal bulge": 2,
"hairless": 1,
"huge penetration": 1,
"looking through": 1,
"looking through legs": 1,
"upside down": 1,
"white hair": 1,
"by tchaikovsky2": 1,
"jinjing-yu": 1,
"chinese crested dog": 1,
"hairless dog": 1,
"toy dog": 1,
"url": 1,
"ambiguous fluids": 1,
"animal ears": 1,
"hand behind back": 1,
"hand on mouth": 1,
"huge butt": 1,
"shaking": 2,
"shaking orgasm": 1,
"short stack": 1,
"sitting on bed": 1,
"by nudaya": 1,
"league of legends": 1,
"riot games": 1,
"vex \\(lol\\)": 1,
"yordle": 1,
"black armwear": 1,
"black background": 1,
"black clothing": 1,
"black collar": 1,
"black latex": 1,
"black spots": 1,
"black topwear": 1,
"latex armwear": 1,
"latex clothing": 1,
"latex legwear": 1,
"latex stockings": 1,
"latex thigh highs": 1,
"leaning": 1,
"leaning forward": 1,
"pussy juice drip": 1,
"red ball gag": 1,
"spots": 1,
"spotted body": 1,
"spotted fur": 1,
"toeless thigh highs": 1,
"trembling": 1,
"yellow fur": 1,
"by ni70": 1,
"lena fluffy \\(character\\)": 1,
"cheetah": 1,
"equine pussy": 1,
"on chair": 1,
"puffy anus": 1,
"rear view": 1,
"equid": 1,
"equine": 1,
"horse": 1,
"pole": 2,
"red hair": 1,
"ludwig bullworth jackson \\(copyright\\)": 1,
"justeen": 1,
"roxy \\(orella\\)": 1,
"beaver": 1,
"mink": 1,
"musteline": 1,
"rodent": 1,
"true musteline": 1,
"antlers": 1,
"bell": 1,
"chest tuft": 1,
"christmas light bondage": 1,
"christmas lights": 1,
"messy": 1,
"wrist cuffs": 1,
"by inuki": 1,
"rudolph the red-nosed reindeer": 1,
"new world deer": 1,
"reindeer": 1,
"stripper pole": 1,
"by dododragon56": 1,
"eye contact": 1,
"pregnant": 1,
"pregnant anthro": 1,
"pregnant female": 1,
"sharing": 1,
"sharing sex toy": 1,
"vaginal tugging": 1,
"by pr-egg-nant": 1,
"bandai namco": 1,
"kung fu panda": 1,
"master tigress": 1,
"pantherine": 1,
"renamon": 1,
"tiger": 1,
"comic sans": 1
}
},
"dtype": "F16",
"file": "Desktop\\yiff_toolkit\\ponyxl_loras\\analbeads-v1e400.safetensors",
"filename": "analbeads-v1e400.safetensors"
}
|