File size: 104,487 Bytes
3a20c31 |
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 |
{
"modelspec.architecture": "stable-diffusion-xl-v1-base/lora",
"modelspec.date": "2024-08-04T02:44:06",
"modelspec.implementation": "https://github.com/Stability-AI/generative-models",
"modelspec.prediction_type": "epsilon",
"modelspec.resolution": "1024x1024",
"modelspec.sai_model_spec": "1.0.0",
"modelspec.title": "by_hax-v3",
"resize_params": {
"recipe_str": "fro_ckpt=1,thr=-3.55",
"rescale": 1.0,
"target_size": null,
"threshold": -3.55,
"weights": {
"fro_ckpt": 1.0,
"fro_lora": 0.0,
"params": 0.0,
"spn_ckpt": 0.0,
"spn_lora": 0.0,
"subspace": 0.0
}
},
"ss_adaptive_noise_scale": null,
"ss_base_model_version": "sdxl_base_v1-0",
"ss_batch_size_per_device": 8,
"ss_bucket_info": {
"buckets": {
"0": {
"count": 8,
"resolution": [
576,
1728
]
},
"1": {
"count": 1,
"resolution": [
608,
1664
]
},
"10": {
"count": 15,
"resolution": [
1152,
896
]
},
"11": {
"count": 32,
"resolution": [
1184,
864
]
},
"12": {
"count": 12,
"resolution": [
1216,
832
]
},
"13": {
"count": 22,
"resolution": [
1248,
832
]
},
"14": {
"count": 8,
"resolution": [
1280,
800
]
},
"15": {
"count": 2,
"resolution": [
1312,
768
]
},
"16": {
"count": 2,
"resolution": [
1344,
768
]
},
"17": {
"count": 2,
"resolution": [
1440,
704
]
},
"2": {
"count": 2,
"resolution": [
736,
1408
]
},
"3": {
"count": 10,
"resolution": [
832,
1216
]
},
"4": {
"count": 13,
"resolution": [
864,
1184
]
},
"5": {
"count": 28,
"resolution": [
896,
1152
]
},
"6": {
"count": 2,
"resolution": [
928,
1120
]
},
"7": {
"count": 17,
"resolution": [
960,
1088
]
},
"8": {
"count": 8,
"resolution": [
1088,
960
]
},
"9": {
"count": 7,
"resolution": [
1120,
928
]
}
},
"mean_img_ar_error": 0.016309271811795843
},
"ss_bucket_no_upscale": false,
"ss_cache_latents": true,
"ss_caption_dropout_every_n_epochs": 0,
"ss_caption_dropout_rate": 0.0,
"ss_caption_tag_dropout_rate": 0.0,
"ss_clip_skip": null,
"ss_color_aug": false,
"ss_dataset_dirs": {
"1_hax": {
"img_count": 15,
"n_repeats": 1
},
"2_hax": {
"img_count": 31,
"n_repeats": 2
},
"6_hax": {
"img_count": 19,
"n_repeats": 6
}
},
"ss_debiased_estimation": false,
"ss_enable_bucket": true,
"ss_epoch": 66,
"ss_face_crop_aug_range": null,
"ss_flip_aug": true,
"ss_full_fp16": false,
"ss_gradient_accumulation_steps": 6,
"ss_gradient_checkpointing": true,
"ss_huber_c": 0.1,
"ss_huber_schedule": "snr",
"ss_ip_noise_gamma": null,
"ss_ip_noise_gamma_random_strength": false,
"ss_keep_tokens": 0,
"ss_learning_rate": 0.0002,
"ss_loss_type": "l2",
"ss_lowram": true,
"ss_lr_scheduler": "cosine",
"ss_lr_warmup_steps": 0,
"ss_max_bucket_reso": 2048,
"ss_max_grad_norm": 1.0,
"ss_max_token_length": null,
"ss_max_train_steps": 800,
"ss_min_bucket_reso": 256,
"ss_min_snr_gamma": null,
"ss_mixed_precision": "bf16",
"ss_multires_noise_discount": 0.4,
"ss_multires_noise_iterations": 12,
"ss_network_alpha": 4.0,
"ss_network_args": {
"algo": "locon",
"conv_alpha": "4",
"conv_dim": "256",
"dora_wd": "False",
"dropout": 0.0,
"module_dropout": "0",
"preset": "full",
"rank_dropout": "0",
"rank_dropout_scale": "False",
"train_norm": "False",
"use_scalar": "False",
"use_tucker": "False"
},
"ss_network_dim": 8,
"ss_network_dropout": 0.0,
"ss_network_module": "lycoris.kohya",
"ss_new_sd_model_hash": "67ab2fd8ec439a89b3fedb15cc65f54336af163c7eb5e4f2acc98f090a29b0b3",
"ss_noise_offset": null,
"ss_noise_offset_random_strength": false,
"ss_num_batches_per_epoch": 32,
"ss_num_epochs": 134,
"ss_num_reg_images": 0,
"ss_num_train_images": 191,
"ss_optimizer": "library.optimizers.clybius.Compass",
"ss_output_name": "by_hax-v3",
"ss_prior_loss_weight": 1.0,
"ss_random_crop": false,
"ss_reg_dataset_dirs": {},
"ss_resolution": "(1024, 1024)",
"ss_scale_weight_norms": null,
"ss_sd_model_hash": "e577480d",
"ss_sd_model_name": "ponyDiffusionV6XL_v6StartWithThisOne.safetensors",
"ss_sd_scripts_commit_hash": "e4fb27a0f0dec6c366f9743e632fe185154f0a8f",
"ss_seed": 1728871242,
"ss_session_id": 3180005514,
"ss_shuffle_caption": true,
"ss_steps": 400,
"ss_tag_frequency": {
"1_hax": {
"'lofi + kenket' is visible in the bottom right corner.": 1,
". the wolf is wearing a bright yellow hooded jacket and has a white fur with light brown patches which contrasts sharply with its jacket's colors giving a warm and cozy appearance.": 1,
"2 penises": 1,
"4 toes": 2,
"5 fingers": 4,
"5 toes": 1,
"a small winding stream runs through the forest reflecting the sunlight and adding a sense of tranquility to the image.": 1,
"accipitriform": 1,
"affectionate expression": 1,
"alaskan malamute": 1,
"alligator": 1,
"amazing background": 1,
"anatomically correct genitalia": 2,
"anatomically correct penis": 1,
"and is lying on its back": 1,
"anthro": 11,
"anthro on anthro": 2,
"anthro penetrating anthro": 1,
"antlers": 1,
"anubian jackal": 1,
"areola": 1,
"arm support": 1,
"armlet": 1,
"armor": 1,
"bag": 1,
"balls": 2,
"bandolier": 1,
"barefoot": 2,
"beak": 1,
"bed": 1,
"bed sheet": 1,
"bedroom": 2,
"belt": 1,
"biped": 5,
"black body": 1,
"black fur": 6,
"black hair": 1,
"black lips": 2,
"black nose": 12,
"black pawpads": 2,
"black scales": 1,
"black spots": 1,
"blue eyes": 2,
"bodily fluids": 1,
"book": 1,
"border collie": 2,
"both are sitting on a bed of tall golden-brown grass with the background suggesting a sunlit forest with dappled sunlight filtering through the trees.": 1,
"both canines are positioned in a relaxed intimate pose.": 1,
"both their eyes are closed and the wolf is licking the fox's nose suggesting a content and relaxed demeanor.": 1,
"bottomwear": 1,
"bow (weapon)": 1,
"boxer briefs": 1,
"bracelet": 1,
"braided hair": 1,
"briefs only": 1,
"brown body": 1,
"brown eyes": 1,
"brown feathers": 1,
"brown fur": 11,
"bulge": 1,
"butt": 1,
"by hax": 14,
"canine penis": 3,
"canine pussy": 1,
"casting gentle shadows that enhance the intimate and sensual atmosphere of the scene.": 1,
"cat": 2,
"cave": 1,
"cheek tuft": 1,
"claws": 4,
"clothed": 5,
"clothing": 1,
"cloud": 2,
"coffee": 1,
"collar": 2,
"countershading": 2,
"cowboy": 1,
"cowboy hat": 1,
"coyote": 4,
"crocodile": 2,
"crouching": 1,
"cuddling": 3,
"curtains": 1,
"day": 4,
"deity": 1,
"detailed": 3,
"detailed background": 10,
"detailed fur": 3,
"digital media (artwork)": 4,
"digital painting (artwork)": 10,
"digitigrade": 2,
"dipstick tail": 1,
"dog": 1,
"dragon": 1,
"dreadlocks": 1,
"dual wielding": 1,
"duo": 8,
"ear piercing": 2,
"ear tuft": 1,
"egyptian": 1,
"erection": 3,
"eye contact": 2,
"eyes closed": 7,
"fangs": 2,
"feathered wings": 1,
"feet": 1,
"feral": 3,
"finger claws": 1,
"fingerless gloves": 1,
"fingers": 2,
"fish": 1,
"fishing rod": 1,
"food": 1,
"forest": 1,
"fox": 1,
"french kissing": 1,
"fully clothed": 2,
"genital slit": 1,
"glans": 1,
"gloves": 1,
"gloves (marking)": 1,
"glowing eyes": 1,
"goggles on head": 1,
"gold jewelry": 1,
"golden retriever": 1,
"grass": 3,
"green eyes": 4,
"green scales": 1,
"green shirt": 1,
"grey body": 1,
"grey fur": 4,
"grin": 2,
"hair": 2,
"hand on penis": 1,
"hand on thigh": 1,
"handjob": 1,
"handjob frottage": 1,
"hands behind head": 1,
"happy sex": 1,
"hat": 1,
"hawk": 1,
"hax": 1,
"he has a gentle contented expression with his eyes closed and a serene smile on his face.": 1,
"he has a similar muscular build but his fur is slightly lighter and his face is more relaxed eyes closed in pleasure.": 1,
"he has his green eyes open.": 1,
"he wears a torn armored vest a red bandana around his neck and a blue and white license plate with the text '1n-2vg' around his neck.": 1,
"her expression is playful and flirtatious with her tongue hanging out.": 1,
"hieroglyphics": 1,
"his expression is confident and slightly mischievous.": 1,
"his face is expressive showing a tender and passionate look as he gently holds the other figure's leg with his hands.": 1,
"his hands are placed on the wolf's neck and back mirroring the wolf's tender touch.": 1,
"his left arm is wrapped around the smaller lynx who is nestled against his chest.": 1,
"his physique is well-defined with a broad chest and toned arms.": 1,
"his right arm is adorned with a gauntlet and he has a pair of goggles perched on his head.": 1,
"holding cup": 1,
"holding gun": 1,
"holding object": 1,
"holding weapon": 1,
"holster": 1,
"hoodie": 1,
"hooved fingers": 1,
"horn": 1,
"hug": 2,
"hugging another": 1,
"hugging from behind": 1,
"humanoid penis": 1,
"husky": 1,
"in the background the room is dimly lit by a warm golden light streaming in from a window to the left.": 1,
"in the background there is a bed with a neatly made bedspread and a potted plant and photo on the nightstand.": 1,
"indicating a sexual interaction. the lighting is warm and soft": 1,
"indoor nudity": 1,
"indoor sex": 1,
"inner ear fluff": 2,
"inside": 4,
"interspecies": 2,
"intimate": 1,
"it holds a steaming mug of tea or coffee in its right hand.": 1,
"it is dressed in a rugged adventure-style outfit consisting of a sleeveless green vest over a white shirt and khaki shorts.": 1,
"it is dressed in a striped sleeveless shirt and brown pants which contrast with its fur.": 1,
"it is wearing a dark shorts with a silver necklace around its neck.": 1,
"it is wearing only a pair of snug white boxer shorts highlighting its lean muscular physique.": 1,
"it wears a quiver on its back and a bow indicating a hunter.": 1,
"its mouth is open revealing sharp teeth adding to its intimidating presence.": 1,
"its wings extended and partially folded are a rich reddish-brown with visible veins and a leathery texture.": 1,
"jackal": 1,
"kitchen": 1,
"kneeling": 2,
"knot": 3,
"labrador": 1,
"leaning backward": 1,
"leg grab": 1,
"licking": 1,
"light": 2,
"lighting": 1,
"loincloth": 1,
"long hair": 1,
"long mouth": 3,
"looking at another": 1,
"looking at partner": 1,
"looking at viewer": 1,
"lynx": 2,
"male": 9,
"male anthro": 1,
"male on bottom": 1,
"male on top": 1,
"male penetrating female": 1,
"male/male": 4,
"markings": 2,
"melee weapon": 1,
"membranous wings": 1,
"morning": 1,
"mostly nude": 1,
"mountain": 1,
"multicolored fur": 2,
"multicolored tail": 1,
"narrowed eyes": 2,
"nature": 1,
"navel": 2,
"neck tuft": 1,
"necklace": 2,
"night": 1,
"nipples": 3,
"nose ring": 1,
"nude": 5,
"nude anthro": 1,
"nude male": 1,
"on back": 1,
"on bed": 2,
"on the left side of the image there is a large rock.": 1,
"on the window sill there is a small potted plant with green leaves.": 1,
"open mouth": 4,
"orange fur": 2,
"otter": 1,
"outside": 9,
"pants": 2,
"partially submerged": 1,
"paws": 2,
"penile masturbation": 1,
"penis grab": 1,
"penis in pussy": 1,
"penis tip": 2,
"pillow": 1,
"pink penis": 1,
"pip-boy": 1,
"plant": 2,
"pose": 1,
"post-apocalyptic": 1,
"precum": 1,
"raised arms": 1,
"reclining": 1,
"red fox": 1,
"reindeer": 1,
"revolver": 1,
"riding": 1,
"ring piercing": 1,
"river": 1,
"rock": 2,
"romantic": 1,
"romantic ambiance": 1,
"romantic couple": 5,
"romantic sex": 1,
"sand": 1,
"scales": 1,
"septum piercing": 1,
"serpentine": 1,
"sex": 1,
"sharp teeth": 2,
"she has a slender build with small perky breasts and is unclothed except for a leather bag with a belt strap.": 1,
"sheath": 2,
"shirt": 3,
"side view": 2,
"signature": 5,
"simple background": 1,
"sitting": 3,
"size difference": 1,
"sky": 3,
"slim": 1,
"small breasts": 1,
"smile": 9,
"snake": 1,
"snout": 2,
"solo": 6,
"spikes (anatomy)": 1,
"spotted fur": 1,
"spread legs": 1,
"standing": 3,
"star": 1,
"steam": 1,
"stick": 1,
"straddling": 1,
"stretching": 1,
"sunlight": 1,
"swamp": 1,
"tail": 5,
"tan fur": 5,
"tank top": 1,
"tea": 1,
"teeth": 3,
"the artist's signature": 1,
"the artist's signature 'lofi + kenket' is visible in the lower left corner.": 1,
"the artist's signature a small cat silhouette is in the bottom right corner.": 1,
"the artists signed as 'lofi + kenket' on the top right corner has used a soft painterly style with smooth brushstrokes emphasizing the textures of fur and the warm intimate atmosphere.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom right corner.": 2,
"the artists' signature 'lofi + kenket' is visible in the top left corner.": 1,
"the artists' signature 'lofi + kenket' is visible in the top right corner.": 1,
"the artists' watermark is visible in the bottom right corner.": 3,
"the artists' watermarks are visible in the bottom middle of the image.": 1,
"the background also includes some dark shadowy areas suggesting dense foliage or overhanging trees adding depth to the scene.": 1,
"the background depicts a ruined industrial environment with crumbling buildings and a hazy sunlit sky.": 1,
"the background features a partially cloudy sky with soft warm hues of orange and yellow suggesting either dawn or dusk.": 1,
"the background features a rocky riverbed with a shallow stream.": 1,
"the background features tall golden-brown grasses and trees bathed in a warm; golden light creating a mystical almost magical atmosphere.": 1,
"the background is a blend of warm earth tones.": 1,
"the background is a gradient of dark blues and purples suggesting an evening or night sky with faint stars visible adding to the mystical atmosphere.": 1,
"the background is a warm blurred scene of a forest during sunset with hues of orange and pink dominating the sky suggesting an autumnal atmosphere.": 1,
"the background reveals a glimpse of a courtyard with lush greenery and a sunlit terrace suggesting a luxurious possibly ancient egyptian palace.": 1,
"the background showcases a dense green forest with tall palm trees and other tropical foliage.": 1,
"the bird's eyes are intense and focused adding to the sense of determination and readiness.": 1,
"the canine on the left a muscular male with brown fur has a rugged battle-ready appearance.": 1,
"the canine on the right a leaner female with reddish-brown fur is sitting on the ground between his legs.": 1,
"the cat with a tawny fur coat has its eyes closed and a contented smile on its face stretching its arms upward as if it has just woken up.": 1,
"the cat with closed eyes and a serene expression is snuggled tightly into the dog's chest wearing a red plaid shirt.": 1,
"the cave is illuminated by sunlight streaming in from the background which shows a mountainous landscape with snow-capped peaks and a clear blue sky.": 1,
"the cave walls are rough and textured with faint ancient-looking carvings visible on the right side.": 1,
"the central subject is an anthropomorphic fox with reddish-brown fur expressive green eyes.": 1,
"the character is holding two silver revolvers one in each hand in a dramatic action-packed pose.": 1,
"the character is wearing a wide-brimmed brown hat a red bandana tied around its neck and a brown leather jacket.": 1,
"the character on the bottom is a dark-furred muscular anubian jackal with long dreadlocked hair also adorned with gold jewelry.": 1,
"the character on top is a muscular green-scaled crocodile with a dark dreadlocked hair andhumanoid physique adorned with gold jewelry including bracelets and a headpiece.": 1,
"the character's large antlered head is prominently displayed with a confident slightly mischievous expression on its face.": 1,
"the character's stance and expression suggest a sense of adventure and curiosity inviting viewers to explore the vibrant forest with them.": 1,
"the coyote has a confident expression with its head turned slightly to the side showing alertness.": 1,
"the coyote with a blend of brown and white fur has a muscular build and is crouching in a cave-like opening.": 1,
"the coyote with a lean and muscular build has a tan fur coat with darker accents on its ears and tail.": 1,
"the coyote's eyes are a striking yellow adding a touch of vividness to the scene.": 1,
"the coyote's left arm is resting on its knee while the right arm is straight and touching the cave floor.": 1,
"the crocodile which is large and has a textured scaly skin is partially submerged in a calm reflective body of water with its head and neck visible above the surface.": 1,
"the crocodile's eyes are open.": 1,
"the deer has a warm brown fur coat with a striped blue and white bandana around its neck adorned with a red cross on the front.": 1,
"the dog's expression is one of contentment and affection with his eyes open as it embraces a smaller orange tabby cat.": 1,
"the dog's fur appears soft and fluffy contrasting with the cat's sleek smooth fur.": 1,
"the dog's fur is smooth and fluffy with a slightly darker tip to its ears.": 1,
"the dog's genitals are partially visible adding to the realism of the scene.": 1,
"the dragon with a menacing expression has a large muscular body covered in scales of various shades of brown and green.": 1,
"the dragon's body is coiled around the rocky formation which is detailed with rough textures and earthy tones suggesting it is part of a natural landscape.": 1,
"the dragon's head is adorned with sharp protruding horns and glowing yellow eyes that exude a sense of danger.": 1,
"the figure on the left is a muscular male anthropomorphic wolf with a mix of gray and white fur.": 1,
"the figure on the right is a male anthropomorphic dog with light tan fur.": 1,
"the fish are silvery and glistening suggesting they were recently caught.": 1,
"the fox has a light red fur with black patches and a white muzzle": 1,
"the fox is sitting in a loose greenish-brown tunic.": 1,
"the fox's fur is detailed with a soft textured appearance and its expression conveys a sense of contentment.": 1,
"the fur on its chest and face is slightly lighter than the rest of its body.": 1,
"the ground they sit on is strewn with debris including a discarded tool.": 1,
"the hawk has a beak and feathers but its head and body are adorned with human-like clothing and accessories.": 1,
"the jacket has a brown leather belt with a holster and a belt with a belt buckle that is intricately detailed.": 1,
"the larger figure is a black and white border collie dog with a soft fluffy texture wearing a brown jacket.": 1,
"the light in the image is soft and diffused creating a warm and cozy mood.": 1,
"the light is diffused creating a warm golden glow that bathes the scene in a soft inviting atmosphere.": 1,
"the lighting and shadows enhance the three-dimensional effect adding depth and realism to the image.": 1,
"the lighting in the image is dramatic with the dragon's scales catching the light in a way that highlights their texture and depth.": 1,
"the lighting is warm and golden casting a warm glow over the scene enhancing the peaceful and intimate atmosphere.": 1,
"the lynx has a lighter brown coat and a more slender build.": 1,
"the one in the foreground is a male coyote with a muscular build and a light brown coat adorned with darker spots. his fur appears thick and textured with a soft fluffy appearance around his neck and chest.": 1,
"the otter has a muscular build with a light brown fur coat and a darker brown muzzle and tail.": 1,
"the otter holds a long wooden pole over its shoulder with a catch of fish hanging from it.": 1,
"the overall color palette is warm dominated by earth tones with hints of green from the vegetation.": 1,
"the overall color palette is warm dominated by earthy tones like brown; orange and beige which contrast with the cool blues and whites of the background.": 1,
"the overall mood is serene and mystical with the use of warm tones and soft lighting enhancing the sense of tranquility.": 1,
"the overall mood of the image is intense and heroic reminiscent of classic western films and art.": 1,
"the overall mood of the image is peaceful and relaxed capturing a moment of quiet contentment.": 1,
"the overall mood of the painting is one of tranquility and warmth with the fox's gentle expression adding to the serene atmosphere.": 1,
"the overall style is detailed and realistic with a focus on textures and shading.": 1,
"the overall style is highly detailed and realistic with a focus on the dragon's anatomy and the rocky environment it is situated in.": 1,
"the overall style of the painting is semi-realistic with a painterly touch characterized by smooth brushstrokes and a blend of warm and muted colors that give it a dreamy almost ethereal quality.": 1,
"the painting evokes a sense of awe and wonder capturing the essence of fantasy and myth.": 1,
"the painting style is realistic with a slightly painterly texture capturing the character's motion and the dynamic setting effectively.": 1,
"the painting style is realistic with a soft painterly touch capturing the emotional depth of the moment.": 1,
"the painting style is realistic with a touch of impressionism characterized by soft brushstrokes and a focus on light and shadow to create depth and dimension.": 1,
"the room features large ornate wooden furniture including a large bed with plush cream-colored bedding.": 1,
"the room is bathed in warm golden light streaming through a window on the right casting a soft glow on the character and the surroundings.": 1,
"the scene is set in a dimly lit softly colored room with muted tones of orange and brown suggesting a warm and cozy atmosphere.": 1,
"the setting is a luxuriously appointed room with rich warm hues of brown and gold.": 1,
"the sky above is a deep rich blue speckled with stars adding a sense of tranquility and timelessness to the scene.": 1,
"the texture of the forest is rich and detailed with individual leaves and branches visible adding depth and realism to the scene.": 1,
"the texture of the fur and clothing is detailed giving a realistic appearance to the character.": 1,
"the texture of the fur is detailed and soft with visible individual hairs while the jacket has a slightly rougher textured appearance.": 1,
"the texture of the fur is meticulously detailed showcasing the individual strands and the lighting highlights the contours of the cat's body creating a sense of warmth and comfort.": 1,
"the two characters are anthropomorphic animals with human-like bodies and distinct animal features.": 1,
"the two figures are positioned on a bed with a grayish-blue blanket creating a soft and inviting background.": 1,
"the walls are adorned with a few pieces of art including a picture with an abstract piece on the left.": 1,
"the water around the crocodile is still with gentle ripples suggesting a peaceful moment.": 1,
"the water's edge is lined with patches of grass.": 1,
"the window is partially covered by a sheer curtain allowing light to filter through.": 1,
"the wolf has a submissive": 1,
"their faces close together. the wolf's genitals are partially visible": 1,
"this character has a strong dominant presence and is engaging in an intimate act with the other character.": 1,
"this digital painting depicts a cozy intimate scene set in a warmly lit room.": 1,
"this image evokes feelings of warmth; comfort and companionship emphasizing the bond between the two characters.": 1,
"this image is a digital painting depicting an anthropomorphic bird character dressed in a classic western style.": 1,
"this image is a digital painting depicting an anthropomorphic otter standing on a sandy riverbank.": 1,
"this image is a digital painting depicting an intimate moment between two anthropomorphic animals.": 1,
"this image is a digital painting featuring an anthropomorphic deer character in a lush; tropical forest setting.": 1,
"this image is a digital painting featuring an anthropomorphic fox character and a wolf.": 1,
"this is a digital drawing depicting an intimate scene between two anthropomorphic characters in an egyptian-themed setting.": 1,
"this is a digital painting depicting a fierce mythical dragon perched atop a rocky outcropping.": 1,
"this is a digital painting depicting a tender moment between two anthropomorphic animals.": 1,
"this is a digital painting depicting an anthropomorphic cat character in a serene sunlit bedroom.": 1,
"this is a digital painting depicting an anthropomorphic coyote character riding a crocodile in a serene golden-hued forest.": 1,
"this is a digital painting depicting an anthropomorphic coyote character.": 1,
"this is a digital painting depicting two anthropomorphic creatures; a lynx and a coyote sitting together in a serene forest setting.": 1,
"this is a digital painting featuring two anthropomorphic canines in a gritty post-apocalyptic setting.": 1,
"three-quarter portrait": 1,
"to the left of the fox is a border collie with a mischieveous expression cuddling the fox.": 1,
"to the right a wooden table holds various objects including a teapot.": 1,
"toe claws": 1,
"toes": 1,
"tongue out": 2,
"topless": 1,
"tree": 4,
"tribal": 1,
"tuft": 4,
"two tone fur": 3,
"vase": 1,
"vest": 1,
"water": 2,
"weapon": 1,
"whiskers": 7,
"white clothing": 1,
"white fur": 7,
"window": 3,
"winged arms": 1,
"with the crocodile leaning over it": 1,
"wolf": 2,
"yellow eyes": 5,
"yellow fur": 1
},
"2_hax": {
"4 fingers": 1,
"4 toes": 8,
"5 fingers": 13,
"a contrail from a distant jet plane is visible adding a sense of scale to the vastness of the scene.": 1,
"a pair of black and red sneakers is partially visible near the character's feet suggesting the character might have just taken them off.": 1,
"a red flag with a white emblem is attached to the dragon's tail adding a touch of color and mystery.": 1,
"abs": 1,
"accessory": 1,
"accipitrid": 1,
"african wild dog": 2,
"air bubble": 1,
"amazing background": 3,
"amber eyes": 1,
"ambient fish": 1,
"ambiguous gender": 2,
"anisodactyl": 1,
"anklet": 2,
"anthro": 25,
"anthro on anthro": 2,
"antlers": 1,
"arctic fox": 1,
"arm support": 2,
"armor": 3,
"around his neck he wears a red collar with a metal tag.": 1,
"ass up": 1,
"athletic anthro": 2,
"athletic male": 2,
"autumn": 1,
"avian feet": 1,
"back muscles": 1,
"backsack": 1,
"badger": 1,
"bandage": 1,
"bare chest": 1,
"barefoot": 9,
"baseball cap": 1,
"beak": 4,
"beanie": 1,
"bed": 1,
"bed sheet": 4,
"bedding": 3,
"bedroom": 4,
"bedroom eyes": 2,
"beer": 2,
"beer bottle": 2,
"belt": 3,
"biped": 16,
"bird": 2,
"bird's-eye view": 1,
"black body": 3,
"black claws": 1,
"black clothing": 1,
"black collar": 1,
"black feathers": 3,
"black fur": 14,
"black hair": 1,
"black lips": 4,
"black nose": 23,
"black pawpads": 3,
"black scales": 1,
"black spots": 1,
"black stripes": 1,
"black underwear": 3,
"blanket": 2,
"blonde hair": 2,
"blood": 4,
"blue eyes": 9,
"blue feathers": 1,
"blue hair": 1,
"blue sky": 1,
"book": 3,
"bookshelf": 1,
"boots": 1,
"border": 1,
"border collie": 3,
"both animals are lying on a bed covered with a red blanket which adds a warm and cozy ambiance to the scene.": 1,
"both characters are positioned near the edge of the ship suggesting they are on watch or observing the sunset.": 1,
"both dogs have their eyes closed and are nuzzled together suggesting a deep sense of companionship and affection.": 1,
"bottomwear": 1,
"bracelet": 1,
"braided hair": 2,
"breasts": 1,
"briefs": 2,
"briefs only": 1,
"brown body": 5,
"brown eyes": 2,
"brown feathers": 1,
"brown fur": 17,
"brown hair": 3,
"brown nose": 1,
"bubble": 1,
"bubbles rise from the subjects' mouths.": 1,
"building": 3,
"bulge": 3,
"bust portrait": 2,
"butt": 3,
"by hax": 28,
"cabin": 1,
"camping": 1,
"can": 1,
"canis": 1,
"cape": 2,
"casual nudity": 1,
"cat": 2,
"cattle": 1,
"chain": 1,
"cheetah": 1,
"chocobo": 1,
"cigarette": 4,
"city": 2,
"cityscape": 1,
"claws": 8,
"cloak": 3,
"clothed": 10,
"clothing": 1,
"cloud": 6,
"coat": 1,
"collie": 1,
"container": 1,
"corpse": 1,
"corvid": 1,
"countershading": 2,
"cowboy hat": 1,
"cowgirl position": 1,
"coyote": 1,
"crouching": 1,
"crow": 1,
"cuddling": 4,
"cuff (restraint)": 1,
"cup": 1,
"curtains": 1,
"dakimakura design": 4,
"day": 17,
"death": 2,
"deer": 1,
"desert": 2,
"detailed": 11,
"detailed background": 27,
"detailed fur": 10,
"digital media (artwork)": 12,
"digital painting (artwork)": 20,
"digitigrade": 10,
"dipstick tail": 4,
"discarded clothing": 1,
"dog": 1,
"domestic dog": 1,
"dominant": 1,
"door": 1,
"dragon": 1,
"dreadlocks": 1,
"duo": 13,
"duo focus": 1,
"ear piercing": 2,
"ear ring": 1,
"ear tuft": 2,
"electric fan": 1,
"eye contact": 2,
"eye patch": 1,
"eyes closed": 5,
"facial hair": 1,
"facial scar": 1,
"falconid": 1,
"fangs": 4,
"feathered wings": 3,
"feathers": 2,
"female": 3,
"female on top": 1,
"fennec fox": 1,
"feral": 6,
"field": 1,
"finger claws": 1,
"fingerless gloves": 1,
"fingers": 4,
"fireplace": 1,
"fish": 1,
"flaming tail": 1,
"floppy ears": 1,
"flower": 1,
"fluffy": 4,
"fluffy tail": 5,
"flying": 1,
"food": 1,
"foot wraps": 1,
"footwear": 1,
"forest": 7,
"fox": 3,
"from front position": 1,
"front view": 2,
"full-length portrait": 1,
"fully clothed": 5,
"fully submerged": 1,
"fur": 5,
"furniture": 1,
"fury (httyd)": 1,
"german shepherd": 1,
"gloves": 4,
"gloves (marking)": 2,
"goggles": 1,
"golden light. the main characters are two anthropomorphic wolf-like creatures standing and lying on a rocky outcrop.": 1,
"gore": 1,
"grass": 6,
"green eyes": 3,
"green feathers": 1,
"green fur": 1,
"green hair": 1,
"grey body": 2,
"grey fur": 10,
"grey tail": 1,
"group": 5,
"gulonine": 1,
"hair": 2,
"hair accessory": 1,
"hand behind head": 1,
"hand holding": 1,
"hand on head": 1,
"happy": 1,
"hat": 1,
"he appears to be engaged in conversation with the husky.": 1,
"he has a friendly relaxed expression and is holding a beer bottle in his left hand.": 1,
"he is wearing a red plaid shirt that is open revealing his bare chest and abdomen.": 1,
"he is wearing tattered light brown shorts.": 1,
"headshot portrait": 1,
"helmet": 1,
"herding dog": 1,
"heterochromia": 1,
"high-angle view": 2,
"hindpaw": 2,
"his fur is a vibrant orange with bold black stripes and white accents particularly on his face; chest and tail tip.": 1,
"his large muscular arms and legs are visible with his paws resting on the sofa and carpet.": 1,
"his lower body is clad in a pair of black briefs with the word 'bad puppy' written in red letters on the waistband.": 1,
"his tail long and thick sways gracefully as he leans forward with both hands gripping a large rocky outcropping.": 1,
"holding book": 1,
"holding bottle": 2,
"holding gun": 2,
"holding handgun": 1,
"holding object": 2,
"holding sword": 2,
"holding weapon": 1,
"hood": 2,
"hoodie": 1,
"horn": 1,
"hug": 5,
"human": 1,
"husky": 1,
"in his right hand he holds a brown bottle possibly a beer or wine bottle and his left arm is draped over his head resting on the pillow.": 1,
"in its right hand it holds a long sharp sword with an iron blade and hilt which contrasts sharply with the cold wintry scene.": 1,
"in the background there is a dimly lit room with a few visible objects.": 1,
"in the background various fish swim past adding a sense of movement and life to the scene.": 1,
"in the distance there are towering mountains with a blue sky above with some white clouds.": 1,
"in the foreground there are several small birds flying.": 1,
"in the raccoon's hands it holds a large futuristic weapon that appears to be a cross between a rifle and a rocket launcher with intricate metallic details and a red light on its barrel.": 1,
"inner ear fluff": 6,
"inside": 9,
"inside car": 1,
"inside the room there is a small potted plant on the windowsill.": 1,
"interspecies": 1,
"inviting": 1,
"it is dressed in a heavy dark brown coat with multiple buttons a wide belt and a hood that covers its head which is adorned with a knitted beanie.": 1,
"its expressive yellow-green eyes gaze away to the left.": 1,
"its eyes are a striking blue and it has a gentle inquisitive expression.": 1,
"its eyes are a striking blue giving it a fierce yet noble expression.": 1,
"its feathers are a mix of brown and gray and its beak is a sharp yellow.": 1,
"its hair is tousled and a light brown color blending into the fur.": 1,
"its mane is wild and untamed flowing in the wind and adorned with feathers and beads suggesting a ceremonial or ritualistic significance.": 1,
"its wings are slightly open behind it.": 1,
"jacket": 2,
"jaguar": 1,
"jeans": 2,
"jewelry": 1,
"kerchief": 1,
"killing": 1,
"kiss on lips": 1,
"kissing": 1,
"lamp": 1,
"landscape": 1,
"larger male": 1,
"leaf": 1,
"leaning": 1,
"leather": 1,
"leopard": 2,
"leopard spots": 1,
"licking own lips": 1,
"light": 7,
"lighting": 1,
"lion": 2,
"long mouth": 3,
"long tail": 1,
"looking aside": 3,
"looking at another": 4,
"looking at partner": 1,
"looking at viewer": 5,
"looking away": 1,
"looking back": 1,
"looking back at viewer": 1,
"looking up": 2,
"lying": 3,
"lying on the ground to the right of the character is a large menacing bird with a mix of black and white feathers red feathers on its head and a beak that appears open.": 1,
"lynx": 3,
"male": 23,
"male on bottom": 1,
"male on top": 1,
"male/ambiguous": 2,
"male/female": 1,
"male/male": 6,
"mane": 2,
"markings": 2,
"melanistic": 1,
"membranous wings": 1,
"military": 1,
"morning": 1,
"mostly nude": 2,
"mountain": 5,
"multicolored body": 1,
"multicolored feathers": 1,
"multicolored fur": 9,
"multicolored tail": 5,
"muscular anthro": 2,
"muscular male": 2,
"narrowed eyes": 3,
"nature": 5,
"navel": 3,
"night": 1,
"night fury": 1,
"nipples": 3,
"nude": 9,
"object in mouth": 1,
"official art": 1,
"on back": 6,
"on bed": 10,
"on bottom": 1,
"on front": 4,
"on ground": 1,
"on side": 3,
"on the left side of the image there is a poster with text and a yellow and black design.": 1,
"on the right side of the image there is a bookshelf filled with various books indicating a love for reading.": 1,
"on the right side there is a wall with a sign although the details are unclear due to the darkness.": 1,
"on top": 1,
"one eye closed": 2,
"open mouth": 6,
"open shirt": 1,
"open smile": 1,
"open topwear": 1,
"orange body": 2,
"orange eyes": 3,
"orange feathers": 1,
"orange fur": 7,
"otter": 1,
"outside": 19,
"outside the background is blurred suggesting a dense forest or wooded area.": 1,
"pantherine": 1,
"pants": 2,
"partially clothed": 1,
"pastoral dog": 1,
"pattern clothing": 2,
"pawpads": 3,
"paws": 8,
"pecs": 1,
"petting": 1,
"photorealism": 1,
"pillow": 6,
"pine tree": 1,
"pink pawpads": 1,
"pinned": 1,
"pinned arms": 1,
"pirate": 1,
"pistol": 2,
"plaid": 2,
"plant": 4,
"portrait": 1,
"pose": 3,
"post-apocalyptic": 1,
"poster": 1,
"potted plant": 1,
"presenting hindquarters": 1,
"purple clothing": 1,
"purple topwear": 1,
"quadruped": 1,
"raccoon": 1,
"raining": 1,
"raised tail": 1,
"ranged weapon": 1,
"ratite": 1,
"raven": 1,
"reading book": 1,
"rear view": 1,
"red body": 1,
"red collar": 1,
"red eyes": 1,
"red feathers": 1,
"red fox": 3,
"red fur": 1,
"red panda": 1,
"red topwear": 1,
"red underwear": 1,
"reverse countershading": 1,
"revolver": 1,
"riding": 1,
"rifle": 1,
"ring piercing": 1,
"ringed tail": 2,
"river": 1,
"robe": 1,
"rock": 5,
"romantic": 1,
"romantic ambiance": 1,
"romantic couple": 6,
"rope": 1,
"ruins": 1,
"running": 3,
"scarf": 1,
"seaweed": 1,
"seductive": 1,
"self lick": 1,
"sex": 1,
"sheepdog": 1,
"ship": 1,
"shirt": 3,
"short hair": 1,
"shorts": 2,
"side view": 1,
"signature": 12,
"sitting": 6,
"size difference": 1,
"sky": 8,
"sleeping": 1,
"smaller male": 1,
"smile": 17,
"smoke": 2,
"smoking": 3,
"snout": 5,
"snow": 2,
"snow blankets the ground creating a serene wintry atmosphere.": 1,
"snow leopard": 1,
"snowflakes are falling around the wolf indicating a winter setting.": 1,
"snowing": 2,
"soles": 1,
"solo": 16,
"solo focus": 1,
"spear": 1,
"spotted fur": 6,
"spotted hyena": 2,
"standing": 9,
"starry sky": 1,
"straddling": 1,
"stretching": 1,
"striped fur": 1,
"striped shirt": 1,
"striped tail": 2,
"submissive": 1,
"sunlight": 1,
"sunset": 2,
"surrounding the lion are five fantastical bird creatures resembling ostriches called chocobos: a yellow bird-like creature with a long beak and a blue bird with wings spread both running; a green chocobo and a yellow one on the left and a red bird in the forefront running alongside the lion.": 1,
"swimming": 1,
"swimming trunks": 1,
"sword": 2,
"t-shirt": 1,
"tail": 10,
"tail markings": 1,
"talons": 2,
"tan body": 1,
"tan fur": 3,
"tattoo": 2,
"teeth": 6,
"tent": 1,
"text on underwear": 1,
"the armor is a mix of leather and metal with intricate details suggesting craftsmanship.": 1,
"the armor is made of a mix of brown and tan leather with a prominent.": 1,
"the art style is highly detailed with a focus on textures from the fur of the lion to the feathers on the headdress and the detailed wings of the chocobos.": 1,
"the art style is realistic with a slight fantastical element combining elements of traditional and digital painting techniques.": 1,
"the art style is realistic with a touch of fantasy emphasizing the characters' expressive features and the detailed textures of their fur.": 1,
"the artist's signature 'lofi + kenket' is located in the bottom left corner.": 1,
"the artist's signature 'lofi + kenket' is visible in the bottom right corner of the painting indicating the artist's name.": 1,
"the artist's signature 'lofi + kenket' is visible in the bottom right corner.": 1,
"the artist's signature 'lofi + kenket' is visible in the top left corner.": 2,
"the artist's signature 'lofi + kenket' is visible in the upper left corner.": 1,
"the artist's signature 'lofi + kenket' is visible in the upper right corner.": 1,
"the artist's signature a stylized animal head is located in the bottom left corner of the image.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom left corner.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom middle of the image.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom right corner of the picture.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom right corner.": 4,
"the artists' signature 'lofi + kenket' is visible in the lower right corner.": 1,
"the artists' signature 'lofi + kenket' is visible in the top left corner.": 1,
"the artists' signature 'lofi + kenket' is visible in the top right corner.": 2,
"the artists' signature is visible in the bottom right corner.": 1,
"the artists' watermark is located in the bottom right corner.": 1,
"the artists' watermark is visible in the bottom left corner.": 1,
"the artists' watermark is visible in the bottom right corner.": 3,
"the artists' watermark is visible in the top left corner.": 2,
"the artwork captures a tender and intimate moment between the two characters emphasizing the emotional connection between them.": 1,
"the background consists of a green blanket partially covering the bed and a beige textured surface that could be interpreted as a bedspread or a blanket.": 1,
"the background features a cityscape with buildings in various shades of brown and beige suggesting an urban environment.": 1,
"the background features a dark; moody landscape with rolling hills and distant mountains shrouded in mist; creating a sense of depth and mystery.": 1,
"the background features a decaying cityscape with towering crumbling buildings and a dense atmosphere of dust and debris.": 1,
"the background features a desolate arid landscape with mountains and a few sparse bushes.": 1,
"the background features a dimly lit room with a warm rich color palette dominated by browns and purples.": 1,
"the background features a rocky barren landscape with sparse vegetation including a few dry leafless trees and patches of dry grass.": 1,
"the background features a softly lit room with large windows through which sunlight streams casting gentle diffused light over the scene.": 1,
"the background features a wooden interior with a small table with a metal fan and a few items.": 1,
"the background features an ornately carved wooden door painted in a deep blue hue with intricate patterns suggesting a rich possibly medieval or fantasy setting.": 1,
"the background features towering rugged mountains with sharp peaks and the sky is a gradient of warm oranges and purples suggesting either sunset or sunrise.": 1,
"the background is a dense snowy forest with tall snow-laden trees and a thick blanket of snow falling heavily creating a sense of motion and cold.": 1,
"the background is a desert landscape with sandy dunes and a clear blue sky.": 1,
"the background is a gradient of autumn colors with trees adorned in vibrant fall foliage and a soft diffused light filtering through the leaves.": 1,
"the background is a misty blue-tinted forest with blurred tree trunks and a soft ethereal quality suggesting a cold serene environment.": 1,
"the background is a modern futuristic room with sleek metallic surfaces and a mix of warm and cool lighting.": 1,
"the background is a simple gradient creating a warm and cozy atmosphere.": 1,
"the background is a simple neutral-toned setting with a bed covered in a deep red blanket that contrasts with the wolf's fur.": 1,
"the background is a stunning display of a celestial event with the sun setting behind a cloud bank that is illuminated in hues of orange; yellow and pink.": 1,
"the background is blurred with soft pastel colors depicting a bedroom.": 1,
"the background is filled with mist creating a hazy ethereal atmosphere that diffuses the light and adds depth to the scene.": 1,
"the background is minimalistic focusing on the bed and the character with subtle shadows and highlights that enhance the three-dimensional feel of the scene.": 1,
"the background of the scene is dimly lit suggesting a cozy indoor setting.": 1,
"the background outside the window shows a cityscape with buildings in various shades of beige and brown hinting at a warm sunny day.": 1,
"the background showcases a cityscape bathed in the warm hues of a sunset with buildings silhouetted against the sky.": 1,
"the background showcases a lush green landscape with rolling hills and distant rugged mountains under a clear blue sky.": 1,
"the background shows a serene winter scene with tall leafless trees and a wooden structure with a sloping roof covered in snow.": 1,
"the bed is covered with a simple white sheet that contrasts with the character's fur.": 1,
"the bed is covered with a teal-green sheet which is slightly crumpled and has a soft; textured appearance.": 1,
"the bed they are lying on has a gray blanket providing a soft texture contrast to the dogs' fur.": 1,
"the bed they are sitting on has a soft blue blanket and the overall color palette is muted with dark grays; beiges and greens dominating the scene.": 1,
"the bed's headboard is partially visible made of a dark brown material and there are two dark purple pillows placed near the wolf's head.": 1,
"the bird is also wearing a green military jacket which is buttoned up and a red scarf tied around its neck.": 1,
"the bird is standing upright facing slightly to the left with a stern expression.": 1,
"the bird's wings are held tight and its claws are splayed.": 1,
"the border collie's expression is relaxed with half-closed eyes and a slight smile giving a sense of contentment.": 1,
"the car's interior is cozy and cluttered.": 1,
"the central figure is a lion with a reddish-brown fur coat wearing a small yellow chocobo bird on its head and a feathered headdress. the lion is mid-stride running towards the viewer with a determined expression and mouth open.": 1,
"the central figures are anthropomorphic animals; a fox and a wolf.": 1,
"the central focus is an anthropomorphic coyote dressed in a brown long-sleeved shirt and matching pants and a wide-brimmed brown hat.": 1,
"the character depicted with a mixture of human and feline features is crouched on a rooftop at sunset.": 1,
"the character has a muscular humanoid build with a mix of human and canine features.": 1,
"the character is depicted with a confident and relaxed demeanor resting on a bed with burgundy sheets and a purple pillow.": 1,
"the character is holding a black pistol in their right hand pointed towards up the sky lighting a cigarette with it and is looking intently towards the right side of the image.": 1,
"the character is positioned on its side with its head resting on its arm and its legs slightly bent at the knees.": 1,
"the character is sitting on a windowsill leaning back with one arm resting on the ledge and the other holding a cigarette to its lips.": 1,
"the character is wearing only black briefs revealing a well-defined physique.": 1,
"the character wears a hooded cloak that billows in the wind adding a sense of movement and adventure.": 1,
"the character's face is expressive with a sly grin and its eyes are narrowed giving a confident and slightly mischievous appearance.": 1,
"the character's fur is a mix of gray and black with a distinctive mask-like face and a striped tail.": 1,
"the character's paw pads are detailed with a mix of brown and pink tones and the claws are visible.": 1,
"the characters are a lynx and a wolf both with human-like bodies and fur coats.": 1,
"the child has light brown hair and is dressed in simple earth-toned clothes.": 1,
"the city is filled with broken angular structures some with windows missing and others with graffiti.": 1,
"the cloak is a mix of brown and beige.": 1,
"the coat appears worn and rugged with patches and dirt marks suggesting it has been used for a long time.": 1,
"the detailed texture of the fur and the realistic depiction of the underwater environment make this image both visually appealing and emotionally evocative.": 1,
"the dog has a brown and white fur coat with a muscular build and a relaxed slightly smug expression.": 1,
"the domestic cat has a brown and white coat with a long striped tail and pointed ears.": 1,
"the door has a large ornate metal handle adding to the ambiance of the scene.": 1,
"the dragon has a sleek muscular build and is adorned with small intricate scales.": 1,
"the dragon is accompanied by a young human child who is lying on the ground in front of the dragon resting their head on its chest.": 1,
"the fallen figure lying on their back with one leg bent is also dressed in dark; rugged clothing.": 1,
"the feline on the right is dressed in a brown jacket and jeans with an equally happy demeanor.": 1,
"the floor appears to be tiled and the lighting is muted giving the scene an almost eerie moody atmosphere.": 1,
"the floor is covered with a red blanket and various items are scattered around including a backpack; a book and a few other unidentified objects.": 1,
"the focal point is a large black dragon with green eyes reclining on the forest floor.": 1,
"the foreground is detailed with rugged uneven rocks and sparse grass adding texture and realism to the scene.": 1,
"the forest background is rich with greenery including tall trees with thick trunks and branches and a dense undergrowth of grass and foliage.": 1,
"the forest floor is carpeted with vibrant green grass dotted with small white flowers.": 1,
"the forest floor is covered in a mix of brown earth and patches of green adding to the natural untamed feel of the environment.": 1,
"the forest is dense with tall; slender trees their trunks covered in moss and lichen.": 1,
"the fox has a soft fluffy coat of reddish-brown fur with white patches on its face and ear.": 1,
"the fox is dressed in a traditional flowing red robe with an orange sash and it carries a long wooden staff in its right hand.": 1,
"the fox is perched on a windowsill with its back to the viewer and its head turned to the right looking out the window.": 1,
"the fox on the left has a gentle loving expression": 1,
"the fox on the left with reddish-orange fur and a white chest is wearing a simple white t-shirt.": 1,
"the fox with reddish-brown fur and a bushy tail is wearing a vibrant red hooded cloak that drapes over its back.": 1,
"the fox's eyes are half-closed and its expression is one of contentment and affection.": 1,
"the fox's head is shown from the side looking intently at the wolf.": 1,
"the fur is meticulously detailed with a soft and fluffy texture that highlights the contours of the body.": 1,
"the fur is predominantly brown with white patches particularly on the face; chest and the tip of the tail.": 1,
"the fur textures are rendered with a realistic slightly glossy finish and the t-shirts they wear appear soft and casual.": 1,
"the goggles have a reflective surface and are positioned on the hawk's forehead.": 1,
"the ground is covered in a thick layer of snow with patches of brown earth and rocks peeking through indicating the presence of a clearing or path.": 1,
"the ground is covered in dust indicating a swift movement and the air is filled with dust particles giving a sense of urgency and speed.": 1,
"the ground they lie on is covered in patches of grass and small rocks adding texture and depth to the scene.": 1,
"the hawk is wearing a green military helmet with a pair of goggles perched on its head.": 1,
"the husky on the left is wearing a black and blue striped t-shirt dark pants and a red baseball cap.": 1,
"the hyena has a muscular humanoid body with a dark brown coat covered in lighter brown spots typical of a spotted hyena.": 1,
"the hyena has expressive amber-colored eyes and a slightly mischievous expression.": 1,
"the hyena is wearing a pair of dark jeans which are slightly tattered and a black wristwatch on its left wrist.": 1,
"the image conveys a sense of tranquility and solitude emphasizing the wolf's majestic presence in the snowy forest.": 1,
"the image is a digital painting depicting an anthropomorphic bird; specifically a hawk; dressed in military attire.": 1,
"the image is a digital painting depicting an anthropomorphic hyena character.": 1,
"the image is rendered in a semi-realistic style with detailed textures and shading.": 1,
"the jacket has a rugged weathered texture indicating it might have seen some use.": 1,
"the larger dog on the left has a fluffy gray and white coat while the dog on the right has a tan coat with darker brown patches.": 1,
"the leopard standing on two legs is a muscular male with a dark brown coat.": 1,
"the light creates a gentle ethereal glow that highlights the texture of their fur and the water's surface.": 1,
"the light filtering through the trees creates a mystical almost ethereal atmosphere with dappled sunlight and shadows.": 1,
"the light from the setting sun casts a golden glow over the horizon contrasting sharply with the dark foreboding atmosphere.": 1,
"the lighting creates a warm and inviting atmosphere with the red panda's fur appearing soft and textured.": 1,
"the lighting in the image is soft and natural casting gentle shadows and highlights that enhance the textures of the fur and the blanket.": 1,
"the lighting in the image is soft and warm casting subtle shadows that enhance the contours of the wolf's body and the textures of its fur.": 1,
"the lighting in the image is warm casting soft shadows and highlighting the faces and fur creating a sense of intimacy and warmth.": 1,
"the lighting is dim with the rain casting a soft glow through the windows adding to the intimate and relaxed ambiance of the scene.": 1,
"the lighting is natural highlighting the textures of the feathers; fur and fabric and creating a sense of depth and movement in the scene.": 1,
"the lighting is soft and diffuse giving the image a cozy; intimate feel.": 1,
"the lighting is soft and natural casting gentle shadows that enhance the texture of the fur and the urban setting.": 1,
"the lion wears golden armbands on its forelegs adding a regal touch to its appearance.": 1,
"the lion's fur is a rich reddish-brown with intricate tribal-like markings on its body.": 1,
"the lion's mane is flowing and the feathered headdress is fluttering in the wind adding to the dynamic motion of the scene.": 1,
"the lion's posture is poised with its head slightly lowered suggesting a sense of alertness or readiness.": 1,
"the lying wolf has a swirling blue tattoo on their left shoulder.": 1,
"the lynx is holding a rope in one hand and appears to be looking out at the sunset.": 1,
"the lynx on the left has a slender physique light beige fur with darker spots and closed eyes.": 1,
"the minotaur has dark brown fur; prominent horns and wears a white shirt.": 1,
"the ostrich is depicted mid-stride running through a vibrant sunlit savannah.": 1,
"the ostrich's feathers are predominantly black with white accents and its face is expressive with a determined and focused gaze.": 1,
"the otter on the left has darker fur while the dog on the right has lighter fur.": 1,
"the overall color palette is dominated by earthy tones and vibrant reds creating a striking contrast between the two figures and their surroundings.": 1,
"the overall color palette is dominated by greens and browns with subtle highlights of blues and yellows creating a harmonious and tranquil atmosphere.": 1,
"the overall color palette is muted dominated by shades of white; gray and brown enhancing the cold wintry atmosphere.": 1,
"the overall color palette is warm with shades of red; brown and green adding to the relaxed and casual atmosphere of the scene.": 1,
"the overall mood is intense and dramatic with the warm lighting highlighting the figures and the rugged terrain.": 1,
"the overall mood is intimate and relaxed.": 1,
"the overall mood is intimate and serene enhanced by the natural light streaming in through a window casting dappled light on the floor and bed.": 1,
"the overall mood is one of adventure and determination with a vibrant and lively color palette.": 1,
"the overall mood is one of adventure and readiness with a hint of danger in the setting and the character's stance.": 1,
"the overall mood is one of comfort and tranquility enhanced by the warm lighting and cozy setting.": 1,
"the overall mood of the image is warm and peaceful capturing a moment of quiet; shared enjoyment.": 1,
"the overall mood of the painting is calm and peaceful with a sense of intimacy between the dragon and the child.": 1,
"the overall mood of the painting is intense and dramatic with a strong sense of wilderness and primal power.": 1,
"the overall mood of the painting is one of love and comfort with a focus on the tender interaction between the two characters.": 1,
"the overall mood of the painting is tranquil and introspective with a gentle light illuminating the scene.": 1,
"the overall style is semi-realistic with a hint of fantasy capturing a moment of tension and readiness for action.": 1,
"the overall style of the artwork is highly detailed and realistic with a focus on textures and light effects that create a sense of depth and desolation.": 1,
"the overall style of the artwork is highly detailed and realistic with a focus on the character's anatomy and the smoothness of its fur.": 1,
"the overall style of the painting is detailed and realistic with a focus on the emotional connection between the two animals.": 1,
"the overall style of the painting is highly detailed and realistic with a focus on the textures of fur and feathers as well as the soft blurred background.": 1,
"the overall style of the painting is highly detailed and realistic with a focus on the textures of the fur and the softness of the bedding.": 1,
"the overall style of the painting is realistic with a slightly exaggerated cartoonish touch particularly in the character's facial features and body proportions.": 1,
"the overall style of the painting is realistic with a soft painterly brushstroke technique that adds a sense of tenderness and warmth to the image.": 1,
"the painting style is realistic with a slight emphasis on texture and shading giving the image a lifelike quality.": 1,
"the painting style is realistic with detailed textures and shading capturing the rugged wild environment and the intense almost confrontational mood of the scene.": 1,
"the primary subject is a lynx to the left and a minotaur a creature with the head of a bull and the body of a human standing on the right side of the frame.": 1,
"the raccoon standing upright on two legs is dressed in a rugged brown leather outfit with straps and buckles reminiscent of a space explorer.": 1,
"the raccoon's eyes are sharp and focused giving a determined expression.": 1,
"the red panda has a muscular build with a reddish-brown fur coat white facial markings and a bushy striped tail.": 1,
"the room also features a green potted plant on a shelf adding a touch of nature.": 1,
"the room is bathed in soft diffused light suggesting a late afternoon or early evening setting.": 1,
"the scene is rich in detail and emotion capturing a moment of relaxation and contemplation.": 1,
"the sky above is a deep blue dotted with stars creating a serene yet dramatic atmosphere.": 1,
"the sky is a deep ominous blue-gray with dark clouds rolling in hinting at an impending storm.": 1,
"the sky is a gradient of orange and pink suggesting either a sunrise or sunset casting a warm golden light across the scene.": 1,
"the sky is a gradient of soft blues and pinks suggesting either dawn or dusk.": 1,
"the sky is a warm golden hue indicating either the early morning or late afternoon sunlight filtering through the trees.": 1,
"the sky itself is a gradient of soft oranges; pinks and yellows with a few birds flying against the backdrop adding depth and motion to the scene.": 1,
"the snow leopard": 1,
"the snow leopard's face is close to the fox's with its large expressive eyes looking lovingly into the fox's eyes.": 1,
"the snowflakes are depicted in fine detailed strokes adding texture and depth to the scene.": 1,
"the squirrel has a calm content expression eyes focused on the open book held by him.": 1,
"the squirrel is reading a book.": 1,
"the standing figure positioned in the foreground is a warrior with a muscular build and a fierce expression.": 1,
"the texture of the ground is detailed with patches of dry grass and sandy soil suggesting a hot arid environment.": 1,
"the texture of the painting is smooth with a focus on rich warm colors and a sense of depth achieved through the use of shading and perspective.": 1,
"the texture of the painting is smooth with a slight brush stroke effect giving it a realistic yet stylized look.": 1,
"the textures in the image are detailed with the fur clothing and snow all having realistic tactile appearances.": 1,
"the textures in the painting are detailed with the dragon's scales and the child's clothing rendered with a realistic touch.": 1,
"the textures in the painting are detailed with the fur of the animals appearing soft and fluffy and the blankets and pillows having a smooth slightly rumpled appearance.": 1,
"the textures of the fur; carpet and furniture are rendered with a smooth detailed brushwork giving the image a realistic yet stylized appearance.": 1,
"the textures of the painting are smooth and detailed with the wooden deck of the ship and the characters' clothing showing a realistic quality.": 1,
"the tiger a male is sprawled out on a red carpet with his upper body and head resting on a green sofa.": 1,
"the tiger's expression is relaxed with half-closed eyes.": 1,
"the walls are decorated with patterned wallpaper and a large window with a drawn curtain casting a soft light into the room.": 1,
"the walls are painted in a warm neutral color enhancing the intimate and peaceful ambiance.": 1,
"the water is filled with green algae and plants with long slender leaves extending from the bottom.": 1,
"the weapon is pointed forward suggesting readiness for action.": 1,
"the window is draped with sheer white curtains that allow light to filter through casting soft shadows and adding a sense of depth to the scene.": 1,
"the windows are slightly open allowing rain to pour in creating a dramatic and moody atmosphere.": 1,
"the windowsill is made of metal with a slightly weathered texture.": 1,
"the wolf has a feral raven perched on his right shoulder.": 1,
"the wolf has a muscular humanoid physique with a sleek gray fur coat and a white underbelly and tail tip.": 1,
"the wolf has a muscular toned physique with a light grey and white fur coat.": 1,
"the wolf has a thick brown fur coat with a lighter underbelly and muzzle.": 1,
"the wolf is lying on its back with one arm resting behind its head and the other holding a futuristic-looking purple and black handgun pointed downwards.": 1,
"the wolf is wearing only black boxer briefs which contrast with the lighter fur emphasizing the muscular build and physique.": 1,
"the wolf on the right is larger and more muscular with dark gray fur.": 1,
"the wolf on the right with light gray fur is wearing a purple t-shirt.": 1,
"the wolf standing upright on two legs wears medieval-style armor including a breastplate shoulder pads.": 1,
"the wolf with dark gray fur and a more muscular build is lying on its back appearing submissive.": 1,
"the wolf's ears are pointed and covered in fur with a slight tuft of fur on the tips.": 1,
"the wolf's eyes are half-closed and it has a small pink tongue sticking out adding to the playful and relaxed mood of the scene.": 1,
"the wolf's eyes are wide open with his tongue sticking out.": 1,
"the wolf's fur is a mix of gray and white blending seamlessly with the snowy environment.": 1,
"the wolf's left hand is casually placed on its hip while the right hand is gently touching its nipples revealing a playful and mischievous expression.": 1,
"the wolf's mane is detailed with individual hairs visible adding a realistic texture.": 1,
"the wolverine has dark fur and piercing yellow eyes giving it a fierce yet determined expression.": 1,
"the wolverine is carrying a large backpack with a chain attached to it hanging loosely over its shoulder.": 1,
"their appear to be wounded.": 1,
"their expressions are calm and content emphasizing the peacefulness of their underwater world.": 1,
"there are also some trees with bare branches indicating winter or early spring.": 1,
"there is a large window to the left through which soft diffused light enters casting a gentle glow over the scene.": 1,
"there is a large window with horizontal blinds on the left allowing some natural light to filter in.": 1,
"there is a red and black plaid blanket draped over the character's lower body adding a cozy and warm element to the scene.": 1,
"they are dressed in medieval-style armor and a long sharp sword held in their right hand.": 1,
"they are embracing each other closely with the lynx's head resting on the wolf's head eyes closed suggesting a moment of comfort and affection.": 1,
"they are submerged in a greenish slightly murky water illuminated by soft diffused light from above suggesting they are near the surface.": 1,
"they have human-like features and are entwined in an affectionate embrace their eyes closed in a tender moment.": 1,
"this digital artwork depicts an intimate scene between two anthropomorphic characters in a dimly lit room.": 1,
"this digital drawing depicts a solitary anthropomorphic wolf warrior trudging through a snow-covered landscape.": 1,
"this image is a digital painting depicting a serene forest scene.": 1,
"this image is a digital painting depicting an anthropomorphic fox and an anthropomorphic wolf in an intimate embrace.": 1,
"this image is a digital painting depicting an anthropomorphic raccoon character in a sci-fi setting.": 1,
"this image is a digital painting depicting two anthropomorphic animals a snow leopard and a fox in an intimate and tender moment.": 1,
"this image is a digital painting featuring an anthropomorphic feline character in a dynamic action-packed pose.": 1,
"this image is a digital painting featuring an anthropomorphic wolf character lying on a bed.": 1,
"this is a detailed digital painting featuring an anthropomorphic fox riding a feral ostrich.": 1,
"this is a digital artwork consisting of eight anthropomorphic animal portraits arranged in a 2x4 grid each depicting a different character in a serene forest setting.": 1,
"this is a digital drawing depicting an anthropomorphic wolverine standing in a snowy forest.": 1,
"this is a digital drawing in a semi-realistic anthropomorphic style depicting a male dog character lounging on a bed.": 1,
"this is a digital illustration depicting a dynamic action-packed scene.": 1,
"this is a digital painting depicting a close-up profile of a wolf.": 1,
"this is a digital painting depicting a dramatic scene set in a mountainous landscape bathed in warm": 1,
"this is a digital painting depicting a fantastical scene set in a rugged mountainous landscape under a clear blue sky.": 1,
"this is a digital painting depicting a majestic anthropomorphic lion standing on a rocky outcrop under a dramatic stormy sky.": 1,
"this is a digital painting depicting a young fox gazing out of a window.": 1,
"this is a digital painting depicting an anthropomorphic leopard in a post-apocalyptic urban setting.": 1,
"this is a digital painting depicting an anthropomorphic red panda sitting on a bed in a cozy dimly lit room.": 1,
"this is a digital painting depicting an anthropomorphic tiger in a domestic setting.": 1,
"this is a digital painting depicting an anthropomorphic wolf lying on a bed.": 1,
"this is a digital painting depicting an intimate moment between two anthropomorphic animals a tree squirrel and an african wild dog.": 1,
"this is a digital painting depicting two anthropomorphic animals; a husky and a feline relaxing in a car during a rainstorm.": 1,
"this is a digital painting depicting two anthropomorphic characters an otter and a dog swimming underwater in a serene aquatic environment.": 1,
"this is a digital painting depicting two anthropomorphic characters on the deck of a ship during a dramatic sunset.": 1,
"this is a digital painting depicting two dogs sleeping closely together on a bed exuding a sense of warmth and comfort.": 1,
"this is a digital painting featuring a highly detailed anthropomorphic canine character lying on a bed.": 1,
"this is a digital painting in a semi-realistic style depicting a fantasy scene set in a dense lush forest.": 1,
"tiger": 1,
"to the right there is a fireplace with a mantle adorned with a decorative vase and a small ornate plate.": 1,
"toe claws": 8,
"toes": 2,
"tongue": 4,
"tongue out": 3,
"topless": 3,
"topless male": 1,
"topwear": 3,
"tree": 6,
"tree squirrel": 1,
"tribal": 1,
"truck (vehicle)": 1,
"true fox": 1,
"tuft": 9,
"tunic": 1,
"two feathers with white and brown stripes hang from the wolf's right ear with his hair braided and adorned with small yellow and green beads.": 1,
"two tone fur": 7,
"under covers": 2,
"underneath the character is dressed in a dark blue tunic and grey and brown pants secured with a belt and a sheathed sword.": 1,
"underwater": 1,
"underwear": 3,
"underwear pull": 1,
"undressing": 1,
"uniform": 1,
"vegetation such as small patches of green grass and moss has begun to reclaim the ruins adding a touch of nature amidst the devastation.": 1,
"vest": 1,
"walking": 1,
"watch": 1,
"water": 1,
"watermark": 1,
"weapon": 1,
"werewolf": 1,
"while the wild dog with a light brown and dark brown fur pattern is laying on a bed covered with green blankets.": 1,
"whiskers": 17,
"white body": 2,
"white clothing": 1,
"white feathers": 2,
"white fur": 21,
"white hair": 2,
"window": 4,
"winter": 3,
"with its eyes wide open and head tilted back while the wolf on the right has a more serious contemplative look with its eyes open and slightly narrowed.": 1,
"with its light grey fur adorned with dark spots is positioned on top of the fox which has a vibrant orange coat with white underbelly and black-tipped ears.": 1,
"wolf": 9,
"wolverine": 1,
"wounded": 2,
"yellow eyes": 11,
"yellow feathers": 1,
"yellow fur": 2,
"yellow sclera": 2
},
"6_hax": {
"'lofi+kenket' is visible in the bottom right corner.": 1,
". the wolf is wearing a bright yellow hooded jacket and has a white fur with light brown patches which contrasts sharply with its jacket's colors giving a warm and cozy appearance.": 1,
"2 penises": 1,
"4 toes": 3,
"5 fingers": 4,
"a small winding stream runs through the forest reflecting the sunlight and adding a sense of tranquility to the image.": 1,
"accipitriform": 1,
"affectionate expression": 1,
"african wild dog": 1,
"amazing background": 2,
"ambiguous gender": 3,
"anatomically correct penis": 1,
"and is lying on its back": 1,
"anthro": 17,
"anthro on anthro": 2,
"antlers": 1,
"anubian jackal": 1,
"arctic fox": 1,
"armlet": 1,
"armor": 2,
"arms bent": 1,
"balls": 1,
"bandage": 1,
"bandolier": 1,
"barefoot": 2,
"beak": 1,
"bed": 1,
"bed sheet": 2,
"bedding": 1,
"bedroom": 4,
"belt": 1,
"bent legs": 1,
"biped": 8,
"bird": 2,
"black beak": 1,
"black body": 3,
"black fur": 9,
"black hair": 1,
"black lips": 3,
"black nose": 13,
"black pawpads": 1,
"black spots": 2,
"blanket": 1,
"blood": 1,
"blue eyes": 4,
"blue feathers": 1,
"book": 1,
"bookshelf": 1,
"border collie": 2,
"both animals are lying on a bed covered with a red blanket which adds a warm and cozy ambiance to the scene.": 1,
"both are sitting on a bed of tall golden-brown grass with the background suggesting a sunlit forest with dappled sunlight filtering through the trees.": 1,
"both dogs have their eyes closed and are nuzzled together suggesting a deep sense of companionship and affection.": 1,
"both their eyes are closed and the wolf is licking the fox's nose suggesting a content and relaxed demeanor.": 1,
"boxer briefs": 1,
"bracelet": 1,
"braided hair": 1,
"breasts": 1,
"briefs only": 1,
"brown body": 3,
"brown eyes": 2,
"brown feathers": 1,
"brown fur": 11,
"building": 1,
"bulge": 1,
"bust portrait": 1,
"butt": 1,
"by hax": 15,
"calves up": 1,
"canine penis": 1,
"canis": 1,
"cape": 1,
"casting gentle shadows that enhance the intimate and sensual atmosphere of the scene.": 1,
"casting soft light over the scene.": 1,
"casual nudity": 1,
"cat": 3,
"cheek tuft": 2,
"cityscape": 1,
"claws": 5,
"cliff": 1,
"cloak": 2,
"clothed": 9,
"clothing": 2,
"cloud": 4,
"collie": 1,
"countershading": 2,
"cowboy": 1,
"cowboy hat": 1,
"cowgirl position": 1,
"coyote": 1,
"crocodile": 1,
"crossed arms": 1,
"crouching": 1,
"cuddling": 5,
"curtains": 1,
"day": 9,
"death": 1,
"deity": 1,
"detailed": 5,
"detailed background": 15,
"detailed fur": 5,
"digital media (artwork)": 7,
"digital painting (artwork)": 13,
"digitigrade": 4,
"dipstick tail": 3,
"domestic cat": 1,
"domestic dog": 1,
"dominant": 1,
"dreadlocks": 1,
"dual wielding": 1,
"duo": 9,
"ear piercing": 1,
"ear tuft": 2,
"egyptian": 1,
"erection": 1,
"eye contact": 2,
"eyes closed": 9,
"fangs": 2,
"feathered wings": 1,
"felid": 1,
"feline": 1,
"felis": 1,
"female": 2,
"female on top": 1,
"feral": 1,
"fingers": 6,
"flower": 1,
"fluffy": 3,
"fluffy tail": 2,
"foot wraps": 1,
"footwear": 1,
"forest": 3,
"fox": 2,
"from front position": 1,
"fully clothed": 1,
"fur": 4,
"furniture": 1,
"genital slit": 1,
"german shepherd": 1,
"glans": 1,
"gloves": 3,
"gloves (marking)": 1,
"gold jewelry": 1,
"golden light. the main characters are two anthropomorphic wolf-like creatures standing and lying on a rocky outcrop.": 1,
"grass": 6,
"green eyes": 1,
"green scales": 1,
"grey body": 3,
"grey fur": 7,
"grin": 1,
"group": 1,
"hair": 2,
"hand holding": 1,
"hand on head": 1,
"hand on penis": 1,
"handjob": 1,
"handjob frottage": 1,
"hands behind head": 1,
"hat": 1,
"hawk": 1,
"hax": 1,
"he has a gentle contented expression with his eyes closed and a serene smile on his face.": 1,
"he has his green eyes open.": 1,
"he is wearing tattered light brown shorts.": 1,
"herding dog": 1,
"hieroglyphics": 1,
"hindpaw": 1,
"his left arm is wrapped around the smaller lynx who is nestled against his chest.": 1,
"his tail long and thick sways gracefully as he leans forward with both hands gripping a large rocky outcropping.": 1,
"holding book": 1,
"holding gun": 2,
"holding musical instrument": 1,
"holding sword": 1,
"holster": 1,
"hood": 2,
"hoodie": 1,
"hooved fingers": 1,
"hug": 4,
"hugging another": 1,
"hugging from behind": 1,
"humanoid penis": 1,
"in the background there is a bed with a neatly made bedspread and a potted plant and photo on the nightstand.": 1,
"in the raccoon's hands it holds a large futuristic weapon that appears to be a cross between a rifle and a rocket launcher with intricate metallic details and a red light on its barrel.": 1,
"indicating a sexual interaction. the lighting is warm and soft": 1,
"indoor nudity": 1,
"indoor sex": 1,
"inner ear fluff": 5,
"inside": 5,
"interspecies": 3,
"it is dressed in a brown tattered cloak with gold trim and a red sash around its waist reminiscent of a minstrel.": 1,
"it is dressed in a striped sleeveless shirt and brown pants which contrast with its fur.": 1,
"it is wearing only a pair of snug white boxer shorts highlighting its lean muscular physique.": 1,
"its fur is predominantly a light gray with subtle variations in shades giving it a soft fluffy texture.": 1,
"jacket": 1,
"jaguar": 1,
"kass (tloz)": 1,
"kneeling": 1,
"knot": 1,
"leather": 1,
"leather clothing": 1,
"leather jacket": 1,
"leather topwear": 1,
"leopard": 2,
"leopard spots": 1,
"licking": 1,
"light": 4,
"lighting": 3,
"long hair": 1,
"long mouth": 3,
"looking at another": 3,
"looking at partner": 2,
"looking at viewer": 1,
"looking up": 1,
"lying": 2,
"lynx": 3,
"male": 13,
"male anthro": 1,
"male on bottom": 2,
"male on top": 2,
"male/ambiguous": 2,
"male/female": 1,
"male/male": 6,
"markings": 2,
"melanistic": 1,
"morning": 2,
"mostly nude": 1,
"mountain": 3,
"multicolored body": 1,
"multicolored feathers": 1,
"multicolored fur": 6,
"multicolored tail": 3,
"narrowed eyes": 2,
"nature": 3,
"navel": 1,
"necklace": 1,
"nipples": 2,
"nude": 6,
"nude anthro": 1,
"nude male": 1,
"on back": 3,
"on bed": 5,
"on bottom": 1,
"on front": 3,
"on ground": 1,
"on side": 1,
"on the right side of the image there is a bookshelf filled with various books indicating a love for reading.": 1,
"on top": 1,
"one eye closed": 1,
"open mouth": 3,
"orange body": 1,
"orange eyes": 1,
"orange fur": 5,
"orange tail": 1,
"outside": 11,
"painting (artwork)": 1,
"pants": 2,
"pastoral dog": 1,
"paws": 1,
"penile masturbation": 1,
"penis grab": 1,
"petting": 1,
"pillow": 3,
"pink nose": 1,
"pink penis": 1,
"pinned": 1,
"pinned arms": 1,
"plant": 4,
"playing music": 1,
"portrait": 1,
"pose": 1,
"post-apocalyptic": 1,
"precum": 1,
"raccoon": 1,
"raised arms": 1,
"raised calf": 1,
"raised tail": 1,
"reading book": 1,
"red fox": 3,
"reindeer": 1,
"revolver": 1,
"ring piercing": 1,
"ringed tail": 1,
"rito": 1,
"rock": 1,
"romantic": 1,
"romantic ambiance": 2,
"romantic couple": 7,
"romantic sex": 1,
"ruins": 1,
"sex": 1,
"sharp teeth": 1,
"sheepdog": 1,
"shirt": 2,
"shorts": 1,
"side view": 4,
"signature": 7,
"simple background": 1,
"sitting": 2,
"sky": 5,
"sleeping": 2,
"slim": 1,
"smile": 13,
"snout": 3,
"snow": 1,
"snow leopard": 1,
"socks (marking)": 1,
"solo": 9,
"spotted fur": 4,
"standing": 5,
"straddling": 2,
"stretching": 1,
"striped tail": 1,
"submissive": 1,
"sunlight": 3,
"sunset": 1,
"sword": 1,
"tail": 4,
"tail markings": 1,
"tan fur": 3,
"tank top": 1,
"tattoo": 1,
"teeth": 3,
"the armor is made of a mix of brown and tan leather with a prominent.": 1,
"the artist's signature": 1,
"the artist's signature \"lofi+kenket\" is located in the lower left corner.": 1,
"the artist's signature 'lofi + kenket' is visible in the bottom right corner of the painting indicating the artist's name.": 1,
"the artist's signature 'lofi + kenket' is visible in the lower left corner.": 1,
"the artist's signature 'lofi + kenket' is visible in the top left corner.": 2,
"the artist's signature a small cat silhouette is in the bottom right corner.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom right corner of the picture.": 1,
"the artists' signature 'lofi + kenket' is visible in the bottom right corner.": 2,
"the artists' signature 'lofi + kenket' is visible in the top left corner.": 2,
"the artists' watermark is visible in the bottom right corner.": 2,
"the background features a decaying cityscape with towering crumbling buildings and a dense atmosphere of dust and debris.": 1,
"the background features a desolate arid landscape with mountains and a few sparse bushes.": 1,
"the background features a lush green landscape with rolling hills and distant mountains under a partly cloudy sky.": 1,
"the background features a partially cloudy sky with soft warm hues of orange and yellow suggesting either dawn or dusk.": 1,
"the background features a softly lit room with large windows through which sunlight streams casting gentle diffused light over the scene.": 1,
"the background features towering rugged mountains with sharp peaks and the sky is a gradient of warm oranges and purples suggesting either sunset or sunrise.": 1,
"the background is a blend of abstract colors primarily blues and yellows with hints of green and white creating a sense of depth and movement.": 1,
"the background is a blend of warm earth tones.": 1,
"the background is a lush forest filled with tall trees with thick trunks and branches.": 1,
"the background is a warm blurred scene of a forest during sunset with hues of orange and pink dominating the sky suggesting an autumnal atmosphere.": 1,
"the background is blurred with soft pastel colors depicting a bedroom.": 1,
"the background is painted with broad sweeping brushstrokes adding a dynamic and energetic feel to the image.": 1,
"the background of the scene is dimly lit suggesting a cozy indoor setting.": 1,
"the background reveals a glimpse of a courtyard with lush greenery and a sunlit terrace suggesting a luxurious possibly ancient egyptian palace.": 1,
"the background showcases a cityscape bathed in the warm hues of a sunset with buildings silhouetted against the sky.": 1,
"the background showcases a dense green forest with tall palm trees and other tropical foliage.": 1,
"the bed they are lying on has a gray blanket providing a soft texture contrast to the dogs' fur.": 1,
"the bird has a large expressive beak and is adorned with red feathers on its head and a white tuft of feathers around its neck.": 1,
"the bird's eyes are intense and focused adding to the sense of determination and readiness.": 1,
"the bird's legs are clad in brown trousers with red boots and it wears a brown open-collared shirt with a white undershirt.": 1,
"the cat is adorned with a black leather jacket which has a studded collar suggesting a punk or rock-inspired aesthetic.": 1,
"the cat is portrayed in profile facing to the left with a detailed and expressive face.": 1,
"the cat with a tawny fur coat has its eyes closed and a contented smile on its face stretching its arms upward as if it has just woken up.": 1,
"the cat with closed eyes and a serene expression is snuggled tightly into the dog's chest wearing a red plaid shirt.": 1,
"the cat's eyes are a striking yellow with intricate details in the irises and its whiskers are long and white adding to the lifelike appearance.": 1,
"the central figures are anthropomorphic animals; a fox and a wolf.": 1,
"the character depicted with a mixture of human and feline features is crouched on a rooftop at sunset.": 1,
"the character is holding two silver revolvers one in each hand in a dramatic action-packed pose.": 1,
"the character is wearing a wide-brimmed brown hat a red bandana tied around its neck and a brown leather jacket.": 1,
"the character on the bottom is a dark-furred muscular anubian jackal with long dreadlocked hair also adorned with gold jewelry.": 1,
"the character on top is a muscular green-scaled crocodile with a dark dreadlocked hair andhumanoid physique adorned with gold jewelry including bracelets and a headpiece.": 1,
"the character wears a hooded cloak that billows in the wind adding a sense of movement and adventure.": 1,
"the character's fur is a mix of gray and black with a distinctive mask-like face and a striped tail.": 1,
"the character's large antlered head is prominently displayed with a confident slightly mischievous expression on its face.": 1,
"the character's stance and expression suggest a sense of adventure and curiosity inviting viewers to explore the vibrant forest with them.": 1,
"the city is filled with broken angular structures some with windows missing and others with graffiti.": 1,
"the cliff edge where the avian is seated is rugged and rocky with patches of green grass.": 1,
"the cloak is a mix of brown and beige.": 1,
"the deer has a warm brown fur coat with a striped blue and white bandana around its neck adorned with a red cross on the front.": 1,
"the dog's expression is one of contentment and affection with his eyes open as it embraces a smaller orange tabby cat.": 1,
"the dog's fur appears soft and fluffy contrasting with the cat's sleek smooth fur.": 1,
"the domestic cat has a brown and white coat with a long striped tail and pointed ears.": 1,
"the fallen figure lying on their back with one leg bent is also dressed in dark; rugged clothing.": 1,
"the focal point is a large anthropomorphic fox with reddish-brown fur and a bushy tail lying on its back in the center of the image.": 1,
"the forest background is rich with greenery including tall trees with thick trunks and branches and a dense undergrowth of grass and foliage.": 1,
"the forest floor is covered in a carpet of vibrant purple and white wildflowers adding a splash of color to the scene.": 1,
"the forest floor is covered in a mix of brown earth and patches of green adding to the natural untamed feel of the environment.": 1,
"the fox has a light red fur with black patches and a white muzzle": 1,
"the fox has closed eyes and a relaxed content expression with its limbs bent and its paws resting on the ground.": 1,
"the fox with reddish-brown fur and a bushy tail is wearing a vibrant red hooded cloak that drapes over its back.": 1,
"the fox's eyes are half-closed and its expression is one of contentment and affection.": 1,
"the fox's head is shown from the side looking intently at the wolf.": 1,
"the ground they lie on is covered in patches of grass and small rocks adding texture and depth to the scene.": 1,
"the hawk has a beak and feathers but its head and body are adorned with human-like clothing and accessories.": 1,
"the image evokes a sense of tranquility and solitude with the bird seemingly lost in its musical performance.": 1,
"the jacket has a brown leather belt with a holster and a belt with a belt buckle that is intricately detailed.": 1,
"the jacket is rendered with a mix of dark and light tones giving it a three-dimensional quality and a slightly rough texture.": 1,
"the larger dog on the left has a fluffy gray and white coat while the dog on the right has a tan coat with darker brown patches.": 1,
"the larger figure is a black and white border collie dog with a soft fluffy texture wearing a brown jacket.": 1,
"the leopard standing on two legs is a muscular male with a dark brown coat.": 1,
"the light filtering through the trees creates a mystical almost ethereal atmosphere with dappled sunlight and shadows.": 1,
"the light in the image is soft and diffused creating a warm and cozy mood.": 1,
"the light is diffused creating a warm golden glow that bathes the scene in a soft inviting atmosphere.": 1,
"the lighting in the image is soft and natural casting gentle shadows and highlights that enhance the textures of the fur and the blanket.": 1,
"the lighting is warm and golden casting a warm glow over the scene enhancing the peaceful and intimate atmosphere.": 1,
"the lying wolf has a swirling blue tattoo on their left shoulder.": 1,
"the lynx has a lighter brown coat and a more slender build.": 1,
"the one in the foreground is a male coyote with a muscular build and a light brown coat adorned with darker spots. his fur appears thick and textured with a soft fluffy appearance around his neck and chest.": 1,
"the overall color palette is dominated by earthy tones and vibrant reds creating a striking contrast between the two figures and their surroundings.": 1,
"the overall mood is intense and dramatic with the warm lighting highlighting the figures and the rugged terrain.": 1,
"the overall mood is one of adventure and readiness with a hint of danger in the setting and the character's stance.": 1,
"the overall mood of the image is intense and heroic reminiscent of classic western films and art.": 1,
"the overall mood of the image is peaceful and relaxed capturing a moment of quiet contentment.": 1,
"the overall mood of the image is warm and peaceful capturing a moment of quiet; shared enjoyment.": 1,
"the overall mood of the painting is both whimsical and edgy blending the innocence of the cat with a rebellious punk-inspired outfit.": 1,
"the overall mood of the painting is one of love and comfort with a focus on the tender interaction between the two characters.": 1,
"the overall mood of the painting is one of tranquility and warmth with the fox's gentle expression adding to the serene atmosphere.": 1,
"the overall mood of the painting is peaceful and tranquil capturing a moment of rest in a beautiful natural setting.": 1,
"the overall style is semi-realistic with a hint of fantasy capturing a moment of tension and readiness for action.": 1,
"the overall style of the artwork is highly detailed and realistic with a focus on textures and light effects that create a sense of depth and desolation.": 1,
"the overall style of the painting is realistic with a soft painterly brushstroke technique that adds a sense of tenderness and warmth to the image.": 1,
"the overall style of the painting is realistic with a touch of fantasy combining detailed textures with vibrant colors and soft lighting.": 1,
"the overall style of the painting is semi-realistic with a painterly touch characterized by smooth brushstrokes and a blend of warm and muted colors that give it a dreamy almost ethereal quality.": 1,
"the painting style is realistic with a slightly painterly texture capturing the character's motion and the dynamic setting effectively.": 1,
"the painting style is realistic with a soft painterly touch capturing the emotional depth of the moment.": 1,
"the painting style is realistic with a touch of impressionism characterized by soft brushstrokes and a focus on light and shadow to create depth and dimension.": 1,
"the raccoon standing upright on two legs is dressed in a rugged brown leather outfit with straps and buckles reminiscent of a space explorer.": 1,
"the raccoon's eyes are sharp and focused giving a determined expression.": 1,
"the room features large ornate wooden furniture including a large bed with plush cream-colored bedding.": 1,
"the room is bathed in warm golden light streaming through a window on the right casting a soft glow on the character and the surroundings.": 1,
"the setting is a luxuriously appointed room with rich warm hues of brown and gold.": 1,
"the sky is a gradient of orange and pink suggesting either a sunrise or sunset casting a warm golden light across the scene.": 1,
"the sky is a gradient of soft blues and pinks suggesting either dawn or dusk.": 1,
"the sky is a mix of blue and white clouds": 1,
"the sky itself is a gradient of soft oranges; pinks and yellows with a few birds flying against the backdrop adding depth and motion to the scene.": 1,
"the snow leopard": 1,
"the snow leopard's face is close to the fox's with its large expressive eyes looking lovingly into the fox's eyes.": 1,
"the squirrel has a calm content expression eyes focused on the open book held by him.": 1,
"the squirrel is reading a book.": 1,
"the standing figure positioned in the foreground is a warrior with a muscular build and a fierce expression.": 1,
"the texture of the forest is rich and detailed with individual leaves and branches visible adding depth and realism to the scene.": 1,
"the texture of the fox's fur is detailed and realistic with individual hairs visible and the flowers have a soft delicate appearance.": 1,
"the texture of the fur is detailed and soft with visible individual hairs while the jacket has a slightly rougher textured appearance.": 1,
"the texture of the fur is meticulously detailed showcasing the individual strands and the lighting highlights the contours of the cat's body creating a sense of warmth and comfort.": 1,
"the texture of the painting is smooth with a focus on rich warm colors and a sense of depth achieved through the use of shading and perspective.": 1,
"the texture of the painting is smooth with a slight brush stroke effect giving it a realistic yet stylized look.": 1,
"the textures in the painting are detailed with the fur of the animals appearing soft and fluffy and the blankets and pillows having a smooth slightly rumpled appearance.": 1,
"the trees are bathed in sunlight creating a dappled light effect through the leaves which are various shades of green.": 1,
"the two characters are anthropomorphic animals with human-like bodies and distinct animal features.": 1,
"the walls are adorned with a few pieces of art including a picture with an abstract piece on the left.": 1,
"the walls are painted in a warm neutral color enhancing the intimate and peaceful ambiance.": 1,
"the weapon is pointed forward suggesting readiness for action.": 1,
"the wolf has a submissive": 1,
"the wolf with dark gray fur and a more muscular build is lying on its back appearing submissive.": 1,
"the wolf's eyes are wide open with his tongue sticking out.": 1,
"their appear to be wounded.": 1,
"their faces close together. the wolf's genitals are partially visible": 1,
"there is a large window to the left through which soft diffused light enters casting a gentle glow over the scene.": 1,
"they are dressed in medieval-style armor and a long sharp sword held in their right hand.": 1,
"this character has a strong dominant presence and is engaging in an intimate act with the other character.": 1,
"this image evokes feelings of warmth; comfort and companionship emphasizing the bond between the two characters.": 1,
"this image is a digital painting depicting an anthropomorphic bird character dressed in a classic western style.": 1,
"this image is a digital painting depicting an anthropomorphic raccoon character in a sci-fi setting.": 1,
"this image is a digital painting depicting two anthropomorphic animals a snow leopard and a fox in an intimate and tender moment.": 1,
"this image is a digital painting featuring an anthropomorphic deer character in a lush; tropical forest setting.": 1,
"this image is a digital painting featuring an anthropomorphic feline character in a dynamic action-packed pose.": 1,
"this image is a digital painting featuring an anthropomorphic fox character and a wolf.": 1,
"this is a digital drawing depicting an intimate scene between two anthropomorphic characters in an egyptian-themed setting.": 1,
"this is a digital painting depicting a blue-feathered bird-like rito playing a traditional accordion on a cliff edge.": 1,
"this is a digital painting depicting a dramatic scene set in a mountainous landscape bathed in warm": 1,
"this is a digital painting depicting a serene forest scene.": 1,
"this is a digital painting depicting a tender moment between two anthropomorphic animals.": 1,
"this is a digital painting depicting an anthropomorphic cat character in a serene sunlit bedroom.": 1,
"this is a digital painting depicting an anthropomorphic leopard in a post-apocalyptic urban setting.": 1,
"this is a digital painting depicting an intimate moment between two anthropomorphic animals a tree squirrel and an african wild dog.": 1,
"this is a digital painting depicting two anthropomorphic creatures; a lynx and a coyote sitting together in a serene forest setting.": 1,
"this is a digital painting depicting two dogs sleeping closely together on a bed exuding a sense of warmth and comfort.": 1,
"this is a digital painting in a semi-realistic style depicting a fantasy scene set in a dense lush forest.": 1,
"this is a digital painting of a cat rendered in a semi-realistic painterly style.": 1,
"three-quarter portrait": 1,
"toe claws": 2,
"toes": 2,
"tongue out": 1,
"topless": 2,
"topwear": 2,
"tree": 3,
"tree squirrel": 1,
"true fox": 1,
"tuft": 4,
"two tone fur": 1,
"under covers": 2,
"underneath the character is dressed in a dark blue tunic and grey and brown pants secured with a belt and a sheathed sword.": 1,
"underwear": 1,
"vase": 1,
"vegetation such as small patches of green grass and moss has begun to reclaim the ruins adding a touch of nature amidst the devastation.": 1,
"while the wild dog with a light brown and dark brown fur pattern is laying on a bed covered with green blankets.": 1,
"whiskers": 11,
"white body": 3,
"white clothing": 1,
"white feathers": 1,
"white fur": 11,
"window": 3,
"winged arms": 2,
"with its light grey fur adorned with dark spots is positioned on top of the fox which has a vibrant orange coat with white underbelly and black-tipped ears.": 1,
"with the crocodile leaning over it": 1,
"wolf": 3,
"wounded": 1,
"yellow eyes": 4
}
},
"ss_text_encoder_lr": 0.0001,
"ss_total_batch_size": 48,
"ss_training_comment": null,
"ss_training_finished_at": 1722732246.355581,
"ss_training_started_at": 1722727167.1118498,
"ss_unet_lr": 0.0002,
"ss_v2": false,
"ss_zero_terminal_snr": false,
"sshs_model_hash": "0xf79f48a8927cb12cb627dd3c3c43cebadcde0a3edff72e87ececa27afba4f699"
} |