File size: 24,890 Bytes
8161282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 109123,
    "modelId": 4384,
    "name": "7",
    "createdAt": "2023-07-03T01:29:43.734Z",
    "updatedAt": "2023-07-04T11:06:18.709Z",
    "trainedWords": [],
    "baseModel": "SD 1.5",
    "earlyAccessTimeFrame": 0,
    "description": "<ul><li><p>Better at handling Character LoRA</p></li><li><p>Better at photorealism without sacrificing range (can still do art and anime pretty well)</p></li><li><p>Better at NSFW</p></li></ul>",
    "stats": {
        "downloadCount": 9984,
        "ratingCount": 49,
        "rating": 4.98
    },
    "model": {
        "name": "DreamShaper",
        "type": "Checkpoint",
        "nsfw": false,
        "poi": false
    },
    "files": [
        {
            "name": "dreamshaper_7.safetensors",
            "id": 77036,
            "sizeKB": 2082642.474609375,
            "type": "Model",
            "metadata": {
                "fp": "fp16",
                "size": "pruned",
                "format": "SafeTensor"
            },
            "pickleScanResult": "Success",
            "pickleScanMessage": "No Pickle imports",
            "virusScanResult": "Success",
            "scannedAt": "2023-07-03T01:36:18.285Z",
            "hashes": {
                "AutoV1": "5CF5AE06",
                "AutoV2": "ED989D673D",
                "SHA256": "ED989D673DBF0153D1CD16994C1BFA27A0F13DE1E60665AABCB99334CA5B78E9",
                "CRC32": "C33104F6",
                "BLAKE3": "30D238C3062BC7D929F268A4C07F0465EBA0502A3F3F6DE5097180E3B85F3204"
            },
            "primary": true,
            "downloadUrl": "https://civitai.com/api/download/models/109123"
        }
    ],
    "images": [
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a78a4bd3-b662-4587-893b-207a3abf9ec9/width=450/1386412.jpeg",
            "nsfw": "None",
            "width": 1120,
            "height": 1968,
            "hash": "UfFF51~Wx]tSxvxuxuxuNHj[t6kBkCkCofj[",
            "meta": {
                "Size": "512x896",
                "seed": 132340236,
                "Model": "DreamShaper_7_pruned",
                "steps": 28,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "8k portrait of beautiful cyborg with brown hair, intricate, elegant, highly detailed, majestic, digital photography, art by artgerm and ruan jia and greg rutkowski surreal painting gold butterfly filigree, broken glass, (masterpiece, sidelighting, finely detailed beautiful eyes: 1.2), hdr, <lora:more_details:0.36>",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 7,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "more_details",
                        "type": "lora",
                        "weight": 0.36
                    },
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "25",
                "\"more_details": "3b8aa1d351ef\"",
                "Hires upscale": "2.2",
                "Hires upscaler": "Latent (nearest-exact)",
                "negativePrompt": "BadDream, FastNegativeV2",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer steps": "33",
                "ADetailer prompt": "\"photo of blonde woman, highly detailed, realistic, (grey eye color), art by artgerm and ruan jia and greg rutkowski\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.5",
                "ADetailer CFG scale": "9.0",
                "ADetailer mask blur": "17",
                "ADetailer model 2nd": "hand_yolov8n.pt",
                "ADetailer confidence": "0.3",
                "ADetailer prompt 2nd": "beautiful hands",
                "ADetailer dilate/erode": "4",
                "ADetailer mask blur 2nd": "4",
                "ADetailer confidence 2nd": "0.3",
                "ADetailer inpaint padding": "0",
                "ADetailer negative prompt": "\"BadDream, FastNegativeV2\"",
                "ADetailer dilate/erode 2nd": "4",
                "ADetailer denoising strength": "0.5",
                "ADetailer use separate steps": "True",
                "ADetailer inpaint only masked": "True",
                "ADetailer inpaint padding 2nd": "0",
                "ADetailer negative prompt 2nd": "BadDream",
                "ADetailer denoising strength 2nd": "0.45",
                "ADetailer use separate CFG scale": "True",
                "ADetailer inpaint only masked 2nd": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c5966a05-d5fa-468b-bc01-6769249e253a/width=450/1386413.jpeg",
            "nsfw": "None",
            "width": 1024,
            "height": 1536,
            "hash": "U9Bf%#-qpHxu~T4q9tIoIn9aM{j?%Lj[$%-.",
            "meta": {
                "Size": "512x768",
                "seed": 1988487711,
                "Model": "DreamShaper_7_pruned",
                "steps": 30,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "photo of the warrior Aragorn from Lord of the Rings, film grain",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 4,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "20",
                "Hires upscale": "2",
                "Hires upscaler": "8x_NMKD-Superscale_150000_G",
                "negativePrompt": "BadDream, (UnrealisticDream:1.2)",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer prompt": "\"photo of the warrior Aragorn from Lord of the Rings, film grain\"",
                "(UnrealisticDream": "1.3)\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.5",
                "ADetailer mask blur": "4",
                "ADetailer model 2nd": "hand_yolov8n.pt",
                "ADetailer confidence": "0.3",
                "ADetailer dilate/erode": "4",
                "ADetailer mask blur 2nd": "4",
                "ADetailer confidence 2nd": "0.3",
                "ADetailer inpaint padding": "32",
                "ADetailer negative prompt": "\"BadDream",
                "ADetailer dilate/erode 2nd": "4",
                "ADetailer denoising strength": "0.3",
                "ADetailer inpaint only masked": "True",
                "ADetailer inpaint padding 2nd": "32",
                "ADetailer negative prompt 2nd": "\"BadDream",
                "ADetailer denoising strength 2nd": "0.3",
                "ADetailer inpaint only masked 2nd": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c2702d33-63a3-4016-b607-500ed65621de/width=450/1386414.jpeg",
            "nsfw": "None",
            "width": 1280,
            "height": 1920,
            "hash": "UJFYMsxuM_%L~qt7s:NG%NWENGIotSIoWBR+",
            "meta": {
                "Size": "512x768",
                "seed": 912307312,
                "Model": "DreamShaper_7_pruned",
                "steps": 25,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "masterpiece, best quality, mecha, no humans, black armor, blue eyes, science fiction, fire, laser canon beam, war, conflict, destroyed city background, <lora:nijiMecha:1.2:MIDD>",
                "Version": "v1.3.2",
                "sampler": "DPM++ 2M SDE",
                "cfgScale": 13,
                "clipSkip": 2,
                "Mask blur": "4",
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "\"nijiMecha": "492d6878f85a\"",
                "Model hash": "ed989d673d",
                "negativePrompt": "BadDream, FastNegativeV2",
                "Denoising strength": "0.5"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1c56792c-1e05-44a8-8a51-a43d9acf0ac7/width=450/1386415.jpeg",
            "nsfw": "None",
            "width": 1352,
            "height": 1696,
            "hash": "UCA,qRE100~WAH%2ELInIAkDs9IA=eRjrqsm",
            "meta": {
                "Size": "512x640",
                "seed": 5775676,
                "Model": "DreamShaper_7_pruned",
                "steps": 30,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "masterpiece, (photorealistic:1.4), best quality, beautiful lighting, (ulzzang-6500:0.5), lucy \\(cyberpunk\\), 1girl, white hair, against railing, arm rest, bangs, bare shoulders, belt, black belt, black leotard, black pants, blurry, bob cut, breasts, building, cityscape, clothing cutout, (cropped jacket), cyberpunk, depth of field, from side, gradient eyes, grey eyes, grey hair, white jacket, leotard, lips, long sleeves, looking afar, looking ahead, (mechanical parts), medium breasts, multicolored eyes, multicolored hair, night, night sky, off shoulder, open clothes, open jacket, outdoors, pants, parted lips, railing, red eyeliner, science fiction, short hair with long locks, short shorts, shorts, sidelocks, sky, solo, standing, teeth, thigh cutout, upper teeth only, white jacket, white shorts, cyberpunk \\(series\\), cyberpunk edgerunners, RAW photo, 8k uhd, film grain, cosplay, white wig, night, neon lights,,,, <lora:lucy_offset:1.21>",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 9,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "lucy_offset",
                        "type": "lora",
                        "weight": 1.21
                    },
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "15",
                "lucy_offset": "1> \"",
                "\"lucy_offset": "f7a664103d28\"",
                "(ulzzang-6500": "0.6), lucy \\\\(cyberpunk\\\\), 1girl, gradient eyes, grey eyes, white hair, multicolored eyes, multicolored hair, (red eyeliner), science fiction, short hair with long locks, sidelocks, RAW photo, 8k uhd, film grain",
                "Hires upscale": "2.65",
                "Hires upscaler": "8x_NMKD-Superscale_150000_G",
                "negativePrompt": "BadDream, (UnrealisticDream:1.3)",
                "(photorealistic": "1.4), best quality, beautiful lighting",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer prompt": "\"masterpiece",
                "(UnrealisticDream": "1.3)\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.4",
                "ADetailer mask blur": "4",
                "ADetailer model 2nd": "hand_yolov8n.pt",
                "ADetailer confidence": "0.3",
                "ADetailer prompt 2nd": "beautiful hands",
                "ADetailer dilate/erode": "4",
                "ADetailer mask blur 2nd": "4",
                "ADetailer confidence 2nd": "0.3",
                "ADetailer inpaint padding": "0",
                "ADetailer negative prompt": "\"BadDream",
                "ADetailer dilate/erode 2nd": "4",
                "ADetailer denoising strength": "0.4",
                "ADetailer inpaint only masked": "True",
                "ADetailer inpaint padding 2nd": "32",
                "ADetailer negative prompt 2nd": "\"BadDream",
                "ADetailer denoising strength 2nd": "0.3",
                "ADetailer inpaint only masked 2nd": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/63ae9c1a-3987-412e-b4d8-b8370fb218dd/width=450/1386430.jpeg",
            "nsfw": "Mature",
            "width": 1024,
            "height": 1280,
            "hash": "U12PGKx]4mDi.9x^IUDi.SxvH?IA.StRIAIA",
            "meta": {
                "Size": "512x640",
                "seed": 1429694461,
                "Model": "DreamShaper_7_pruned",
                "steps": 30,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "Vampire naked Queen, backlit, intricate details, highly detailed, slate atmosphere, cinematic, dimmed colors, dark shot, muted colors, film grain, lut, spooky",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 9,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "20",
                "Hires upscale": "2",
                "Hires upscaler": "8x_NMKD-Superscale_150000_G",
                "negativePrompt": "BadDream, (UnrealisticDream:1.2)",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer prompt": "\"photo of a vampire queen, highly detailed, realistic\"",
                "(UnrealisticDream": "1.2)\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.5",
                "ADetailer mask blur": "4",
                "ADetailer model 2nd": "hand_yolov8n.pt",
                "ADetailer confidence": "0.3",
                "ADetailer prompt 2nd": "beautiful hands",
                "ADetailer dilate/erode": "4",
                "ADetailer mask blur 2nd": "4",
                "ADetailer confidence 2nd": "0.3",
                "ADetailer inpaint padding": "0",
                "ADetailer negative prompt": "\"BadDream",
                "ADetailer dilate/erode 2nd": "4",
                "ADetailer denoising strength": "0.3",
                "ADetailer inpaint only masked": "True",
                "ADetailer inpaint padding 2nd": "0",
                "ADetailer negative prompt 2nd": "badhandv4",
                "ADetailer denoising strength 2nd": "0.4",
                "ADetailer inpaint only masked 2nd": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/25c57bbd-7fb4-423b-b3e5-47763c20eb20/width=450/1386429.jpeg",
            "nsfw": "None",
            "width": 688,
            "height": 1024,
            "hash": "U58;0?~WTbx[Dk9G0KD*o|fiadRjOX-:^*tQ",
            "meta": {
                "Size": "344x512",
                "seed": 3091544718,
                "Model": "DreamShaper_7_pruned",
                "steps": 30,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "(masterpiece), (extremely intricate), fantasy, (((photorealistic photo of an evil hermit, male, villain, anti hero, evil face, masculine face, medium hair, Maroon hair, wicked, cruel, sinister, malicious, ruthless, masculine, athletic))), (((dark bloody clothing, intricate details on clothing))), (perfect composition:1.4), aspect ratio 1:1, beach, deviantart hd, artstation hd, concept art, detailed face and body, award-winning photography, margins, detailed face, professional oil painting by Ed Blinkey, Atey Ghailan, Jeremy Mann, Greg Manchess, Alex Gray, trending on ArtStation, trending on CGSociety, intricate, high detail, sharp focus, dramatic, award winning matte drawing cinematic lighting octane render unreal engine volumetrics dtx",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 12,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "25",
                "Hires upscale": "2",
                "Hires upscaler": "Latent (bicubic antialiased)",
                "negativePrompt": "UnrealisticDream, (BadDream)",
                "Denoising strength": "0.6"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ad292a72-53ba-4801-9f80-af79267fb7a2/width=450/1386434.jpeg",
            "nsfw": "None",
            "width": 1024,
            "height": 1408,
            "hash": "UFK1L9000y~W00I9*0M{.8RjRjRjwhRjo|tl",
            "meta": {
                "Size": "512x704",
                "seed": 2067885433,
                "Model": "DreamShaper_7_pruned",
                "steps": 20,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "(anime coloring, anime screencap), 1girl,  white gown, upper body",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 9,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "12",
                "Hires upscale": "2",
                "Hires upscaler": "Latent (nearest-exact)",
                "negativePrompt": "FastNegativeV2",
                "Denoising strength": "0.6"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cfa990d2-943c-4c31-9a83-5e4ec3b1c922/width=450/1386432.jpeg",
            "nsfw": "None",
            "width": 1024,
            "height": 1280,
            "hash": "UjI|zZ~Wt7RlIpRkahWCS4kCayRjRjRjoeWC",
            "meta": {
                "Size": "512x640",
                "seed": 132340236,
                "Model": "DreamShaper_7_pruned",
                "steps": 20,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "(8k, best quality, masterpiece:1.2),(best quality:1.0), (ultra highres:1.0), watercolor, a beautiful woman, shoulder, hair ribbons, by agnes cecile, half body portrait, extremely luminous bright design, pastel colors, (ink:1.3), autumn lights",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 7,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "10",
                "Hires upscale": "2",
                "Hires upscaler": "Latent",
                "negativePrompt": "BadDream",
                "Denoising strength": "0.6"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/adf5e4df-54b9-4e77-a935-a1b6513d4c7f/width=450/1386435.jpeg",
            "nsfw": "None",
            "width": 1120,
            "height": 1824,
            "hash": "UfI4z}M{xtxt~CR*xtt7^*ayofof-=ofoLWC",
            "meta": {
                "Size": "512x832",
                "seed": 5775709,
                "Model": "DreamShaper_7_pruned",
                "steps": 30,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "(masterpiece), (extremely intricate:1.3), (realistic), portrait of a girl, the most beautiful in the world, (medieval armor), metal reflections, upper body, outdoors, intense sunlight, far away castle, professional photograph of a stunning woman detailed, sharp focus, dramatic, award winning, cinematic lighting, ,  volumetrics dtx, (film grain, blurry background, blurry foreground, bokeh, depth of field, sunset, motion blur:1.3), chainmail",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 9,
                "clipSkip": 2,
                "resources": [
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "20",
                "Hires upscale": "2.2",
                "Hires upscaler": "8x_NMKD-Superscale_150000_G",
                "negativePrompt": "BadDream, (UnrealisticDream:1.3)",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer prompt": "\"photo of a blonde girl, (film grain)\"",
                "(UnrealisticDream": "1.3)\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.46",
                "ADetailer mask blur": "4",
                "ADetailer confidence": "0.3",
                "ADetailer dilate/erode": "4",
                "ADetailer inpaint padding": "0",
                "ADetailer negative prompt": "\"BadDream",
                "ADetailer denoising strength": "0.27",
                "ADetailer inpaint only masked": "True"
            }
        },
        {
            "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5257b871-a2d8-4ffa-8e1c-0c32c03f47b4/width=450/1386436.jpeg",
            "nsfw": "None",
            "width": 768,
            "height": 960,
            "hash": "U3B2x{Sd000LB.F_0gz=Dj^Q=xJQIW9]%y~B",
            "meta": {
                "Size": "512x640",
                "seed": 2816015744,
                "Model": "DreamShaper_7_pruned",
                "steps": 25,
                "hashes": {
                    "model": "ed989d673d"
                },
                "prompt": "demon woman wearing a christmas sweater, upper body, art by gerald brom <lora:more_details:0.4>",
                "Version": "v1.3.2",
                "sampler": "DPM++ SDE Karras",
                "cfgScale": 9,
                "clipSkip": 2,
                "resources": [
                    {
                        "name": "more_details",
                        "type": "lora",
                        "weight": 0.4
                    },
                    {
                        "hash": "ed989d673d",
                        "name": "DreamShaper_7_pruned",
                        "type": "model"
                    }
                ],
                "Model hash": "ed989d673d",
                "Hires steps": "15",
                "\"more_details": "3b8aa1d351ef\"",
                "Hires upscale": "1.5",
                "Hires upscaler": "8x_NMKD-Superscale_150000_G",
                "negativePrompt": "cleavage, BadDream",
                "ADetailer model": "face_yolov8n.pt",
                "ADetailer prompt": "\"demon woman, art by gerald brom\"",
                "ADetailer version": "23.6.1.post0",
                "Denoising strength": "0.5",
                "ADetailer mask blur": "4",
                "ADetailer model 2nd": "hand_yolov8n.pt",
                "ADetailer confidence": "0.3",
                "ADetailer prompt 2nd": "beautiful hands",
                "ADetailer dilate/erode": "4",
                "ADetailer mask blur 2nd": "4",
                "ADetailer confidence 2nd": "0.3",
                "ADetailer inpaint padding": "32",
                "ADetailer negative prompt": "BadDream",
                "ADetailer dilate/erode 2nd": "4",
                "ADetailer denoising strength": "0.4",
                "ADetailer inpaint only masked": "True",
                "ADetailer inpaint padding 2nd": "0",
                "ADetailer negative prompt 2nd": "BadDream",
                "ADetailer denoising strength 2nd": "0.4",
                "ADetailer inpaint only masked 2nd": "True"
            }
        }
    ],
    "downloadUrl": "https://civitai.com/api/download/models/109123"
}