File size: 29,352 Bytes
8e68e4b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
{
    "id": 5616,
    "modelId": 4823,
    "name": "v1.1",
    "createdAt": "2023-01-20T09:08:40.988Z",
    "updatedAt": "2023-03-03T23:41:01.851Z",
    "trainedWords": [],
    "baseModel": "SD 1.5",
    "earlyAccessTimeFrame": 0,
    "description": "<p>Includes <a rel=\"ugc\" href=\"https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt\">VAE</a>.<br />So it doesn't matter if you enable VAE or not, it's already in. </p>",
    "model": {
        "name": "Deliberate",
        "type": "Checkpoint",
        "nsfw": false,
        "poi": false
    },
    "files": [
        {
            "name": "deliberate_v11.ckpt",
            "id": 5824,
            "sizeKB": 4165659.993164062,
            "type": "Model",
            "format": "PickleTensor",
            "pickleScanResult": "Success",
            "pickleScanMessage": "**Detected Pickle imports (4)**\n```\ncollections.OrderedDict\ntorch.FloatStorage\ntorch.HalfStorage\ntorch._utils._rebuild_tensor_v2\n```",
            "virusScanResult": "Success",
            "scannedAt": "2023-01-20T10:05:24.044Z",
            "hashes": {
                "AutoV1": "B48A28AB",
                "AutoV2": "10A699C0F3",
                "SHA256": "10A699C0F3D560092C7E4F88C864F99C9422930CF0C535BD34B90DAA3B3738E2",
                "CRC32": "F76A8DEE",
                "BLAKE3": "0C6BAC3CFF67CDFE818369EFB27844BAB973BF3EC07D7DF8F5F6B17494DB5AC4"
            },
            "primary": false,
            "downloadUrl": "https://civitai.com/api/download/models/5616?type=Model&format=PickleTensor"
        },
        {
            "name": "deliberate_v11.safetensors",
            "id": 5823,
            "sizeKB": 4165255.702148438,
            "type": "Model",
            "format": "SafeTensor",
            "pickleScanResult": "Success",
            "pickleScanMessage": "No Pickle imports",
            "virusScanResult": "Success",
            "scannedAt": "2023-01-20T09:59:21.681Z",
            "hashes": {
                "AutoV1": "D0129123",
                "AutoV2": "D8691B4D16",
                "SHA256": "D8691B4D16FB59AEA959DB797350016E24008D59DE8D5A960FF7B1CEC1FBC11C",
                "CRC32": "5940C844",
                "BLAKE3": "52BBFB9058DE392D2CF21C4E38C3B269D4AB0C54B32F73EF6F901D85C6061565"
            },
            "primary": true,
            "downloadUrl": "https://civitai.com/api/download/models/5616"
        }
    ],
    "images": [
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d85a565a-fe59-460a-4950-3ed56b2a9a00/width=450/45201",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UBJ7j#~q4,S5]|s:?wI=0#?H?cRjS6%L={bc",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 4116594838,
                "Model": "Deliberate",
                "steps": 32,
                "prompt": "a portrait of a pole, undercut hair, maid, freckles, apron, big breast, amazing body, pronounced feminine feature, legwear suspenders, kitchen, close up, skin covered by flour",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 6,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, asian, b&w, black and white, sepia"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1156096d-fd3a-4e73-5e36-8ec66191c900/width=450/45200",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UJFh-J%MAtIps;n+56jY~UbHR,R*0fWBs,of",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 22863302,
                "Model": "Deliberate",
                "steps": 26,
                "prompt": "close up, victorian era, medical mask, cinematography, crafted, elegant, meticulous, magnificent, maximum details, extremely hyper aesthetic, intricately detailed",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 7,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia, flowers, roses"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/13fca22c-9c11-40e0-8a40-53481e16f700/width=450/45199",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UKJtJ5RPaR.8~C,[AKxB+tkDF}#Q,BKPjJwH",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 4141461773,
                "Model": "Deliberate",
                "steps": 30,
                "prompt": "close up, full color painting of squatting cyberpunk girl, sunglasses, high heel shoes, perfect hourglass figure, perfect perky tits, (((Graffiti art) (by Carne Griffiths))), red wall background, insane details, intricate details, hyperdetailed, low contrast, soft cinematic light, dim colors, exposure blend, hdr, front",
                "sampler": "Euler a",
                "cfgScale": 7,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bec02cd0-4236-49cb-becd-2871a4b5b800/width=450/45198",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UCGS0_yrhc%}-:8x0LRQ57%1MKni0Mk;$%W.",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 2343937302,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "a portrait of a laughing, toxic, muscle, god, elder, epic realistic, faded, (((hdr))), hyperdetailed, cinematic, warm lights, intricate details, muscle",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 6,
                "Model hash": "d8691b4d16",
                "negativePrompt": "asian, deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4f950546-b66c-48a2-aeca-8480dd157c00/width=450/45197",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UDE.,~_300014nV@tRNHbut7%2t7_NNGIBxa",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 1515952062,
                "Model": "Deliberate",
                "steps": 40,
                "prompt": "Jane Eyre with headphones, natural skin texture, 24mm, 4k textures, soft cinematic light, adobe lightroom, photolab, hdr, intricate, elegant, highly detailed, sharp focus, ((((cinematic look)))), soothing tones, insane details, intricate details, hyperdetailed, low contrast, soft cinematic light, dim colors, exposure blend, hdr, faded, slate atmosphere",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 7,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, flowers, roses"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b258e80c-442c-4d82-62ff-6bd5cd547800/width=450/45196",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UEE.CLL3^Oxu}Q57RPEMt7ofxuX9E2jERjwa",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 1008934894,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "a portrait photo of a black girl, smiling, tattoo, blue dreads, ((((folk dress)))), Ukrainian dress, pronounced feminine feature, insane details, intricate details, hyperdetailed, complex background, medieval tavern, indoor",
                "sampler": "Euler a",
                "cfgScale": 8,
                "Model hash": "d8691b4d16",
                "negativePrompt": "(((naked))), deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, ((purple)), ((rose)), flowers, black lips"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/51618c15-fdc5-4005-1c84-7fc575af0700/width=450/45195",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UEF$CUnN.T4o-:RPIo9Z4nM{D%Rk?HxttRbc",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 2953861389,
                "Model": "Deliberate",
                "steps": 25,
                "prompt": "a finnish blond girl, posing, twintails, bondage, high heel shoes, chaotic, eclectic style, metal bra, intricate details, hyperdetailed, tattoo, goth, stream of hallucinatory forms and phantoms, close up",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 7,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, flowers, roses, black lips"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23f28dff-ab23-4d0b-4a65-7ebe361ee600/width=450/45194",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UADA0:4TGCq^8cHtKOH@}@t7-AIB0MWU-:w[",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 3130239558,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "a cute kitten made out of metal, cyborg, cyberpunk style, ((intricate details)), hdr, ((intricate details, hyperdetailed)), cinematic shot, vignette",
                "sampler": "Euler a",
                "cfgScale": 6.5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia, human, man, womn"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9260c1c4-0eb3-4878-aa7a-6a3d6a16e600/width=450/45193",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "ULKTPWS}0L=|~A-;x[IU9FfkaLM{S#MdMxI?",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 1628865304,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "waitress, pinup, art style, kodak portra 400, cinematic, [[[smiling]]], [[[close up]]]",
                "sampler": "Euler a",
                "cfgScale": 8,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands",
                "Face restoration": "CodeFormer"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6636594e-19ec-4fb5-a317-1b073d3e1300/width=450/45192",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "U7FO_l9F-.PB~pM|0eOX?GofX9xZ4p^+RPD*",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 737670053,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "a young woman, street smiling, backpack, ponytails, epic realistic, photo, faded, complex stuff around, intricate background, soaking wet, neutral colors, ((((hdr)))), ((((muted colors)))), intricate scene, artstation, intricate details, vignette",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8fe5e595-23fa-4aaa-397b-097072b6db00/width=450/45191",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "U9DIzJ~TH?%0CRkWib%0$yE3D+NH15WCiwIq",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 4101835597,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "oldman in chair, complex stuff around, intricate in the background, art, close up, painting, detailed, cartoon, cinematic shot, fantasy, low saturation, vignette, [hdr]",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, flowers, roses"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4cbd16ed-0af9-41be-1c78-42165e378800/width=450/45190",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UFE2qK0Lk9^+_MDjEL?Ht,icE1x]_1EM$%kW",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 1320809105,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "end of the world, epic realistic, ((((hdr)))), ((((muted colors)))), apocalypse, abandoned, neutral colors, night, screen space refractions, (intricate details), ((intricate details, hyperdetailed)), artstation, cinematic shot, vignette, complex background, [[teal and orange]], technicolor, flipped over building",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 12,
                "Model hash": "d8691b4d16"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ab1a657d-9dd9-460a-c0bf-905d2ef66e00/width=450/45189",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "U397eA%L00IV00M{~Vx[_2M|D*%L?HxuIoD%",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 2231707803,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "underneath the bed, a scariest old lady ever, is watching you, creepy, from the dark, very dark, black sheets, cinematic, dimmed colors, dark shot from the bottom, muted colors, grainy, lut, spooky",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 9,
                "Model hash": "d8691b4d16"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/74450a00-9409-4b4d-6305-861639806700/width=450/45188",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UECi{jx]?]M}yXozx[oe9GxY9Ht7-.R+t6bH",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 4012294332,
                "Model": "Deliberate",
                "steps": 26,
                "prompt": "a portrait of an angry, egypt god, intricate outfit, epic realistic, kit, aesthetic, cinematic, insane details, hyperdetailed, dimmed colors, muted colors, film grainy, slate, lut, spooky, vignette, tomb inside, mugshot, art by rutkowski,",
                "sampler": "Euler a",
                "cfgScale": 5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8da4f015-c7cd-4b3d-f4cf-55e811a2a800/width=450/45187",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UEF$Ij~q0hEj-ns.kCIUDiWCDiM{?voz9GWB",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 3186757563,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "a close up portrait of a wet, happy, blond, 40 yo, teacher, glasses, busty, cleavage, hotel in the background, trenchcoat, slate atmosphere, cinematic, dimmed colors, dark shot, muted colors, film grainy, lut, insane details, intricate details, [[[freckles]]]",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 5.5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "hat, umbrella, deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia,"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ab529df5-b9a2-4f5a-8cca-d8ae2078f400/width=450/45186",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "U9C#*cxF9cxX^P=^xpIq~9t6I;n~xt-n-A5S",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 2638224067,
                "Model": "Deliberate",
                "steps": 26,
                "prompt": "drunk, creepy santa, muddy, crowded bottles bar, intricate details, hdr, intricate details, hyperdetailed, cinematic, dark shot, muted colors, film grainy, soothing tones, muted colors, technicolor",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 5,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/0b74f5fb-9878-4db0-b13a-f1a619731300/width=450/45185",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UGG8.cDO0L%1VsIUyDozWVIA%MRj_NIUi_t7",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 651894571,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "a portrait of a ((soaking wet of a milk)), redhead, freckles teacher is sitting, slate atmosphere, cinematic, dimmed colors, dark shot, muted colors, film grainy, lut, insane details, intricate details, hyperdetailed,",
                "sampler": "DPM++ 2M Karras",
                "cfgScale": 6,
                "Model hash": "d8691b4d16",
                "negativePrompt": "deformed, bad anatomy, disfigured, poorly drawn face, mutation, mutated, extra limb, ugly, disgusting, poorly drawn hands, missing limb, floating limbs, disconnected limbs, malformed hands, blurry, ((((mutated hands and fingers)))), watermark, watermarked, oversaturated, censored, distorted hands, amputation, missing hands, obese, doubled face, double hands, b&w, black and white, sepia",
                "Face restoration": "CodeFormer"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b11fe192-bb77-4222-7aa9-49704d744200/width=450/57976",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UHFYiW~q0Knj%MR+x[?b00Rj-;t7?as:IVxu",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 4188232320,
                "Model": "Deliberate",
                "steps": 24,
                "prompt": "a 40 yo milkman, smiling, (milk bar:1.2), cook hat, artstation, (epic realistic:1.2), (hdr:1.3), (dark shot:0.7), intricate details, [[rutkowski]], intricate, cinematic, detailed",
                "sampler": "Euler a",
                "cfgScale": 7,
                "resources": [
                    {
                        "hash": "d8691b4d16",
                        "name": "Deliberate",
                        "type": "model"
                    }
                ],
                "Model hash": "d8691b4d16",
                "negativePrompt": "(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3f7ca4ef-1a39-4cee-e195-b487d3f75900/width=450/58408",
            "nsfw": false,
            "width": 768,
            "height": 1024,
            "hash": "UTGb}4.TR4M{%%%1jFV?jYjEtSs+x^s:oeof",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 1028041305,
                "Model": "Deliberate",
                "steps": 30,
                "prompt": "a [skyscraper : (waffles:1.3) : 7], complex",
                "sampler": "Euler a",
                "cfgScale": 5,
                "resources": [
                    {
                        "hash": "d8691b4d16",
                        "name": "Deliberate",
                        "type": "model"
                    }
                ],
                "Model hash": "d8691b4d16",
                "negativePrompt": "(deformed, distorted, disfigured:1.3)"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        },
        {
            "url": "https://imagecache.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4c0b9be4-4787-42a3-2080-62f6ee259100/width=450/74172",
            "nsfw": true,
            "width": 768,
            "height": 1024,
            "hash": "UHIqx[KPC6%L.myCtk-oD*%yj;9a0KspE1r;",
            "meta": {
                "ENSD": "31337",
                "Size": "768x1024",
                "seed": 31337,
                "Model": "Deliberate",
                "steps": 28,
                "prompt": "NO Restore Faces, NO Hires.fix, NO img2img, NO Photoshop, Pure Prompt - Straight Result. The original image with its prompt here: https://boosty.to/xpuct",
                "sampler": "Euler a",
                "cfgScale": 6,
                "resources": [
                    {
                        "hash": "d8691b4d16",
                        "name": "Deliberate",
                        "type": "model"
                    }
                ],
                "Model hash": "d8691b4d16",
                "negativePrompt": "(deformed, distorted, disfigured:1.3), poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, floating limbs, (mutated hands and fingers:1.4), disconnected limbs, mutation, mutated, ugly, disgusting, blurry, amputation, flowers, roses, black lips"
            },
            "generationProcess": "txt2img",
            "needsReview": false,
            "tags": []
        }
    ],
    "downloadUrl": "https://civitai.com/api/download/models/5616"
}