Spaces:
Running
on
Zero
Running
on
Zero
Upload 4 files
Browse files- app.py +9 -8
- lora_dict.json +203 -0
app.py
CHANGED
@@ -249,11 +249,11 @@ upscaler_dict_gui = {
|
|
249 |
"realesr-animevideov3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-animevideov3.pth",
|
250 |
"realesr-general-x4v3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth",
|
251 |
"realesr-general-wdn-x4v3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-wdn-x4v3.pth",
|
252 |
-
"4x-UltraSharp"
|
253 |
"4x_foolhardy_Remacri": "https://huggingface.co/FacehugmanIII/4x_foolhardy_Remacri/resolve/main/4x_foolhardy_Remacri.pth",
|
254 |
"Remacri4xExtraSmoother": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/Remacri%204x%20ExtraSmoother.pth",
|
255 |
"AnimeSharp4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/AnimeSharp%204x.pth",
|
256 |
-
"lollypop"
|
257 |
"RealisticRescaler4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/RealisticRescaler%204x.pth",
|
258 |
"NickelbackFS4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/NickelbackFS%204x.pth"
|
259 |
}
|
@@ -749,7 +749,7 @@ class GuiSD:
|
|
749 |
for i, path in enumerate(image_path)
|
750 |
]
|
751 |
)
|
752 |
-
|
753 |
|
754 |
img = save_images(img, metadata)
|
755 |
|
@@ -772,7 +772,7 @@ sdxl_task = [k for k, v in task_stablepy.items() if v in SDXL_TASKS ]
|
|
772 |
sd_task = [k for k, v in task_stablepy.items() if v in SD15_TASKS ]
|
773 |
def update_task_options(model_name, task_name):
|
774 |
if model_name in model_list:
|
775 |
-
if "xl" in model_name.lower():
|
776 |
new_choices = sdxl_task
|
777 |
else:
|
778 |
new_choices = sd_task
|
@@ -784,6 +784,8 @@ def update_task_options(model_name, task_name):
|
|
784 |
else:
|
785 |
return gr.update(value=task_name, choices=task_model_list)
|
786 |
|
|
|
|
|
787 |
## BEGIN MOD
|
788 |
with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, css=CSS, delete_cache=(60, 3600)) as app:
|
789 |
gr.Markdown("# 🧩 DiffuseCraft Mod")
|
@@ -1049,7 +1051,7 @@ with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, cs
|
|
1049 |
with gr.Row():
|
1050 |
hires_steps_gui = gr.Slider(minimum=0, value=30, maximum=100, step=1, label="Hires Steps")
|
1051 |
hires_denoising_strength_gui = gr.Slider(minimum=0.1, maximum=1.0, step=0.01, value=0.55, label="Hires Denoising Strength")
|
1052 |
-
hires_sampler_gui = gr.Dropdown(label="Hires Sampler", choices=
|
1053 |
hires_prompt_gui = gr.Textbox(label="Hires Prompt", placeholder="Main prompt will be use", lines=3)
|
1054 |
hires_negative_prompt_gui = gr.Textbox(label="Hires Negative Prompt", placeholder="Main negative prompt will be use", lines=3)
|
1055 |
|
@@ -1063,8 +1065,7 @@ with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, cs
|
|
1063 |
adetailer_verbose_gui = gr.Checkbox(label="Verbose", value=False)
|
1064 |
|
1065 |
# Adetailer Sampler
|
1066 |
-
|
1067 |
-
adetailer_sampler_gui = gr.Dropdown(label="Adetailer sampler:", choices=adetailer_sampler_options, value="Use same sampler")
|
1068 |
|
1069 |
with gr.Accordion("Detailfix A", open=True, visible=True):
|
1070 |
# Adetailer A
|
@@ -1198,7 +1199,6 @@ with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, cs
|
|
1198 |
|
1199 |
with gr.Accordion("Other settings", open=False, visible=True) as menu_other:
|
1200 |
with gr.Row():
|
1201 |
-
image_previews_gui = gr.Checkbox(value=True, label="Image Previews")
|
1202 |
hires_before_adetailer_gui = gr.Checkbox(value=False, label="Hires Before Adetailer")
|
1203 |
hires_after_adetailer_gui = gr.Checkbox(value=True, label="Hires After Adetailer")
|
1204 |
generator_in_cpu_gui = gr.Checkbox(value=False, label="Generator in CPU")
|
@@ -1209,6 +1209,7 @@ with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, cs
|
|
1209 |
leave_progress_bar_gui = gr.Checkbox(value=True, label="Leave Progress Bar")
|
1210 |
disable_progress_bar_gui = gr.Checkbox(value=False, label="Disable Progress Bar")
|
1211 |
display_images_gui = gr.Checkbox(value=False, label="Display Images")
|
|
|
1212 |
save_generated_images_gui = gr.Checkbox(value=False, label="Save Generated Images")
|
1213 |
image_storage_location_gui = gr.Textbox(value="./images", label="Image Storage Location")
|
1214 |
retain_compel_previous_load_gui = gr.Checkbox(value=False, label="Retain Compel Previous Load")
|
|
|
249 |
"realesr-animevideov3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-animevideov3.pth",
|
250 |
"realesr-general-x4v3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth",
|
251 |
"realesr-general-wdn-x4v3": "https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-wdn-x4v3.pth",
|
252 |
+
"4x-UltraSharp": "https://huggingface.co/Shandypur/ESRGAN-4x-UltraSharp/resolve/main/4x-UltraSharp.pth",
|
253 |
"4x_foolhardy_Remacri": "https://huggingface.co/FacehugmanIII/4x_foolhardy_Remacri/resolve/main/4x_foolhardy_Remacri.pth",
|
254 |
"Remacri4xExtraSmoother": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/Remacri%204x%20ExtraSmoother.pth",
|
255 |
"AnimeSharp4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/AnimeSharp%204x.pth",
|
256 |
+
"lollypop": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/lollypop.pth",
|
257 |
"RealisticRescaler4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/RealisticRescaler%204x.pth",
|
258 |
"NickelbackFS4x": "https://huggingface.co/hollowstrawberry/upscalers-backup/resolve/main/ESRGAN/NickelbackFS%204x.pth"
|
259 |
}
|
|
|
749 |
for i, path in enumerate(image_path)
|
750 |
]
|
751 |
)
|
752 |
+
if save_generated_images: info_state += f"<br>{download_links}"
|
753 |
|
754 |
img = save_images(img, metadata)
|
755 |
|
|
|
772 |
sd_task = [k for k, v in task_stablepy.items() if v in SD15_TASKS ]
|
773 |
def update_task_options(model_name, task_name):
|
774 |
if model_name in model_list:
|
775 |
+
if "xl" in model_name.lower() or "pony" in model_name.lower():
|
776 |
new_choices = sdxl_task
|
777 |
else:
|
778 |
new_choices = sd_task
|
|
|
784 |
else:
|
785 |
return gr.update(value=task_name, choices=task_model_list)
|
786 |
|
787 |
+
POST_PROCESSING_SAMPLER = ["Use same sampler"] + scheduler_names[:-2]
|
788 |
+
|
789 |
## BEGIN MOD
|
790 |
with gr.Blocks(theme='NoCrypt/miku@>=1.2.2', elem_id="main", fill_width=True, css=CSS, delete_cache=(60, 3600)) as app:
|
791 |
gr.Markdown("# 🧩 DiffuseCraft Mod")
|
|
|
1051 |
with gr.Row():
|
1052 |
hires_steps_gui = gr.Slider(minimum=0, value=30, maximum=100, step=1, label="Hires Steps")
|
1053 |
hires_denoising_strength_gui = gr.Slider(minimum=0.1, maximum=1.0, step=0.01, value=0.55, label="Hires Denoising Strength")
|
1054 |
+
hires_sampler_gui = gr.Dropdown(label="Hires Sampler", choices=POST_PROCESSING_SAMPLER, value=POST_PROCESSING_SAMPLER[0])
|
1055 |
hires_prompt_gui = gr.Textbox(label="Hires Prompt", placeholder="Main prompt will be use", lines=3)
|
1056 |
hires_negative_prompt_gui = gr.Textbox(label="Hires Negative Prompt", placeholder="Main negative prompt will be use", lines=3)
|
1057 |
|
|
|
1065 |
adetailer_verbose_gui = gr.Checkbox(label="Verbose", value=False)
|
1066 |
|
1067 |
# Adetailer Sampler
|
1068 |
+
adetailer_sampler_gui = gr.Dropdown(label="Adetailer sampler:", choices=POST_PROCESSING_SAMPLER, value=POST_PROCESSING_SAMPLER[0])
|
|
|
1069 |
|
1070 |
with gr.Accordion("Detailfix A", open=True, visible=True):
|
1071 |
# Adetailer A
|
|
|
1199 |
|
1200 |
with gr.Accordion("Other settings", open=False, visible=True) as menu_other:
|
1201 |
with gr.Row():
|
|
|
1202 |
hires_before_adetailer_gui = gr.Checkbox(value=False, label="Hires Before Adetailer")
|
1203 |
hires_after_adetailer_gui = gr.Checkbox(value=True, label="Hires After Adetailer")
|
1204 |
generator_in_cpu_gui = gr.Checkbox(value=False, label="Generator in CPU")
|
|
|
1209 |
leave_progress_bar_gui = gr.Checkbox(value=True, label="Leave Progress Bar")
|
1210 |
disable_progress_bar_gui = gr.Checkbox(value=False, label="Disable Progress Bar")
|
1211 |
display_images_gui = gr.Checkbox(value=False, label="Display Images")
|
1212 |
+
image_previews_gui = gr.Checkbox(value=True, label="Image Previews")
|
1213 |
save_generated_images_gui = gr.Checkbox(value=False, label="Save Generated Images")
|
1214 |
image_storage_location_gui = gr.Textbox(value="./images", label="Image Storage Location")
|
1215 |
retain_compel_previous_load_gui = gr.Checkbox(value=False, label="Retain Compel Previous Load")
|
lora_dict.json
CHANGED
@@ -818,6 +818,13 @@
|
|
818 |
"https://civitai.com/models/585589",
|
819 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1aebedf5-e17f-471d-a11e-7de23a45cb5b/width=450/20316122.jpeg"
|
820 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
"FComic_HardCore_Pony_V1": [
|
822 |
"(comic:1.25),(Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect), 1girl, solo focus, breasts, navel, nipples, pussy, clitoris, vaginal, anus, ass, nude, torn clothes, pussy juice, female masturbation, 2boys, mmf threesome, erection, penis, multiple penises, testicles, cum, hetero, sex, group sex, oral, fellatio, irrumatio, paizuri, spread legs, spitroast, sweat, gangbang, double penetration, triple penetration",
|
823 |
"Pony",
|
@@ -1231,6 +1238,13 @@
|
|
1231 |
"https://civitai.com/models/445113",
|
1232 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/79010fc1-3e9f-4fd3-9c5a-e56519264449/width=450/12296550.jpeg"
|
1233 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1234 |
"JAV_Cover_V2": [
|
1235 |
"jav cover",
|
1236 |
"Pony",
|
@@ -1245,6 +1259,13 @@
|
|
1245 |
"https://civitai.com/models/645017",
|
1246 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5d4bc971-3c93-46ea-b8ad-5e1882c81a5c/width=450/24242183.jpeg"
|
1247 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
"JMT_SDXL_V2": [
|
1249 |
"JMT",
|
1250 |
"SDXL 1.0",
|
@@ -1476,6 +1497,13 @@
|
|
1476 |
"https://civitai.com/models/607386",
|
1477 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/29cc59c1-f082-43b5-be83-0b240579175c/width=450/21837456.jpeg"
|
1478 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1479 |
"MdaStarouXL_ANI31_lokr_V43P1NF": [
|
1480 |
"",
|
1481 |
"SDXL 1.0",
|
@@ -1539,6 +1567,13 @@
|
|
1539 |
"https://civitai.com/models/508749",
|
1540 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a2e50154-31d8-431b-a59e-f26590dad8a4/width=450/15452920.jpeg"
|
1541 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1542 |
"Naked_Sheet_Pony": [
|
1543 |
"naked sheet",
|
1544 |
"Pony",
|
@@ -1910,6 +1945,13 @@
|
|
1910 |
"https://civitai.com/models/89005",
|
1911 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ad46540c-a4cf-4001-8d28-0ebd3ede352b/width=450/23668605.jpeg"
|
1912 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1913 |
"Pussy_on_Pussy": [
|
1914 |
"Pussy on Pussy / Symmetrical Pussy",
|
1915 |
"SDXL 1.0",
|
@@ -2365,6 +2407,27 @@
|
|
2365 |
"https://civitai.com/models/421737",
|
2366 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3b87142d-9566-4d54-b0c9-e87f44c96097/width=450/16498196.jpeg"
|
2367 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2368 |
"V_over_mouth_Pose_XL": [
|
2369 |
"1woman, v_over_mouth, blush, detailed eyes, lips, smile, upper body, breasts, (v_over_mouth:1.4) / tongue_out , saliva, saliva_trail, naughty_face / cunnilingus_gesture / implied_yuri",
|
2370 |
"SDXL 1.0",
|
@@ -3002,6 +3065,20 @@
|
|
3002 |
"https://civitai.com/models/557706",
|
3003 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/febb854e-af50-4b41-91fd-f3d91752a6b4/width=450/18508556.jpeg"
|
3004 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3005 |
"belko-XL-v31-ep20": [
|
3006 |
"",
|
3007 |
"SDXL 1.0",
|
@@ -3625,6 +3702,13 @@
|
|
3625 |
"https://civitai.com/models/145887",
|
3626 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d5944f71-a1a7-4dcc-927b-5ea70aa1ca5f/width=450/10955692.jpeg"
|
3627 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3628 |
"creepydoll": [
|
3629 |
"doll / long arms, long legs",
|
3630 |
"Pony",
|
@@ -3779,6 +3863,13 @@
|
|
3779 |
"https://civitai.com/models/587903",
|
3780 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5cf842df-f4bc-4c05-a125-e5bd7ddb3192/width=450/20470483.jpeg"
|
3781 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3782 |
"deflowered_pony": [
|
3783 |
"1woman, perfect face, fully nude, imminent penetration:1.4, deflowered:1.1, blood on thighs, blood dripping, semen, cum, overflow:1.2, / 1male, huge penis, large testicles, / female pubic hair, uncensored pussy, hairy pussy, blush / <lora:deflowered_pony:0.7>,",
|
3784 |
"Pony",
|
@@ -3856,6 +3947,13 @@
|
|
3856 |
"https://civitai.com/models/603258",
|
3857 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
3858 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3859 |
"doorFisheyeConceptPDXL_v10": [
|
3860 |
"fisheye / outdoors / hallway",
|
3861 |
"Pony",
|
@@ -4150,6 +4248,20 @@
|
|
4150 |
"https://civitai.com/models/357976",
|
4151 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ead23075-e9ff-4378-b1b3-442b1abaef78/width=450/14593009.jpeg"
|
4152 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4153 |
"girllikewipemouth_pony": [
|
4154 |
"(((cum on mouth))), ((wipe mouth, napkin on lips, hand on mouth, profile, squinting eyes, frown, head down)), crying, drooling, parted lips, fever, sad, leftovers, plate, table, glass cup, potted plant, tree, bokeh, foggy sky, sweating profusely, teardrop, open-air restaurant, outdoors, building, street, cloud, crowd, 1girl, cute, choker, cleavage, medium tits, sideboob, shy, blush, petite figure,",
|
4155 |
"Pony",
|
@@ -4234,6 +4346,13 @@
|
|
4234 |
"https://civitai.com/models/293472",
|
4235 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/86297f60-4594-461a-a142-ef8878a3f516/width=450/12847487.jpeg"
|
4236 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4237 |
"group_sex_pony_V1_0": [
|
4238 |
"group sex",
|
4239 |
"Pony",
|
@@ -4367,6 +4486,13 @@
|
|
4367 |
"https://civitai.com/models/636110",
|
4368 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4ca030e3-b524-4a11-a5b7-a654a100e578/width=450/23624021.jpeg"
|
4369 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4370 |
"hanketsu_SDXL_V1": [
|
4371 |
"MH2, 1girl, swimsuit, solo, bikini, brown hair, long hair, smile, grin, water, butt crack, white bikini, ass, side-tie bikini bottom, pool, brown eyes, sitting, looking at viewer, looking back,",
|
4372 |
"SDXL 1.0",
|
@@ -4479,6 +4605,20 @@
|
|
4479 |
"https://civitai.com/models/516752",
|
4480 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/29c835ca-5f12-43e8-ac93-b4fd1c234bce/width=450/15866815.jpeg"
|
4481 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4482 |
"holding_panties_SDXL": [
|
4483 |
"holding panties,stained panties,unworn panties,open hand,no panties",
|
4484 |
"Pony",
|
@@ -5347,6 +5487,13 @@
|
|
5347 |
"https://civitai.com/models/116480",
|
5348 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a1f95800-1982-4678-90ab-3d4b9dd88317/width=450/7839890.jpeg"
|
5349 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5350 |
"netcafe_SDXL_V1": [
|
5351 |
"necafe, scenery, indoors, computer, door, chair, monitor, still life, mouse (computer), desk",
|
5352 |
"SDXL 1.0",
|
@@ -5389,6 +5536,13 @@
|
|
5389 |
"https://civitai.com/models/519082",
|
5390 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/62e358a7-eaf5-4e67-8c7f-2ca6080d9741/width=450/16011887.jpeg"
|
5391 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5392 |
"nipples_weights_pony_V1_0": [
|
5393 |
"nipple piercing / nipples weights / Saggy breasts",
|
5394 |
"Pony",
|
@@ -5669,6 +5823,13 @@
|
|
5669 |
"https://civitai.com/models/471380",
|
5670 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2937f26-1d39-4a1f-b4ec-1beb65a8eb2d/width=450/14088300.jpeg"
|
5671 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5672 |
"pantyhose_waist-000001": [
|
5673 |
"",
|
5674 |
"Pony",
|
@@ -5732,6 +5893,13 @@
|
|
5732 |
"https://civitai.com/models/590441",
|
5733 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9b873e11-1066-41ac-94fc-da6cf7653345/width=450/22678594.jpeg"
|
5734 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5735 |
"peeing_underwater-05": [
|
5736 |
"peeing underwater",
|
5737 |
"Pony",
|
@@ -6264,6 +6432,13 @@
|
|
6264 |
"https://civitai.com/models/585342",
|
6265 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b603d775-8004-4425-a85e-a754f9be2977/width=450/20290307.jpeg"
|
6266 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6267 |
"rukia": [
|
6268 |
"",
|
6269 |
"Pony",
|
@@ -6299,6 +6474,13 @@
|
|
6299 |
"https://civitai.com/models/139131",
|
6300 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/41712367-efa2-4a3a-aca0-52b46352539f/width=450/5480410.jpeg"
|
6301 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6302 |
"sanitary_napkins_pony_V1_1": [
|
6303 |
"sanitary napkins,panties",
|
6304 |
"Pony",
|
@@ -6817,6 +6999,20 @@
|
|
6817 |
"https://civitai.com/models/351660",
|
6818 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1086274d-eeda-4a61-8f25-17bfb4580ab7/width=450/7991149.jpeg"
|
6819 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6820 |
"suntan_V1_0": [
|
6821 |
"tanline",
|
6822 |
"Pony",
|
@@ -7629,6 +7825,13 @@
|
|
7629 |
"https://civitai.com/models/604327",
|
7630 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fd6814aa-e904-4dd6-bfa7-902879605860/width=450/21564766.jpeg"
|
7631 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7632 |
"yandere_XL_v1": [
|
7633 |
"yandere",
|
7634 |
"SDXL 1.0",
|
|
|
818 |
"https://civitai.com/models/585589",
|
819 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1aebedf5-e17f-471d-a11e-7de23a45cb5b/width=450/20316122.jpeg"
|
820 |
],
|
821 |
+
"FComic_AllInOne_SDXL": [
|
822 |
+
"fcomicallinone / (1page:1.3), (clothes:1.3), comic, Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect,BREAK,1girl, solo focus, (full body:1.3), (cowboy shot), / (2page:1.3), nsfw, (comic:1.25),(Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect),BREAK,1girl, solo focus, skirt lift, shirt lift, show off nipple, show off pussy , nipple , pussy ,BREAK,hetero, oral, fellatio, irrumatio, (full body:1.3), (cowboy shot), / (3page:1.3),nsfw,(comic:1.25),(Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect),BREAK,1girl, solo focus, breasts, navel, nipples,BREAK, pussy, clitoris, vaginal, anus, ass, nude,BREAK, torn clothes, pussy juice, female masturbation,BREAK,hetero, paizuri,BREAK, irrumatio,BREAK, spread legs, (full body:1.3), (cowboy shot), / (mainpage),nsfw,(comic:1.25),(Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect),BREAK,1girl, solo focus, breasts, navel, nipples,BREAK, pussy, clitoris, vaginal, anus, ss, nude, torn clothes,BREAK, pussy juice, female masturbation,BREAK, 2boys, mmf threesome, erection, penis, multiple penises, testicles,BREAK, cum,hetero, sex, group sex,BREAK, oral, fellatio, irrumatio,BREAK, spread legs, spitroast, sweat, gangbang, double penetration, triple penetration,missionary sex, / (lastpage:1.3),nsfw,(comic:1.25), (Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect),BREAK,1girl, solo focus, breasts, navel, nipples,BREAK, pussy, clitoris, vaginal, anus, ass,BREAK, nude, torn clothes, pussy juice,BREAK, boy, hetero, cum, ,BREAK,(After Sex), orgasm, afterglow, spread legs,BREAK, (pillow talk:1.3), BREAK, (punch line),BREAK, (happy end:1.3), BREAK, (the end:1.3), / 1page / 2page / 3page / mainpage / lastpage",
|
823 |
+
"SDXL 1.0",
|
824 |
+
"[Animagine] Japanese Hentai Comic Generator (ALL in ONE) | \u30a8\u30ed\u6f2b\u753b\u751f\u6210\u5668\uff08\u5168\u90e8\u5165\u308a\uff09",
|
825 |
+
"https://civitai.com/models/753303",
|
826 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3a2a72df-4277-4f25-8330-5b333e12843a/width=450/29991827.jpeg"
|
827 |
+
],
|
828 |
"FComic_HardCore_Pony_V1": [
|
829 |
"(comic:1.25),(Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect), 1girl, solo focus, breasts, navel, nipples, pussy, clitoris, vaginal, anus, ass, nude, torn clothes, pussy juice, female masturbation, 2boys, mmf threesome, erection, penis, multiple penises, testicles, cum, hetero, sex, group sex, oral, fellatio, irrumatio, paizuri, spread legs, spitroast, sweat, gangbang, double penetration, triple penetration",
|
830 |
"Pony",
|
|
|
1238 |
"https://civitai.com/models/445113",
|
1239 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/79010fc1-3e9f-4fd3-9c5a-e56519264449/width=450/12296550.jpeg"
|
1240 |
],
|
1241 |
+
"JAV_BONY116_Pony_V1": [
|
1242 |
+
" bony116, 1girl, hetero, solo focus, tears, crying, saliva, snot, vomiting, drooling, abuse, dirty, drooling, 1boy, male pubic hair, Fat man, nude male, irrumatio , deepthroat , after blowjob, bukkake, facial, excessive cum , lying, on back , On all fours ,close-up mouth , pov penis, ",
|
1243 |
+
"Pony",
|
1244 |
+
"JAV HARD Irrumatio DeepThroat Generator2 Pony XL | \u30cf\u30fc\u30c9 \u30a4\u30e9\u30de\u30c1\u30aa \u30a2\u30c0\u30eb\u30c8\u30d3\u30c7\u30aa \u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc\uff12",
|
1245 |
+
"https://civitai.com/models/763460",
|
1246 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/382b3824-12fa-4e04-bbb8-8c52a29bf071/width=450/29677035.jpeg"
|
1247 |
+
],
|
1248 |
"JAV_Cover_V2": [
|
1249 |
"jav cover",
|
1250 |
"Pony",
|
|
|
1259 |
"https://civitai.com/models/645017",
|
1260 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5d4bc971-3c93-46ea-b8ad-5e1882c81a5c/width=450/24242183.jpeg"
|
1261 |
],
|
1262 |
+
"JAV_MIAA572_PONY_V1": [
|
1263 |
+
"JAV_MISS572, 1girl, hetero, solo focus, tears, crying, saliva, snot, vomiting, drooling 1boy, male pubic hair, Fat man, nude male, irrumatio , deepthroat , after blowjob, bukkake, facial, excessive cum , lying, on back , On all fours ,close-up mouth , pov penis, ",
|
1264 |
+
"Pony",
|
1265 |
+
"JAV HARD Irrumatio DeepThroat Generator Pony XL | \u30cf\u30fc\u30c9 \u30a4\u30e9\u30de\u30c1\u30aa \u30a2\u30c0\u30eb\u30c8\u30d3\u30c7\u30aa \u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc",
|
1266 |
+
"https://civitai.com/models/728512",
|
1267 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/24fd4c55-477a-4ebf-8212-42e4a4f694b0/width=450/28131364.jpeg"
|
1268 |
+
],
|
1269 |
"JMT_SDXL_V2": [
|
1270 |
"JMT",
|
1271 |
"SDXL 1.0",
|
|
|
1497 |
"https://civitai.com/models/607386",
|
1498 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/29cc59c1-f082-43b5-be83-0b240579175c/width=450/21837456.jpeg"
|
1499 |
],
|
1500 |
+
"Masturbation-000018": [
|
1501 |
+
"clitoral stimulation / motion lines / masturbation lines",
|
1502 |
+
"Pony",
|
1503 |
+
"Masturbation+",
|
1504 |
+
"https://civitai.com/models/607386",
|
1505 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/414c50f3-97ad-4d4f-84cc-1e9c43620392/width=450/28989046.jpeg"
|
1506 |
+
],
|
1507 |
"MdaStarouXL_ANI31_lokr_V43P1NF": [
|
1508 |
"",
|
1509 |
"SDXL 1.0",
|
|
|
1567 |
"https://civitai.com/models/508749",
|
1568 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a2e50154-31d8-431b-a59e-f26590dad8a4/width=450/15452920.jpeg"
|
1569 |
],
|
1570 |
+
"Morikoke_Pony_V1": [
|
1571 |
+
"morikoke, (comic:1.25), (Multi view, Frame, Text, speech bubble, frame, heart, trembling, focus line, vibrating line, comic expression, Sound effect) 2+girls, multiple girls, solo focus, breasts, navel, nipples, pussy, clitoris, vaginal, anus, ass, nude, torn clothes, pussy juice, female masturbation, 3+boys, multiple boys, erection, penis, multiple penises, (Orcs, goblins, other races, green skin, monster, penis, tusks), chain, chain leash, collar, restrained, saliva, testicles, cum, hetero, sex, group sex, oral, fellatio, spread legs, spitroast, irrumatio, sweat, gangbang, double penetration, bangs, folded, thick thighs, ",
|
1572 |
+
"Pony",
|
1573 |
+
"Hentai Comic Random Generator (Orcs Goblins) (Morikoke Art Style) Pony XL | \u30a8\u30ed\u6f2b\u753b\u30e9\u30f3\u30c0\u30e0\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc (\u30aa\u30fc\u30af \u30b4\u30d6\u30ea\u30f3) (\u3082\u308a\u82d4 \u30a2\u30fc\u30c8 \u30b9\u30bf\u30a4\u30eb)",
|
1574 |
+
"https://civitai.com/models/773022",
|
1575 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/05d94d19-f606-4d0c-9953-dd951bdfac6f/width=450/30113880.jpeg"
|
1576 |
+
],
|
1577 |
"Naked_Sheet_Pony": [
|
1578 |
"naked sheet",
|
1579 |
"Pony",
|
|
|
1945 |
"https://civitai.com/models/89005",
|
1946 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ad46540c-a4cf-4001-8d28-0ebd3ede352b/width=450/23668605.jpeg"
|
1947 |
],
|
1948 |
+
"Pussy_Peach_Front_v7_XL": [
|
1949 |
+
"pussy_scale1 / pussy_scale2 / pussy_scale3",
|
1950 |
+
"SDXL 1.0",
|
1951 |
+
"Real Pussy - Peach",
|
1952 |
+
"https://civitai.com/models/99174",
|
1953 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8a21b139-513e-4105-a6a5-c98309f2dd1c/width=450/28177027.jpeg"
|
1954 |
+
],
|
1955 |
"Pussy_on_Pussy": [
|
1956 |
"Pussy on Pussy / Symmetrical Pussy",
|
1957 |
"SDXL 1.0",
|
|
|
2407 |
"https://civitai.com/models/421737",
|
2408 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3b87142d-9566-4d54-b0c9-e87f44c96097/width=450/16498196.jpeg"
|
2409 |
],
|
2410 |
+
"VMAG_MAGKAN_Pony_V1": [
|
2411 |
+
"(vmag magkan),((huge clitoris)), clitoral foreskin, cute pussy, enlarged labia, developed inner labia, urethra, / (vmag magkan),(huge clitoris), spread pussy,pussy juice trail, pussy juice puddle, (close-up clitoris), (close-up layers),(Multiple layers), (multiple views), simple bacground, zoom layer, close-up layer,",
|
2412 |
+
"Pony",
|
2413 |
+
"Hentai Huge Clitoris Spread Pussy (V-MAG | MAG KAN Art Style) Pony XL | \u5de8\u5927\u30af\u30ea\u30c8\u30ea\u30b9 \u307e\u3093\u3053\u304f\u3071\u3041",
|
2414 |
+
"https://civitai.com/models/782388",
|
2415 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cdb5d1db-da0f-455a-ad60-47cc69499024/width=450/30564542.jpeg"
|
2416 |
+
],
|
2417 |
+
"VPR02-000001": [
|
2418 |
+
"",
|
2419 |
+
"Flux.1 D",
|
2420 |
+
"Virgin Report",
|
2421 |
+
"https://civitai.com/models/730734",
|
2422 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f295fe5c-8e00-4d82-9e58-799ca8294b3b/width=450/29412568.jpeg"
|
2423 |
+
],
|
2424 |
+
"VRP-000012": [
|
2425 |
+
"VRP01,multiple views, uncensored, solo, 1girl,",
|
2426 |
+
"Pony",
|
2427 |
+
"Virgin Report",
|
2428 |
+
"https://civitai.com/models/730734",
|
2429 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ecf226c6-9f23-435e-b745-5b3c31704838/width=450/28242369.jpeg"
|
2430 |
+
],
|
2431 |
"V_over_mouth_Pose_XL": [
|
2432 |
"1woman, v_over_mouth, blush, detailed eyes, lips, smile, upper body, breasts, (v_over_mouth:1.4) / tongue_out , saliva, saliva_trail, naughty_face / cunnilingus_gesture / implied_yuri",
|
2433 |
"SDXL 1.0",
|
|
|
3065 |
"https://civitai.com/models/557706",
|
3066 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/febb854e-af50-4b41-91fd-f3d91752a6b4/width=450/18508556.jpeg"
|
3067 |
],
|
3068 |
+
"battingstance_Pony_v1": [
|
3069 |
+
"batting stance",
|
3070 |
+
"Pony",
|
3071 |
+
"[SDXL&Pony] batting stance / baseball bat / \u30d0\u30c3\u30c6\u30a3\u30f3\u30b0\u30d5\u30a9\u30fc\u30e0 / \u30b9\u30a4\u30f3\u30b0 / \u91ce\u7403",
|
3072 |
+
"https://civitai.com/models/361320",
|
3073 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b77daa05-fa87-4fe3-bf04-ccb94b851abe/width=450/27784936.jpeg"
|
3074 |
+
],
|
3075 |
+
"battingstance_XL_v1": [
|
3076 |
+
"batting stance",
|
3077 |
+
"SDXL 1.0",
|
3078 |
+
"[SDXL&Pony] batting stance / baseball bat / \u30d0\u30c3\u30c6\u30a3\u30f3\u30b0\u30d5\u30a9\u30fc\u30e0 / \u30b9\u30a4\u30f3\u30b0 / \u91ce\u7403",
|
3079 |
+
"https://civitai.com/models/361320",
|
3080 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/518bfce8-3d3b-433d-991c-fa6dc37d48a5/width=450/8322594.jpeg"
|
3081 |
+
],
|
3082 |
"belko-XL-v31-ep20": [
|
3083 |
"",
|
3084 |
"SDXL 1.0",
|
|
|
3702 |
"https://civitai.com/models/145887",
|
3703 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d5944f71-a1a7-4dcc-927b-5ea70aa1ca5f/width=450/10955692.jpeg"
|
3704 |
],
|
3705 |
+
"crackingknuckles_XL_v1": [
|
3706 |
+
"cracking knuckles",
|
3707 |
+
"SDXL 1.0",
|
3708 |
+
"cracking knuckles / \u6307\u30dd\u30ad",
|
3709 |
+
"https://civitai.com/models/724692",
|
3710 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/68798ca7-7fe9-453b-853d-eed3bd4b78bd/width=450/27944645.jpeg"
|
3711 |
+
],
|
3712 |
"creepydoll": [
|
3713 |
"doll / long arms, long legs",
|
3714 |
"Pony",
|
|
|
3863 |
"https://civitai.com/models/587903",
|
3864 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5cf842df-f4bc-4c05-a125-e5bd7ddb3192/width=450/20470483.jpeg"
|
3865 |
],
|
3866 |
+
"deepthroat_pony_V1_0": [
|
3867 |
+
"deepthroat / irrumatio",
|
3868 |
+
"Pony",
|
3869 |
+
"\u30a4\u30e9\u30de\u30c1\u30aa/irrumatio,deepthroat",
|
3870 |
+
"https://civitai.com/models/728624",
|
3871 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a29c4df9-07eb-4f8f-b984-c24b7531225a/width=450/28137263.jpeg"
|
3872 |
+
],
|
3873 |
"deflowered_pony": [
|
3874 |
"1woman, perfect face, fully nude, imminent penetration:1.4, deflowered:1.1, blood on thighs, blood dripping, semen, cum, overflow:1.2, / 1male, huge penis, large testicles, / female pubic hair, uncensored pussy, hairy pussy, blush / <lora:deflowered_pony:0.7>,",
|
3875 |
"Pony",
|
|
|
3947 |
"https://civitai.com/models/603258",
|
3948 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a9862d57-c319-439a-a392-8b16d4adfc42/width=450/21484810.jpeg"
|
3949 |
],
|
3950 |
+
"donbiki_XL_v1": [
|
3951 |
+
"donbiki",
|
3952 |
+
"SDXL 1.0",
|
3953 |
+
"disgust / \u30c9\u30f3\u5f15\u304d / \u990a\u8c5a\u5834\u306e\u8c5a\u3092\u898b\u308b\u3088\u3046\u306a\u76ee",
|
3954 |
+
"https://civitai.com/models/759232",
|
3955 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/dda4755b-bdf8-490b-97c3-cc9178194e9e/width=450/29610758.jpeg"
|
3956 |
+
],
|
3957 |
"doorFisheyeConceptPDXL_v10": [
|
3958 |
"fisheye / outdoors / hallway",
|
3959 |
"Pony",
|
|
|
4248 |
"https://civitai.com/models/357976",
|
4249 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ead23075-e9ff-4378-b1b3-442b1abaef78/width=450/14593009.jpeg"
|
4250 |
],
|
4251 |
+
"girl_run_XL_V1_0": [
|
4252 |
+
"girl run,running",
|
4253 |
+
"SDXL 1.0",
|
4254 |
+
"\u4e59\u5973\u8d70\u308a/girl run",
|
4255 |
+
"https://civitai.com/models/771618",
|
4256 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bf22a385-22b4-4e8c-aeeb-7b0c8af12b23/width=450/30887097.jpeg"
|
4257 |
+
],
|
4258 |
+
"girl_run_pony_V1_0": [
|
4259 |
+
" girl run, running",
|
4260 |
+
"Pony",
|
4261 |
+
"\u4e59\u5973\u8d70\u308a/girl run",
|
4262 |
+
"https://civitai.com/models/771618",
|
4263 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fc0c28fb-5f6f-47e4-91d1-f6f90d687660/width=450/30041627.jpeg"
|
4264 |
+
],
|
4265 |
"girllikewipemouth_pony": [
|
4266 |
"(((cum on mouth))), ((wipe mouth, napkin on lips, hand on mouth, profile, squinting eyes, frown, head down)), crying, drooling, parted lips, fever, sad, leftovers, plate, table, glass cup, potted plant, tree, bokeh, foggy sky, sweating profusely, teardrop, open-air restaurant, outdoors, building, street, cloud, crowd, 1girl, cute, choker, cleavage, medium tits, sideboob, shy, blush, petite figure,",
|
4267 |
"Pony",
|
|
|
4346 |
"https://civitai.com/models/293472",
|
4347 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/86297f60-4594-461a-a142-ef8878a3f516/width=450/12847487.jpeg"
|
4348 |
],
|
4349 |
+
"grinding_pony_V1_0": [
|
4350 |
+
"grinding, 1girl, 1boy, penis, girl on top, straddling / standing,thigh sex",
|
4351 |
+
"Pony",
|
4352 |
+
"\u7d20\u80a1/grinding",
|
4353 |
+
"https://civitai.com/models/727117",
|
4354 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/de1497d7-3ee5-4a79-a925-ebe181d35266/width=450/28070293.jpeg"
|
4355 |
+
],
|
4356 |
"group_sex_pony_V1_0": [
|
4357 |
"group sex",
|
4358 |
"Pony",
|
|
|
4486 |
"https://civitai.com/models/636110",
|
4487 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4ca030e3-b524-4a11-a5b7-a654a100e578/width=450/23624021.jpeg"
|
4488 |
],
|
4489 |
+
"hand_under_skirt_pony_V1_0": [
|
4490 |
+
"hand under skirt, skirt, groping, blush, hand under clothes,1boy",
|
4491 |
+
"Pony",
|
4492 |
+
"\u30b9\u30ab\u30fc\u30c8\u306e\u4e2d\u306b\u624b\u3092\u5165\u308c\u308b/hand under skirt",
|
4493 |
+
"https://civitai.com/models/751675",
|
4494 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c8bc5bfc-7d51-4a3f-b55e-ac533d041156/width=450/29324211.jpeg"
|
4495 |
+
],
|
4496 |
"hanketsu_SDXL_V1": [
|
4497 |
"MH2, 1girl, swimsuit, solo, bikini, brown hair, long hair, smile, grin, water, butt crack, white bikini, ass, side-tie bikini bottom, pool, brown eyes, sitting, looking at viewer, looking back,",
|
4498 |
"SDXL 1.0",
|
|
|
4605 |
"https://civitai.com/models/516752",
|
4606 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/29c835ca-5f12-43e8-ac93-b4fd1c234bce/width=450/15866815.jpeg"
|
4607 |
],
|
4608 |
+
"holding_glass_XL_V1_0": [
|
4609 |
+
"holding glass",
|
4610 |
+
"SDXL 1.0",
|
4611 |
+
"\u30b0\u30e9\u30b9\u3092\u6301\u3064/holding glass",
|
4612 |
+
"https://civitai.com/models/789843",
|
4613 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5dd4a050-0c73-4317-9be7-bf5975275c00/width=450/31026289.jpeg"
|
4614 |
+
],
|
4615 |
+
"holding_glass_pony_V1_0": [
|
4616 |
+
"holding glass",
|
4617 |
+
"Pony",
|
4618 |
+
"\u30b0\u30e9\u30b9\u3092\u6301\u3064/holding glass",
|
4619 |
+
"https://civitai.com/models/789843",
|
4620 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8fd6bd75-e2d9-4bc3-b4db-312d03d62c41/width=450/30941057.jpeg"
|
4621 |
+
],
|
4622 |
"holding_panties_SDXL": [
|
4623 |
"holding panties,stained panties,unworn panties,open hand,no panties",
|
4624 |
"Pony",
|
|
|
5487 |
"https://civitai.com/models/116480",
|
5488 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a1f95800-1982-4678-90ab-3d4b9dd88317/width=450/7839890.jpeg"
|
5489 |
],
|
5490 |
+
"nekomimi_hachimaki_pony_V1_0": [
|
5491 |
+
"nekomimi hachimaki, cat ears",
|
5492 |
+
"Pony",
|
5493 |
+
"\u732b\u8033\u30d0\u30f3\u30c9",
|
5494 |
+
"https://civitai.com/models/749035",
|
5495 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/130ec179-8851-4ef9-851c-d20c80daf96e/width=450/29232349.jpeg"
|
5496 |
+
],
|
5497 |
"netcafe_SDXL_V1": [
|
5498 |
"necafe, scenery, indoors, computer, door, chair, monitor, still life, mouse (computer), desk",
|
5499 |
"SDXL 1.0",
|
|
|
5536 |
"https://civitai.com/models/519082",
|
5537 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/62e358a7-eaf5-4e67-8c7f-2ca6080d9741/width=450/16011887.jpeg"
|
5538 |
],
|
5539 |
+
"nipples_rub_pony_V1_0": [
|
5540 |
+
"nipples rub / nipples-to-nipples",
|
5541 |
+
"Pony",
|
5542 |
+
"\u4e73\u9996\u5408\u308f\u305b/nipples rub",
|
5543 |
+
"https://civitai.com/models/779422",
|
5544 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e0e5fc6f-0938-459f-b32d-bc78c352f39f/width=450/30418292.jpeg"
|
5545 |
+
],
|
5546 |
"nipples_weights_pony_V1_0": [
|
5547 |
"nipple piercing / nipples weights / Saggy breasts",
|
5548 |
"Pony",
|
|
|
5823 |
"https://civitai.com/models/471380",
|
5824 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/e2937f26-1d39-4a1f-b4ec-1beb65a8eb2d/width=450/14088300.jpeg"
|
5825 |
],
|
5826 |
+
"panty_pull_pony_V1_0": [
|
5827 |
+
"pulling another's clothes, panty pull, grabbing panties, 1boy,",
|
5828 |
+
"Pony",
|
5829 |
+
"panty pull",
|
5830 |
+
"https://civitai.com/models/752237",
|
5831 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cf7f21d5-1d33-4584-ab31-c6050baa40f2/width=450/29346844.jpeg"
|
5832 |
+
],
|
5833 |
"pantyhose_waist-000001": [
|
5834 |
"",
|
5835 |
"Pony",
|
|
|
5893 |
"https://civitai.com/models/590441",
|
5894 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9b873e11-1066-41ac-94fc-da6cf7653345/width=450/22678594.jpeg"
|
5895 |
],
|
5896 |
+
"pee_shower_pony_V1_0": [
|
5897 |
+
"pee shower, pov, pee, peeing, pussy",
|
5898 |
+
"Pony",
|
5899 |
+
"\u8056\u6c34\u30d7\u30ec\u30a4/pee shower",
|
5900 |
+
"https://civitai.com/models/753382",
|
5901 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6b8f08bd-888f-4bfc-aff7-9dcba22257e3/width=450/29386724.jpeg"
|
5902 |
+
],
|
5903 |
"peeing_underwater-05": [
|
5904 |
"peeing underwater",
|
5905 |
"Pony",
|
|
|
6432 |
"https://civitai.com/models/585342",
|
6433 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b603d775-8004-4425-a85e-a754f9be2977/width=450/20290307.jpeg"
|
6434 |
],
|
6435 |
+
"rubbing_eyes_XL_V1_0": [
|
6436 |
+
"rubbing eyes",
|
6437 |
+
"SDXL 1.0",
|
6438 |
+
"\u76ee\u3092\u3053\u3059\u308b/rubbing eyes",
|
6439 |
+
"https://civitai.com/models/757308",
|
6440 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d44476c8-33d1-4d88-9805-818337082c01/width=450/29537179.jpeg"
|
6441 |
+
],
|
6442 |
"rukia": [
|
6443 |
"",
|
6444 |
"Pony",
|
|
|
6474 |
"https://civitai.com/models/139131",
|
6475 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/41712367-efa2-4a3a-aca0-52b46352539f/width=450/5480410.jpeg"
|
6476 |
],
|
6477 |
+
"saliva_pony_V1_0": [
|
6478 |
+
"saliva / saliva trail / ball gag",
|
6479 |
+
"Pony",
|
6480 |
+
"\u6d8e/saliva",
|
6481 |
+
"https://civitai.com/models/728910",
|
6482 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4ad9e287-319c-4ac7-965e-5c5921af0489/width=450/28155621.jpeg"
|
6483 |
+
],
|
6484 |
"sanitary_napkins_pony_V1_1": [
|
6485 |
"sanitary napkins,panties",
|
6486 |
"Pony",
|
|
|
6999 |
"https://civitai.com/models/351660",
|
7000 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1086274d-eeda-4a61-8f25-17bfb4580ab7/width=450/7991149.jpeg"
|
7001 |
],
|
7002 |
+
"sunscreen_Pony_v1": [
|
7003 |
+
"sunscreen",
|
7004 |
+
"Pony",
|
7005 |
+
"[SDXL&Pony] sunscreen / \u65e5\u713c\u3051\u6b62\u3081\u5857\u308a",
|
7006 |
+
"https://civitai.com/models/664113",
|
7007 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7af6fd01-de4c-4019-aee7-ed77c6bb9328/width=450/28115463.jpeg"
|
7008 |
+
],
|
7009 |
+
"sunscreen_XL_v1": [
|
7010 |
+
"sunscreen",
|
7011 |
+
"SDXL 1.0",
|
7012 |
+
"[SDXL&Pony] sunscreen / \u65e5\u713c\u3051\u6b62\u3081\u5857\u308a",
|
7013 |
+
"https://civitai.com/models/664113",
|
7014 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83e53dbf-a58c-4f98-84bf-5d6e2e4b8218/width=450/25443811.jpeg"
|
7015 |
+
],
|
7016 |
"suntan_V1_0": [
|
7017 |
"tanline",
|
7018 |
"Pony",
|
|
|
7825 |
"https://civitai.com/models/604327",
|
7826 |
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/fd6814aa-e904-4dd6-bfa7-902879605860/width=450/21564766.jpeg"
|
7827 |
],
|
7828 |
+
"yandere_Pony_v1": [
|
7829 |
+
"yandere / yandere,(shaded face:0.7),(empty eyes:0.7),head tilt",
|
7830 |
+
"SDXL 1.0",
|
7831 |
+
"[SDXL&Pony] yandere / \u30e4\u30f3\u30c7\u30ec",
|
7832 |
+
"https://civitai.com/models/670793",
|
7833 |
+
"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c3949b73-dd1e-4446-ac84-7b89df436b74/width=450/31010850.jpeg"
|
7834 |
+
],
|
7835 |
"yandere_XL_v1": [
|
7836 |
"yandere",
|
7837 |
"SDXL 1.0",
|