File size: 28,456 Bytes
c5dca1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "id": 127862,
    "modelId": 52023,
    "name": "Erect Horse Penis v5",
    "createdAt": "2023-07-28T13:44:26.250Z",
    "updatedAt": "2023-07-28T14:49:15.781Z",
    "trainedWords": [
        "eqcok",
        "Read Description!"
    ],
    "baseModel": "SD 1.5",
    "earlyAccessTimeFrame": 0,
    "description": "<p>Through some time Erect Horse Penis LoRA got many improvements, and this version is not an exception.</p><p><a target=\"_blank\" rel=\"ugc\" href=\"https://invisible-text.com/ru\">\u3164</a></p><p>Whats better?</p><ul><li><p>Greatly expanded dataset and adjusted training settings</p></li><li><p>Less style impact</p><ul><li><p>Use <code>(simple background:1.2)</code> in negatives for better result, if you're not going to do simple background images</p></li></ul></li><li><p>Better penis shape and quality</p></li><li><p>Less artifacts and mistakes like \"double testicles\"</p></li><li><p>Better \"From Side\" view</p></li><li><p>Better (at least, working for 10% of images) \"From Behind\" view</p></li><li><p>Easier tip shape control</p><ul><li><p>Blunt and heart/apple-shaped by defaut and with <code>flared tip</code> in neagtives</p></li><li><p>Flared with <code>flared tip</code> in positives</p></li></ul></li><li><p>Less \"out of frame\" penis</p><ul><li><p>Also, now penis not trying to take all the image space, except some horizontal images, because of lack in dataset, i guess.</p></li></ul></li><li><p>Less \"piercing the sky\" penis, pointing straight upwards</p></li></ul><p>Whats worse?</p><ul><li><p>Temporaly removed \"autofellatio\" and \"autopaizuri\" concepts from LoRA due to many mistakes and problems overall. Need time to refresh it.</p></li></ul><p><a target=\"_blank\" rel=\"ugc\" href=\"https://invisible-text.com/ru\">\u3164</a></p><p>I've figured out, that overcomplicating with a lot of concept with penis (like tip shape, length, girth etc) would lead to the same effect, as character LoRAs. It would be harder to generated penis w/o those tags, and of course, it will lose it's consistency. So, i've decided to turn off some features and train it into basic concept.</p><p>Those features are:</p><ul><li><p>Blunt tip for penis, now don't need an activation tag itself</p></li><li><p>Heart/apple-shaped tip for penis</p><ul><li><p>This one may appear randomly while generations, looks pretty cool, as i think, but it really need more arts with the same shape to work properly.</p></li></ul></li><li><p>Lenght, now depends on penis size</p></li></ul>",
    "stats": {
        "downloadCount": 399,
        "ratingCount": 2,
        "rating": 5
    },
    "model": {
        "name": "Erect Horse Penis - Concept LoRA",
        "type": "LORA",
        "nsfw": true,
        "poi": false
    },
    "files": [
        {
            "id": 92505,
            "url": "https://civitai-delivery-worker-prod-2023-07-01.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/12102/model/erect20horse20penis.fgaM.safetensors",
            "sizeKB": 37034.1796875,
            "name": "Erect Horse Penis.safetensors",
            "type": "Model",
            "metadata": {
                "fp": null,
                "size": null,
                "format": "SafeTensor"
            },
            "pickleScanResult": "Success",
            "pickleScanMessage": "No Pickle imports",
            "virusScanResult": "Success",
            "virusScanMessage": null,
            "scannedAt": "2023-07-28T13:46:21.055Z",
            "hashes": {
                "AutoV1": "00786458",
                "AutoV2": "B3100ED581",
                "SHA256": "B3100ED581FFFAEB346E0DC55921A00CF244FC6FFD2540BE0576E3B108335697",
                "CRC32": "2A88091F",
                "BLAKE3": "C7E7C99818DF2E6CA3E56A4489BFAD07BCCE96D770F83A605725448423C08E12"
            },
            "primary": true,
            "downloadUrl": "https://civitai.com/api/download/models/127862"
        },
        {
            "id": 87227,
            "url": "https://civitai-delivery-worker-prod-2023-05-01.5ac0637cfd0766c97916cefa3764fbdf.r2.cloudflarestorage.com/101631/default/klF8Anime2Vae.4wzX.pt",
            "sizeKB": 163478.3720703125,
            "name": "kl-f8-anime2.vae.pt",
            "type": "VAE",
            "metadata": {
                "fp": null,
                "size": null,
                "format": "Other",
                "modelFileId": 44955,
                "vaeMigration": true,
                "modelFileHash": "D080A9911BA5F4270D9A2612135AE68BE88065B0B6915AE9C7971F9E63039A4E"
            },
            "pickleScanResult": "Success",
            "pickleScanMessage": "No Pickle imports",
            "virusScanResult": "Success",
            "virusScanMessage": null,
            "scannedAt": "2023-05-06T12:45:55.283Z",
            "modelVersionId": 121348,
            "hashes": {
                "AutoV1": "A37DB153",
                "AutoV2": "D080A9911B",
                "SHA256": "D080A9911BA5F4270D9A2612135AE68BE88065B0B6915AE9C7971F9E63039A4E",
                "CRC32": "2228C76E",
                "BLAKE3": "C714E1BEE1F8A49462B17ADF8105EC1B56437ECDD63E939CCE0CD9AA6DE500E0"
            },
            "primary": false,
            "downloadUrl": "https://civitai.com/api/download/models/127862?type=VAE&format=Other"
        }
    ],
    "images": [
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/813d6f15-d57d-44ea-a54a-2b8e853bdcfb/width=450/1760017.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UHBq6.%4PqEMNGRoxDtR4-tmxFxtWEtSRjxu",
            "meta": {
                "Size": "512x768",
                "seed": 97134650,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K, wlsdnjs950,\n1girl, solo, standing, upper body, (from below:1.2), legs apart, hands on hips,\nblack hair, short hair, blunt bangs, curled horns, (black horns:1.2),\nblack eyes, looking at viewer,\nsmile,\nmedium breasts, puffy nipples, puffy areolae,\nblack bra, covered nipples, bottomless,\neqcok, erection, large penis, large testicles, cock sheath, sagging testicles, black testicles, black penis, urethra, straight penis,\noutdoors, beach, sea, water, waves, clouds, sand, platns, palm tree,\n<lora:Erect Horse Penis:1>  <lora:Rabbit (wlsdnjs950):1>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, nipples, pink penis,",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3",
                "Rabbit (wlsdnjs950)": "b617b45520e4\""
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/09894ba6-9fc3-47b8-840d-b682b6599d92/width=450/1760012.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "U49@3YFz0f?IT}i^5r^+E|R5zn5S00+Y-qw[",
            "meta": {
                "Size": "512x768",
                "seed": 3232086043,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K,\n1girl, solo, standing, upper body, red skin, eredar, femered, horns, holding sword,\ngreen eyes, looking at viewer,\nlarge breasts,\narmor, pauldrons, gauntlets, armored boots, (bottomless:1.2),\neqcok, huge penis, huge testicles, cock sheath, sagging testicles, black testicles, (red penis:1.2), urethra,\ncliffs, (black sky, dark, dark clouds:1.2)\n <lora:Erect Horse Penis:1> <lora:EredarFemFut:1>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "EredarFemFut",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "EredarFemFut": "20ab58bbaece\"",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, green penis, nipples, masturbation,",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b2129c3b-e71c-4aa8-911c-b25afef915fd/width=450/1760011.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UQEpWd_MDiMf%fkWM|M{VrVss;tRf}R%V@xa",
            "meta": {
                "Size": "512x768",
                "seed": 1316050324,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K, backlighting,\n1girl, solo, sitting, upper body, kindred, lamb, white fur, white hair, lamb ears, black mask,\nblue eyes, \nblue nipples,\neqcok, big penis, big testicles, cock sheath, resting testicles, black teesticles, (blue penis:1.2), urethra,\noutdoors, nature, forest, (plants:1.2), flowers, trees, rocks,\n <lora:Erect Horse Penis:1> <lora:Kindred:1>",
                "Kindred": "0dc3d3647ade\"",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "Kindred",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, pink penis,",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0d1aaaf7-53aa-4615-936c-8c0574c1555d/width=450/1760621.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UEJ7gu01720#loNb^*~W%L^*Ip%f^OtREM%1",
            "meta": {
                "Size": "512x768",
                "seed": 2841081041,
                "Model": "Latte",
                "steps": 30,
                "hashes": {
                    "model": "e00ebeaac2"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K, backlighting,\n1girl, solo, (mature female:1.2), upper body, standing, legs apart,\nblack hair, long hair, (twintails;1.2), bangs,\nred eyes, thick eyelashes, long eyelashes, looking at viewer,\nevil grin,\nwhite shirt, short sleeves, crop top overhang, short sleeves,\nbottomless,\nlarge breasts, stomach,\neqcok, (large penis, large testicles:1.2), cock sheath, sagging testicles, dark testicles, urethra, straight penis,\nindoors, locker room,\n<lora:eqcok_6000_2repeats_v3:1>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "eqcok_6000_2repeats_v3",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "e00ebeaac2",
                        "name": "Latte",
                        "type": "model"
                    }
                ],
                "Model hash": "e00ebeaac2",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, windows, masturbation, door,",
                "negative_hand-neg": "73b524a2da12\"",
                "Denoising strength": "0.3",
                "\"eqcok_6000_2repeats_v3": "b348f67b88e5\""
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5ad9f228-ef94-4047-9c61-28f9e27823de/width=450/1760009.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UQDTCmofN{o~K-WANLSi-;eoo2R*IAjFM{jE",
            "meta": {
                "Size": "512x768",
                "mist": "1.2),\\n\\n(tight, skin tight, impossible clothes",
                "seed": 2166028729,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K,\n1girl, solo, standing, upper body,\nwhite hair, long hair, black horns,\nblue eyes, looking at viewer,\nsmile,\narmor, pauldrons, armored boots, gauntlets,\neqcok, erection, huge penis, huge testicles, cock sheath, sagging testicles,  dark testicles, urethra, straight penis,\noutdoors, nature, (mountain:1.2), mountainous horizon, pines,\n<lora:Erect Horse Penis:1>",
                "Version": "v1.5.0",
                "sampler": "DPM++ 2M SDE",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "flared tip": "1.2), ribs, abs, pussy, anus,\"",
                "Hires steps": "25",
                "low quality": "1.4), (simple background, fog",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "\"(EasyNegative": "0.8), negative_hand-neg, (worst quality",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, pussy, anus,",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer steps": "50",
                "ADetailer prompt": "\"white hair, long hair, black horns,\\n\\nblue eyes, looking at viewer,\\n\\nsmile,\"",
                "ADetailer version": "23.6.0",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5\"",
                "Denoising strength": "0.3",
                "ADetailer CFG scale": "8.0",
                "ADetailer mask blur": "8",
                "ADetailer confidence": "0.3",
                "ADetailer dilate/erode": "32",
                "ADetailer inpaint padding": "32",
                "ADetailer mask merge/invert": "Merge",
                "ADetailer denoising strength": "0.3",
                "ADetailer use separate steps": "True",
                "ADetailer inpaint only masked": "True",
                "ADetailer use separate CFG scale": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/696abeaf-3a4f-4156-980c-73496d3d7abb/width=450/1760015.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "U8HT]Q0201^$~S03xHMxPCM_D$Iu-P^jj_57",
            "meta": {
                "Size": "512x768",
                "seed": 1748001177,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K,\n1girl, solo, standing, upper body, togahimiko, from below, togahimiko,\nblonde hair, short hair, double bun, messy hair,\nyellow eyes, looking at viewer,\nsmile, open mouth, fangs, blush,\nsmall breasts,\nbeige cardigan, serafuku, pleated skirt,\neqcok, erection, large penis, large testicles, cock sheath, sagging testicles, skin-colored testicles, skin-colred penis, urethra,\n<lora:Erect Horse Penis:1> <lora:himiko-toga-locon:0.8>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs,",
                "himiko-toga-locon": "9fc0dfe46fcd\"",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25316b75-9108-4dfe-9305-c1be816f679e/width=450/1760021.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UAFXCw02Gs}ZFe}@9Gtk0h}@w0I:f8Ip%1nP",
            "meta": {
                "Lyla": "31316208fc19\"",
                "Size": "512x768",
                "seed": 1918715294,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K,\n1girl, solo, adult, lyla, (red skin:1.2), sitting on bed, arm support,\nlong hair, white hair, blunt bangs, horns,\nblack sclera, blue eyes,\nsmile,\nnude, \neqcok, erection, large penis, large testicles, cock sheath, resting testicles, dark testicles, red penis, urethra,\n<lora:Erect Horse Penis:1>  <lora:Lyla:1>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "Lyla",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, pussy, anus,",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/461a2ee2-6ac6-4f30-9ff5-f5cf329da037/width=450/1760022.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "ULJai.PU*I=r0[XU9#v|M#-.=_xDM|oxx[k=",
            "meta": {
                "Size": "512x768",
                "seed": 3517827816,
                "Model": "DivineAnimeMix1",
                "steps": 30,
                "hashes": {
                    "model": "ea848e19a9"
                },
                "prompt": "2girls, multiple girls, mature female, mature, walking on beach, upper body,\norange hair, very long hair, hair over one eye,\ngreen eyes, long eyelashes, thick eyelashes, looking at viewer,\nsmile, \nnaked, micro bikini,\nlarge breasts,\neqcok, erection, (huge penis, huge testicles:1.2), cock sheath, sagging testicles, dark testicles, urethra,\n<lora:Erect Horse Penis:1> <lora:Dmitrys:1>",
                "Dmitrys": "186f2cd0377c\"",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "Dmitrys",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "ea848e19a9",
                        "name": "DivineAnimeMix1",
                        "type": "model"
                    }
                ],
                "Model hash": "ea848e19a9",
                "Hires steps": "10",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "negative_hand-neg, (worst quality, low quality:1.2), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, pussy, anus,",
                "\"Erect Horse Penis": "b348f67b88e5",
                "\"negative_hand-neg": "73b524a2da12\"",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f38fd404-fe8a-4c1c-9b6a-413bd6a8c35a/width=450/1760023.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UBG*pH~W%}9t.8_2?a?aIB~VtRtRH?r@0LaL",
            "meta": {
                "Size": "512x768",
                "seed": 127494652,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "(masterpiece, best quality:1.2), extremely detailed, soft ambient lighting, sharp focus, 4K,\n1boy, standing, upper body, astolfo \\(fate\\), stretching, arms behind head, arms up, \npink hair, short hair, streaked hair, \npurple eyes, long eyelashes, thick eyelashes, looking at viewer,\nopen mouth, tongue out, breath, \nflat chest, \nblack microskirt, highleg panties, black thighhighs, (white croptop, crop top overhang:1.2), long sleeves, \neqcok, erection, huge penis, huge testicles, cock sheath, sagging testicles,  dark testicles, urethra, straight penis,\nindoors, wooden walls, cabin, furniture, flower pot,\n<lora:Erect Horse Penis:1> <lora:Fate - Astolfo:0.8>",
                "Version": "v1.5.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "\"EasyNegative": "c74b4e810b03",
                "Hires upscale": "2",
                "Fate - Astolfo": "79ebdce7df47\"",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(EasyNegative:0.8), negative_hand-neg, (worst quality, low quality:1.4), (simple background, fog, mist:1.2),\n(tight, skin tight, impossible clothes, flared tip:1.2), ribs, abs, pussy, anus,",
                "negative_hand-neg": "73b524a2da12\"",
                "\"Erect Horse Penis": "b348f67b88e5",
                "Denoising strength": "0.3"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a6644e2b-8502-4270-b5bc-e9ab721b0bdf/width=450/1760013.jpeg",
            "nsfw": "X",
            "width": 1024,
            "height": 1536,
            "hash": "UEGuXY~W00009ufR-pxtE2ay%2f6n$NGbH%2",
            "meta": {
                "Size": "512x768",
                "seed": 3318502403,
                "Model": "DivineEleganceMix6",
                "steps": 30,
                "hashes": {
                    "model": "0d5db2f3ed"
                },
                "prompt": "1girl, solo, standing, upper body, from side,\ngrey hair, long hair, pointy ears,\nred eyes, looking at viewer, (tsurime:1.2), \nsmile,\nnude, nipples, thick thighs,\neqcok, erection, (huge penis, huge testicles:1.2), cock sheath, sagging testicles, urethra,\n(medium breast:1.2),\nsimple background, white background,\n<lora:eqcok_6000_2repeats_v3:1> <lora:Gogalking-000018:1>",
                "Version": "v1.4.0",
                "sampler": "Euler a",
                "cfgScale": 8,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "eqcok_6000_2repeats_v3",
                        "type": "lora",
                        "weight": 1
                    },
                    {
                        "hash": "0d5db2f3ed",
                        "name": "DivineEleganceMix6",
                        "type": "model"
                    }
                ],
                "Model hash": "0d5db2f3ed",
                "Hires steps": "10",
                "Hires upscale": "2",
                "Hires upscaler": "4x_fatal_Anime_500000_G",
                "negativePrompt": "(worst quality, low quality:1.2), blurry, depth of field, bokeh, (fog, mist:1.2), bloom,\ntight, skin tight, impossible clothes, (ribs, abs, flared tip:1.2),",
                "Gogalking-000018": "d96c5f9a6442\"",
                "Denoising strength": "0.3",
                "\"eqcok_6000_2repeats_v3": "b348f67b88e5"
            }
        }
    ],
    "downloadUrl": "https://civitai.com/api/download/models/127862"
}