Spaces:
Running
on
Zero
Running
on
Zero
Upload 3 files
Browse files- formatter.py +43 -0
- llmdolphin.py +40 -5
- lora_dict.json +308 -0
formatter.py
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from llama_cpp_agent.messages_formatter import MessagesFormatter, PromptMarkers, Roles
|
2 |
+
|
3 |
+
mistral_v1_markers = {
|
4 |
+
Roles.system: PromptMarkers(""" [INST]""", """ [/INST] Understood.</s>"""),
|
5 |
+
Roles.user: PromptMarkers(""" [INST]""", """ [/INST]"""),
|
6 |
+
Roles.assistant: PromptMarkers(" ", "</s>"),
|
7 |
+
Roles.tool: PromptMarkers("", ""),
|
8 |
+
}
|
9 |
+
|
10 |
+
mistral_v1_formatter = MessagesFormatter(
|
11 |
+
pre_prompt="",
|
12 |
+
prompt_markers=mistral_v1_markers,
|
13 |
+
include_sys_prompt_in_first_user_message=False,
|
14 |
+
default_stop_sequences=["</s>"]
|
15 |
+
)
|
16 |
+
|
17 |
+
mistral_v2_markers = {
|
18 |
+
Roles.system: PromptMarkers("""[INST] """, """[/INST] Understood.</s>"""),
|
19 |
+
Roles.user: PromptMarkers("""[INST] """, """[/INST]"""),
|
20 |
+
Roles.assistant: PromptMarkers(" ", "</s>"),
|
21 |
+
Roles.tool: PromptMarkers("", ""),
|
22 |
+
}
|
23 |
+
|
24 |
+
mistral_v2_formatter = MessagesFormatter(
|
25 |
+
pre_prompt="",
|
26 |
+
prompt_markers=mistral_v2_markers,
|
27 |
+
include_sys_prompt_in_first_user_message=False,
|
28 |
+
default_stop_sequences=["</s>"]
|
29 |
+
)
|
30 |
+
|
31 |
+
mistral_v3_tekken_markers = {
|
32 |
+
Roles.system: PromptMarkers("""[INST]""", """[/INST]Understood.</s>"""),
|
33 |
+
Roles.user: PromptMarkers("""[INST]""", """[/INST]"""),
|
34 |
+
Roles.assistant: PromptMarkers("", "</s>"),
|
35 |
+
Roles.tool: PromptMarkers("", ""),
|
36 |
+
}
|
37 |
+
|
38 |
+
mistral_v3_tekken_formatter = MessagesFormatter(
|
39 |
+
pre_prompt="",
|
40 |
+
prompt_markers=mistral_v3_tekken_markers,
|
41 |
+
include_sys_prompt_in_first_user_message=False,
|
42 |
+
default_stop_sequences=["</s>"]
|
43 |
+
)
|
llmdolphin.py
CHANGED
@@ -8,7 +8,8 @@ from llama_cpp_agent.chat_history.messages import Roles
|
|
8 |
from ja_to_danbooru.ja_to_danbooru import jatags_to_danbooru_tags
|
9 |
import wrapt_timeout_decorator
|
10 |
from pathlib import Path
|
11 |
-
|
|
|
12 |
|
13 |
llm_models_dir = "./llm_models"
|
14 |
llm_models = {
|
@@ -20,6 +21,7 @@ llm_models = {
|
|
20 |
#"": ["", MessagesFormatterType.PHI_3],
|
21 |
"mn-12b-lyra-v2a1-q5_k_m.gguf": ["HalleyStarbun/MN-12B-Lyra-v2a1-Q5_K_M-GGUF", MessagesFormatterType.CHATML],
|
22 |
"L3-8B-Tamamo-v1.i1-Q5_K_M.gguf": ["mradermacher/L3-8B-Tamamo-v1-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
|
|
23 |
"Mahou-1.5-mistral-nemo-12B.i1-Q4_K_M.gguf": ["mradermacher/Mahou-1.5-mistral-nemo-12B-i1-GGUF", MessagesFormatterType.MISTRAL],
|
24 |
"MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
|
25 |
"Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
@@ -59,12 +61,38 @@ llm_models = {
|
|
59 |
"Qwen2.5-14B_Uncensored_Instruct.Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B_Uncensored_Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
60 |
"EVA-Qwen2.5-14B-v0.0.i1-IQ4_XS.gguf": ["mradermacher/EVA-Qwen2.5-14B-v0.0-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
|
61 |
"MN-12B-Vespa-x1.i1-Q4_K_M.gguf": ["mradermacher/MN-12B-Vespa-x1-i1-GGUF", MessagesFormatterType.CHATML],
|
|
|
62 |
"Mistral-Nemo-12B-ArliAI-RPMax-v1.1.i1-Q4_K_M.gguf": ["mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.1-i1-GGUF", MessagesFormatterType.MISTRAL],
|
63 |
"Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
|
64 |
"ChatWaifu_12B_v2.0.Q5_K_M.gguf": ["mradermacher/ChatWaifu_12B_v2.0-GGUF", MessagesFormatterType.MISTRAL],
|
65 |
"ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
|
66 |
"ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
|
67 |
"ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
"Aster-G2-9B-v1.Q4_K_S.gguf": ["mradermacher/Aster-G2-9B-v1-GGUF", MessagesFormatterType.ALPACA],
|
69 |
"nemo-12b-rp-merge.Q4_K_S.gguf": ["mradermacher/nemo-12b-rp-merge-GGUF", MessagesFormatterType.MISTRAL],
|
70 |
"SthenoMix3.3.Q5_K_M.gguf": ["mradermacher/SthenoMix3.3-GGUF", MessagesFormatterType.LLAMA_3],
|
@@ -792,8 +820,12 @@ llm_formats = {
|
|
792 |
"PHI 3": MessagesFormatterType.PHI_3,
|
793 |
"Autocoder": MessagesFormatterType.AUTOCODER,
|
794 |
"DeepSeek Coder v2": MessagesFormatterType.DEEP_SEEK_CODER_2,
|
795 |
-
"Gemma 2": MessagesFormatterType.
|
796 |
"Qwen2": MessagesFormatterType.OPEN_CHAT,
|
|
|
|
|
|
|
|
|
797 |
}
|
798 |
# https://github.com/Maximilian-Winter/llama-cpp-agent
|
799 |
llm_languages = ["English", "Japanese", "Chinese", "Korean", "Spanish", "Portuguese", "German", "French", "Finnish", "Russian"]
|
@@ -1213,7 +1245,8 @@ def dolphin_respond(
|
|
1213 |
agent = LlamaCppAgent(
|
1214 |
provider,
|
1215 |
system_prompt=f"{system_message}",
|
1216 |
-
predefined_messages_formatter_type=chat_template,
|
|
|
1217 |
debug_output=False
|
1218 |
)
|
1219 |
|
@@ -1307,7 +1340,8 @@ def dolphin_respond_auto(
|
|
1307 |
agent = LlamaCppAgent(
|
1308 |
provider,
|
1309 |
system_prompt=f"{system_message}",
|
1310 |
-
predefined_messages_formatter_type=chat_template,
|
|
|
1311 |
debug_output=False
|
1312 |
)
|
1313 |
|
@@ -1402,7 +1436,8 @@ def respond_playground(
|
|
1402 |
agent = LlamaCppAgent(
|
1403 |
provider,
|
1404 |
system_prompt=f"{system_message}",
|
1405 |
-
predefined_messages_formatter_type=chat_template,
|
|
|
1406 |
debug_output=False
|
1407 |
)
|
1408 |
|
|
|
8 |
from ja_to_danbooru.ja_to_danbooru import jatags_to_danbooru_tags
|
9 |
import wrapt_timeout_decorator
|
10 |
from pathlib import Path
|
11 |
+
from llama_cpp_agent.messages_formatter import MessagesFormatter
|
12 |
+
from formatter import mistral_v1_formatter, mistral_v2_formatter, mistral_v3_tekken_formatter
|
13 |
|
14 |
llm_models_dir = "./llm_models"
|
15 |
llm_models = {
|
|
|
21 |
#"": ["", MessagesFormatterType.PHI_3],
|
22 |
"mn-12b-lyra-v2a1-q5_k_m.gguf": ["HalleyStarbun/MN-12B-Lyra-v2a1-Q5_K_M-GGUF", MessagesFormatterType.CHATML],
|
23 |
"L3-8B-Tamamo-v1.i1-Q5_K_M.gguf": ["mradermacher/L3-8B-Tamamo-v1-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
24 |
+
"MN-Chinofun-12B-2.i1-Q4_K_M.gguf": ["mradermacher/MN-Chinofun-12B-2-i1-GGUF", MessagesFormatterType.MISTRAL],
|
25 |
"Mahou-1.5-mistral-nemo-12B.i1-Q4_K_M.gguf": ["mradermacher/Mahou-1.5-mistral-nemo-12B-i1-GGUF", MessagesFormatterType.MISTRAL],
|
26 |
"MN-12B-Mag-Mell-Q4_K_M.gguf": ["inflatebot/MN-12B-Mag-Mell-R1-GGUF", MessagesFormatterType.MISTRAL],
|
27 |
"Qwen2.5-14B-Instruct-Q4_K_M.gguf": ["bartowski/Qwen2.5-14B-Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
|
|
61 |
"Qwen2.5-14B_Uncensored_Instruct.Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B_Uncensored_Instruct-GGUF", MessagesFormatterType.OPEN_CHAT],
|
62 |
"EVA-Qwen2.5-14B-v0.0.i1-IQ4_XS.gguf": ["mradermacher/EVA-Qwen2.5-14B-v0.0-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
|
63 |
"MN-12B-Vespa-x1.i1-Q4_K_M.gguf": ["mradermacher/MN-12B-Vespa-x1-i1-GGUF", MessagesFormatterType.CHATML],
|
64 |
+
"Rocinante-12B-v2h-Q4_K_M.gguf": ["BeaverAI/Rocinante-12B-v2h-GGUF", MessagesFormatterType.MISTRAL],
|
65 |
"Mistral-Nemo-12B-ArliAI-RPMax-v1.1.i1-Q4_K_M.gguf": ["mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.1-i1-GGUF", MessagesFormatterType.MISTRAL],
|
66 |
"Trinas_Nectar-8B-model_stock.i1-Q4_K_M.gguf": ["mradermacher/Trinas_Nectar-8B-model_stock-i1-GGUF", MessagesFormatterType.MISTRAL],
|
67 |
"ChatWaifu_12B_v2.0.Q5_K_M.gguf": ["mradermacher/ChatWaifu_12B_v2.0-GGUF", MessagesFormatterType.MISTRAL],
|
68 |
"ChatWaifu_22B_v2.0_preview.Q4_K_S.gguf": ["mradermacher/ChatWaifu_22B_v2.0_preview-GGUF", MessagesFormatterType.MISTRAL],
|
69 |
"ChatWaifu_v1.4.Q5_K_M.gguf": ["mradermacher/ChatWaifu_v1.4-GGUF", MessagesFormatterType.MISTRAL],
|
70 |
"ChatWaifu_v1.3.1.Q4_K_M.gguf": ["mradermacher/ChatWaifu_v1.3.1-GGUF", MessagesFormatterType.MISTRAL],
|
71 |
+
"hermes-llama3-roleplay-1000-v2.Q5_K_M.gguf": ["mradermacher/hermes-llama3-roleplay-1000-v2-GGUF", MessagesFormatterType.LLAMA_3],
|
72 |
+
"hermes-stheno-8B-v0.1.i1-Q5_K_M.gguf": ["mradermacher/hermes-stheno-8B-v0.1-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
73 |
+
"qwen-carpmuscle-r-v0.3.Q4_K_M.gguf": ["mradermacher/qwen-carpmuscle-r-v0.3-GGUF", MessagesFormatterType.OPEN_CHAT],
|
74 |
+
"magnum-v4-12b.i1-Q4_K_M.gguf": ["mradermacher/magnum-v4-12b-i1-GGUF", MessagesFormatterType.MISTRAL],
|
75 |
+
"magnum-consolidatum-v1-12b.Q4_K_M.gguf": ["mradermacher/magnum-consolidatum-v1-12b-GGUF", MessagesFormatterType.MISTRAL],
|
76 |
+
"sillyrp-7b.i1-Q5_K_M.gguf": ["mradermacher/sillyrp-7b-i1-GGUF", MessagesFormatterType.CHATML],
|
77 |
+
"BlackSheep-Coder.i1-Q4_K_M.gguf": ["mradermacher/BlackSheep-Coder-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
|
78 |
+
"Gemmasutra-9B-v1.Q4_K_M.gguf": ["mradermacher/Gemmasutra-9B-v1-GGUF", MessagesFormatterType.ALPACA],
|
79 |
+
"Tiger-Gemma-9B-v3.Q4_K_M.gguf": ["mradermacher/Tiger-Gemma-9B-v3-GGUF", MessagesFormatterType.ALPACA],
|
80 |
+
"mt-merge-gemma-2-9b-q6_k.gguf": ["zelk12/MT-Merge-gemma-2-9B-Q6_K-GGUF", MessagesFormatterType.ALPACA],
|
81 |
+
"Qwen2.5-14B-Wernicke.i1-Q4_K_M.gguf": ["mradermacher/Qwen2.5-14B-Wernicke-i1-GGUF", MessagesFormatterType.OPEN_CHAT],
|
82 |
+
"Llama-3SOME-8B-v2.Q5_K_M.gguf": ["mradermacher/Llama-3SOME-8B-v2-GGUF", MessagesFormatterType.LLAMA_3],
|
83 |
+
"Ministral-8B-Instruct-2410-Q5_K_M.gguf": ["bartowski/Ministral-8B-Instruct-2410-GGUF", MessagesFormatterType.MISTRAL],
|
84 |
+
"mahou-1.5-mistral-nemo-12b-lorablated.Q4_K_M.gguf": ["nbeerbower/Mahou-1.5-mistral-nemo-12B-lorablated-GGUF", MessagesFormatterType.MISTRAL],
|
85 |
+
"Gemma2-Eclipse-9B.i1-Q4_K_M.gguf": ["mradermacher/Gemma2-Eclipse-9B-i1-GGUF", MessagesFormatterType.ALPACA],
|
86 |
+
"ldm_soup_Llama-3.1-8B-Inst.Q5_K_M.gguf": ["mradermacher/ldm_soup_Llama-3.1-8B-Inst-GGUF", MessagesFormatterType.LLAMA_3],
|
87 |
+
"L3.1-ChubbyBase-10B.i1-Q4_K_M.gguf": ["mradermacher/L3.1-ChubbyBase-10B-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
88 |
+
"MN-Tiramisu-12B.i1-Q4_K_M.gguf": ["mradermacher/MN-Tiramisu-12B-i1-GGUF", MessagesFormatterType.CHATML],
|
89 |
+
"llama-3.2-3b-instruct-uncensored-q6_k.gguf": ["nolynn/Llama-3.2-3B-Instruct-uncensored-Q6_K-GGUF", MessagesFormatterType.LLAMA_3],
|
90 |
+
"thea-3b-25r.i1-Q5_K_M.gguf": ["mradermacher/thea-3b-25r-i1-GGUF", MessagesFormatterType.LLAMA_3],
|
91 |
+
"Gemma-2-9B-It-SPPO-Iter3.i1-Q4_K_M.gguf": ["mradermacher/Gemma-2-9B-It-SPPO-Iter3-i1-GGUF", MessagesFormatterType.ALPACA],
|
92 |
+
"Qwenslerp3-14B.Q4_K_M.gguf": ["mradermacher/Qwenslerp3-14B-GGUF", MessagesFormatterType.OPEN_CHAT],
|
93 |
+
"magnum-v4-9b.Q4_K_M.gguf": ["mradermacher/magnum-v4-9b-GGUF", MessagesFormatterType.ALPACA],
|
94 |
+
"make_my_monster_grow-12b-model_stock-q4_k_m.gguf": ["DreadPoor/Make_My_Monster_Grow-12B-Model_Stock-Q4_K_M-GGUF", MessagesFormatterType.MISTRAL],
|
95 |
+
"emu_eggs-9b-model_stock-q4_k_m.gguf": ["DreadPoor/Emu_Eggs-9B-Model_Stock-Q4_K_M-GGUF", MessagesFormatterType.ALPACA],
|
96 |
"Aster-G2-9B-v1.Q4_K_S.gguf": ["mradermacher/Aster-G2-9B-v1-GGUF", MessagesFormatterType.ALPACA],
|
97 |
"nemo-12b-rp-merge.Q4_K_S.gguf": ["mradermacher/nemo-12b-rp-merge-GGUF", MessagesFormatterType.MISTRAL],
|
98 |
"SthenoMix3.3.Q5_K_M.gguf": ["mradermacher/SthenoMix3.3-GGUF", MessagesFormatterType.LLAMA_3],
|
|
|
820 |
"PHI 3": MessagesFormatterType.PHI_3,
|
821 |
"Autocoder": MessagesFormatterType.AUTOCODER,
|
822 |
"DeepSeek Coder v2": MessagesFormatterType.DEEP_SEEK_CODER_2,
|
823 |
+
"Gemma 2": MessagesFormatterType.GEMMA_2,
|
824 |
"Qwen2": MessagesFormatterType.OPEN_CHAT,
|
825 |
+
"Open Interpreter": MessagesFormatterType.OPEN_INTERPRETER,
|
826 |
+
"Mistral Tokenizer V1": mistral_v1_formatter,
|
827 |
+
"Mistral Tokenizer V2": mistral_v2_formatter,
|
828 |
+
"Mistral Tokenizer V3 - Tekken": mistral_v3_tekken_formatter,
|
829 |
}
|
830 |
# https://github.com/Maximilian-Winter/llama-cpp-agent
|
831 |
llm_languages = ["English", "Japanese", "Chinese", "Korean", "Spanish", "Portuguese", "German", "French", "Finnish", "Russian"]
|
|
|
1245 |
agent = LlamaCppAgent(
|
1246 |
provider,
|
1247 |
system_prompt=f"{system_message}",
|
1248 |
+
predefined_messages_formatter_type=chat_template if not isinstance(chat_template, MessagesFormatter) else None,
|
1249 |
+
custom_messages_formatter=chat_template if isinstance(chat_template, MessagesFormatter) else None,
|
1250 |
debug_output=False
|
1251 |
)
|
1252 |
|
|
|
1340 |
agent = LlamaCppAgent(
|
1341 |
provider,
|
1342 |
system_prompt=f"{system_message}",
|
1343 |
+
predefined_messages_formatter_type=chat_template if not isinstance(chat_template, MessagesFormatter) else None,
|
1344 |
+
custom_messages_formatter=chat_template if isinstance(chat_template, MessagesFormatter) else None,
|
1345 |
debug_output=False
|
1346 |
)
|
1347 |
|
|
|
1436 |
agent = LlamaCppAgent(
|
1437 |
provider,
|
1438 |
system_prompt=f"{system_message}",
|
1439 |
+
predefined_messages_formatter_type=chat_template if not isinstance(chat_template, MessagesFormatter) else None,
|
1440 |
+
custom_messages_formatter=chat_template if isinstance(chat_template, MessagesFormatter) else None,
|
1441 |
debug_output=False
|
1442 |
)
|
1443 |
|
lora_dict.json
CHANGED
@@ -1490,6 +1490,13 @@
|
|
1490 |
"https://civitai.com/models/844457",
|
1491 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0740f561-8808-425c-a4e0-90575f887262/width=450/34033551.jpeg"
|
1492 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1493 |
"MS_PDXL_AfterSex_Lite": [
|
1494 |
"after sex, cum, lying, cumdrip, ass, on stomach, on back, fucked silly, sweat, cum pool, bukkake, trembling",
|
1495 |
"Pony",
|
@@ -2120,6 +2127,13 @@
|
|
2120 |
"https://civitai.com/models/187744",
|
2121 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/96984154-3d8b-4b34-8cd6-3db03af93563/width=450/3359107.jpeg"
|
2122 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2123 |
"Side-by-Side_Cowgirl_position": [
|
2124 |
"",
|
2125 |
"Pony",
|
@@ -2176,6 +2190,13 @@
|
|
2176 |
"https://civitai.com/models/595321",
|
2177 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bc52e939-7385-4858-be93-dd370279d0ca/width=450/20952551.jpeg"
|
2178 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2179 |
"Squatting_PonyXL_v1": [
|
2180 |
"squatting / legs together, from below,",
|
2181 |
"Pony",
|
@@ -2967,6 +2988,13 @@
|
|
2967 |
"https://civitai.com/models/526774",
|
2968 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b40d42c4-66df-4c6e-9351-2b0343007979/width=450/16455415.jpeg"
|
2969 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2970 |
"armp1tt1ckl3": [
|
2971 |
"armp1tt1ckl3",
|
2972 |
"Pony",
|
@@ -3975,6 +4003,20 @@
|
|
3975 |
"https://civitai.com/models/628775",
|
3976 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83566548-b845-4d8b-a0d0-be8cc8822a81/width=450/23142557.jpeg"
|
3977 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3978 |
"dawa": [
|
3979 |
"dawa",
|
3980 |
"SDXL 1.0",
|
@@ -4654,6 +4696,20 @@
|
|
4654 |
"https://civitai.com/models/462635",
|
4655 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8cac72e3-3107-44ba-b860-f0b0eed4d8a3/width=450/12869927.jpeg"
|
4656 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4657 |
"haraboko_pony_V2_0": [
|
4658 |
"stomach bulge",
|
4659 |
"Pony",
|
@@ -4661,6 +4717,13 @@
|
|
4661 |
"https://civitai.com/models/486122",
|
4662 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b6735506-c5c4-4a3a-8796-c1f86bcc7654/width=450/16987795.jpeg"
|
4663 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4664 |
"harmonicaSY": [
|
4665 |
"harmonica",
|
4666 |
"SDXL 1.0",
|
@@ -4696,6 +4759,20 @@
|
|
4696 |
"https://civitai.com/models/412943",
|
4697 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e9a0d288-32fe-40a5-8576-3056d4562dfe/width=450/10426060.jpeg"
|
4698 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4699 |
"hennnachoco_face_XL-v1": [
|
4700 |
"looking at viewer,close-up,blurry background",
|
4701 |
"SDXL 1.0",
|
@@ -4794,6 +4871,62 @@
|
|
4794 |
"https://civitai.com/models/498731",
|
4795 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/06a0dc3a-42ba-42b5-9ea9-d6b6faa3543b/width=450/14812284.jpeg"
|
4796 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4797 |
"hotpants_XL_V1_0": [
|
4798 |
"hotpants",
|
4799 |
"SDXL 1.0",
|
@@ -4850,6 +4983,20 @@
|
|
4850 |
"https://civitai.com/models/363398",
|
4851 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e8f31f60-8949-42da-b740-c6541e0d6d9b/width=450/8398353.jpeg"
|
4852 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4853 |
"implied_fellatio_v0_1-pony": [
|
4854 |
"implied fellatio",
|
4855 |
"Pony",
|
@@ -4955,6 +5102,20 @@
|
|
4955 |
"https://civitai.com/models/445063",
|
4956 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9555de99-1fba-4af8-9cb2-f03f7ae6e094/width=450/32416800.jpeg"
|
4957 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4958 |
"jyojimizugi_Pony_V1_0": [
|
4959 |
"jyojimizugi,bikini,frills",
|
4960 |
"Pony",
|
@@ -4990,6 +5151,13 @@
|
|
4990 |
"https://civitai.com/models/234887",
|
4991 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4d94a5a1-b7d2-40b7-b864-f112b26e09a7/width=450/4642510.jpeg"
|
4992 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4993 |
"kakigoori_pony_V1_0": [
|
4994 |
"kakigoori / shaved ice / spoon",
|
4995 |
"Pony",
|
@@ -5137,6 +5305,13 @@
|
|
5137 |
"https://civitai.com/models/574993",
|
5138 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e6148d75-f33f-4f56-8203-4d88a48231e2/width=450/21439541.jpeg"
|
5139 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5140 |
"kuro_gyaru_pony_V1_0": [
|
5141 |
"kuro gyaru / dark skin / blonde hair",
|
5142 |
"Pony",
|
@@ -5487,6 +5662,13 @@
|
|
5487 |
"https://civitai.com/models/549761",
|
5488 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5059fb4e-8cb0-4870-babe-2e62d93ec592/width=450/18112025.jpeg"
|
5489 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5490 |
"matsubamuzushi_pony_V1_0": [
|
5491 |
"matsubakuzushi, sex, leg lift, leg up, 1boy, 1girl,lying",
|
5492 |
"Pony",
|
@@ -5795,6 +5977,13 @@
|
|
5795 |
"https://civitai.com/models/551712",
|
5796 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b17f1a24-390b-4a5c-a4a1-bc479b627177/width=450/18108188.jpeg"
|
5797 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5798 |
"ojou-sama_pose__pony": [
|
5799 |
"ojou-sama_pose ",
|
5800 |
"Pony",
|
@@ -5872,6 +6061,20 @@
|
|
5872 |
"https://civitai.com/models/503381",
|
5873 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d376245b-d55f-4635-8a68-c7317268f1e9/width=450/15093929.jpeg"
|
5874 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5875 |
"onimai_pony": [
|
5876 |
"onimai",
|
5877 |
"Pony",
|
@@ -5970,6 +6173,13 @@
|
|
5970 |
"https://civitai.com/models/454066",
|
5971 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d73c20b4-a1bb-4c9d-88ba-150be2e49cb9/width=450/14888108.jpeg"
|
5972 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5973 |
"panties_aside_XL_V1_0": [
|
5974 |
"panties / panties aside / pussy / anal",
|
5975 |
"SDXL 1.0",
|
@@ -6166,6 +6376,13 @@
|
|
6166 |
"https://civitai.com/models/159333",
|
6167 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4b04073f-f9c0-446a-9a2b-b8a818cf96f8/width=450/9737393.jpeg"
|
6168 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6169 |
"pointing_a31-3": [
|
6170 |
"pointing, chibi, fang, open mouth,",
|
6171 |
"SDXL 1.0",
|
@@ -6558,6 +6775,13 @@
|
|
6558 |
"https://civitai.com/models/473507",
|
6559 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e0e9a011-421e-4d30-afaa-eb113ed9653c/width=450/13448210.jpeg"
|
6560 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6561 |
"rei_no_pool_PONY_V1": [
|
6562 |
"reinopool, pool, window, scenery, indoors, tiles, water, tile floor, pool ladder, plant",
|
6563 |
"Pony",
|
@@ -6824,6 +7048,20 @@
|
|
6824 |
"https://civitai.com/models/600296",
|
6825 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3ac9e35e-3e3f-492e-a81f-9791ff6e6914/width=450/21281952.jpeg"
|
6826 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6827 |
"sfw1": [
|
6828 |
"",
|
6829 |
"Pony",
|
@@ -6901,6 +7139,13 @@
|
|
6901 |
"https://civitai.com/models/102603",
|
6902 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ce030fc2-c6c8-4153-ae51-5fa6fbc51b8e/width=450/20563893.jpeg"
|
6903 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6904 |
"sidepositionxl16": [
|
6905 |
"side,scenery,part of landscape",
|
6906 |
"SDXL 1.0",
|
@@ -6999,6 +7244,13 @@
|
|
6999 |
"https://civitai.com/models/552152",
|
7000 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9ee78490-d6c5-45c1-a1a0-92cb965faa10/width=450/18135129.jpeg"
|
7001 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7002 |
"soccer_uniform_pony_V1_1": [
|
7003 |
"soccer uniform / soccer",
|
7004 |
"Pony",
|
@@ -7104,6 +7356,13 @@
|
|
7104 |
"https://civitai.com/models/273357",
|
7105 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d529909d-2115-4e32-8226-28537d5b1763/width=450/8178754.jpeg"
|
7106 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7107 |
"ss_mss_pony-000005": [
|
7108 |
"ss_mss, miniature_school_swimsuit, groin, highleg, partially visible vulva, wedgie, undersized clothes, nipples, cleavage",
|
7109 |
"Pony",
|
@@ -7118,6 +7377,20 @@
|
|
7118 |
"https://civitai.com/models/434763",
|
7119 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1434e8b5-0aa1-46b4-a366-fc5271a922a3/width=450/12693104.jpeg"
|
7120 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7121 |
"stradding_chair_XL": [
|
7122 |
"",
|
7123 |
"SDXL 1.0",
|
@@ -7209,6 +7482,13 @@
|
|
7209 |
"https://civitai.com/models/461839",
|
7210 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f1f48385-5230-4eab-ba2a-080c1bb2af1a/width=450/13712411.jpeg"
|
7211 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7212 |
"sukumizutan_XL_v1": [
|
7213 |
"sukumizutan, tanlines, tan",
|
7214 |
"SDXL 1.0",
|
@@ -7643,6 +7923,13 @@
|
|
7643 |
"https://civitai.com/models/563723",
|
7644 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1cdf9e3a-9412-4a37-aea6-01524c61f4ce/width=450/18879048.jpeg"
|
7645 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7646 |
"under_the_table_blowjob": [
|
7647 |
"under_the_table_blowjob",
|
7648 |
"Pony",
|
@@ -8098,6 +8385,27 @@
|
|
8098 |
"https://civitai.com/models/454664",
|
8099 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e81c4662-b60a-4169-a30b-31753f93c7e7/width=450/15517389.jpeg"
|
8100 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8101 |
"yukata_pony_V1_0": [
|
8102 |
" jyojifuku, yukata, japanese clothes, floral print,hair ornament,sandals",
|
8103 |
"Pony",
|
|
|
1490 |
"https://civitai.com/models/844457",
|
1491 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0740f561-8808-425c-a4e0-90575f887262/width=450/34033551.jpeg"
|
1492 |
],
|
1493 |
+
"MORTARHEADD_like_mecha_v1_2": [
|
1494 |
+
"MORTARHEADD / MH-POSE / MH-BUSTER / MH-KOG / MH-LED-MIRAGE / MH-Engage-SR1 / MH-the-BANG / MH-Neptune / MH-BTK",
|
1495 |
+
"SDXL 1.0",
|
1496 |
+
"FSS Mortar headd Like mecha <The Five Star Stories>",
|
1497 |
+
"https://civitai.com/models/844457",
|
1498 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2c156011-ae37-476b-9c88-b7ee614b57c3/width=450/35788486.jpeg"
|
1499 |
+
],
|
1500 |
"MS_PDXL_AfterSex_Lite": [
|
1501 |
"after sex, cum, lying, cumdrip, ass, on stomach, on back, fucked silly, sweat, cum pool, bukkake, trembling",
|
1502 |
"Pony",
|
|
|
2127 |
"https://civitai.com/models/187744",
|
2128 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/96984154-3d8b-4b34-8cd6-3db03af93563/width=450/3359107.jpeg"
|
2129 |
],
|
2130 |
+
"ShungikuTenUdon_Pony_V1": [
|
2131 |
+
"(shungikutenudon) , 1girl, solo, breasts, nipples, spread legs, spread pussy, erection clitoris, clitoris, clitoral foreskin, cute pussy, enlarged labia, developed inner labia, urethra,spread urethra, pussy juice, close-up pussy, gaping, cervix, / (close-up clitoris), (close-up layers),(Multiple layers), (multiple views), simple bacground, zoom layer, close-up layer,",
|
2132 |
+
"Pony",
|
2133 |
+
"Hentai Huge Clitoris Spread Pussy (shungiku tenudon) Pony XL | \u5de8\u5927\u30af\u30ea\u30c8\u30ea\u30b9 \u307e\u3093\u3053\u304f\u3071\u3041 (\u6625\u83ca\u5929\u3046\u3069\u3093)",
|
2134 |
+
"https://civitai.com/models/868507",
|
2135 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e4a41d92-8bae-404a-b8df-d12a2687b160/width=450/35391164.jpeg"
|
2136 |
+
],
|
2137 |
"Side-by-Side_Cowgirl_position": [
|
2138 |
"",
|
2139 |
"Pony",
|
|
|
2190 |
"https://civitai.com/models/595321",
|
2191 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bc52e939-7385-4858-be93-dd370279d0ca/width=450/20952551.jpeg"
|
2192 |
],
|
2193 |
+
"SpreadPussy_STU_Pony_V2": [
|
2194 |
+
"(dilation Vagina),(Put fingers in Vagina), (spread Vagina wide), (Perfect hands),cervix, Vagina,spread legs, erection clitoris, clitoris, clitoral foreskin, enlarged labia, developed inner labia, urethra,spread urethra, pussy juice, close-up pussy, cum in pussy, cum in anal, after sex, cum string, cum drip, cum pool, (close-up clitoris), (close-up layers:1.2),(Multiple layers:1.2), (multiple views:1.2), simple bacground, zoom layer, close-up layer,",
|
2195 |
+
"Pony",
|
2196 |
+
"Hentai Pussy inspection (Gaping Pussy Opened in Fingers) Pony XL | \u307e\u3093\u3053\u691c\u67fb\uff08\u5965\u307e\u3067\u6307\u3092\u5165\u308c\u3066\u304f\u3071\u3041\u2665\uff09",
|
2197 |
+
"https://civitai.com/models/870724",
|
2198 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/be0c3a9b-f287-47dd-9d27-8e1650add4df/width=450/35523008.jpeg"
|
2199 |
+
],
|
2200 |
"Squatting_PonyXL_v1": [
|
2201 |
"squatting / legs together, from below,",
|
2202 |
"Pony",
|
|
|
2988 |
"https://civitai.com/models/526774",
|
2989 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b40d42c4-66df-4c6e-9351-2b0343007979/width=450/16455415.jpeg"
|
2990 |
],
|
2991 |
+
"armcannon_XL_v1": [
|
2992 |
+
"arm cannon",
|
2993 |
+
"SDXL 1.0",
|
2994 |
+
"arm cannon / \u30a2\u30fc\u30e0\u30ad\u30e3\u30ce\u30f3 / \u30ed\u30c3\u30af\u30d0\u30b9\u30bf\u30fc / \u30b5\u30a4\u30b3\u30ac\u30f3",
|
2995 |
+
"https://civitai.com/models/870619",
|
2996 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6fd8ed3c-794d-4c56-a994-6fa45a5b09ca/width=450/35509987.jpeg"
|
2997 |
+
],
|
2998 |
"armp1tt1ckl3": [
|
2999 |
"armp1tt1ckl3",
|
3000 |
"Pony",
|
|
|
4003 |
"https://civitai.com/models/628775",
|
4004 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83566548-b845-4d8b-a0d0-be8cc8822a81/width=450/23142557.jpeg"
|
4005 |
],
|
4006 |
+
"danmen_illustrious_V1_0": [
|
4007 |
+
"danmen,penis,vaginal / uterus / x-ray / cross-section / internal cumshot",
|
4008 |
+
"Illustrious",
|
4009 |
+
"\u65ad\u9762\u56f3/uterus",
|
4010 |
+
"https://civitai.com/models/853101",
|
4011 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/441cbbf7-aa73-4991-b9aa-21432686b715/width=450/36094538.jpeg"
|
4012 |
+
],
|
4013 |
+
"danmen_pony_V1_0": [
|
4014 |
+
" danmen, sex, vaginal / uterus / cross-section / x-ray",
|
4015 |
+
"Pony",
|
4016 |
+
"\u65ad\u9762\u56f3/uterus",
|
4017 |
+
"https://civitai.com/models/853101",
|
4018 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9bbdb650-67f6-4b7a-b020-2f1b15363919/width=450/34507990.jpeg"
|
4019 |
+
],
|
4020 |
"dawa": [
|
4021 |
"dawa",
|
4022 |
"SDXL 1.0",
|
|
|
4696 |
"https://civitai.com/models/462635",
|
4697 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8cac72e3-3107-44ba-b860-f0b0eed4d8a3/width=450/12869927.jpeg"
|
4698 |
],
|
4699 |
+
"haraboko_XL_V1_0": [
|
4700 |
+
"extrem insertion, stomach bulge",
|
4701 |
+
"SDXL 1.0",
|
4702 |
+
"\u8179\u307c\u3053/extrem insertion(XL,pony)",
|
4703 |
+
"https://civitai.com/models/486122",
|
4704 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b1388bbf-c16c-4165-b32f-b63ee7d7ed14/width=450/33120289.jpeg"
|
4705 |
+
],
|
4706 |
+
"haraboko_XL_illustrious_V1_0": [
|
4707 |
+
" extrem insertion, stomach bulge",
|
4708 |
+
"Illustrious",
|
4709 |
+
"\u8179\u307c\u3053/extrem insertion(XL,pony)",
|
4710 |
+
"https://civitai.com/models/486122",
|
4711 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/031fb13c-3d5e-4ddf-b49f-1661b8db9c09/width=450/35521696.jpeg"
|
4712 |
+
],
|
4713 |
"haraboko_pony_V2_0": [
|
4714 |
"stomach bulge",
|
4715 |
"Pony",
|
|
|
4717 |
"https://civitai.com/models/486122",
|
4718 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b6735506-c5c4-4a3a-8796-c1f86bcc7654/width=450/16987795.jpeg"
|
4719 |
],
|
4720 |
+
"haraboko_pony_V3_0": [
|
4721 |
+
"extrem insertion,stomach bulge",
|
4722 |
+
"Pony",
|
4723 |
+
"\u8179\u307c\u3053/extrem insertion(XL,pony)",
|
4724 |
+
"https://civitai.com/models/486122",
|
4725 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/50cfd157-5340-48d2-9189-d1332391a82a/width=450/33111898.jpeg"
|
4726 |
+
],
|
4727 |
"harmonicaSY": [
|
4728 |
"harmonica",
|
4729 |
"SDXL 1.0",
|
|
|
4759 |
"https://civitai.com/models/412943",
|
4760 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e9a0d288-32fe-40a5-8576-3056d4562dfe/width=450/10426060.jpeg"
|
4761 |
],
|
4762 |
+
"heart_hands_XL_illustrious_V1_0": [
|
4763 |
+
"heart hands",
|
4764 |
+
"Illustrious",
|
4765 |
+
"\u624b\u30cf\u30fc\u30c8/heart hands",
|
4766 |
+
"https://civitai.com/models/870734",
|
4767 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6e0665ea-3861-42f5-9f21-ad8d4aa7cb37/width=450/35520723.jpeg"
|
4768 |
+
],
|
4769 |
+
"hekohakost2": [
|
4770 |
+
"koshi_heko_standing, hkhkstanding, (motion lines, sound effects:1.3) / koshi_heko_squatting, hkhksquatting, (motion lines, sound effects:1.3), squatting / koshi_heko_back, hkhkback, (motion lines, sound effects:1.3) / koshi_heko_lying, hkhklying, (motion lines, sound effects:1.3), lying",
|
4771 |
+
"Pony",
|
4772 |
+
"(CONCEPT) Hip thrust / \u8170\u30d8\u30b3\u30fb\u30c1\u30f3\u5a9a\u3073\u30c0\u30f3\u30b9",
|
4773 |
+
"https://civitai.com/models/869186",
|
4774 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9a480935-7849-4ebd-8a71-a428cd5b14e1/width=450/35459697.jpeg"
|
4775 |
+
],
|
4776 |
"hennnachoco_face_XL-v1": [
|
4777 |
"looking at viewer,close-up,blurry background",
|
4778 |
"SDXL 1.0",
|
|
|
4871 |
"https://civitai.com/models/498731",
|
4872 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/06a0dc3a-42ba-42b5-9ea9-d6b6faa3543b/width=450/14812284.jpeg"
|
4873 |
],
|
4874 |
+
"hotarueye_xl_tareme1_v10": [
|
4875 |
+
"",
|
4876 |
+
"Pony",
|
4877 |
+
"[SDXL] Tareme(\u30bf\u30ec\u76ee) set 1",
|
4878 |
+
"https://civitai.com/models/881360",
|
4879 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5c1447f9-fd31-4907-833d-a2e21b4eb2fe/width=450/36138850.jpeg"
|
4880 |
+
],
|
4881 |
+
"hotarueye_xl_tareme2_v10": [
|
4882 |
+
"",
|
4883 |
+
"Pony",
|
4884 |
+
"[SDXL] Tareme(\u30bf\u30ec\u76ee) set 1",
|
4885 |
+
"https://civitai.com/models/881360",
|
4886 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c432f738-1d46-4a74-b8df-b1a2d5113c88/width=450/36138998.jpeg"
|
4887 |
+
],
|
4888 |
+
"hotarueye_xl_tareme3_v10": [
|
4889 |
+
"",
|
4890 |
+
"Pony",
|
4891 |
+
"[SDXL] Tareme(\u30bf\u30ec\u76ee) set 1",
|
4892 |
+
"https://civitai.com/models/881360",
|
4893 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8fb96219-49ba-42d0-a21e-064ab8795b76/width=450/36139352.jpeg"
|
4894 |
+
],
|
4895 |
+
"hotarueye_xl_tareme4_v10": [
|
4896 |
+
"",
|
4897 |
+
"Pony",
|
4898 |
+
"[SDXL] Tareme(\u30bf\u30ec\u76ee) set 1",
|
4899 |
+
"https://civitai.com/models/881360",
|
4900 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/202efac0-15b4-4fa4-9b43-95bff83ab3d4/width=450/36139463.jpeg"
|
4901 |
+
],
|
4902 |
+
"hotarueye_xl_tsurime1_v10": [
|
4903 |
+
"",
|
4904 |
+
"Pony",
|
4905 |
+
"[SDXL] Tsurime(\u540a\u308a\u76ee) set 1",
|
4906 |
+
"https://civitai.com/models/881323",
|
4907 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b071a8a7-5b3a-447b-ac3d-fb4ca00ef696/width=450/36137296.jpeg"
|
4908 |
+
],
|
4909 |
+
"hotarueye_xl_tsurime2_v10": [
|
4910 |
+
"",
|
4911 |
+
"Pony",
|
4912 |
+
"[SDXL] Tsurime(\u540a\u308a\u76ee) set 1",
|
4913 |
+
"https://civitai.com/models/881323",
|
4914 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/597d6089-ceba-492a-bdf1-b99dfd50f6fb/width=450/36137387.jpeg"
|
4915 |
+
],
|
4916 |
+
"hotarueye_xl_tsurime3_v10": [
|
4917 |
+
"",
|
4918 |
+
"Pony",
|
4919 |
+
"[SDXL] Tsurime(\u540a\u308a\u76ee) set 1",
|
4920 |
+
"https://civitai.com/models/881323",
|
4921 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/2881d878-991f-46b6-b622-c8e8f07614dc/width=450/36137559.jpeg"
|
4922 |
+
],
|
4923 |
+
"hotarueye_xl_tsurime4_v10": [
|
4924 |
+
"",
|
4925 |
+
"Pony",
|
4926 |
+
"[SDXL] Tsurime(\u540a\u308a\u76ee) set 1",
|
4927 |
+
"https://civitai.com/models/881323",
|
4928 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cd106f42-92fe-4b8b-92cb-918ed9dbfdd2/width=450/36137786.jpeg"
|
4929 |
+
],
|
4930 |
"hotpants_XL_V1_0": [
|
4931 |
"hotpants",
|
4932 |
"SDXL 1.0",
|
|
|
4983 |
"https://civitai.com/models/363398",
|
4984 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e8f31f60-8949-42da-b740-c6541e0d6d9b/width=450/8398353.jpeg"
|
4985 |
],
|
4986 |
+
"imminent_penetration_illustrious_V1_0": [
|
4987 |
+
"imminent penetration, penis, blush, 1boy, erection,speead legs",
|
4988 |
+
"Illustrious",
|
4989 |
+
"\u633f\u5165\u524d/ imminent penetration",
|
4990 |
+
"https://civitai.com/models/856070",
|
4991 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/51e16b51-8225-41ab-a951-dd3e459def6b/width=450/36030387.jpeg"
|
4992 |
+
],
|
4993 |
+
"imminent_penetration_pony_V1_0": [
|
4994 |
+
" imminent penetration,penis",
|
4995 |
+
"Pony",
|
4996 |
+
"\u633f\u5165\u524d/ imminent penetration",
|
4997 |
+
"https://civitai.com/models/856070",
|
4998 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/61c8e398-0d48-4dac-ae4d-d29c77b87457/width=450/34669225.jpeg"
|
4999 |
+
],
|
5000 |
"implied_fellatio_v0_1-pony": [
|
5001 |
"implied fellatio",
|
5002 |
"Pony",
|
|
|
5102 |
"https://civitai.com/models/445063",
|
5103 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9555de99-1fba-4af8-9cb2-f03f7ae6e094/width=450/32416800.jpeg"
|
5104 |
],
|
5105 |
+
"jyojifuku_XL_illustrious_V1_0": [
|
5106 |
+
" jyojifuku, print clothes, pastel color clothes,shirt, skirt, thighhighs,backpack",
|
5107 |
+
"Illustrious",
|
5108 |
+
"\u5973\u5150\u670d/girl's clothes(XL,Pony)",
|
5109 |
+
"https://civitai.com/models/445063",
|
5110 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cc797a2d-28f4-467d-9021-7379616e1ea1/width=450/35071752.jpeg"
|
5111 |
+
],
|
5112 |
+
"jyojifuku_pony_V2_1": [
|
5113 |
+
" jyojifuku, print clothes,pastel color clothes, shirt, skirt, thighhighs / panties / socks / backpack / shoes",
|
5114 |
+
"Pony",
|
5115 |
+
"\u5973\u5150\u670d/girl's clothes(XL,Pony)",
|
5116 |
+
"https://civitai.com/models/445063",
|
5117 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4d912b6a-5390-4451-b837-dac74009a0a5/width=450/32545900.jpeg"
|
5118 |
+
],
|
5119 |
"jyojimizugi_Pony_V1_0": [
|
5120 |
"jyojimizugi,bikini,frills",
|
5121 |
"Pony",
|
|
|
5151 |
"https://civitai.com/models/234887",
|
5152 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4d94a5a1-b7d2-40b7-b864-f112b26e09a7/width=450/4642510.jpeg"
|
5153 |
],
|
5154 |
+
"kakefuton_pony_V1": [
|
5155 |
+
" futon, pillow, closed eyes, bed, sleeping, lying, under covers, blanket, ",
|
5156 |
+
"Pony",
|
5157 |
+
"\u639b\u3051\u5e03\u56e3 / comforter PONY",
|
5158 |
+
"https://civitai.com/models/884844",
|
5159 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e74e1575-7eb1-41a7-8e8e-0371361904f7/width=450/36347575.jpeg"
|
5160 |
+
],
|
5161 |
"kakigoori_pony_V1_0": [
|
5162 |
"kakigoori / shaved ice / spoon",
|
5163 |
"Pony",
|
|
|
5305 |
"https://civitai.com/models/574993",
|
5306 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e6148d75-f33f-4f56-8203-4d88a48231e2/width=450/21439541.jpeg"
|
5307 |
],
|
5308 |
+
"kuro_gyaru_XL_illustrious_V1_0": [
|
5309 |
+
"kuro gyaru, dark skin, blonde hair",
|
5310 |
+
"Illustrious",
|
5311 |
+
"\u9ed2\u30ae\u30e3\u30eb/Black Gal(XL,pony)",
|
5312 |
+
"https://civitai.com/models/574993",
|
5313 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4cb23d9a-ae9b-4b4a-9066-c94c23f7180c/width=450/35412051.jpeg"
|
5314 |
+
],
|
5315 |
"kuro_gyaru_pony_V1_0": [
|
5316 |
"kuro gyaru / dark skin / blonde hair",
|
5317 |
"Pony",
|
|
|
5662 |
"https://civitai.com/models/549761",
|
5663 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5059fb4e-8cb0-4870-babe-2e62d93ec592/width=450/18112025.jpeg"
|
5664 |
],
|
5665 |
+
"mating_press_illustrious_V1_0": [
|
5666 |
+
"mating press, penis, sex, 1boy, ass, vaginal, testicles,anus, lying,cum",
|
5667 |
+
"Illustrious",
|
5668 |
+
"\u7a2e\u4ed8\u3051\u30d7\u30ec\u30b9/mating press",
|
5669 |
+
"https://civitai.com/models/866324",
|
5670 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5295fcb9-8f85-4ce7-af66-c14357e55014/width=450/36296038.jpeg"
|
5671 |
+
],
|
5672 |
"matsubamuzushi_pony_V1_0": [
|
5673 |
"matsubakuzushi, sex, leg lift, leg up, 1boy, 1girl,lying",
|
5674 |
"Pony",
|
|
|
5977 |
"https://civitai.com/models/551712",
|
5978 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b17f1a24-390b-4a5c-a4a1-bc479b627177/width=450/18108188.jpeg"
|
5979 |
],
|
5980 |
+
"ohogao_XL_illustrious_V1_0": [
|
5981 |
+
"ohogao",
|
5982 |
+
"Illustrious",
|
5983 |
+
"\u304a\u307b\u9854/ohogao",
|
5984 |
+
"https://civitai.com/models/870999",
|
5985 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/62037f5d-ec33-4cd7-a4e7-d731df042c13/width=450/35536765.jpeg"
|
5986 |
+
],
|
5987 |
"ojou-sama_pose__pony": [
|
5988 |
"ojou-sama_pose ",
|
5989 |
"Pony",
|
|
|
6061 |
"https://civitai.com/models/503381",
|
6062 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d376245b-d55f-4635-8a68-c7317268f1e9/width=450/15093929.jpeg"
|
6063 |
],
|
6064 |
+
"onedari_illustrious_V1_0": [
|
6065 |
+
"onedari,spread ass",
|
6066 |
+
"Illustrious",
|
6067 |
+
"\u304a\u306d\u3060\u308a\u306e\u30dd\u30fc\u30b9/spread ass",
|
6068 |
+
"https://civitai.com/models/823132",
|
6069 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e30a145a-6408-4fbc-a4e3-b44a2f2b55cc/width=450/36044323.jpeg"
|
6070 |
+
],
|
6071 |
+
"onedari_pony_V1_0": [
|
6072 |
+
" onedari, ass,spread ass",
|
6073 |
+
"Pony",
|
6074 |
+
"\u304a\u306d\u3060\u308a\u306e\u30dd\u30fc\u30b9/spread ass",
|
6075 |
+
"https://civitai.com/models/823132",
|
6076 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d9a4f767-9a70-4828-a418-0eeabe52d378/width=450/32736802.jpeg"
|
6077 |
+
],
|
6078 |
"onimai_pony": [
|
6079 |
"onimai",
|
6080 |
"Pony",
|
|
|
6173 |
"https://civitai.com/models/454066",
|
6174 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d73c20b4-a1bb-4c9d-88ba-150be2e49cb9/width=450/14888108.jpeg"
|
6175 |
],
|
6176 |
+
"paleface_xl_v10": [
|
6177 |
+
"",
|
6178 |
+
"Pony",
|
6179 |
+
"[SDXL] Paled face / \u9752\u3056\u3081\u305f\u9854",
|
6180 |
+
"https://civitai.com/models/884477",
|
6181 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1c789f11-fade-4f80-a282-0d29ebdbc271/width=450/36325889.jpeg"
|
6182 |
+
],
|
6183 |
"panties_aside_XL_V1_0": [
|
6184 |
"panties / panties aside / pussy / anal",
|
6185 |
"SDXL 1.0",
|
|
|
6376 |
"https://civitai.com/models/159333",
|
6377 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4b04073f-f9c0-446a-9a2b-b8a818cf96f8/width=450/9737393.jpeg"
|
6378 |
],
|
6379 |
+
"playing_with_own_hair_XL_illustrious_V1_0": [
|
6380 |
+
" playing with own hair",
|
6381 |
+
"Illustrious",
|
6382 |
+
"\u9aea\u3044\u3058\u308a/playing with own hair",
|
6383 |
+
"https://civitai.com/models/869504",
|
6384 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7deb7e3b-7fbe-4616-b973-87b58cdb562e/width=450/35502284.jpeg"
|
6385 |
+
],
|
6386 |
"pointing_a31-3": [
|
6387 |
"pointing, chibi, fang, open mouth,",
|
6388 |
"SDXL 1.0",
|
|
|
6775 |
"https://civitai.com/models/473507",
|
6776 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e0e9a011-421e-4d30-afaa-eb113ed9653c/width=450/13448210.jpeg"
|
6777 |
],
|
6778 |
+
"rei_no_kabe_pony_V2": [
|
6779 |
+
"reinokabe, checkered wall, checkered background, english text, blue theme, meme,",
|
6780 |
+
"Pony",
|
6781 |
+
"\u4f8b\u306e\u58c1 rei no kabe PONY",
|
6782 |
+
"https://civitai.com/models/473507",
|
6783 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ef4388c1-c6a1-49b5-8e12-230fd963ec6c/width=450/35420263.jpeg"
|
6784 |
+
],
|
6785 |
"rei_no_pool_PONY_V1": [
|
6786 |
"reinopool, pool, window, scenery, indoors, tiles, water, tile floor, pool ladder, plant",
|
6787 |
"Pony",
|
|
|
7048 |
"https://civitai.com/models/600296",
|
7049 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3ac9e35e-3e3f-492e-a81f-9791ff6e6914/width=450/21281952.jpeg"
|
7050 |
],
|
7051 |
+
"sex_from_behind_XL_illustrious_V1_0": [
|
7052 |
+
" sex from behind, 1boy, vaginal, penis",
|
7053 |
+
"Illustrious",
|
7054 |
+
"\u30d0\u30c3\u30af\u30bb\u30c3\u30af\u30b9/sex from behind(XL,pony)",
|
7055 |
+
"https://civitai.com/models/868502",
|
7056 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bae209c8-bf57-4c55-b0b1-46c046040b7a/width=450/35562464.jpeg"
|
7057 |
+
],
|
7058 |
+
"sex_from_behind_pony_V1_0": [
|
7059 |
+
"sex from behind",
|
7060 |
+
"Pony",
|
7061 |
+
"\u30d0\u30c3\u30af\u30bb\u30c3\u30af\u30b9/sex from behind(XL,pony)",
|
7062 |
+
"https://civitai.com/models/868502",
|
7063 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a1f8b538-c071-44fb-b54b-6094de0999cf/width=450/35389190.jpeg"
|
7064 |
+
],
|
7065 |
"sfw1": [
|
7066 |
"",
|
7067 |
"Pony",
|
|
|
7139 |
"https://civitai.com/models/102603",
|
7140 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ce030fc2-c6c8-4153-ae51-5fa6fbc51b8e/width=450/20563893.jpeg"
|
7141 |
],
|
7142 |
+
"side_ponytail_pony_V1_0": [
|
7143 |
+
"side ponytail",
|
7144 |
+
"Pony",
|
7145 |
+
"\u30b5\u30a4\u30c9\u30dd\u30cb\u30fc\u30c6\u30a4\u30eb/side ponytail",
|
7146 |
+
"https://civitai.com/models/867848",
|
7147 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c6588028-00de-47e4-96cf-bd4c562af36c/width=450/35345790.jpeg"
|
7148 |
+
],
|
7149 |
"sidepositionxl16": [
|
7150 |
"side,scenery,part of landscape",
|
7151 |
"SDXL 1.0",
|
|
|
7244 |
"https://civitai.com/models/552152",
|
7245 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9ee78490-d6c5-45c1-a1a0-92cb965faa10/width=450/18135129.jpeg"
|
7246 |
],
|
7247 |
+
"sob_XL_illustrious_V1_0": [
|
7248 |
+
"sob,tears,hands on eyes",
|
7249 |
+
"Illustrious",
|
7250 |
+
"\u6ce3\u304d\u3058\u3083\u304f\u308b/sob",
|
7251 |
+
"https://civitai.com/models/871126",
|
7252 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/70ff31df-699e-4e9a-821e-d50b962a3a93/width=450/35544209.jpeg"
|
7253 |
+
],
|
7254 |
"soccer_uniform_pony_V1_1": [
|
7255 |
"soccer uniform / soccer",
|
7256 |
"Pony",
|
|
|
7356 |
"https://civitai.com/models/273357",
|
7357 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d529909d-2115-4e32-8226-28537d5b1763/width=450/8178754.jpeg"
|
7358 |
],
|
7359 |
+
"ss_mss_illustrious": [
|
7360 |
+
"ss_mss, miniature_school_swimsuit, groin, highleg, partially visible vulva, wedgie, undersized clothes, nipples, cleavage,",
|
7361 |
+
"Illustrious",
|
7362 |
+
"Miniature School Swimsuit",
|
7363 |
+
"https://civitai.com/models/575540",
|
7364 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0552741b-1fca-4960-a483-75dacc8404d7/width=450/35919632.jpeg"
|
7365 |
+
],
|
7366 |
"ss_mss_pony-000005": [
|
7367 |
"ss_mss, miniature_school_swimsuit, groin, highleg, partially visible vulva, wedgie, undersized clothes, nipples, cleavage",
|
7368 |
"Pony",
|
|
|
7377 |
"https://civitai.com/models/434763",
|
7378 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1434e8b5-0aa1-46b4-a366-fc5271a922a3/width=450/12693104.jpeg"
|
7379 |
],
|
7380 |
+
"stirring_Pony_v1": [
|
7381 |
+
"stirring",
|
7382 |
+
"Pony",
|
7383 |
+
"[SDXL&Pony] stirring / \u934b\u304b\u304d\u6df7\u305c",
|
7384 |
+
"https://civitai.com/models/863366",
|
7385 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/995b7ed1-f3c2-47b7-babd-524d2aec81b7/width=450/35858737.jpeg"
|
7386 |
+
],
|
7387 |
+
"stirring_XL_v1": [
|
7388 |
+
"stirring",
|
7389 |
+
"Illustrious",
|
7390 |
+
"[SDXL&Pony] stirring / \u934b\u304b\u304d\u6df7\u305c",
|
7391 |
+
"https://civitai.com/models/863366",
|
7392 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/31072869-41b7-4efd-b34a-8573ba7e92d5/width=450/35074986.jpeg"
|
7393 |
+
],
|
7394 |
"stradding_chair_XL": [
|
7395 |
"",
|
7396 |
"SDXL 1.0",
|
|
|
7482 |
"https://civitai.com/models/461839",
|
7483 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f1f48385-5230-4eab-ba2a-080c1bb2af1a/width=450/13712411.jpeg"
|
7484 |
],
|
7485 |
+
"sukumizu_XL_illustrious_V1_0": [
|
7486 |
+
"school swimsuit / one-piece swimsuit / white one-piece swimsuit",
|
7487 |
+
"Illustrious",
|
7488 |
+
"\u30b9\u30af\u6c34/school swimsuit(XL,pony)",
|
7489 |
+
"https://civitai.com/models/461839",
|
7490 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/718d3dca-83b7-405d-8758-1ff7aaa2926f/width=450/35041111.jpeg"
|
7491 |
+
],
|
7492 |
"sukumizutan_XL_v1": [
|
7493 |
"sukumizutan, tanlines, tan",
|
7494 |
"SDXL 1.0",
|
|
|
7923 |
"https://civitai.com/models/563723",
|
7924 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1cdf9e3a-9412-4a37-aea6-01524c61f4ce/width=450/18879048.jpeg"
|
7925 |
],
|
7926 |
+
"ultra_rise": [
|
7927 |
+
"ultra rise,tokusatsu,full body,from above,",
|
7928 |
+
"Pony",
|
7929 |
+
"Ultraman Rising \u3050\u3093\u3050\u3093\u30ab\u30c3\u30c8",
|
7930 |
+
"https://civitai.com/models/876021",
|
7931 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e0da72af-c5c1-4d40-8142-d5bcf89da2b3/width=450/35960405.jpeg"
|
7932 |
+
],
|
7933 |
"under_the_table_blowjob": [
|
7934 |
"under_the_table_blowjob",
|
7935 |
"Pony",
|
|
|
8385 |
"https://civitai.com/models/454664",
|
8386 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e81c4662-b60a-4169-a30b-31753f93c7e7/width=450/15517389.jpeg"
|
8387 |
],
|
8388 |
+
"yudedako_xl_type1_v10": [
|
8389 |
+
"",
|
8390 |
+
"Pony",
|
8391 |
+
"[SDXL] Embarrased face / \u8d64\u9762\uff08\u8339\u3067\u30c0\u30b3\u9854\uff09",
|
8392 |
+
"https://civitai.com/models/884440",
|
8393 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/18a0fc9c-00ae-4a1d-a65c-cd0b344f5395/width=450/36323502.jpeg"
|
8394 |
+
],
|
8395 |
+
"yudedako_xl_type2_v10": [
|
8396 |
+
"",
|
8397 |
+
"Pony",
|
8398 |
+
"[SDXL] Embarrased face / \u8d64\u9762\uff08\u8339\u3067\u30c0\u30b3\u9854\uff09",
|
8399 |
+
"https://civitai.com/models/884440",
|
8400 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d5178802-d2ef-4274-8910-4376fb1239ef/width=450/36323833.jpeg"
|
8401 |
+
],
|
8402 |
+
"yudedako_xl_type3_v10": [
|
8403 |
+
"",
|
8404 |
+
"Pony",
|
8405 |
+
"[SDXL] Embarrased face / \u8d64\u9762\uff08\u8339\u3067\u30c0\u30b3\u9854\uff09",
|
8406 |
+
"https://civitai.com/models/884440",
|
8407 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9825ad3-e3fa-4590-9143-ec6f35b25ade/width=450/36323941.jpeg"
|
8408 |
+
],
|
8409 |
"yukata_pony_V1_0": [
|
8410 |
" jyojifuku, yukata, japanese clothes, floral print,hair ornament,sandals",
|
8411 |
"Pony",
|