victorisgeek commited on
Commit
c6141f4
1 Parent(s): 3b41c8c

Upload folder using huggingface_hub

Browse files
.env.example ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ SVC_URL = 'INSERT_YOUR_SVC_URL_HERE'
2
+ ARC_URL = 'INSERT_YOUR_ARC_URL_HERE'
3
+ SVC_KEY = 'INSERT_YOUR_SVC_KEY_HERE'
.env_d3.example ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ CREATOR_URL = 'INSERT_YOUR_DALLE_URL_HERE'
2
+ CONNECTOR_URL = 'INSERT_YOUR_CONNECTOR_URL_HERE'
3
+ CONNECTOR_ID = 'INSERT_YOUR_CONNECTOR_ID_HERE'
4
+ CONNECTOR_KEY = 'INSERT_YOUR_CONNECTOR_KEY_HERE'
.gitignore ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/
LICENSE ADDED
@@ -0,0 +1,661 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ The licenses for most software and other practical works are designed
15
+ to take away your freedom to share and change the works. By contrast,
16
+ our General Public Licenses are intended to guarantee your freedom to
17
+ share and change all versions of a program--to make sure it remains free
18
+ software for all its users.
19
+
20
+ When we speak of free software, we are referring to freedom, not
21
+ price. Our General Public Licenses are designed to make sure that you
22
+ have the freedom to distribute copies of free software (and charge for
23
+ them if you wish), that you receive source code or can get it if you
24
+ want it, that you can change the software or use pieces of it in new
25
+ free programs, and that you know you can do these things.
26
+
27
+ Developers that use our General Public Licenses protect your rights
28
+ with two steps: (1) assert copyright on the software, and (2) offer
29
+ you this License which gives you legal permission to copy, distribute
30
+ and/or modify the software.
31
+
32
+ A secondary benefit of defending all users' freedom is that
33
+ improvements made in alternate versions of the program, if they
34
+ receive widespread use, become available for other developers to
35
+ incorporate. Many developers of free software are heartened and
36
+ encouraged by the resulting cooperation. However, in the case of
37
+ software used on network servers, this result may fail to come about.
38
+ The GNU General Public License permits making a modified version and
39
+ letting the public access it on a server without ever releasing its
40
+ source code to the public.
41
+
42
+ The GNU Affero General Public License is designed specifically to
43
+ ensure that, in such cases, the modified source code becomes available
44
+ to the community. It requires the operator of a network server to
45
+ provide the source code of the modified version running there to the
46
+ users of that server. Therefore, public use of a modified version, on
47
+ a publicly accessible server, gives the public access to the source
48
+ code of the modified version.
49
+
50
+ An older license, called the Affero General Public License and
51
+ published by Affero, was designed to accomplish similar goals. This is
52
+ a different license, not a version of the Affero GPL, but Affero has
53
+ released a new version of the Affero GPL which permits relicensing under
54
+ this license.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ TERMS AND CONDITIONS
60
+
61
+ 0. Definitions.
62
+
63
+ "This License" refers to version 3 of the GNU Affero General Public License.
64
+
65
+ "Copyright" also means copyright-like laws that apply to other kinds of
66
+ works, such as semiconductor masks.
67
+
68
+ "The Program" refers to any copyrightable work licensed under this
69
+ License. Each licensee is addressed as "you". "Licensees" and
70
+ "recipients" may be individuals or organizations.
71
+
72
+ To "modify" a work means to copy from or adapt all or part of the work
73
+ in a fashion requiring copyright permission, other than the making of an
74
+ exact copy. The resulting work is called a "modified version" of the
75
+ earlier work or a work "based on" the earlier work.
76
+
77
+ A "covered work" means either the unmodified Program or a work based
78
+ on the Program.
79
+
80
+ To "propagate" a work means to do anything with it that, without
81
+ permission, would make you directly or secondarily liable for
82
+ infringement under applicable copyright law, except executing it on a
83
+ computer or modifying a private copy. Propagation includes copying,
84
+ distribution (with or without modification), making available to the
85
+ public, and in some countries other activities as well.
86
+
87
+ To "convey" a work means any kind of propagation that enables other
88
+ parties to make or receive copies. Mere interaction with a user through
89
+ a computer network, with no transfer of a copy, is not conveying.
90
+
91
+ An interactive user interface displays "Appropriate Legal Notices"
92
+ to the extent that it includes a convenient and prominently visible
93
+ feature that (1) displays an appropriate copyright notice, and (2)
94
+ tells the user that there is no warranty for the work (except to the
95
+ extent that warranties are provided), that licensees may convey the
96
+ work under this License, and how to view a copy of this License. If
97
+ the interface presents a list of user commands or options, such as a
98
+ menu, a prominent item in the list meets this criterion.
99
+
100
+ 1. Source Code.
101
+
102
+ The "source code" for a work means the preferred form of the work
103
+ for making modifications to it. "Object code" means any non-source
104
+ form of a work.
105
+
106
+ A "Standard Interface" means an interface that either is an official
107
+ standard defined by a recognized standards body, or, in the case of
108
+ interfaces specified for a particular programming language, one that
109
+ is widely used among developers working in that language.
110
+
111
+ The "System Libraries" of an executable work include anything, other
112
+ than the work as a whole, that (a) is included in the normal form of
113
+ packaging a Major Component, but which is not part of that Major
114
+ Component, and (b) serves only to enable use of the work with that
115
+ Major Component, or to implement a Standard Interface for which an
116
+ implementation is available to the public in source code form. A
117
+ "Major Component", in this context, means a major essential component
118
+ (kernel, window system, and so on) of the specific operating system
119
+ (if any) on which the executable work runs, or a compiler used to
120
+ produce the work, or an object code interpreter used to run it.
121
+
122
+ The "Corresponding Source" for a work in object code form means all
123
+ the source code needed to generate, install, and (for an executable
124
+ work) run the object code and to modify the work, including scripts to
125
+ control those activities. However, it does not include the work's
126
+ System Libraries, or general-purpose tools or generally available free
127
+ programs which are used unmodified in performing those activities but
128
+ which are not part of the work. For example, Corresponding Source
129
+ includes interface definition files associated with source files for
130
+ the work, and the source code for shared libraries and dynamically
131
+ linked subprograms that the work is specifically designed to require,
132
+ such as by intimate data communication or control flow between those
133
+ subprograms and other parts of the work.
134
+
135
+ The Corresponding Source need not include anything that users
136
+ can regenerate automatically from other parts of the Corresponding
137
+ Source.
138
+
139
+ The Corresponding Source for a work in source code form is that
140
+ same work.
141
+
142
+ 2. Basic Permissions.
143
+
144
+ All rights granted under this License are granted for the term of
145
+ copyright on the Program, and are irrevocable provided the stated
146
+ conditions are met. This License explicitly affirms your unlimited
147
+ permission to run the unmodified Program. The output from running a
148
+ covered work is covered by this License only if the output, given its
149
+ content, constitutes a covered work. This License acknowledges your
150
+ rights of fair use or other equivalent, as provided by copyright law.
151
+
152
+ You may make, run and propagate covered works that you do not
153
+ convey, without conditions so long as your license otherwise remains
154
+ in force. You may convey covered works to others for the sole purpose
155
+ of having them make modifications exclusively for you, or provide you
156
+ with facilities for running those works, provided that you comply with
157
+ the terms of this License in conveying all material for which you do
158
+ not control copyright. Those thus making or running the covered works
159
+ for you must do so exclusively on your behalf, under your direction
160
+ and control, on terms that prohibit them from making any copies of
161
+ your copyrighted material outside their relationship with you.
162
+
163
+ Conveying under any other circumstances is permitted solely under
164
+ the conditions stated below. Sublicensing is not allowed; section 10
165
+ makes it unnecessary.
166
+
167
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168
+
169
+ No covered work shall be deemed part of an effective technological
170
+ measure under any applicable law fulfilling obligations under article
171
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172
+ similar laws prohibiting or restricting circumvention of such
173
+ measures.
174
+
175
+ When you convey a covered work, you waive any legal power to forbid
176
+ circumvention of technological measures to the extent such circumvention
177
+ is effected by exercising rights under this License with respect to
178
+ the covered work, and you disclaim any intention to limit operation or
179
+ modification of the work as a means of enforcing, against the work's
180
+ users, your or third parties' legal rights to forbid circumvention of
181
+ technological measures.
182
+
183
+ 4. Conveying Verbatim Copies.
184
+
185
+ You may convey verbatim copies of the Program's source code as you
186
+ receive it, in any medium, provided that you conspicuously and
187
+ appropriately publish on each copy an appropriate copyright notice;
188
+ keep intact all notices stating that this License and any
189
+ non-permissive terms added in accord with section 7 apply to the code;
190
+ keep intact all notices of the absence of any warranty; and give all
191
+ recipients a copy of this License along with the Program.
192
+
193
+ You may charge any price or no price for each copy that you convey,
194
+ and you may offer support or warranty protection for a fee.
195
+
196
+ 5. Conveying Modified Source Versions.
197
+
198
+ You may convey a work based on the Program, or the modifications to
199
+ produce it from the Program, in the form of source code under the
200
+ terms of section 4, provided that you also meet all of these conditions:
201
+
202
+ a) The work must carry prominent notices stating that you modified
203
+ it, and giving a relevant date.
204
+
205
+ b) The work must carry prominent notices stating that it is
206
+ released under this License and any conditions added under section
207
+ 7. This requirement modifies the requirement in section 4 to
208
+ "keep intact all notices".
209
+
210
+ c) You must license the entire work, as a whole, under this
211
+ License to anyone who comes into possession of a copy. This
212
+ License will therefore apply, along with any applicable section 7
213
+ additional terms, to the whole of the work, and all its parts,
214
+ regardless of how they are packaged. This License gives no
215
+ permission to license the work in any other way, but it does not
216
+ invalidate such permission if you have separately received it.
217
+
218
+ d) If the work has interactive user interfaces, each must display
219
+ Appropriate Legal Notices; however, if the Program has interactive
220
+ interfaces that do not display Appropriate Legal Notices, your
221
+ work need not make them do so.
222
+
223
+ A compilation of a covered work with other separate and independent
224
+ works, which are not by their nature extensions of the covered work,
225
+ and which are not combined with it such as to form a larger program,
226
+ in or on a volume of a storage or distribution medium, is called an
227
+ "aggregate" if the compilation and its resulting copyright are not
228
+ used to limit the access or legal rights of the compilation's users
229
+ beyond what the individual works permit. Inclusion of a covered work
230
+ in an aggregate does not cause this License to apply to the other
231
+ parts of the aggregate.
232
+
233
+ 6. Conveying Non-Source Forms.
234
+
235
+ You may convey a covered work in object code form under the terms
236
+ of sections 4 and 5, provided that you also convey the
237
+ machine-readable Corresponding Source under the terms of this License,
238
+ in one of these ways:
239
+
240
+ a) Convey the object code in, or embodied in, a physical product
241
+ (including a physical distribution medium), accompanied by the
242
+ Corresponding Source fixed on a durable physical medium
243
+ customarily used for software interchange.
244
+
245
+ b) Convey the object code in, or embodied in, a physical product
246
+ (including a physical distribution medium), accompanied by a
247
+ written offer, valid for at least three years and valid for as
248
+ long as you offer spare parts or customer support for that product
249
+ model, to give anyone who possesses the object code either (1) a
250
+ copy of the Corresponding Source for all the software in the
251
+ product that is covered by this License, on a durable physical
252
+ medium customarily used for software interchange, for a price no
253
+ more than your reasonable cost of physically performing this
254
+ conveying of source, or (2) access to copy the
255
+ Corresponding Source from a network server at no charge.
256
+
257
+ c) Convey individual copies of the object code with a copy of the
258
+ written offer to provide the Corresponding Source. This
259
+ alternative is allowed only occasionally and noncommercially, and
260
+ only if you received the object code with such an offer, in accord
261
+ with subsection 6b.
262
+
263
+ d) Convey the object code by offering access from a designated
264
+ place (gratis or for a charge), and offer equivalent access to the
265
+ Corresponding Source in the same way through the same place at no
266
+ further charge. You need not require recipients to copy the
267
+ Corresponding Source along with the object code. If the place to
268
+ copy the object code is a network server, the Corresponding Source
269
+ may be on a different server (operated by you or a third party)
270
+ that supports equivalent copying facilities, provided you maintain
271
+ clear directions next to the object code saying where to find the
272
+ Corresponding Source. Regardless of what server hosts the
273
+ Corresponding Source, you remain obligated to ensure that it is
274
+ available for as long as needed to satisfy these requirements.
275
+
276
+ e) Convey the object code using peer-to-peer transmission, provided
277
+ you inform other peers where the object code and Corresponding
278
+ Source of the work are being offered to the general public at no
279
+ charge under subsection 6d.
280
+
281
+ A separable portion of the object code, whose source code is excluded
282
+ from the Corresponding Source as a System Library, need not be
283
+ included in conveying the object code work.
284
+
285
+ A "User Product" is either (1) a "consumer product", which means any
286
+ tangible personal property which is normally used for personal, family,
287
+ or household purposes, or (2) anything designed or sold for incorporation
288
+ into a dwelling. In determining whether a product is a consumer product,
289
+ doubtful cases shall be resolved in favor of coverage. For a particular
290
+ product received by a particular user, "normally used" refers to a
291
+ typical or common use of that class of product, regardless of the status
292
+ of the particular user or of the way in which the particular user
293
+ actually uses, or expects or is expected to use, the product. A product
294
+ is a consumer product regardless of whether the product has substantial
295
+ commercial, industrial or non-consumer uses, unless such uses represent
296
+ the only significant mode of use of the product.
297
+
298
+ "Installation Information" for a User Product means any methods,
299
+ procedures, authorization keys, or other information required to install
300
+ and execute modified versions of a covered work in that User Product from
301
+ a modified version of its Corresponding Source. The information must
302
+ suffice to ensure that the continued functioning of the modified object
303
+ code is in no case prevented or interfered with solely because
304
+ modification has been made.
305
+
306
+ If you convey an object code work under this section in, or with, or
307
+ specifically for use in, a User Product, and the conveying occurs as
308
+ part of a transaction in which the right of possession and use of the
309
+ User Product is transferred to the recipient in perpetuity or for a
310
+ fixed term (regardless of how the transaction is characterized), the
311
+ Corresponding Source conveyed under this section must be accompanied
312
+ by the Installation Information. But this requirement does not apply
313
+ if neither you nor any third party retains the ability to install
314
+ modified object code on the User Product (for example, the work has
315
+ been installed in ROM).
316
+
317
+ The requirement to provide Installation Information does not include a
318
+ requirement to continue to provide support service, warranty, or updates
319
+ for a work that has been modified or installed by the recipient, or for
320
+ the User Product in which it has been modified or installed. Access to a
321
+ network may be denied when the modification itself materially and
322
+ adversely affects the operation of the network or violates the rules and
323
+ protocols for communication across the network.
324
+
325
+ Corresponding Source conveyed, and Installation Information provided,
326
+ in accord with this section must be in a format that is publicly
327
+ documented (and with an implementation available to the public in
328
+ source code form), and must require no special password or key for
329
+ unpacking, reading or copying.
330
+
331
+ 7. Additional Terms.
332
+
333
+ "Additional permissions" are terms that supplement the terms of this
334
+ License by making exceptions from one or more of its conditions.
335
+ Additional permissions that are applicable to the entire Program shall
336
+ be treated as though they were included in this License, to the extent
337
+ that they are valid under applicable law. If additional permissions
338
+ apply only to part of the Program, that part may be used separately
339
+ under those permissions, but the entire Program remains governed by
340
+ this License without regard to the additional permissions.
341
+
342
+ When you convey a copy of a covered work, you may at your option
343
+ remove any additional permissions from that copy, or from any part of
344
+ it. (Additional permissions may be written to require their own
345
+ removal in certain cases when you modify the work.) You may place
346
+ additional permissions on material, added by you to a covered work,
347
+ for which you have or can give appropriate copyright permission.
348
+
349
+ Notwithstanding any other provision of this License, for material you
350
+ add to a covered work, you may (if authorized by the copyright holders of
351
+ that material) supplement the terms of this License with terms:
352
+
353
+ a) Disclaiming warranty or limiting liability differently from the
354
+ terms of sections 15 and 16 of this License; or
355
+
356
+ b) Requiring preservation of specified reasonable legal notices or
357
+ author attributions in that material or in the Appropriate Legal
358
+ Notices displayed by works containing it; or
359
+
360
+ c) Prohibiting misrepresentation of the origin of that material, or
361
+ requiring that modified versions of such material be marked in
362
+ reasonable ways as different from the original version; or
363
+
364
+ d) Limiting the use for publicity purposes of names of licensors or
365
+ authors of the material; or
366
+
367
+ e) Declining to grant rights under trademark law for use of some
368
+ trade names, trademarks, or service marks; or
369
+
370
+ f) Requiring indemnification of licensors and authors of that
371
+ material by anyone who conveys the material (or modified versions of
372
+ it) with contractual assumptions of liability to the recipient, for
373
+ any liability that these contractual assumptions directly impose on
374
+ those licensors and authors.
375
+
376
+ All other non-permissive additional terms are considered "further
377
+ restrictions" within the meaning of section 10. If the Program as you
378
+ received it, or any part of it, contains a notice stating that it is
379
+ governed by this License along with a term that is a further
380
+ restriction, you may remove that term. If a license document contains
381
+ a further restriction but permits relicensing or conveying under this
382
+ License, you may add to a covered work material governed by the terms
383
+ of that license document, provided that the further restriction does
384
+ not survive such relicensing or conveying.
385
+
386
+ If you add terms to a covered work in accord with this section, you
387
+ must place, in the relevant source files, a statement of the
388
+ additional terms that apply to those files, or a notice indicating
389
+ where to find the applicable terms.
390
+
391
+ Additional terms, permissive or non-permissive, may be stated in the
392
+ form of a separately written license, or stated as exceptions;
393
+ the above requirements apply either way.
394
+
395
+ 8. Termination.
396
+
397
+ You may not propagate or modify a covered work except as expressly
398
+ provided under this License. Any attempt otherwise to propagate or
399
+ modify it is void, and will automatically terminate your rights under
400
+ this License (including any patent licenses granted under the third
401
+ paragraph of section 11).
402
+
403
+ However, if you cease all violation of this License, then your
404
+ license from a particular copyright holder is reinstated (a)
405
+ provisionally, unless and until the copyright holder explicitly and
406
+ finally terminates your license, and (b) permanently, if the copyright
407
+ holder fails to notify you of the violation by some reasonable means
408
+ prior to 60 days after the cessation.
409
+
410
+ Moreover, your license from a particular copyright holder is
411
+ reinstated permanently if the copyright holder notifies you of the
412
+ violation by some reasonable means, this is the first time you have
413
+ received notice of violation of this License (for any work) from that
414
+ copyright holder, and you cure the violation prior to 30 days after
415
+ your receipt of the notice.
416
+
417
+ Termination of your rights under this section does not terminate the
418
+ licenses of parties who have received copies or rights from you under
419
+ this License. If your rights have been terminated and not permanently
420
+ reinstated, you do not qualify to receive new licenses for the same
421
+ material under section 10.
422
+
423
+ 9. Acceptance Not Required for Having Copies.
424
+
425
+ You are not required to accept this License in order to receive or
426
+ run a copy of the Program. Ancillary propagation of a covered work
427
+ occurring solely as a consequence of using peer-to-peer transmission
428
+ to receive a copy likewise does not require acceptance. However,
429
+ nothing other than this License grants you permission to propagate or
430
+ modify any covered work. These actions infringe copyright if you do
431
+ not accept this License. Therefore, by modifying or propagating a
432
+ covered work, you indicate your acceptance of this License to do so.
433
+
434
+ 10. Automatic Licensing of Downstream Recipients.
435
+
436
+ Each time you convey a covered work, the recipient automatically
437
+ receives a license from the original licensors, to run, modify and
438
+ propagate that work, subject to this License. You are not responsible
439
+ for enforcing compliance by third parties with this License.
440
+
441
+ An "entity transaction" is a transaction transferring control of an
442
+ organization, or substantially all assets of one, or subdividing an
443
+ organization, or merging organizations. If propagation of a covered
444
+ work results from an entity transaction, each party to that
445
+ transaction who receives a copy of the work also receives whatever
446
+ licenses to the work the party's predecessor in interest had or could
447
+ give under the previous paragraph, plus a right to possession of the
448
+ Corresponding Source of the work from the predecessor in interest, if
449
+ the predecessor has it or can get it with reasonable efforts.
450
+
451
+ You may not impose any further restrictions on the exercise of the
452
+ rights granted or affirmed under this License. For example, you may
453
+ not impose a license fee, royalty, or other charge for exercise of
454
+ rights granted under this License, and you may not initiate litigation
455
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
456
+ any patent claim is infringed by making, using, selling, offering for
457
+ sale, or importing the Program or any portion of it.
458
+
459
+ 11. Patents.
460
+
461
+ A "contributor" is a copyright holder who authorizes use under this
462
+ License of the Program or a work on which the Program is based. The
463
+ work thus licensed is called the contributor's "contributor version".
464
+
465
+ A contributor's "essential patent claims" are all patent claims
466
+ owned or controlled by the contributor, whether already acquired or
467
+ hereafter acquired, that would be infringed by some manner, permitted
468
+ by this License, of making, using, or selling its contributor version,
469
+ but do not include claims that would be infringed only as a
470
+ consequence of further modification of the contributor version. For
471
+ purposes of this definition, "control" includes the right to grant
472
+ patent sublicenses in a manner consistent with the requirements of
473
+ this License.
474
+
475
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
476
+ patent license under the contributor's essential patent claims, to
477
+ make, use, sell, offer for sale, import and otherwise run, modify and
478
+ propagate the contents of its contributor version.
479
+
480
+ In the following three paragraphs, a "patent license" is any express
481
+ agreement or commitment, however denominated, not to enforce a patent
482
+ (such as an express permission to practice a patent or covenant not to
483
+ sue for patent infringement). To "grant" such a patent license to a
484
+ party means to make such an agreement or commitment not to enforce a
485
+ patent against the party.
486
+
487
+ If you convey a covered work, knowingly relying on a patent license,
488
+ and the Corresponding Source of the work is not available for anyone
489
+ to copy, free of charge and under the terms of this License, through a
490
+ publicly available network server or other readily accessible means,
491
+ then you must either (1) cause the Corresponding Source to be so
492
+ available, or (2) arrange to deprive yourself of the benefit of the
493
+ patent license for this particular work, or (3) arrange, in a manner
494
+ consistent with the requirements of this License, to extend the patent
495
+ license to downstream recipients. "Knowingly relying" means you have
496
+ actual knowledge that, but for the patent license, your conveying the
497
+ covered work in a country, or your recipient's use of the covered work
498
+ in a country, would infringe one or more identifiable patents in that
499
+ country that you have reason to believe are valid.
500
+
501
+ If, pursuant to or in connection with a single transaction or
502
+ arrangement, you convey, or propagate by procuring conveyance of, a
503
+ covered work, and grant a patent license to some of the parties
504
+ receiving the covered work authorizing them to use, propagate, modify
505
+ or convey a specific copy of the covered work, then the patent license
506
+ you grant is automatically extended to all recipients of the covered
507
+ work and works based on it.
508
+
509
+ A patent license is "discriminatory" if it does not include within
510
+ the scope of its coverage, prohibits the exercise of, or is
511
+ conditioned on the non-exercise of one or more of the rights that are
512
+ specifically granted under this License. You may not convey a covered
513
+ work if you are a party to an arrangement with a third party that is
514
+ in the business of distributing software, under which you make payment
515
+ to the third party based on the extent of your activity of conveying
516
+ the work, and under which the third party grants, to any of the
517
+ parties who would receive the covered work from you, a discriminatory
518
+ patent license (a) in connection with copies of the covered work
519
+ conveyed by you (or copies made from those copies), or (b) primarily
520
+ for and in connection with specific products or compilations that
521
+ contain the covered work, unless you entered into that arrangement,
522
+ or that patent license was granted, prior to 28 March 2007.
523
+
524
+ Nothing in this License shall be construed as excluding or limiting
525
+ any implied license or other defenses to infringement that may
526
+ otherwise be available to you under applicable patent law.
527
+
528
+ 12. No Surrender of Others' Freedom.
529
+
530
+ If conditions are imposed on you (whether by court order, agreement or
531
+ otherwise) that contradict the conditions of this License, they do not
532
+ excuse you from the conditions of this License. If you cannot convey a
533
+ covered work so as to satisfy simultaneously your obligations under this
534
+ License and any other pertinent obligations, then as a consequence you may
535
+ not convey it at all. For example, if you agree to terms that obligate you
536
+ to collect a royalty for further conveying from those to whom you convey
537
+ the Program, the only way you could satisfy both those terms and this
538
+ License would be to refrain entirely from conveying the Program.
539
+
540
+ 13. Remote Network Interaction; Use with the GNU General Public License.
541
+
542
+ Notwithstanding any other provision of this License, if you modify the
543
+ Program, your modified version must prominently offer all users
544
+ interacting with it remotely through a computer network (if your version
545
+ supports such interaction) an opportunity to receive the Corresponding
546
+ Source of your version by providing access to the Corresponding Source
547
+ from a network server at no charge, through some standard or customary
548
+ means of facilitating copying of software. This Corresponding Source
549
+ shall include the Corresponding Source for any work covered by version 3
550
+ of the GNU General Public License that is incorporated pursuant to the
551
+ following paragraph.
552
+
553
+ Notwithstanding any other provision of this License, you have
554
+ permission to link or combine any covered work with a work licensed
555
+ under version 3 of the GNU General Public License into a single
556
+ combined work, and to convey the resulting work. The terms of this
557
+ License will continue to apply to the part which is the covered work,
558
+ but the work with which it is combined will remain governed by version
559
+ 3 of the GNU General Public License.
560
+
561
+ 14. Revised Versions of this License.
562
+
563
+ The Free Software Foundation may publish revised and/or new versions of
564
+ the GNU Affero General Public License from time to time. Such new versions
565
+ will be similar in spirit to the present version, but may differ in detail to
566
+ address new problems or concerns.
567
+
568
+ Each version is given a distinguishing version number. If the
569
+ Program specifies that a certain numbered version of the GNU Affero General
570
+ Public License "or any later version" applies to it, you have the
571
+ option of following the terms and conditions either of that numbered
572
+ version or of any later version published by the Free Software
573
+ Foundation. If the Program does not specify a version number of the
574
+ GNU Affero General Public License, you may choose any version ever published
575
+ by the Free Software Foundation.
576
+
577
+ If the Program specifies that a proxy can decide which future
578
+ versions of the GNU Affero General Public License can be used, that proxy's
579
+ public statement of acceptance of a version permanently authorizes you
580
+ to choose that version for the Program.
581
+
582
+ Later license versions may give you additional or different
583
+ permissions. However, no additional obligations are imposed on any
584
+ author or copyright holder as a result of your choosing to follow a
585
+ later version.
586
+
587
+ 15. Disclaimer of Warranty.
588
+
589
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597
+
598
+ 16. Limitation of Liability.
599
+
600
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608
+ SUCH DAMAGES.
609
+
610
+ 17. Interpretation of Sections 15 and 16.
611
+
612
+ If the disclaimer of warranty and limitation of liability provided
613
+ above cannot be given local legal effect according to their terms,
614
+ reviewing courts shall apply local law that most closely approximates
615
+ an absolute waiver of all civil liability in connection with the
616
+ Program, unless a warranty or assumption of liability accompanies a
617
+ copy of the Program in return for a fee.
618
+
619
+ END OF TERMS AND CONDITIONS
620
+
621
+ How to Apply These Terms to Your New Programs
622
+
623
+ If you develop a new program, and you want it to be of the greatest
624
+ possible use to the public, the best way to achieve this is to make it
625
+ free software which everyone can redistribute and change under these terms.
626
+
627
+ To do so, attach the following notices to the program. It is safest
628
+ to attach them to the start of each source file to most effectively
629
+ state the exclusion of warranty; and each file should have at least
630
+ the "copyright" line and a pointer to where the full notice is found.
631
+
632
+ <one line to give the program's name and a brief idea of what it does.>
633
+ Copyright (C) <year> <name of author>
634
+
635
+ This program is free software: you can redistribute it and/or modify
636
+ it under the terms of the GNU Affero General Public License as published
637
+ by the Free Software Foundation, either version 3 of the License, or
638
+ (at your option) any later version.
639
+
640
+ This program is distributed in the hope that it will be useful,
641
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
642
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643
+ GNU Affero General Public License for more details.
644
+
645
+ You should have received a copy of the GNU Affero General Public License
646
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
647
+
648
+ Also add information on how to contact you by electronic and paper mail.
649
+
650
+ If your software can interact with users remotely through a computer
651
+ network, you should also make sure that it provides a way for users to
652
+ get its source. For example, if your program is a web application, its
653
+ interface could display a "Source" link that leads users to an archive
654
+ of the code. There are many ways you could offer source, and different
655
+ solutions will be better for different programs; see section 13 for the
656
+ specific requirements.
657
+
658
+ You should also get your employer (if you work as a programmer) or school,
659
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
660
+ For more information on this, and how to apply and follow the GNU AGPL, see
661
+ <https://www.gnu.org/licenses/>.
README.md CHANGED
@@ -1,12 +1,2 @@
1
- ---
2
- title: Https Huggingface Co Spaces Victorisgeek Aiphotostuio
3
- emoji: 💻
4
- colorFrom: green
5
- colorTo: pink
6
- sdk: gradio
7
- sdk_version: 4.44.0
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # stella-ai-studio
2
+ STELLA AI Studio Version 24.0731 (Deprecated)
 
 
 
 
 
 
 
 
 
 
StellaApp.py ADDED
@@ -0,0 +1,998 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import requests
3
+ import json
4
+ import os
5
+ import dotenv
6
+ import concurrent.futures
7
+ import base64
8
+ import tempfile
9
+ import random
10
+ import time
11
+ import numpy
12
+ from datetime import datetime
13
+ from pillow_lut import load_cube_file
14
+ from io import BytesIO
15
+ from PIL import Image, ImageEnhance
16
+
17
+ class StellaApp():
18
+ """ikmalsaid"s STELLA AI Studio (Version 24.0731). Copyright (C) 2024 All rights reserved.
19
+ """
20
+ def __init__(self, local_save_dir:str="outputs", local_save:bool=False, show_debug_log:bool=False, local_log_dir:str="logs", use_as_gradio:bool=False, use_as_webapi:bool=False) -> None:
21
+ """Initialize STELLA module.
22
+
23
+ Args:
24
+ local_save (bool, optional): saves output locally. default: False.
25
+ local_save_dir (str, optional): path to save output locally. default: "outputs".
26
+ show_debug_log (bool, optional): show detailed event logs. default: False.
27
+ local_log_dir (str, optional): path to save log file locally. default: "logs".
28
+ use_as_gradio (bool, optional): used for gradio frontend. default: False.
29
+ use_as_webapi (bool, optional): used for webapi. default: False.
30
+ """
31
+ if show_debug_log:
32
+ self.local_log_dir = f"{local_log_dir}/{datetime.now().strftime('%Y-%m-%d')}"
33
+
34
+ os.makedirs(
35
+ self.local_log_dir,
36
+ exist_ok=True)
37
+
38
+ logging.basicConfig(
39
+ format="[%(asctime)s][%(levelname)s][%(name)s@%(funcName)s:%(lineno)d] -> %(message)s",
40
+ handlers=[
41
+ logging.FileHandler(f"{self.local_log_dir}/{self.__class__.__name__}_{datetime.now().strftime('%H-%M-%S')}.log", mode="a"),
42
+ logging.StreamHandler()
43
+ ],
44
+ datefmt="%Y%m%d-%H%M%S",
45
+ level=logging.DEBUG)
46
+
47
+ self.logger = logging.getLogger(__name__)
48
+
49
+ self.local_save = local_save
50
+ self.use_as_gradio = use_as_gradio
51
+ self.use_as_webapi = use_as_webapi
52
+
53
+ if self.local_save:
54
+ self.local_save_dir = local_save_dir
55
+ os.makedirs(self.local_save_dir, exist_ok=True)
56
+
57
+ else: self.local_save_dir = None
58
+
59
+ self.load_presets()
60
+ self.load_env()
61
+
62
+ def prompt_randomizer(self, prompt:str=None) -> str:
63
+ """Returns randomized prompt ideas.
64
+
65
+ Args:
66
+ prompt (str, optional): original prompt. default: None.
67
+
68
+ Returns:
69
+ str: randomized prompt
70
+ """
71
+ elements = [prompt]
72
+
73
+ categories = ["scene", "filter", "camera", "material", "perspective", "medium", "lighting", "rendering", "artstyle", "painter"]
74
+
75
+ elements.extend(random.choice(self.Prompt[category]) for category in categories)
76
+ elements = [element for element in elements if element]
77
+ combined_prompt = ", ".join(elements)
78
+ return combined_prompt
79
+
80
+ def load_cubes(self, cube_dir:str) -> tuple:
81
+ """Loads cube files.
82
+
83
+ Args:
84
+ cube_dir (str): the folder where cubes is stored
85
+
86
+ Returns:
87
+ tuple: cube dict, keys and list
88
+ """
89
+ cube_dict = {}
90
+
91
+ for filename in os.listdir(cube_dir):
92
+ if filename.endswith(".cube"):
93
+ file_path = os.path.join(cube_dir, filename)
94
+ file_key = os.path.splitext(filename)[0]
95
+ cube_dict[file_key] = file_path
96
+
97
+ return cube_dict, cube_dict.keys(), list(cube_dict.keys())
98
+
99
+ def list_presets(self, preset_type:str=None, export_as_list:bool=False) -> list:
100
+ """Lists needed presets or export them as lists.
101
+
102
+ Args:
103
+ preset_type (str, optional): preset name. default: None.
104
+ export_as_list (bool, optional): export as a list. default: False.
105
+
106
+ Returns:
107
+ list: exported list or a list of models
108
+ """
109
+ preset_type = preset_type.lower() if preset_type else None
110
+ presets = {
111
+ "models": (self.Model, self.ModelList),
112
+ "atelier": (self.Atelier, self.AtelierList),
113
+ "v1": (self.V1, self.V1List),
114
+ "v2": (self.V2, self.V2List),
115
+ "v4": (self.V4, self.V4List),
116
+ "anime": (self.Anime, self.AnimeList),
117
+ "size": (self.Size, self.SizeList),
118
+ "remix": (self.Remix, self.RemixList),
119
+ "controlnet": (self.Controlnet, self.ControlnetList),
120
+ "variate": (self.Variate, self.VariateList),
121
+ "lora": (self.Lora, self.LoraList),
122
+ "cube": (self.Cube, self.CubeList),
123
+ "prompt": (self.Prompt, self.PromptList)
124
+ }
125
+
126
+ if preset_type in presets:
127
+ return presets[preset_type][0] if export_as_list else print(presets[preset_type][1])
128
+
129
+ else:
130
+ print('''Invalid preset type. Available types are: models, v1, v2, anime, size,
131
+ remix, controlnet, variate, lora, cube, prompt.''')
132
+ return None
133
+
134
+ def load_env(self) -> None:
135
+ """Loads environment variables file (.env)
136
+ """
137
+ dotenv.load_dotenv()
138
+ env_vars = ["SVC_URL", "SVC_KEY", "ARC_URL"]
139
+ for var in env_vars: setattr(self, var.lower(), os.getenv(var))
140
+ return None
141
+
142
+ def load_presets(self) -> None:
143
+ """Loads/updates all the required presets
144
+ """
145
+ self.V1, self.V1Keys, self.V1List = self.load_preset("presets/V1.json")
146
+ self.V2, self.V2Keys, self.V2List = self.load_preset("presets/V2.json")
147
+ self.V4, self.V4Keys, self.V4List = self.load_preset("presets/V4.json")
148
+ self.V4Control, self.V4ControlKeys, self.V4ControlList = self.load_preset("presets/Remix2.json")
149
+ self.Anime, self.AnimeKeys, self.AnimeList = self.load_preset("presets/Anime.json")
150
+ self.Model, self.ModelKeys, self.ModelList = self.load_preset("presets/Model.json")
151
+ self.Atelier, self.AtelierKeys, self.AtelierList = self.load_preset("presets/Model2.json")
152
+ self.Size, self.SizeKeys, self.SizeList = self.load_preset("presets/Size.json")
153
+ self.Remix, self.RemixKeys, self.RemixList = self.load_preset("presets/Remix.json")
154
+ self.Controlnet, self.ControlnetKeys, self.ControlnetList = self.load_preset("presets/Controlnet.json")
155
+ self.Variate, self.VariateKeys, self.VariateList = self.load_preset("presets/Variate.json")
156
+ self.Arc, self.ArcKeys, self.ArcList = self.load_preset("presets/Arc.json")
157
+ self.Error, self.ErrorKeys, self.ErrorList = self.load_preset("presets/Error.json")
158
+ self.Lora, self.LoraKeys, self.LoraList = self.load_preset("presets/Lora.json")
159
+ self.Prompt, self.PromptKeys, self.PromptList = self.load_preset("presets/Prompt.json")
160
+ self.Feature, self.FeatureKeys, self.FeatureList = self.load_preset("presets/Feature.json")
161
+ self.Cube, self.CubeKeys, self.CubeList = self.load_cubes("./cubes")
162
+ return None
163
+
164
+ def image_lut_processor(self, image:str, cube:str) -> str:
165
+ """Applies 3D LUT effect on an image.
166
+
167
+ Args:
168
+ image (str): source image file
169
+ cube (str): 3D LUT cube file
170
+
171
+ Returns:
172
+ any: output image
173
+ """
174
+ cubefile = load_cube_file(self.Cube[cube])
175
+ imagefile = Image.open(image)
176
+ result = imagefile.filter(cubefile)
177
+
178
+ with tempfile.NamedTemporaryFile(delete=False, suffix=".png") as output:
179
+ result.save(output, format="PNG")
180
+
181
+ return output.name
182
+
183
+ def image_generator_atelier(self, prompt:str, model_name:str="Turbo", image_size:str="Square (1:1)", number_of_images:int=1, guide_image:str=None, guide_type:str=None, denoise_strength:float=0.95, style_v4:str=None, style_preset:str=None, style_name:str=None) -> list:
184
+ """Powerful workflow for superb quality image generation
185
+
186
+ Args:
187
+ prompt (str): image prompt
188
+ negative_prompt (str): negative prompt
189
+ image_size (str): selected image aspect ratio. default: 1:1
190
+ face_consistency (float): accuracy of the input image. default: 1.2
191
+ guide_image (str): input guidance image
192
+ guide_type (str): type of guidance image
193
+ denoise_strength (float): strength of the denoisig. default: 0.95
194
+ style_v4 (int): selected atelier style. default: None
195
+ style_preset (str): selected style preset. default: None
196
+ style_name (str): selected style name. default: None
197
+
198
+ Returns:
199
+ any: generated images
200
+ """
201
+ if style_preset is not None and style_name is not None:
202
+ prompt, _ = self.prompt_template(prompt, "", style_preset, style_name)
203
+
204
+ if style_v4 is not None or style_v4 == "None":
205
+ positive = self.V4[style_v4]["prompt"]
206
+ prompt = positive.replace("{prompt}", prompt)
207
+
208
+ model_name = self.Atelier[model_name]
209
+ image_size = self.Size[image_size]
210
+
211
+ url = f"{self.svc_url}/generations"
212
+ header = {"bearer": self.svc_key}
213
+
214
+ body = {
215
+ "prompt": (None, str(prompt)),
216
+ "style_id": (None, str(model_name)),
217
+ "aspect_ratio": (None, str(image_size)),
218
+ "variation": (None, "txt2img")
219
+ }
220
+
221
+ if guide_image is not None and guide_type is not None and guide_type.lower() != 'none':
222
+ guide_array = BytesIO()
223
+ Image.open(guide_image).save(guide_array, format="PNG")
224
+ guide_array.seek(0)
225
+
226
+ number_of_images = 1
227
+
228
+ if guide_type.lower() == "base":
229
+ base = {
230
+ "variation": (None, "img2img"),
231
+ "denoising_strength": (None, str(denoise_strength)),
232
+ "image": ("style.png", guide_array, "image/png"),
233
+ }
234
+
235
+ body.update(base)
236
+
237
+ elif guide_type.lower() == "controlnet":
238
+ cnet = {
239
+ "variation": (None, "txt2img"),
240
+ "control_1_type": (None, "depth"),
241
+ "control_1_image": ("style.png", guide_array, "image/png"),
242
+ }
243
+
244
+ body.update(cnet)
245
+
246
+ return self.service_request(url, header, body, multiplier=number_of_images)
247
+
248
+
249
+ def dual_consistency(self, image_face:str, image_style:str, prompt:str, negative_prompt:str, image_size:str="Square (1:1)", face_consistency:float=1.2, style_strength:float=0.7, image_seed:int=0, style_preset:str=None, style_name:str=None) -> str:
250
+ """Consistant image generation with instantid and style
251
+
252
+ Args:
253
+ image_face (str): input face image
254
+ image_style (str): input style image
255
+ prompt (str): image prompt
256
+ negative_prompt (str): negative prompt
257
+ image_size (str): selected image aspect ratio. default: 1:1
258
+ face_consistency (float): accuracy of the input image. default: 1.2
259
+ style_strength (float): strength of the style image. default: 0.7
260
+ image_seed (int): specified image seed. default: 0
261
+ style_preset (str): selected style preset. default: None
262
+ style_name (str): selected style name. default: None
263
+
264
+ Returns:
265
+ any: generated images
266
+ """
267
+ if image_face is not None:
268
+ face_array = BytesIO()
269
+ Image.open(image_face).save(face_array, format="PNG")
270
+ face_array.seek(0)
271
+
272
+ if image_style is not None:
273
+ style_array = BytesIO()
274
+ Image.open(image_style).save(style_array, format="PNG")
275
+ style_array.seek(0)
276
+
277
+ if style_preset is not None and style_name is not None:
278
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
279
+
280
+ if image_seed == 0: image_seed = None
281
+
282
+ image_size = self.Size[image_size]
283
+
284
+ url = f"{self.svc_url}/generations/consistent"
285
+ header = {"bearer": self.svc_key}
286
+
287
+ body = {
288
+ "prompt": (None, str(prompt)),
289
+ "negative_prompt": (None, str(negative_prompt)),
290
+ "aspect_ratio": (None, str(image_size)),
291
+ "identitynet_strength": (None, str(face_consistency)),
292
+ "style_strength": (None, str(style_strength)),
293
+ "seed": (None, image_seed),
294
+ "style_id": (None, "3"),
295
+ "steps": (None, "5"),
296
+ "mode": (None, "fidelity"),
297
+ "cfg": (None, "1.2"),
298
+ "high_res_results": (None, "1"),
299
+ "priority": (None, "1")
300
+ }
301
+
302
+ if image_face is not None:
303
+ body["face_image"] = ("face.png", face_array, "image/png")
304
+
305
+ if image_style is not None:
306
+ body["style_image"] = ("style.png", style_array, "image/png")
307
+
308
+ return self.service_request(url, header, body)
309
+
310
+ def arc_face_restore(self, image:str) -> str:
311
+ """Uses ARC to restore faces.
312
+
313
+ Args:
314
+ image (str): input image
315
+
316
+ Returns:
317
+ any: restored image
318
+ """
319
+ with Image.open(image) as image:
320
+ width, height = image.size
321
+
322
+ if width > 1920 or height > 1800:
323
+ aspect_ratio = width / height
324
+
325
+ if aspect_ratio > 1920 / 1800:
326
+ new_width = 1920
327
+ new_height = int(new_width / aspect_ratio)
328
+
329
+ else:
330
+ new_height = 1800
331
+ new_width = int(new_height * aspect_ratio)
332
+
333
+ image = image.resize((new_width, new_height), Image.ANTIALIAS)
334
+
335
+ byte_array = BytesIO()
336
+ image.save(byte_array, format="PNG")
337
+
338
+ arc_array = BytesIO(base64.b64decode(self.Arc["arc"]["data"]))
339
+
340
+ url = f"{self.arc_url}"
341
+ header = {}
342
+ data = {"model_seltct": "1"}
343
+ files= [
344
+ ("file", ("file.png", byte_array, "image/png")),
345
+ ("file2", ("file2.jpg", arc_array, "image/jpeg"))
346
+ ]
347
+
348
+ return self.service_request(url, header, files=files, data=data, arc=True)
349
+
350
+ def face_identity(self, image:str, prompt:str, negative_prompt:str, image_size:str="Square (1:1)", face_consistency:float=1.0, image_seed:int=0, style_preset:str=None, style_name:str=None) -> str:
351
+ """Consistant image generation with instantid.
352
+
353
+ Args:
354
+ image (str): input image
355
+ prompt (str): image prompt
356
+ negative_prompt (str): negative prompt
357
+ image_size (str): selected image aspect ratio. default: 1:1
358
+ face_consistency (float): accuracy of the input image. default: 1.0, min: 0.0, max: 1.0
359
+ image_seed (int): specified image seed. default: 0
360
+ style_preset (str): selected style preset. default: None
361
+ style_name (str): selected style name. default: None
362
+
363
+ Returns:
364
+ any: generated images
365
+ """
366
+ if image is not None:
367
+ byte_array = BytesIO()
368
+ Image.open(image).save(byte_array, format="PNG")
369
+
370
+ if style_preset is not None and style_name is not None:
371
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
372
+
373
+ if image_seed == 0: image_seed = None
374
+
375
+ image_size = self.Size[image_size]
376
+
377
+ url = f"{self.svc_url}/generations/consistent"
378
+ header = {"bearer": self.svc_key}
379
+
380
+ body = {
381
+ "prompt": (None, str(prompt)),
382
+ "negative_prompt": (None, str(negative_prompt)),
383
+ "aspect_ratio": (None, str(image_size)),
384
+ "identitynet_strength": (None, str(face_consistency)),
385
+ "seed": (None, image_seed),
386
+ "model_version": (None, "1"),
387
+ "image_adapter_strength": (None, "0.8"),
388
+ "style_id": (None, "2"),
389
+ "steps": (None, "4"),
390
+ "fast_mode": (None, "false"),
391
+ "canny": (None, "false"),
392
+ "depth": (None, "false"),
393
+ "pose": (None, "true"),
394
+ "cfg": (None, "1.2"),
395
+ "high_res_results": (None, "1"),
396
+ "priority": (None, "1")
397
+ }
398
+
399
+ if image is not None:
400
+ body["image"] = ("input.png", byte_array, "image/png")
401
+
402
+ return self.service_request(url, header, body)
403
+
404
+ def realtime_canvas(self, image:str, prompt:str, lora_style:str="None", creativity_strength:float=0.875, image_seed:int=0, style_preset:str=None, style_name:str=None) -> str:
405
+ """Instant drawing canvas.
406
+
407
+ Args:
408
+ image (str): composite input image
409
+ prompt (str): image prompt
410
+ lora_style (str): selected lora type. default: "None"
411
+ creativity_strength (float): creativity strength. default: 0.875, min: 0.0, max: 1.0
412
+ image_seed (int): specified image seed. default: 0
413
+ style_preset (str): selected style preset. default: None
414
+ style_name (str): selected style name. default: None
415
+
416
+ Returns:
417
+ any: generated image
418
+ """
419
+ if self.use_as_gradio: image = image["composite"]
420
+ else: image = Image.open(image)
421
+
422
+ byte_array = BytesIO()
423
+ image.save(byte_array, format="PNG")
424
+
425
+ if style_preset is not None and style_name is not None:
426
+ prompt, _ = self.prompt_template(prompt, "", style_preset, style_name)
427
+
428
+ if image_seed == 0: image_seed = None
429
+
430
+ lora_style = self.Lora[lora_style]
431
+
432
+ url = f"{self.svc_url}/edits/remix/turbo"
433
+ header = {"bearer": self.svc_key}
434
+
435
+ body = {
436
+ "image": ("input.png", byte_array, "image/png"),
437
+ "prompt": (None, str(prompt)),
438
+ "seed": (None, image_seed),
439
+ "lora_style": (None, str(lora_style)),
440
+ "strength": (None, str(creativity_strength)),
441
+ "style_id": (None, "1")
442
+ }
443
+
444
+ return self.service_request(url, header, body)
445
+
446
+ def realtime_generator(self, prompt:str, number_of_images:int=1, lora_style:str="None", image_seed:int=0, style_preset:str=None, style_name:str=None) -> list:
447
+ """Instant image generation.
448
+
449
+ Args:
450
+ prompt (str): image prompt
451
+ number_of_images (int): number of generated images. default: 1
452
+ lora_style (str): selected lora type. default: "None"
453
+ image_seed (int): specified image seed. default: 0
454
+ style_preset (str): selected style preset. default: None
455
+ style_name (str): selected style name. default: None
456
+
457
+ Returns:
458
+ list: generated images
459
+ """
460
+ if style_preset is not None and style_name is not None:
461
+ prompt, _ = self.prompt_template(prompt, "", style_preset, style_name)
462
+
463
+ if image_seed == 0: image_seed = None
464
+
465
+ lora_style = self.Lora[lora_style]
466
+
467
+ url = f"{self.svc_url}/generations/turbo"
468
+ header = {"bearer": self.svc_key}
469
+
470
+ body = {
471
+ "prompt": (None, str(prompt)),
472
+ "seed": (None, image_seed),
473
+ "lora_style": (None, str(lora_style)),
474
+ "style_id": (None, "1")
475
+ }
476
+
477
+ return self.service_request(url, header, body, multiplier=number_of_images)
478
+
479
+ def image_inpainting(self, image:str, prompt:str, negative_prompt:str, inpaint_strength:float=0.5, prompt_scale:float=9.0, image_mask:str=None, style_preset:str=None, style_name:str=None) -> str:
480
+ """Inpaint elements into an image.
481
+
482
+ Args:
483
+ image (str): input image
484
+ prompt (str): image prompt
485
+ negative_prompt (str): negative prompt
486
+ inpaint_strength (float): strength of inpainting. default: 0.5, min: 0.0, max: 1.0
487
+ prompt_scale (float): scale of prompt/creativity. default: 9.0
488
+ image_mask (str): mask image filepath. default: None
489
+ style_preset (str): selected style preset. default: None
490
+ style_name (str): selected style name. default: None
491
+
492
+ Returns:
493
+ any: output image
494
+ """
495
+ if self.use_as_gradio:
496
+ src_img = image["background"]
497
+ mask_layer = image["layers"][0]
498
+ mask_np_arr = numpy.array(mask_layer)
499
+ mask_np_img = numpy.where(mask_np_arr[:, :, 3] == 0, 0, 255).astype(numpy.uint8)
500
+ mask_img = Image.fromarray(mask_np_img)
501
+
502
+ else:
503
+ src_img = Image.open(image)
504
+ mask_img = Image.open(image_mask)
505
+
506
+ source_image = BytesIO()
507
+ src_img.save(source_image, format="PNG")
508
+ source_image.seek(0)
509
+
510
+ mask_image = BytesIO()
511
+ mask_img.save(mask_image, format="PNG")
512
+ mask_image.seek(0)
513
+
514
+ if style_preset is not None and style_name is not None:
515
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
516
+
517
+ url = f"{self.svc_url}/edits/inpaint"
518
+ header = {"bearer": self.svc_key}
519
+
520
+ body = {
521
+ "image": ("image.png", source_image, "image/png"),
522
+ "mask": ("mask.png", mask_image, "image/png"),
523
+ "prompt": (None, str(prompt)),
524
+ "neg_prompt": (None, str(negative_prompt)),
525
+ "inpaint_strength": (None, str(inpaint_strength)),
526
+ "cfg": (None, str(prompt_scale)),
527
+ "priority": (None, "1")
528
+ }
529
+
530
+ return self.service_request(url, header, body)
531
+
532
+ def image_eraser(self, image:str, image_mask:str=None, prompt_scale:float=9.0) -> str:
533
+ """Erase specific elements from an image.
534
+
535
+ Args:
536
+ image (dict): background and mask (white on black) images.
537
+ mask (Image, optional): mask (white on black) image. default: None.
538
+ prompt_scale (float): scale of prompt/creativity. default: 9.0
539
+
540
+ Returns:
541
+ any: erased image
542
+ """
543
+ if self.use_as_gradio:
544
+ src_img = image["background"]
545
+ mask_layer = image["layers"][0]
546
+ mask_np_arr = numpy.array(mask_layer)
547
+ mask_np_img = numpy.where(mask_np_arr[:, :, 3] == 0, 0, 255).astype(numpy.uint8)
548
+ mask_img = Image.fromarray(mask_np_img)
549
+
550
+ else:
551
+ src_img = Image.open(image)
552
+ mask_img = Image.open(image_mask)
553
+
554
+ source_image = BytesIO()
555
+ src_img.save(source_image, format="PNG")
556
+ source_image.seek(0)
557
+
558
+ mask_image = BytesIO()
559
+ mask_img.save(mask_image, format="PNG")
560
+ mask_image.seek(0)
561
+
562
+ url = f"{self.svc_url}/edits/remove"
563
+ header = {"bearer": self.svc_key}
564
+
565
+ body = {
566
+ "image": ("image.png", source_image, "image/png"),
567
+ "mask": ("mask.png", mask_image, "image/png"),
568
+ "cfg": (None, str(prompt_scale)),
569
+ "model_version": (None, "1"),
570
+ "priority": (None, "1")
571
+ }
572
+
573
+ return self.service_request(url, header, body)
574
+
575
+ def creative_upscaler(self, image:str, prompt:str, negative_prompt:str, creativity_strength:float=0.5, resemblance_strength:float=0.8, hdr_strength:float=0.5, style_preset:str=None, style_name:str=None) -> str:
576
+ """Generative image upscaler.
577
+
578
+ Args:
579
+ image (str): input image
580
+ prompt (str): image prompt
581
+ negative_prompt (str): negative prompt
582
+ creativity_strength (float): strength of creativeness. default: 0.5, min: 0.2, max: 1.0
583
+ resemblance_strength (float): strength of resemblance. default: 0.8, min: 0.0, max: 1.0
584
+ hdr_strength (float): strength of hdr effect. default: 0.5, min: 0.0, max: 1.0
585
+ style_preset (str): selected style preset. default: None
586
+ style_name (str): selected style name. default: None
587
+
588
+ Returns:
589
+ any: upscaled image
590
+ """
591
+ with Image.open(image) as image:
592
+ byte_array = BytesIO()
593
+ image.save(byte_array, format="PNG")
594
+
595
+ if style_preset is not None and style_name is not None:
596
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
597
+
598
+ url = f"{self.svc_url}/enhance"
599
+ header = {"bearer": self.svc_key}
600
+
601
+ body = {
602
+ "image": ("input.png", byte_array, "image/png"),
603
+ "prompt": (None, str(prompt)),
604
+ "hdr": (None, str(hdr_strength)),
605
+ "creativity": (None, str(creativity_strength)),
606
+ "resemblance": (None, str(resemblance_strength)),
607
+ "negativePrompt": (None, str(negative_prompt)),
608
+ "negative_prompt": (None, str(negative_prompt)),
609
+ "model_version": (None, "1"),
610
+ "style_id": (None, "6")
611
+ }
612
+
613
+ return self.service_request(url, header, body)
614
+
615
+ def image_variation(self, image:str, prompt:str, negative_prompt:str, model_name:str="V3", variate_strength:float=0.85, prompt_scale:float=9.0, image_seed:int=0, style_preset:str=None, style_name:str=None) -> str:
616
+ """Make variations of an image.
617
+
618
+ Args:
619
+ image (str): input image
620
+ prompt (str): image prompt
621
+ negative_prompt (str): negative prompt
622
+ model_name (str): selected model name. default: v3
623
+ variate_strength (float): strength of variation. default: 0.85, min:0.0, max:1.0
624
+ prompt_scale (float): scale of prompt/creativity. default: 9.0
625
+ image_seed (int): specified image seed. default: 0
626
+ style_preset (str): selected style preset. default: None
627
+ style_name (str): selected style name. default: None
628
+
629
+ Returns:
630
+ any: variation of an image
631
+ """
632
+ byte_array = BytesIO()
633
+ Image.open(image).save(byte_array, format="PNG")
634
+
635
+ if style_preset is not None and style_name is not None:
636
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
637
+
638
+ model_name = self.Variate[model_name]
639
+ if image_seed == 0: image_seed = None
640
+
641
+ url = f"{self.svc_url}/generations/variations"
642
+ header = {"bearer": self.svc_key}
643
+
644
+ body = {
645
+ "image": ("input.png", byte_array, "image/png"),
646
+ "prompt": (None, str(prompt)),
647
+ "style_id": (None, str(model_name)),
648
+ "strength": (None, str(variate_strength)),
649
+ "cfg": (None, str(prompt_scale)),
650
+ "negative_prompt": (None, str(negative_prompt)),
651
+ "seed": (None, image_seed),
652
+ "model_version": (None, "1"),
653
+ "prompt_processed": (None, "0"),
654
+ "priority": (None, "1")
655
+ }
656
+
657
+ return self.service_request(url, header, body)
658
+
659
+ def image_controlnet(self, image:str, prompt:str, negative_prompt:str, model_name:str="Toon", control_type:str="Scribble", control_strength:int=70, prompt_scale:float=9.0, image_seed:int=0, style_preset:str=None, style_name:str=None) -> str:
660
+ """Controls an image into a different subject.
661
+
662
+ Args:
663
+ image (str): input image
664
+ prompt (str): image prompt
665
+ negative_prompt (str): negative prompt
666
+ model_name (str): selected model name. default: toon
667
+ control_type (str): type of controlnet. default: scribble
668
+ control_strength (int): strength of controlnet. default: 70, min: 0, max: 100
669
+ prompt_scale (float): scale of prompt/creativity. default: 9.0
670
+ image_seed (int): specified image seed. default: 0
671
+ style_preset (str): selected style preset. default: None
672
+ style_name (str): selected style name. default: None
673
+
674
+ Returns:
675
+ any: remixed image
676
+ """
677
+ with Image.open(image) as image:
678
+ byte_array = BytesIO()
679
+ image.save(byte_array, format="PNG")
680
+
681
+ if style_preset is not None and style_name is not None:
682
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
683
+
684
+ model_name = self.Remix[model_name]
685
+ control_type = self.Controlnet[control_type]
686
+ if image_seed == 0: image_seed = None
687
+
688
+ url = f"{self.svc_url}/edits/remix"
689
+ header = {"bearer": self.svc_key}
690
+
691
+ body = {
692
+ "image": ("input.png", byte_array, "image/png"),
693
+ "model_version": (None, "1"),
694
+ "prompt": (None, str(prompt)),
695
+ "cfg": (None, str(prompt_scale)),
696
+ "style_id": (None, str(model_name)),
697
+ "control": (None, str(control_type)),
698
+ "strength": (None, str(control_strength)),
699
+ "negative_prompt": (None, str(negative_prompt)),
700
+ "seed": (None, image_seed),
701
+ "priority": (None, "1")
702
+ }
703
+
704
+ return self.service_request(url, header, body)
705
+
706
+ def image_upscaler(self, image:str) -> str:
707
+ """Upscales an image.
708
+
709
+ Args:
710
+ image (str): input image
711
+
712
+ Returns:
713
+ any: upscaled image
714
+ """
715
+ with Image.open(image) as image:
716
+ byte_array = BytesIO()
717
+ image.save(byte_array, format="PNG")
718
+
719
+ url = f"{self.svc_url}/upscale"
720
+ header = {"bearer": self.svc_key}
721
+
722
+ body = {
723
+ "image": ("input.png", byte_array, "image/png"),
724
+ "model_version": (None, "1")
725
+ }
726
+
727
+ return self.service_request(url, header, body)
728
+
729
+ def background_remover(self, image:str) -> str:
730
+ """Removes background from an image.
731
+
732
+ Args:
733
+ image (str): input image
734
+
735
+ Returns:
736
+ any: processed image
737
+ """
738
+ with Image.open(image) as image:
739
+ byte_array = BytesIO()
740
+ image.save(byte_array, format="PNG")
741
+
742
+ url = f"{self.svc_url}/background/remover"
743
+ header = {"bearer": self.svc_key}
744
+
745
+ body = {
746
+ "image": ("input.png", byte_array, "image/png"),
747
+ "model_version": (None, "1")
748
+ }
749
+
750
+ return self.service_request(url, header, body)
751
+
752
+ def prompt_generator(self, image:str) -> str:
753
+ """Reads input image as a prompt.
754
+
755
+ Args:
756
+ image (str): input image
757
+
758
+ Returns:
759
+ str: text prompt
760
+ """
761
+ with Image.open(image) as image:
762
+ byte_array = BytesIO()
763
+ image.save(byte_array, format="PNG")
764
+
765
+ url = f"{self.svc_url}/generations/image"
766
+ header = {"bearer": self.svc_key}
767
+
768
+ body = {
769
+ "image": ("input.png", byte_array, "image/png"),
770
+ "model_version": (None, "1")
771
+ }
772
+
773
+ return self.service_request(url, header, body) #.split(",", 1)[0]
774
+
775
+ def image_generator(self, prompt:str, negative_prompt:str, model_name:str="Turbo", image_size:str="Square (1:1)", number_of_images:int=1, prompt_scale:float=9.0, image_seed:int=0, style_preset:str=None, style_name:str=None) -> list:
776
+ """High quality image generator.
777
+
778
+ Args:
779
+ prompt (str): image prompt
780
+ negative_prompt (str): negative prompt
781
+ model_name (str): selected model name. default: turbo
782
+ image_size (str): selected image aspect ratio. default: 1:1
783
+ number_of_images (int): number of generated images. default: 1
784
+ prompt_scale (float): scale of prompt/creativity. default: 9.0
785
+ image_seed (int): specified image seed. default: 0
786
+ style_preset (str): selected style preset. default: None
787
+ style_name (str): selected style name. default: None
788
+
789
+ Returns:
790
+ list: generated images
791
+ """
792
+ if style_preset is not None and style_name is not None:
793
+ prompt, negative_prompt = self.prompt_template(prompt, "", style_preset, style_name)
794
+
795
+ if image_seed == 0: image_seed = None
796
+
797
+ model_name = self.Model[model_name]
798
+ image_size = self.Size[image_size]
799
+
800
+ url = f"{self.svc_url}/generations"
801
+ header = {"bearer": self.svc_key}
802
+
803
+ body = {
804
+ "model_version": (None, "1"),
805
+ "prompt": (None, str(prompt)),
806
+ "style_id": (None, str(model_name)),
807
+ "negative_prompt": (None, str(negative_prompt)),
808
+ "aspect_ratio": (None, str(image_size)),
809
+ "seed": (None, image_seed),
810
+ "cfg": (None, str(prompt_scale)),
811
+ "high_res_results": (None, "1"),
812
+ "priority": (None, "1")
813
+ }
814
+
815
+ return self.service_request(url, header, body, multiplier=number_of_images)
816
+ # generated_images = []
817
+
818
+ # with concurrent.futures.ThreadPoolExecutor() as executor:
819
+ # futures = [executor.submit(self.service_request, url, header, body) for _ in range(number_of_images)]
820
+
821
+ # for future in concurrent.futures.as_completed(futures):
822
+ # result = future.result()
823
+ # if result is not None:
824
+ # generated_images.append(result)
825
+
826
+ # return generated_images
827
+
828
+ def image_enhancer(self, image:str, sharpness:float=1.5, brightness:float=1.025, color:float=1.05, contrast:float=1.025) -> str:
829
+ """Improves image quality on various levels.
830
+
831
+ Args:
832
+ image (str): source image
833
+ sharpness (float, optional): image sharpness. default: 1.5.
834
+ brightness (float, optional): image brightness. default: 1.025.
835
+ color (float, optional): image saturation. default: 1.05.
836
+ contrast (float, optional): image contrast. default: 1.025.
837
+
838
+ Returns:
839
+ Image: enhanced image
840
+ """
841
+
842
+ with Image.open(image) as original_image:
843
+ enhanced_image = ImageEnhance.Contrast(
844
+ ImageEnhance.Color(
845
+ ImageEnhance.Brightness(
846
+ ImageEnhance.Sharpness(
847
+ original_image
848
+ ).enhance(sharpness)
849
+ ).enhance(brightness)
850
+ ).enhance(color)
851
+ ).enhance(contrast)
852
+
853
+ with tempfile.NamedTemporaryFile(delete=False, suffix=f"{self.__class__.__name__}.png") as output:
854
+ enhanced_image.save(output.name)
855
+
856
+ return output.name
857
+
858
+ def prompt_template(self, prompt:str, negative_prompt:str, style_preset:str, style_name:str) -> tuple[str, str]:
859
+ """Process user prompt with their choosen style library and name.
860
+
861
+ Args:
862
+ prompt (str): prompt
863
+ negative_prompt (str): negative prompt
864
+ style_preset (str): selected style preset.
865
+ style_name (str): selected style name.
866
+
867
+ Returns:
868
+ tuple[str, str]: processed prompt and negative prompt
869
+ """
870
+ if style_preset == "None" and style_name == "None":
871
+ return prompt, negative_prompt
872
+
873
+ else:
874
+ style_dict = {"V1": self.V1, "V2": self.V2, "Anime": self.Anime}
875
+ positive = style_dict[style_preset][style_name]["prompt"]
876
+ negative = style_dict[style_preset][style_name]["negative_prompt"]
877
+
878
+ return positive.replace("{prompt}", prompt), negative.replace("{negative_prompt}", negative_prompt)
879
+
880
+ def load_preset(self, preset:str) -> tuple:
881
+ """Loads json files and turn them into a library
882
+
883
+ Args:
884
+ preset (str): path to json file
885
+
886
+ Returns:
887
+ tuple: the library, the keys and the list
888
+ """
889
+ preset = json.load(open(preset, encoding="utf-8"))
890
+ return preset, preset.keys(), list(preset.keys())
891
+
892
+ def save_temp_file(self, content, suffix) -> str:
893
+ """Helper method to set up the temp directory, save content to a temporary file, and log the action.
894
+
895
+ Args:
896
+ content (bytes): Content to be written to the file.
897
+ suffix (str): File suffix (e.g., .png, .txt).
898
+
899
+ Returns:
900
+ str: The path to the saved file.
901
+ """
902
+ # Set up the temp_dir only once
903
+ if self.local_save:
904
+ temp_dir = str(self.local_save_dir)
905
+ temp_dir = os.path.join(temp_dir, datetime.now().strftime("%Y-%m-%d"))
906
+ os.makedirs(temp_dir, exist_ok=True)
907
+
908
+ else: temp_dir = None
909
+
910
+ with tempfile.NamedTemporaryFile(delete=False, prefix=f"{self.__class__.__name__}_", suffix=suffix, dir=temp_dir) as temp_file:
911
+ temp_file.write(content)
912
+
913
+ self.logger.debug(f"Saved output: {temp_file.name}")
914
+ return temp_file.name
915
+
916
+ def service_request(self, url:str, header:dict, files:dict, data:dict=None, tx_timeout:int=90, rx_timeout:int=90, delay:float=0.5, multiplier:int=1, arc:bool=False) -> list:
917
+ """Process inputs for each server connection concurrently.
918
+
919
+ Args:
920
+ url (str): service url
921
+ header (dict): header for post request
922
+ files (dict): data for post request
923
+ data (dict): data for post request
924
+ tx_timeout (int): transmit timeout in seconds. default: 90
925
+ rx_timeout (int): receive timeout in seconds. default: 90
926
+ delay (float): delay time in seconds. default: 0.5
927
+ multiplier (int): number of concurrent requests. default: 1
928
+ arc (bool): whether to use arc-specific processing. default: False
929
+
930
+ Returns:
931
+ list: A list of results from the requests.
932
+ """
933
+
934
+ def request_handler():
935
+ try:
936
+ time.sleep(delay)
937
+ start_time = time.time()
938
+
939
+ if arc:
940
+ response = requests.post(url, headers=header, data=data, files=files).json()
941
+ result = response["data"][0]["image_base64"].split(",")[1]
942
+ content = base64.b64decode(result)
943
+ return self.save_temp_file(content, ".png")
944
+
945
+ else:
946
+ response = requests.post(url, headers=header, files=files, timeout=(tx_timeout, rx_timeout))
947
+ content_type = response.headers.get("Content-Type", "").lower()
948
+
949
+ if response.status_code == 200:
950
+ if "image" in content_type:
951
+ error_array = BytesIO(base64.b64decode(self.Error["error"]["data"])).read()
952
+ if response.content == error_array:
953
+ return None
954
+ return self.save_temp_file(response.content, ".png")
955
+
956
+ elif "text" in content_type:
957
+ return self.save_temp_file(response.text.encode('utf-8'), ".txt")
958
+
959
+ else:
960
+ return None
961
+
962
+ except requests.exceptions.Timeout:
963
+ self.logger.warning("Request timeout!")
964
+ return None
965
+
966
+ except requests.exceptions.RequestException as e:
967
+ self.logger.warning(f"Request failed: {e}")
968
+ return None
969
+
970
+ finally:
971
+ end_time = time.time()
972
+ request_time = end_time - start_time
973
+ self.logger.warning(f"The request took in {request_time:.2f} seconds.")
974
+
975
+ received_requests = []
976
+
977
+ with concurrent.futures.ThreadPoolExecutor() as executor:
978
+ futures = [executor.submit(request_handler) for _ in range(multiplier)]
979
+
980
+ for future in concurrent.futures.as_completed(futures):
981
+ result = future.result()
982
+ if result is not None:
983
+ received_requests.append(result)
984
+
985
+ return received_requests
986
+
987
+ if __name__ == "__main__":
988
+ print("ikmalsaid's STELLA AI Studio (Version 24.0731). Copyright (C) 2024 All rights reserved.")
989
+ print('''Currently supporting these 18 features:
990
+ - Image generation\t\t- Image creative upscaling
991
+ - Image to image\t\t- Image background remover
992
+ - Image variation\t\t- Prompt randomizer
993
+ - Image inpainting\t\t- Realtime generation
994
+ - Image eraser\t\t\t- Realtime canvas
995
+ - Image upscaling\t\t- Face consistency
996
+ - Image enhancer\t\t- Style consistency
997
+ - Image 3D LUT processor\t- Face restoration
998
+ - Image prompt generator\t- Face swapping''')
StellaD3.py ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import requests
3
+ import tempfile
4
+ import dotenv
5
+ import os
6
+ from datetime import datetime
7
+ from selenium import webdriver
8
+ from selenium.webdriver.common.by import By
9
+ from selenium.webdriver.chrome.options import Options
10
+ from selenium.webdriver.support.ui import WebDriverWait
11
+ from selenium.webdriver.support import expected_conditions as EC
12
+ from selenium.webdriver.common.keys import Keys
13
+ from selenium.common.exceptions import TimeoutException
14
+ from selenium.common.exceptions import NoSuchElementException
15
+ dotenv.load_dotenv(".env_d3")
16
+
17
+ class StellaD3():
18
+ def __init__(self, local_save_dir:str="outputs", local_save:bool=True, show_debug_log:bool=False):
19
+ try:
20
+ if show_debug_log: logging.basicConfig(level=logging.DEBUG)
21
+
22
+ self.local_save = local_save
23
+
24
+ if self.local_save:
25
+ self.local_save_dir = local_save_dir
26
+ os.makedirs(self.local_save_dir, exist_ok=True)
27
+
28
+ else: self.local_save_dir = None
29
+
30
+ options = Options()
31
+ options.add_argument("--headless=new")
32
+ options.add_experimental_option("excludeSwitches", ["ignore-certificate-errors"])
33
+ options.add_argument('--disable-gpu')
34
+ options.add_argument('--disable-blink-features=AutomationControlled')
35
+
36
+ self.driver = webdriver.Chrome(options=options)
37
+ self.driver.get(os.getenv("CONNECTOR_URL"))
38
+
39
+ email_input = WebDriverWait(self.driver, 2).until(EC.visibility_of_element_located((By.ID, "i0116")))
40
+ email_input.send_keys(os.getenv("CONNECTOR_ID"))
41
+
42
+ next_button = WebDriverWait(self.driver, 2).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))
43
+ next_button.click()
44
+
45
+ password_input = WebDriverWait(self.driver, 2).until(EC.visibility_of_element_located((By.ID, "i0118")))
46
+ password_input.send_keys(os.getenv("CONNECTOR_KEY"))
47
+
48
+ next_button = WebDriverWait(self.driver, 2).until(EC.element_to_be_clickable((By.ID, "idSIButton9")))
49
+ next_button.click()
50
+
51
+ accept_button = WebDriverWait(self.driver, 2).until(EC.element_to_be_clickable((By.ID, "acceptButton")))
52
+ accept_button.click()
53
+
54
+ print('D3 initialized!')
55
+
56
+ except Exception as e:
57
+ print(f'Error: {e}')
58
+ quit()
59
+
60
+ def image_generator_d3(self, prompt):
61
+ self.driver.get(os.getenv("CREATOR_URL"))
62
+ self.driver.refresh()
63
+
64
+ self.driver.find_element(By.ID, "sb_form_q").send_keys(prompt)
65
+ self.driver.find_element(By.ID, "create_btn_c").click()
66
+
67
+ output_files = []
68
+
69
+ if self.local_save:
70
+ temp_dir = str(self.local_save_dir)
71
+ temp_dir = os.path.join(temp_dir, datetime.now().strftime("%Y-%m-%d"))
72
+ os.makedirs(temp_dir, exist_ok=True)
73
+
74
+ else: temp_dir = None
75
+
76
+ try:
77
+ WebDriverWait(self.driver, 15).until(EC.presence_of_element_located((By.CLASS_NAME, "gil_err_tc")))
78
+ raise Exception('GIL_ERR_TC (Prompt Blocked)')
79
+
80
+ except TimeoutException:
81
+ pass
82
+
83
+ while True:
84
+ print("GI_REFRESH (Refresh Initiated)")
85
+ self.driver.refresh()
86
+
87
+ try:
88
+ WebDriverWait(self.driver, 15).until(EC.presence_of_element_located((By.CLASS_NAME, "img_cont")))
89
+ divs = self.driver.find_elements(By.CLASS_NAME, "img_cont")
90
+ urls = [div.find_element(By.TAG_NAME, "img").get_attribute("src").split("?")[0] for div in divs]
91
+ print('IMG_CONT (Complete!)')
92
+
93
+ for url in urls:
94
+ response = requests.get(url)
95
+
96
+ with tempfile.NamedTemporaryFile(delete=False, prefix=f"{self.__class__.__name__}_", suffix=".png", dir=temp_dir) as output:
97
+ output.write(response.content)
98
+ output_files.append(output.name)
99
+
100
+ return output_files
101
+
102
+
103
+ except TimeoutException:
104
+ try:
105
+ img = self.driver.find_element(By.CLASS_NAME, "gir_mmimg")
106
+ src = img.get_attribute("src").split("?")[0]
107
+ print('GIR_MMIMG (Complete!)')
108
+ response = requests.get(src)
109
+
110
+ with tempfile.NamedTemporaryFile(delete=False, prefix=f"{self.__class__.__name__}_", suffix=".png", dir=temp_dir) as output:
111
+ output.write(response.content)
112
+ output_files.append(output.name)
113
+
114
+ return output_files
115
+
116
+ except NoSuchElementException:
117
+ raise Exception('GIL_NOT_FOUND (Element Not Found)')
118
+
119
+ if __name__ == "__main__":
120
+ print("Import StellaD3 in another file to start using it!")
StellaGradio.py ADDED
@@ -0,0 +1,612 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from StellaApp import StellaApp
3
+ from StellaD3 import StellaD3
4
+
5
+ sa = StellaApp(use_as_gradio=True, local_save=True, show_debug_log=True)
6
+ d3 = StellaD3()
7
+
8
+ fit_box = 16
9
+ styles_preset = ["None", "Anime", "V1", "V2"]
10
+ image_types = ["jpg", "jpeg", "png", "webp"]
11
+
12
+ system_theme = gr.themes.Default(
13
+ font=[gr.themes.GoogleFont("Segoe UI")],
14
+ font_mono=[gr.themes.GoogleFont("Segoe UI")],
15
+ primary_hue=gr.themes.colors.rose,
16
+ secondary_hue=gr.themes.colors.rose,
17
+ neutral_hue=gr.themes.colors.zinc,
18
+ )
19
+
20
+ def f1_preprocess(f1_pro, f1_neg, f1_mod, f1_siz, f1_num, f1_sca, f1_sed, f1_pre, f1_sty, f1_ram):
21
+ results = sa.image_generator(f1_pro, f1_neg, f1_mod, f1_siz, f1_num, f1_sca, f1_sed, f1_pre, f1_sty)
22
+ for i in results: f1_ram.insert(0, i)
23
+ return f1_ram
24
+
25
+ def f2_preprocess(f2_img, f2_pro, f2_neg, f2_mod, f2_con, f2_str, f2_sca, f2_sed, f2_pre, f2_sty, f2_ram):
26
+ results = sa.image_controlnet(f2_img, f2_pro, f2_neg, f2_mod, f2_con, f2_str, f2_sca, f2_sed, f2_pre, f2_sty)
27
+ for i in results: f2_ram.insert(0, i)
28
+ return f2_ram
29
+
30
+ def f3_preprocess(f3_img, f3_pro, f3_neg, f3_mod, f3_str, f3_sca, f3_sed, f3_pre, f3_sty, f3_ram):
31
+ results = sa.image_variation(f3_img, f3_pro, f3_neg, f3_mod, f3_str, f3_sca, f3_sed, f3_pre, f3_sty)
32
+ for i in results: f3_ram.insert(0, i)
33
+ return f3_ram
34
+
35
+ def f4_preprocess(f4_img, f4_ram):
36
+ results = sa.image_upscaler(f4_img)
37
+ for i in results: f4_ram.insert(0, i)
38
+ return f4_ram
39
+
40
+ def f5_preprocess(f5_img, f4_ram):
41
+ results = sa.background_remover(f5_img)
42
+ for i in results: f4_ram.insert(0, i)
43
+ return f4_ram
44
+
45
+ def f7_preprocess(f7_img, f7_pro, f7_neg, f7_cre, f7_rsm, f7_hdr, f7_pre, f7_sty, f7_ram):
46
+ results = sa.creative_upscaler(f7_img, f7_pro, f7_neg, f7_cre, f7_rsm, f7_hdr, f7_pre, f7_sty)
47
+ for i in results: f7_ram.insert(0, i)
48
+ return f7_ram
49
+
50
+ def f8_preprocess(f8_mas, f8_sca, f8_ram):
51
+ results = sa.image_eraser(f8_mas, f8_sca)
52
+ for i in results: f8_ram.insert(0, i)
53
+ return f8_ram
54
+
55
+ def f9_preprocess(f9_mas, f9_pro, f9_neg, f9_str, f9_sca, f9_pre, f9_sty, f9_ram):
56
+ results = sa.image_inpainting(f9_mas, f9_pro, f9_neg, f9_str, f9_sca, f9_pre, f9_sty)
57
+ for i in results: f9_ram.insert(0, i)
58
+ return f9_ram
59
+
60
+ def f10_preprocess(f10_pro, f10_num, f10_lra, f10_sed, f10_pre, f10_sty, f10_ram):
61
+ results = sa.realtime_generator(f10_pro, f10_num, f10_lra, f10_sed, f10_pre, f10_sty)
62
+ for i in results: f10_ram.insert(0, i)
63
+ return f10_ram
64
+
65
+ def f11_preprocess(f11_can, f11_pro, f11_lra, f11_str, f11_sed, f11_pre, f11_sty, f11_ram):
66
+ results = sa.realtime_canvas(f11_can, f11_pro, f11_lra, f11_str, f11_sed, f11_pre, f11_sty)
67
+ for i in results: f11_ram.insert(0, i)
68
+ return f11_ram
69
+
70
+ def f12_preprocess(f12_img, f12_ram):
71
+ results = sa.arc_face_restore(f12_img)
72
+ for i in results: f12_ram.insert(0, i)
73
+ return f12_ram
74
+
75
+ def f13_preprocess(f13_fce, f13_stl, f13_pro, f13_neg, f13_siz, f13_fco, f13_sst, f13_sed, f13_pre, f13_sty, f13_ram):
76
+ results = sa.dual_consistency(f13_fce, f13_stl, f13_pro, f13_neg, f13_siz, f13_fco, f13_sst, f13_sed, f13_pre, f13_sty)
77
+ for i in results: f13_ram.insert(0, i)
78
+ return f13_ram
79
+
80
+ def f14_preprocess(f14_fce, f14_pro, f14_neg, f14_siz, f14_fco, f14_sed, f14_pre, f14_sty, f14_ram):
81
+ results = sa.face_identity(f14_fce, f14_pro, f14_neg, f14_siz, f14_fco, f14_sed, f14_pre, f14_sty)
82
+ for i in results: f14_ram.insert(0, i)
83
+ return f14_ram
84
+
85
+ def f15_preprocess(f15_pro, f15_mod, f15_siz, f15_num, f15_gdi, f15_gdt, f15_den, f15_v4, f15_pre, f15_sty, f15_ram):
86
+ results = sa.image_generator_atelier(f15_pro, f15_mod, f15_siz, f15_num, f15_gdi, f15_gdt, f15_den, f15_v4, f15_pre, f15_sty)
87
+ for i in results: f15_ram.insert(0, i)
88
+ return f15_ram
89
+
90
+ def f16_preprocess(f16_pro, f16_ram):
91
+ results = d3.image_generator_d3(f16_pro)
92
+ for i in results: f16_ram.insert(0, i)
93
+ return f16_ram
94
+
95
+ def preset_select(preset):
96
+ if preset == "None":
97
+ return gr.Dropdown(choices=["None"], value="None")
98
+ else:
99
+ styleList_name = f"{preset}List"
100
+ styleList = getattr(sa, styleList_name)
101
+ return gr.Dropdown(choices=styleList, value=styleList[0])
102
+
103
+ with gr.Blocks(title="AI Studio", css="html/Style.css", analytics_enabled=False, theme=system_theme, fill_height=True) as demo:
104
+ gr.Markdown("## <br><center>Stella AI Studio - Gradio Playground Version 24.0731")
105
+
106
+ with gr.Tab("Image Generator"):
107
+ with gr.Row(equal_height=False):
108
+ with gr.Column(variant="panel", scale=1) as menu:
109
+ gr.Markdown("## <center>Image Generator")
110
+ gr.Markdown("<center>Basic Settings")
111
+ f1_pro = gr.Textbox(placeholder="Prompt for image...", container=False, lines=5, max_lines=5)
112
+ f1_neg = gr.Textbox(placeholder="Negative prompt...", container=False, lines=5, max_lines=5)
113
+ f1_num = gr.Slider(value=4, minimum=1, maximum=8, step=1, label="Number of Images")
114
+
115
+ gr.Markdown("<center>Advanced Settings")
116
+ f1_mod = gr.Dropdown(choices=sa.ModelList, value="Turbo", container=False)
117
+ f1_siz = gr.Dropdown(choices=sa.SizeList, value=sa.SizeList[0], container=False)
118
+ f1_sca = gr.Slider(value=9, minimum=3, maximum=15, step=0.05, label="Prompt Scale")
119
+ f1_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
120
+
121
+ gr.Markdown("<center>Style Presets")
122
+ f1_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
123
+ f1_sty = gr.Dropdown(choices=["None"], value="None", container=False)
124
+ f1_sub = gr.Button("Generate", variant="stop")
125
+ f1_pre.change(fn=preset_select, inputs=[f1_pre], outputs=[f1_sty], show_progress="hidden")
126
+
127
+ with gr.Column(variant="panel", scale=3) as result:
128
+ f1_res = gr.Gallery(height=945.875, object_fit="contain", container=False, show_share_button=False)
129
+ f1_ram = gr.State([])
130
+ f1_sub.click(
131
+ show_api=False,
132
+ scroll_to_output=True,
133
+ fn=f1_preprocess,
134
+ inputs=[f1_pro, f1_neg, f1_mod, f1_siz, f1_num, f1_sca, f1_sed, f1_pre, f1_sty, f1_ram],
135
+ outputs=[f1_res]
136
+ )
137
+
138
+ with gr.Tab("Image Controlnet"):
139
+ with gr.Row(equal_height=False):
140
+ with gr.Column(variant="panel", scale=1) as menu:
141
+ gr.Markdown("## <center>Image Controlnet")
142
+ gr.Markdown("<center>Basic Settings")
143
+ f2_img = gr.Image(type="filepath", height=199, sources=["upload"], label="Upload Image")
144
+ f2_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
145
+ f2_neg = gr.Textbox(placeholder="Negative prompt...", container=False)
146
+
147
+ gr.Markdown("<center>Advanced Settings")
148
+ f2_mod = gr.Dropdown(choices=sa.RemixList, value="Toon", container=False)
149
+ f2_con = gr.Dropdown(choices=sa.ControlnetList, value=sa.ControlnetList[0], container=False)
150
+ f2_str = gr.Slider(value=70, minimum=0, maximum=100, step=1, label="Controlnet Strength")
151
+ f2_sca = gr.Slider(value=9, minimum=3, maximum=15, step=0.05, label="Prompt Scale")
152
+ f2_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
153
+
154
+ gr.Markdown("<center>Style Presets")
155
+ f2_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
156
+ f2_sty = gr.Dropdown(choices=["None"], value="None", container=False)
157
+ f2_sub = gr.Button("Generate", variant="stop")
158
+ f2_pre.change(fn=preset_select, inputs=[f2_pre], outputs=[f2_sty], show_progress="hidden")
159
+
160
+ with gr.Column(variant="panel", scale=3) as result:
161
+ f2_res = gr.Gallery(height=991.94, container=False, elem_id="f2_res", show_share_button=False)
162
+ f2_ram = gr.State([])
163
+ f2_sub.click(
164
+ show_api=False,
165
+ scroll_to_output=True,
166
+ fn=f2_preprocess,
167
+ inputs=[f2_img, f2_pro, f2_neg, f2_mod, f2_con, f2_str, f2_sca, f2_sed, f2_pre, f2_sty, f2_ram],
168
+ outputs=[f2_res]
169
+ )
170
+
171
+ with gr.Tab("Image Variation"):
172
+ with gr.Row(equal_height=False):
173
+ with gr.Column(variant="panel", scale=1) as menu:
174
+ gr.Markdown("## <center>Image Variation")
175
+ gr.Markdown("<center>Basic Settings")
176
+ f3_img = gr.Image(type="filepath", height=199, sources=["upload"], label="Upload Image")
177
+ f3_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
178
+ f3_neg = gr.Textbox(placeholder="Negative prompt...", container=False)
179
+
180
+ gr.Markdown("<center>Advanced Settings")
181
+ f3_mod = gr.Dropdown(choices=sa.VariateList, value="V3", container=False)
182
+ f3_str = gr.Slider(value=0.85, minimum=0.0, maximum=1.0, step=0.05, label="Variate Strength")
183
+ f3_sca = gr.Slider(value=9, minimum=3, maximum=15, step=0.05, label="Prompt Scale")
184
+ f3_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
185
+
186
+
187
+ gr.Markdown("<center>Style Presets")
188
+ f3_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
189
+ f3_sty = gr.Dropdown(choices=["None"], value="None", container=False)
190
+ f3_sub = gr.Button("Generate", variant="stop")
191
+ f3_pre.change(fn=preset_select, inputs=[f3_pre], outputs=[f3_sty], show_progress="hidden")
192
+
193
+ with gr.Column(variant="panel", scale=3) as result:
194
+ f3_res = gr.Gallery(height=936.938, container=False, elem_id="f3_res", show_share_button=False)
195
+ f3_ram = gr.State([])
196
+ f3_sub.click(
197
+ show_api=False,
198
+ scroll_to_output=True,
199
+ fn=f3_preprocess,
200
+ inputs=[f3_img, f3_pro, f3_neg, f3_mod, f3_str, f3_sca, f3_sed, f3_pre, f3_sty, f3_ram],
201
+ outputs=[f3_res]
202
+ )
203
+
204
+ with gr.Tab("Image Toolkit"):
205
+ with gr.Row(equal_height=False):
206
+ with gr.Column(variant="panel", scale=1) as menu:
207
+ gr.Markdown("## <center>Image 2 + 1")
208
+ gr.Markdown("<center>4X Upscaler")
209
+ f4_img = gr.Image(type="filepath", height=199, sources=["upload"], label="Upload Image")
210
+ f4_sub = gr.Button("Upscale Image", variant="stop")
211
+
212
+ gr.Markdown("<center>Background Remover")
213
+ f5_img = gr.Image(type="filepath", height=199, sources=["upload"], label="Upload Image")
214
+ f5_sub = gr.Button("Remove Background", variant="stop")
215
+
216
+ gr.Markdown("<center>Image Prompter")
217
+ f6_img = gr.Image(type="filepath", height=199, sources=["upload"], label="Upload Image")
218
+ f6_sub = gr.Button("Describe Image", variant="stop")
219
+
220
+ with gr.Column(variant="panel", scale=3) as result:
221
+ f4_res = gr.Gallery(height=818.406, container=False, elem_id="f4_res", show_share_button=False)
222
+ f4_ram = gr.State([])
223
+ f6_res = gr.Textbox(placeholder="Upload and describe an image to get a prompt...", container=False, lines=5, max_lines=5)
224
+
225
+ f4_sub.click(
226
+ show_api=False,
227
+ scroll_to_output=True,
228
+ fn=f4_preprocess,
229
+ inputs=[f4_img, f4_ram],
230
+ outputs=[f4_res]
231
+ )
232
+
233
+ f5_sub.click(
234
+ show_api=False,
235
+ scroll_to_output=True,
236
+ fn=f5_preprocess,
237
+ inputs=[f5_img, f4_ram],
238
+ outputs=[f4_res]
239
+ )
240
+
241
+ f6_sub.click(
242
+ show_api=False,
243
+ scroll_to_output=True,
244
+ fn=sa.prompt_generator,
245
+ inputs=[f6_img],
246
+ outputs=[f6_res]
247
+ )
248
+
249
+ with gr.Tab("Creative Upscale"):
250
+ with gr.Row(equal_height=False):
251
+ with gr.Column(variant="panel", scale=1) as menu:
252
+ gr.Markdown("## <center>Creative Upscale")
253
+ gr.Markdown("<center>Basic Settings")
254
+ f7_img = gr.Image(type="filepath", height=279, sources=["upload"], label="Upload Image")
255
+ f7_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
256
+ f7_neg = gr.Textbox(placeholder="Negative prompt...", container=False)
257
+
258
+ gr.Markdown("<center>Advanced Settings")
259
+ f7_cre = gr.Slider(value=0.5, minimum=0.2, maximum=1.0, step=0.05, label="Creativity Strength")
260
+ f7_rsm = gr.Slider(value=1.0, minimum=0.0, maximum=1.0, step=0.05, label="Resemblance Strength")
261
+ f7_hdr = gr.Slider(value=0.5, minimum=0.0, maximum=1.0, step=0.05, label="HDR Strength")
262
+
263
+ gr.Markdown("<center>Style Presets")
264
+ f7_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
265
+ f7_sty = gr.Dropdown(choices=["None"], value="None", container=False)
266
+ f7_sub = gr.Button("Generate", variant="stop")
267
+ f7_pre.change(fn=preset_select, inputs=[f7_pre], outputs=[f7_sty], show_progress="hidden")
268
+
269
+ with gr.Column(variant="panel", scale=3) as result:
270
+ f7_res = gr.Gallery(container=False, height=939.938, elem_id="f7_res", show_share_button=False)
271
+ f7_ram = gr.State([])
272
+ f7_sub.click(
273
+ show_api=False,
274
+ scroll_to_output=True,
275
+ fn=f7_preprocess,
276
+ inputs=[f7_img, f7_pro, f7_neg, f7_cre, f7_rsm, f7_hdr, f7_pre, f7_sty, f7_ram],
277
+ outputs=[f7_res]
278
+ )
279
+
280
+ with gr.Tab("Object Eraser"):
281
+ with gr.Row(equal_height=True):
282
+ with gr.Column(variant="panel", scale=1) as menu:
283
+ gr.Markdown("## <center>Object Eraser")
284
+ gr.Markdown("<center>Advanced Settings")
285
+ f8_sca = gr.Slider(value=9, minimum=3, maximum=15, step=0.05, label="Prompt Scale")
286
+ f8_sub = gr.Button("Erase Object", variant="stop")
287
+
288
+ with gr.Column(variant="panel", scale=2) as input:
289
+ f8_mas = gr.ImageMask(
290
+ type="pil",
291
+ layers=False,
292
+ container=False,
293
+ transforms=[],
294
+ sources=["upload"],
295
+ brush=gr.Brush(default_size=24, colors=["#000000"], color_mode="fixed"),
296
+ eraser=gr.Eraser(default_size=24),
297
+ canvas_size=(1024,1024)
298
+ )
299
+ with gr.Column(variant="panel", scale=2) as result:
300
+ f8_res = gr.Gallery(container=False, elem_id="f11_res", show_share_button=False)
301
+ f8_ram = gr.State([])
302
+ f8_sub.click(
303
+ show_api=False,
304
+ scroll_to_output=True,
305
+ fn=f8_preprocess,
306
+ inputs=[f8_mas, f8_sca, f8_ram],
307
+ outputs=[f8_res]
308
+ )
309
+
310
+ with gr.Tab("Image Inpainting"):
311
+ with gr.Row(equal_height=True):
312
+ with gr.Column(variant="panel", scale=1) as menu:
313
+ gr.Markdown("## <center>Image Inpainting")
314
+ gr.Markdown("<center>Basic Settings")
315
+ f9_pro = gr.Textbox(placeholder="Prompt for image...", container=False, lines=2, max_lines=2)
316
+ f9_neg = gr.Textbox(placeholder="Negative prompt...", container=False, lines=1, max_lines=1)
317
+
318
+ gr.Markdown("<center>Advanced Settings")
319
+ f9_str = gr.Slider(value=0.5, minimum=0.0, maximum=1.0, step=0.05, label="Inpaint Strength")
320
+ f9_sca = gr.Slider(value=9, minimum=3, maximum=15, step=0.05, label="Prompt Scale")
321
+
322
+ gr.Markdown("<center>Style Presets")
323
+ f9_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
324
+ f9_sty = gr.Dropdown(choices=["None"], value="None", container=False)
325
+ f9_sub = gr.Button("Inpaint Image", variant="stop")
326
+ f9_pre.change(fn=preset_select, inputs=[f9_pre], outputs=[f9_sty], show_progress="hidden")
327
+
328
+ with gr.Column(variant="panel", scale=2) as input:
329
+ f9_mas = gr.ImageMask(
330
+ type="pil",
331
+ layers=False,
332
+ container=False,
333
+ transforms=[],
334
+ sources=["upload"],
335
+ brush=gr.Brush(default_size=24, colors=["#000000"], color_mode="fixed"),
336
+ eraser=gr.Eraser(default_size=24),
337
+ canvas_size=(1024,1024)
338
+ )
339
+ with gr.Column(variant="panel", scale=2) as result:
340
+ f9_res = gr.Gallery(container=False, elem_id="f11_res", show_share_button=False)
341
+ f9_ram = gr.State([])
342
+ f9_sub.click(
343
+ show_api=False,
344
+ scroll_to_output=True,
345
+ fn=f9_preprocess,
346
+ inputs=[f9_mas, f9_pro, f9_neg, f9_str, f9_sca, f9_pre, f9_sty, f9_ram],
347
+ outputs=[f9_res]
348
+ )
349
+
350
+ with gr.Tab("RT Generator"):
351
+ with gr.Row(equal_height=False):
352
+ with gr.Column(variant="panel", scale=1) as menu:
353
+ gr.Markdown("## <center>RT Image Generator")
354
+ gr.Markdown("<center>Basic Settings")
355
+ f10_pro = gr.Textbox(placeholder="Prompt for image...", container=False, lines=5, max_lines=5)
356
+ f10_num = gr.Slider(value=4, minimum=1, maximum=8, step=1, label="Number of Images")
357
+
358
+ gr.Markdown("<center>Advanced Settings")
359
+ f10_lra = gr.Dropdown(choices=sa.LoraList, value="None", container=False)
360
+ f10_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
361
+
362
+ gr.Markdown("<center>Style Presets")
363
+ f10_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
364
+ f10_sty = gr.Dropdown(choices=["None"], value="None", container=False)
365
+ f10_sub = gr.Button("Generate", variant="stop")
366
+ f10_pre.change(fn=preset_select, inputs=[f10_pre], outputs=[f10_sty], show_progress="hidden")
367
+
368
+ with gr.Column(variant="panel", scale=3) as result:
369
+ f10_res = gr.Gallery(height=945.875, object_fit="contain", container=False, show_share_button=False, columns=4)
370
+ f10_ram = gr.State([])
371
+ f10_sub.click(
372
+ show_api=False,
373
+ scroll_to_output=True,
374
+ fn=f10_preprocess,
375
+ inputs=[f10_pro, f10_num, f10_lra, f10_sed, f10_pre, f10_sty, f10_ram],
376
+ outputs=[f10_res]
377
+ )
378
+
379
+ with gr.Tab("RT Canvas"):
380
+ with gr.Row(equal_height=False):
381
+ with gr.Column(variant="panel", scale=1) as menu:
382
+ gr.Markdown("## <center>RT Canvas")
383
+ gr.Markdown("<center>Basic Settings")
384
+ f11_pro = gr.Textbox(placeholder="Prompt for image...", container=False, lines=2, max_lines=2)
385
+
386
+ gr.Markdown("<center>Advanced Settings")
387
+ f11_lra = gr.Dropdown(choices=sa.LoraList, value="None", container=False)
388
+ f11_str = gr.Slider(value=0.89, minimum=0.0, maximum=1.0, step=0.001, label="Creativity Strength")
389
+ f11_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
390
+
391
+ gr.Markdown("<center>Style Presets")
392
+ f11_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
393
+ f11_sty = gr.Dropdown(choices=["None"], value="None", container=False)
394
+ f11_sub = gr.Button("Generate", variant="stop")
395
+ f11_pre.change(fn=preset_select, inputs=[f11_pre], outputs=[f11_sty], show_progress="hidden")
396
+
397
+ with gr.Column(variant="panel", scale=2) as input:
398
+ import numpy as np
399
+ f11_can = gr.Paint(
400
+ value=np.full((1024, 1024), 255, dtype=np.uint8),
401
+ type="pil",
402
+ container=False,
403
+ transforms=[],
404
+ sources=[],
405
+ canvas_size=(1024,1024),
406
+ height=610.94
407
+ )
408
+
409
+ with gr.Column(variant="panel", scale=2) as result:
410
+ f11_res = gr.Gallery(container=False, height=610.94, elem_id="f11_res", show_share_button=False)
411
+ f11_ram = gr.State([])
412
+ f11_sub.click(
413
+ show_api=False,
414
+ scroll_to_output=True,
415
+ fn=f11_preprocess,
416
+ inputs=[f11_can, f11_pro, f11_lra, f11_str, f11_sed, f11_pre, f11_sty, f11_ram],
417
+ outputs=[f11_res]
418
+ )
419
+
420
+ with gr.Tab("Face Restore"):
421
+ with gr.Row(equal_height=False):
422
+ with gr.Column(variant="panel", scale=1) as menu:
423
+ gr.Markdown("## <center>Face Restore")
424
+ gr.Markdown("<center>Basic Settings")
425
+ f12_img = gr.Image(type="filepath", height=279, sources=["upload"], label="Upload Image")
426
+ f12_sub = gr.Button("Restore", variant="stop")
427
+
428
+ with gr.Column(variant="panel", scale=3) as result:
429
+ f12_res = gr.Gallery(container=False, height=939.938, elem_id="f7_res", show_share_button=False)
430
+ f12_ram = gr.State([])
431
+ f12_sub.click(
432
+ show_api=False,
433
+ scroll_to_output=True,
434
+ fn=f12_preprocess,
435
+ inputs=[f12_img, f12_ram],
436
+ outputs=[f12_res]
437
+ )
438
+
439
+ with gr.Tab("Dual Consistency"):
440
+ with gr.Row(equal_height=False):
441
+ with gr.Column(variant="panel", scale=1) as menu:
442
+ gr.Markdown("## <center>Dual Consistency")
443
+ gr.Markdown("<center>Basic Settings")
444
+ with gr.Row():
445
+ f13_fce = gr.Image(type="filepath", height=199, sources=["upload"], label="Face Image", min_width=48)
446
+ f13_stl = gr.Image(type="filepath", height=199, sources=["upload"], label="Style Image", min_width=48)
447
+ f13_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
448
+ f13_neg = gr.Textbox(placeholder="Negative prompt...", container=False)
449
+
450
+ gr.Markdown("<center>Advanced Settings")
451
+ f13_siz = gr.Dropdown(choices=sa.SizeList, value=sa.SizeList[0], container=False)
452
+ f13_fco = gr.Slider(value=1.2, minimum=0, maximum=2, step=0.05, label="Face Consistency")
453
+ f13_sst = gr.Slider(value=0.7, minimum=0, maximum=1, step=0.05, label="Style Strength")
454
+ f13_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
455
+
456
+ gr.Markdown("<center>Style Presets")
457
+ f13_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
458
+ f13_sty = gr.Dropdown(choices=["None"], value="None", container=False)
459
+ f13_sub = gr.Button("Generate", variant="stop")
460
+ f13_pre.change(fn=preset_select, inputs=[f13_pre], outputs=[f13_sty], show_progress="hidden")
461
+
462
+ with gr.Column(variant="panel", scale=3) as result:
463
+ f13_res = gr.Gallery(height=936.94, container=False, elem_id="f13_res", show_share_button=False)
464
+ f13_ram = gr.State([])
465
+ f13_sub.click(
466
+ show_api=False,
467
+ scroll_to_output=True,
468
+ fn=f13_preprocess,
469
+ inputs=[f13_fce, f13_stl, f13_pro, f13_neg, f13_siz, f13_fco, f13_sst, f13_sed, f13_pre, f13_sty, f13_ram],
470
+ outputs=[f13_res]
471
+ )
472
+
473
+ with gr.Tab("Face Identity"):
474
+ with gr.Row(equal_height=False):
475
+ with gr.Column(variant="panel", scale=1) as menu:
476
+ gr.Markdown("## <center>Face Identity")
477
+ gr.Markdown("<center>Basic Settings")
478
+ f14_fce = gr.Image(type="filepath", height=199, sources=["upload"], label="Face Image")
479
+ f14_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
480
+ f14_neg = gr.Textbox(placeholder="Negative prompt...", container=False)
481
+
482
+ gr.Markdown("<center>Advanced Settings")
483
+ f14_siz = gr.Dropdown(choices=sa.SizeList, value=sa.SizeList[0], container=False)
484
+ f14_fco = gr.Slider(value=1.0, minimum=0, maximum=1, step=0.05, label="Face Consistency")
485
+ f14_sed = gr.Number(value=0, minimum=0, label="Seed (0 for Random)")
486
+
487
+ gr.Markdown("<center>Style Presets")
488
+ f14_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
489
+ f14_sty = gr.Dropdown(choices=["None"], value="None", container=False)
490
+ f14_sub = gr.Button("Generate", variant="stop")
491
+ f14_pre.change(fn=preset_select, inputs=[f14_pre], outputs=[f14_sty], show_progress="hidden")
492
+
493
+ with gr.Column(variant="panel", scale=3) as result:
494
+ f14_res = gr.Gallery(height=868.75, container=False, elem_id="f14_res", show_share_button=False)
495
+ f14_ram = gr.State([])
496
+ f14_sub.click(
497
+ show_api=False,
498
+ scroll_to_output=True,
499
+ fn=f14_preprocess,
500
+ inputs=[f14_fce, f14_pro, f14_neg, f14_siz, f14_fco, f14_sed, f14_pre, f14_sty, f14_ram],
501
+ outputs=[f14_res]
502
+ )
503
+
504
+ with gr.Tab("Project Atelier"):
505
+ with gr.Row(equal_height=False):
506
+ with gr.Column(variant="panel", scale=1) as menu:
507
+ gr.Markdown("## <center>Project Atelier")
508
+ gr.Markdown("<center>Basic Settings")
509
+ f15_pro = gr.Textbox(placeholder="Prompt for image...", container=False)
510
+ f15_num = gr.Slider(value=4, minimum=1, maximum=8, step=1, label="Number of Images")
511
+
512
+ gr.Markdown("<center>Image Guidance")
513
+ f15_gdi = gr.Image(type="filepath", height=150, sources=["upload"], label="Guide Image")
514
+ f15_gdt = gr.Dropdown(choices=sa.V4ControlList, value="None", container=False)
515
+ f15_den = gr.Slider(value=0.95, minimum=0.1, maximum=1, step=0.01, label="Denoise Strength")
516
+
517
+ gr.Markdown("<center>Advanced Settings")
518
+ f15_v4 = gr.Dropdown(choices=sa.V4List, value="None", container=False)
519
+ f15_mod = gr.Dropdown(choices=sa.AtelierList, value="Turbo", container=False)
520
+ f15_siz = gr.Dropdown(choices=sa.SizeList, value=sa.SizeList[0], container=False)
521
+
522
+ gr.Markdown("<center>Style Presets")
523
+ f15_pre = gr.Dropdown(choices=styles_preset, value="None", container=False)
524
+ f15_sty = gr.Dropdown(choices=["None"], value="None", container=False)
525
+ f15_sub = gr.Button("Generate", variant="stop")
526
+ f15_pre.change(fn=preset_select, inputs=[f15_pre], outputs=[f15_sty], show_progress="hidden")
527
+
528
+ with gr.Column(variant="panel", scale=3) as result:
529
+ f15_res = gr.Gallery(height=955.344, object_fit="contain", container=False, show_share_button=False, columns=4)
530
+ f15_ram = gr.State([])
531
+ f15_sub.click(
532
+ show_api=False,
533
+ scroll_to_output=True,
534
+ fn=f15_preprocess,
535
+ inputs=[f15_pro, f15_mod, f15_siz, f15_num, f15_gdi, f15_gdt, f15_den, f15_v4, f15_pre, f15_sty, f15_ram],
536
+ outputs=[f15_res]
537
+ )
538
+
539
+ with gr.Tab("Project D3"):
540
+ with gr.Row(equal_height=False):
541
+ with gr.Column(variant="panel", scale=1) as menu:
542
+ gr.Markdown("## <center>Project D3")
543
+ gr.Markdown("<center>Basic Settings")
544
+ f16_pro = gr.Textbox(placeholder="Prompt for image...", container=False, lines=5, max_lines=5)
545
+ f16_sub = gr.Button("Generate", variant="stop")
546
+
547
+ with gr.Column(variant="panel", scale=3) as result:
548
+ f16_res = gr.Gallery(height=945.875, object_fit="contain", container=False, show_share_button=False)
549
+ f16_ram = gr.State([])
550
+ f16_sub.click(
551
+ show_api=False,
552
+ scroll_to_output=True,
553
+ fn=f16_preprocess,
554
+ inputs=[f16_pro, f16_ram],
555
+ outputs=[f16_res]
556
+ )
557
+
558
+ if __name__ == "__main__":
559
+ demo.launch(inbrowser=True)
560
+
561
+
562
+ def gradio_change_style(style):
563
+ if style == "None":
564
+ return gr.Dropdown(choices=["None"], value="None")
565
+ else:
566
+ styleList_name = f"{style}List"
567
+ styleList = getattr(sa, styleList_name)
568
+ return gr.Dropdown(choices=styleList, value=styleList[0])
569
+
570
+ def gradio_combine_strings(*args):
571
+ combined = []
572
+ for arg in args:
573
+ if arg is not None and str(arg) != "None":
574
+ combined.append(str(arg))
575
+ return ', '.join(combined)
576
+
577
+ # with gr.Tab("Image LUT Processor"):
578
+ # lutFile = gr.Dropdown(choices=App.CubeList, value="Good Morning") label="LUT File")
579
+ # with gr.Row():
580
+ # lutImageInput3 = gr.Image(format="PNG") type=filepath") label="Input Image")
581
+ # lutImageOutput2 = gr.Image(format="PNG") type=filepath") label="Output Image")
582
+ # lutDescSubmit3 = gr.Button("Restore This Image")
583
+ # lutDescSubmit3.click(
584
+ # show_api=False,
585
+ # scroll_to_output=True,fn=App.image_lut_processor, inputs=[lutImageInput3, lutFile], outputs=lutImageOutput2)
586
+
587
+ # with gr.Tab("Prompt Designer"):
588
+ # with gr.Row():
589
+ # scene = gr.Dropdown(choices=App.Prompt["scene"], label="Scene Type") value=App.Prompt["scene"][0])
590
+ # filter = gr.Dropdown(choices=App.Prompt[filter"], label=filter Type") value=App.Prompt[filter"][0])
591
+ # camera = gr.Dropdown(choices=App.Prompt["camera"], label="Camera Type") value=App.Prompt["camera"][0])
592
+ # material = gr.Dropdown(choices=App.Prompt["material"], label="Material Type") value=App.Prompt["material"][0])
593
+ # perspective = gr.Dropdown(choices=App.Prompt["perspective"], label="Perspective Type") value=App.Prompt["perspective"][0])
594
+
595
+ # with gr.Row():
596
+ # medium = gr.Dropdown(choices=App.Prompt["medium"], label="Art Medium") value=App.Prompt["medium"][0])
597
+ # lighting = gr.Dropdown(choices=App.Prompt["lighting"], label="Lighting Option") value=App.Prompt["lighting"][0])
598
+ # rendering = gr.Dropdown(choices=App.Prompt["rendering"], label="Rendering Engine") value=App.Prompt["rendering"][0])
599
+ # artstyle = gr.Dropdown(choices=App.Prompt["artstyle"], label="Art Style") value=App.Prompt["artstyle"][0])
600
+ # painter = gr.Dropdown(choices=App.Prompt["painter"], label="Popular Painter") value=App.Prompt["painter"][0])
601
+
602
+ # pdPrompt = gr.Textbox(label="Original Prompt")
603
+ # pdResult = gr.Textbox(label="Designed Prompt")
604
+
605
+ # combine = gr.Button("Design Prompt")
606
+ # combine.click(
607
+ # show_api=False,
608
+ # scroll_to_output=True,fn=combine_strings,
609
+ # inputs=[pdPrompt, scene, filter, camera, material, perspective, medium, lighting, rendering, artstyle, painter],
610
+ # outputs=pdResult, show_progress='hidden')
611
+
612
+ # #b.launch(inbrowser=True)
cubes/Going for a Walk.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Good Morning.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Nah.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Once Upon a Time.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Passing By.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Serenity.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Smooth Sailing.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Undeniable 2.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Undeniable.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Urban Cowboy.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/Well See.cube ADDED
The diff for this file is too large to render. See raw diff
 
cubes/You Can Do It.cube ADDED
The diff for this file is too large to render. See raw diff
 
html/Script.js ADDED
@@ -0,0 +1 @@
 
 
1
+ // html/Script.js
html/Style.css ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* html/Style.css */
2
+
3
+ ::-webkit-scrollbar {
4
+ display: none;
5
+ }
6
+
7
+ ::-webkit-scrollbar-button {
8
+ display: none;
9
+ }
10
+
11
+ body {
12
+ -ms-overflow-style: none;
13
+ }
14
+
15
+ footer {
16
+ display: none !important;
17
+ }
18
+
19
+ .app.svelte-182fdeq.svelte-182fdeq {
20
+ padding: 0px;
21
+ }
22
+
23
+ .grid-wrap.svelte-hpz95u.svelte-hpz95u {
24
+ overflow-y: auto;
25
+ }
26
+
27
+ .grid-container.svelte-eynlr2.svelte-eynlr2 {
28
+ gap: 16px;
29
+ }
30
+
31
+ .image-frame.svelte-rrgd5g img {
32
+ object-fit: contain;
33
+ }
34
+
35
+ .image-container.svelte-1l6wqyv {
36
+ height: 100%;
37
+ }
38
+
39
+ .grid-container.svelte-eynlr2.svelte-eynlr2 {
40
+ grid-template-rows: repeat(auto-fit, minmax(150px, 1fr));
41
+ grid-template-columns: repeat(auto-fit, minmax(150px, 0.505fr));
42
+ }
43
+
44
+ .wrap.svelte-1sbaaot {
45
+ align-items: inherit;
46
+ }
47
+
48
+ .wrap.svelte-z7cif2.svelte-z7cif2 {
49
+ z-index: 100;
50
+ max-height: 100%;
51
+ }
52
+
53
+ .stage-wrap.svelte-1sbaaot {
54
+ transform: translate(0px, 266px);
55
+ }
56
+
57
+ button.svelte-1uw5tnk {
58
+ margin-bottom: 8px;
59
+ width: 192px;
60
+ padding: 8px;
61
+ border-radius: var(--container-radius);
62
+ }
63
+
64
+ .selected.svelte-1uw5tnk {
65
+ border-color: var(--border-color-primary);
66
+ border: 0px solid var(--border-color-primary);
67
+ font-weight: bold;
68
+ text-shadow: 0 0 25px rgb(216, 216, 216), 0 0 25px white, 0 0 25px white, 0 0 75px white;
69
+ }
70
+
71
+ .tab-nav.svelte-1uw5tnk {
72
+ justify-content: space-evenly;
73
+ border: 0px;
74
+ }
75
+
76
+ div.svelte-19hvt5v {
77
+ border-radius: 10px;
78
+ margin-top: 12px;
79
+ border: 1px solid var(--border-color-primary);
80
+ }
81
+
82
+ input[type=range].svelte-pc1gm4 {
83
+ background-image: linear-gradient(var(--color-accent), var(--color-accent));
84
+ }
85
+
86
+ .thumbnails.svelte-eynlr2.svelte-eynlr2 {
87
+ align-items: center;
88
+ gap: 10px;
89
+ padding-left: 10px;
90
+ padding-right: 10px;
91
+ }
92
+
93
+ .icon.svelte-1oiin9d {
94
+ display: none;
95
+ }
presets/Anime.json ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "1990s": {"prompt": "{prompt} 1990s anime style, old japanese anime, DVD and VHS screen type, still shot from TV show, blue eyes, wearing jacket, anime character, 4k, 90s anime character, anime background", "negative_prompt": "{negative_prompt}"},
3
+ "3D": {"prompt": "{prompt} Anime characters, in the style of photorealistic eye, daz3d, daniel f. gerhartz, fernando amorsolo, 3d render, anime style, manga style, anime, blender 3d, C4D, 4k,octane render, detailed, vibrant color, unreal engine", "negative_prompt": "{negative_prompt}"},
4
+ "Abstract Cityscape": {"prompt": "{prompt} abstract cityscape in anime style, anime city, anime buildings, manga, anime art, ultra realistic cinematic light abstract, futuristic, cityscape, studio mappa environment, wit studio environment, amazing background, 4k", "negative_prompt": "{negative_prompt}"},
5
+ "Acrylic": {"prompt": "{prompt} Acrylic paint style, acrylic colors, anime style, manga style, characterized by vibrant colors, on a large canvas, acrylic paint style, portraits, character portraits, 4k, anime characters, painting, colourful palette, brush texture", "negative_prompt": "{negative_prompt}"},
6
+ "Album Cover Art": {"prompt": "{prompt} Album cover art, album cover art style, in the style of 'No Limit record label' cover art, 4k, rock album cover, pop album cover, music album", "negative_prompt": "{negative_prompt}"},
7
+ "Amazonian": {"prompt": "{prompt} amazonian cave anime style, landscape anime style, jungle, waterfall, moss-covered ancient ruins, Dramatic lighting and intense colors, mesmerizing details of the environment and breathtaking atmosphere, manga style, comic style, anime art, anime characters, manga art, 4k", "negative_prompt": "{negative_prompt}"},
8
+ "Anime Idols": {"prompt": "{prompt} anime character singing on stage, microphone, anime idols, cinematic, music, sharp focus, highly detailed, 4k", "negative_prompt": "{negative_prompt}"},
9
+ "Anime V2": {"prompt": "{prompt} anime atmospheric, atmospheric anime, anime character; full body art, digital anime art, beautiful anime art style, anime picture, anime arts, beautiful anime style, digital advanced anime art, anime painting, anime artwork, beautiful anime art, detailed digital anime art, anime epic artwork, 4k", "negative_prompt": "{negative_prompt}"},
10
+ "Attack on Titan": {"prompt": "{prompt} By Hajime Isayama, Attack on Titan, Attack on Titan anime, Attack on Titan manga, Attack on Titan anime style, Attack on Titan character style, 4k, Attack on Titan manga style, titans, Scout Regiment, eldian military, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
11
+ "Avatar": {"prompt": "{prompt} avatar movie, avatar movie character in anime style, anime style, anime art, manga, comic, avatar with blue skin, vfx movie, cinematic lighting, utopian jungle, pandora jungle, sci-fi nether world, lost world, pandora fantasy landscape,lush green landscape, high quality render, 4k", "negative_prompt": "{negative_prompt}"},
12
+ "Ayami Kojima": {"prompt": "{prompt} by ayami kojima, ayami kojima style, anime style, manga style, 4k, portraits, vibrant colours, stunning visuals, art style of castlevania, sharp focus, details, video game art, concept art", "negative_prompt": "{negative_prompt}"},
13
+ "Bleach": {"prompt": "{prompt} By Tite Kubo, bleach, bleach anime, bleach manga, bleach anime style, bleach character style, 4k, bleach manga style, katana, shinigami, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
14
+ "Candyland": {"prompt": "{prompt} candy land style, whimsical fantasy landscape art, japanese pop surrealism, colorfull digital fantasy art, made of candy and lollypops, whimsical and dreamy, anime style, anime art, manga, comic, anime character, manga character, 4k", "negative_prompt": "{negative_prompt}"},
15
+ "Children Picture Book": {"prompt": "{prompt} Illustration, children's picture book, by Asaf Hanuk, front view shot, cartoon style, white background, 4k, bright colors, simple, children book illustrative style", "negative_prompt": "{negative_prompt}"},
16
+ "Christmas": {"prompt": "{prompt}, a girl christmas outfit with a christmas tree in the background", "negative_prompt": "{negative_prompt}"},
17
+ "Cinematic": {"prompt": "{prompt} cinematic anime, breathtaking colors, cgscociety, computer rendering, by mike winkelmann, uhd, rendered in cinema4d, surface modeling, 8k, render octane, inspired by beksinski, anime style, manga style, anime, sharp focus, highly detailed", "negative_prompt": "{negative_prompt}"},
18
+ "Close-Up": {"prompt": "{prompt} Characters closeup, colorful artwork, finely detailed expression, dramatic lighting, high level of detail, and excellent quality, 4k, anime style, manga style, anime characters, portraits, side portraits, depth of field, sharp focus, close up, dutch camera angle", "negative_prompt": "{negative_prompt}"},
19
+ "Coloring Book": {"prompt": "{prompt} anime line art illustration, manga line art, lineart behance hd, illustration line art style, line art colouring page, coloring pages, digital line-art, line art, thick line art, coloring book page, clean coloring book page, black ink line art, coloring page, detailed line art, comic style, anime, anime characters, 4k", "negative_prompt": "{negative_prompt}"},
20
+ "Cyberpunk": {"prompt": "{prompt} Cyberpunk character, cyborg, sci-fi, anime character, cyberpunk edgerunners, in the style of cyberpunk edgerunners, anime, manga, comic, anime art style, highly detailed, illustration, high quality, hd, detailed depiction, 8K, complex, virtual engineering, futuristic, neon, vibrant, cityscape, portrait, attribute system", "negative_prompt": "{negative_prompt}"},
21
+ "Demon Slayer": {"prompt": "{prompt} By Koyoharu Gotouge, kimatsu no yaiba, kimatsu no yaiba style, 4k, breathing style technique, katana, kimono, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
22
+ "Dragon Ball": {"prompt": "{prompt} by Akira Toriyama, Dragon Ball style, Akira Toriyama Style, anime style, manga style, 4k, Shonen, style of dragon ball z, full body portraits, vibrant colours, Poster style, flames, poster art, dramatic, highly detailed, sharp focus, visually appealing background, epic, lightning, vibrant background, dynamic", "negative_prompt": "{negative_prompt}"},
23
+ "Dreamy": {"prompt": "{prompt} Blue pink system, Dreamy and grotesque, snowy mountains with a reflected planet on the water, light - filled scenes, in the style of technicolor dreamscape, alien worlds, panorama, metallic etherialism, snow scenes, scifi art, in the style of futuristic psychedelia, frozen movement, frostpunk, by joel robison, panoramic scale, light aquamarine and orangein the style of water and land fusion, mirrored realms, by nicolas delort, elaborate spacecrafts, by julio larraz, light silver and tea, 4k", "negative_prompt": "{negative_prompt}"},
24
+ "Dystopian": {"prompt": "{prompt} scifi world, cybernetic civilizations, peter gric and dan mumford, brutalist dark futuristic, dystopian brutalist atmosphere, dark dystopian world, cinematic 8k, end of the world, doomsday, anime art, anime style, anime, manga, manga art, anime character, manga character, 4k, comic style", "negative_prompt": "{negative_prompt}"},
25
+ "Edo Art": {"prompt": "{prompt} by Tawaraya Sōtatsu, Tang Dynasty and Edo period styles, anime style, manga style, edo period, edo art style, characters, edo artwrok, by Hasegawa Tōhaku, edo paintings, ink paintings, 4k", "negative_prompt": "{negative_prompt}"},
26
+ "Elven": {"prompt": "{prompt} elve, anime style, magical, mystical, anime elve lifestyle, 4k, fantasy land, detailed, anime character, manga style, comic style, cinematic", "negative_prompt": "{negative_prompt}"},
27
+ "Euphoric": {"prompt": "{prompt} digital illustration, style of charlie bowater, dreamy colorful cyberpunk colors, euphoric fantasy, epic dreamlike fantasy landscape, beautiful oil matte painting, 8k fantasy art, fantasy art landscape, jessica rossier color scheme, dreamlike diffusion, anime, anime style, anime character, manga, comic style, 4k", "negative_prompt": "{negative_prompt}"},
28
+ "Expressive": {"prompt": "{prompt} dramatic lightning, cinematic light, in the style of Ilya Kuvshinov, Brom, WLOP, realistic brushwork, oil painting, very detailed, painterly, realistic, expressive style, anime character, anime style, manga, comic, anime art, 4k", "negative_prompt": "{negative_prompt}"},
29
+ "Fantasy": {"prompt": "{prompt} fantasy matte painting style, fantasy landscape background, fantasy land, whimsical, dreamy, daydreaming, highly detailed, anime style, fantasy anime, 4k, alice in wonderland style", "negative_prompt": "{negative_prompt}"},
30
+ "Fashion": {"prompt": "{prompt} Apparel brands, anime characters, fashion, fashion industry, street fashion, 4k, anime characters wearing branded clothes, anime style, manga style, depth of field, photography, anime", "negative_prompt": "{negative_prompt}"},
31
+ "Festive": {"prompt": "{prompt} At night, Qingming upper river map atmosphere, Song Dynasty, street scene, prosperity scene, Kong Ming lantern, Galaxy sky, Monet, oil painting, anime scene, manga scene, anime, festival, lanterns", "negative_prompt": "{negative_prompt}"},
32
+ "Firebender": {"prompt": "{prompt} fire elements anime style, fantasy, fire, lava, striking, majestic composition with fire elements, fire and ashes surrounding, highly detailed and realistic, cinematic lighting, manga, anime, 4k", "negative_prompt": "{negative_prompt}"},
33
+ "Fish Eye Lens": {"prompt": "{prompt} fish eye lens, fantasy flying island, fish eye camera angle, aerial shot, wide angle, looking at viewer, dynamic, highly detailed, cinematic, illustration, magical, fantasy, vibrant, 4k", "negative_prompt": "{negative_prompt}"},
34
+ "Flat Art": {"prompt": "{prompt} flat art, flat illustration, flat vector art, flat art style, anime style, solid colour backgroun, 4k", "negative_prompt": "{negative_prompt}"},
35
+ "Forestpunk": {"prompt": "{prompt} forestpunk, vibrant, HDRI, organic motifs and pollen in the air, bold vibrant colors and textures, spectacular sparkling rays, photorealistic quality with Hasselblad, anime, manga, comic style, anime characters, 4k ultra", "negative_prompt": "{negative_prompt}"},
36
+ "Futuristic": {"prompt": "{prompt} sci-fi, androids, futuristic anime style, elegant atmosphere, glowing lights, highly detailed, futuristic city, cyborgs, technology, digital anime painting, artstation, anime concept art, smooth sharp focus, anime illustration, mars ravelo, gereg rutkowski, anime style, manga style, comic style, cityscape, 4k", "negative_prompt": "{negative_prompt}"},
37
+ "GTA": {"prompt": "{prompt} gta iv art style, gta art, gta loading screen art, gta chinatowon art style, gta 5 loading screen poster, grand theft auto 5, grand theft auto video game, anime, anime art, comic, manga, anime character, manga character, 4k", "negative_prompt": "{negative_prompt}"},
38
+ "Genshin": {"prompt": "{prompt} Genshin Impact, genshin impact style, genshin impact style characters, genshin impact environment, sharp focus, cinematic, power system, elemental burst, magical, highly detailed, vibrant, 4k", "negative_prompt": "{negative_prompt}"},
39
+ "Gothic": {"prompt": "{prompt} goth lifestyle, dark goth, grunge, cinematic photography, dramatic dark scenery, dark ambient beautiful, goth anime character, anime art, manga, anime style, comic, 4k, anime character", "negative_prompt": "{negative_prompt}"},
40
+ "Gundam": {"prompt": "{prompt} Gundam, full body, gundam in background, weapons, Archangel, out of warehouse, super high detail, Portrait lens, Cinematic lighting, Anti Aliasing, Insanely detailed and intricate, Super detailed, Volumetric lighting, 8K", "negative_prompt": "{negative_prompt}"},
41
+ "Halloween": {"prompt": "{prompt} vibrant colors, halloween night, spooky aesthetic, creepy vibes, by Anne Stokes, digital painting style, illustration, bewitching, halloween, in a halloween style, dark theme, fearful atmosphere, supernatural, vibrant colors", "negative_prompt": "{negative_prompt}"},
42
+ "Haunted": {"prompt": "{prompt} horror cgi 4k, scary color art in 4k, horror movie cinematography, insidious, la llorona, still from animated horror movie, film still from horror movie, haunted, eerie, unsettling, creepy", "negative_prompt": "{negative_prompt}"},
43
+ "Hip-Hop": {"prompt": "{prompt} hip hop style, r&b, anime style, manga style, anime characters, rap album cover, hip hop album cover, 4k, solid backgorund, detailed", "negative_prompt": "{negative_prompt}"},
44
+ "Ichiro Tsurata": {"prompt": "{prompt} Indigo background, minimalist painter style, abstract Memphis, flat illustration, vector illustration, style of Japanese master Ichiro Tsuruta, 4k", "negative_prompt": "{negative_prompt}"},
45
+ "Illustration": {"prompt": "{prompt} minimalistic vector art, illustrative style, style of ian hubert, style of gilles beloeil, inspired by Hsiao-Ron Cheng, style of jonathan solter, style of alexandre chaudret, by Echo Chernik", "negative_prompt": "{negative_prompt}"},
46
+ "Impasto Style": {"prompt": "{prompt} impasto style, clear depiction, scenery seen from a great distance, beautiful sky, extremely delicate depiction, water surface in the foreground, intense and dazzling light reflections on the water surface, Chinese buildings in the extreme distance, fantasy Chinese landscape painting, 4k", "negative_prompt": "{negative_prompt}"},
47
+ "Ink Painting": {"prompt": "{prompt} Detailed anime character portrayal, in the style of he jiaying, Chinese ink painting, Meticulous brush, fine face, ancient style, Desert in the background, Inside the wooden house, The character portrayal is meticulous, the face is exquisite, strong contrast, lifelike, extremely meticulous, ancient Chinese Wuxia, panorama, cinematic, first person view, 4k, manga", "negative_prompt": "{negative_prompt}"},
48
+ "J-POP": {"prompt": "{prompt} anime style, J-POP star, Harajuku POP Fashion, fashion, honeycore, kodak plus, 4k, J-POP, japanese pop style, music, allure, vogue, vanity fair, detailed", "negative_prompt": "{negative_prompt}"},
49
+ "Japanese Art": {"prompt": "{prompt} Ukiyoe, illustration, muted colors, anime art, anime characters, manga style, comic style, 4k", "negative_prompt": "{negative_prompt}"},
50
+ "Jojo": {"prompt": "{prompt} jojo's bizarre adventure, anime characters, by hirohiko araki, manga style, anime style, 4k, araki art style, visually appealing colors, colorful, dynamic", "negative_prompt": "{negative_prompt}"},
51
+ "Josei": {"prompt": "{prompt} josei, josei anime style, josei anime, josei anime characters, cinematic, sharp focus, vibrant, highly detailed, 4k", "negative_prompt": "{negative_prompt}"},
52
+ "Jujutsu Kaisen": {"prompt": "{prompt} By Gege Akutami, Jujutsu Kaisen, Jujutsu Kaisen anime, Jujutsu Kaisen manga, Jujutsu Kaisen anime style, Jujutsu Kaisen character style, 4k, Jujutsu Kaisen manga style, Domain expansion, cursed energy, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
53
+ "Junji Ito": {"prompt": "{prompt} Grey hair Violence rivet characters, Junji Ito, wasteland punk ism, anime style, chaotic background, long shot, anime, manga, comic, 4k", "negative_prompt": "{negative_prompt}"},
54
+ "K-POP": {"prompt": "{prompt} Kpop star, colorful streetwear clothes, incredibly detailed, sharpen, insane details, professional lighting, Vogue, Elle, Harper's Bazaar, Cosmopolitan, Vanity Fair, Marie Claire, Allure, anime style, manga style, 4k, bts, kpop", "negative_prompt": "{negative_prompt}"},
55
+ "Kawaii Chibi": {"prompt": "{prompt} kawaii chibi, anime style, manga style, fantasy, illustration, Colorful idyllic cheerful, Kawaii Chibi inspired, cute characters, anime characters, 4k", "negative_prompt": "{negative_prompt}"},
56
+ "Kemono": {"prompt": "{prompt} Anime neko Kitsune, kemono, cat with human face, anime style, manga style, fox ears that sit on top of his head that are white with red tips, red kabuki makeup like markings around the eyes, wearing a shrine garment, short sleeves and leather gauntlets on his lower arms, wearing a red scarf that wraps around his neck and chin, One arm is holding up a fireball is ready to cast, anime, 4k", "negative_prompt": "{negative_prompt}"},
57
+ "Kodomo": {"prompt": "{prompt} Kodomo, Kodomo anime style, anime style, manga style, in the style digimon, in the style of pokemon, 4k, anime characters, in the style of doreomon", "negative_prompt": "{negative_prompt}"},
58
+ "Landscape": {"prompt": "{prompt} Anime landscape 4k, beautiful landscapes, nature wallpaper, 8k photography, anime style, manga style, beautiful landscapes, colourful anime landscapes, vibrant", "negative_prompt": "{negative_prompt}"},
59
+ "Light Novel": {"prompt": "{prompt} light novel, light novel art style, anime style, manga style, anime characters, pixiv style, in the art style of Mushoku Tensei, dynamic, 4k, portraits, highly detailed, pastel colours, buildings in background, soft light, vivid light, fantasy, magic, dynamic, illustration", "negative_prompt": "{negative_prompt}"},
60
+ "Line Art": {"prompt": "{prompt} Detailed line art. fine details, manga style, vibrant colors, clear vector graphic illustration, 4k, anime style, anime characters, portraits, pen lines", "negative_prompt": "{negative_prompt}"},
61
+ "Lively": {"prompt": "{prompt} smiling characters, anime characters, ghibli style, cartoon style characters, anime characters, cute, beautiful sky, beautiful clouds, Japanese anime art style, detailed clean baclground, bright tones, fresh tones, visual impact, extreme light, clear bright light on the screen, depth of field, super fine details, image rendering, happy, landscapes in background, cinematic, 4k, sharp focus, vibrant, sunlight, lively, visually appealing", "negative_prompt": "{negative_prompt}"},
62
+ "Lofi": {"prompt": "{prompt} lofi, lofi style anime, anime, character, music, vibes, 4k, anime character, lofi music, peaceful, cinematic, illustration, chill lofi beats, vibrant colours, details", "negative_prompt": "{negative_prompt}"},
63
+ "Magazine Cover": {"prompt": "{prompt} anime characters, anime style, manga style, fair use magazine, vogue magazine cover, magazine cover art, magazine style, 4k, fashion magazine cover, magazine cover in style of David Carson, branded clothes, apparel brands, vanity fair, highly detailed, vibrant colours, apparel brands", "negative_prompt": "{negative_prompt}"},
64
+ "Makoto Shinkai": {"prompt": "{prompt} anime movie, by makoto shinkai, anime style, visually appealing background, stunning visuals, cinematic, amazing landscapes, amazing cityscape, vibrant colours, 4k", "negative_prompt": "{negative_prompt}"},
65
+ "Manga": {"prompt": "{prompt} a manga panel, manga background, ink pen outlines, minimal shading, black ink only, anime style, manga style, manga characters, anime characters, amazing background, 4k, anime, comic style, manga art, sharp focus, white background, black and white, manga captions", "negative_prompt": "{negative_prompt}"},
66
+ "Masaaki Yuasa": {"prompt": "{prompt} by masaaki yuasa, masaaki yuasa art style, in the art style of devilman crybaby, movement, distinctive color, maximalist visual design, eclectic influences, a penchant for multiplicity and hybridity, a taste for the strange and miraculous, 4k, anime characters", "negative_prompt": "{negative_prompt}"},
67
+ "Mecha": {"prompt": "{prompt} in the style evangelion, wearing robot outfits, mecha anime, anime characters, highly detailed, 4k, poolcore, anime style, manga style, studio trigger style, studio gainax style, futuristic city in background", "negative_prompt": "{negative_prompt}"},
68
+ "Medieval": {"prompt": "{prompt} still scene from game of thrones, anime style, comic style, manga style, anime character, manga character, powerful fantasy epic, middle ages, lush green landscape, olden times, roman empire, 1400 ce, highly detailed background, cinematic lighting, 8k render, high quality, bright colours, anime, anime art, 4k", "negative_prompt": "{negative_prompt}"},
69
+ "Minimalist": {"prompt": "{prompt} full body, in the style of atey ghailan, manga style, quiet moments captured in paint, vibrant portraits, crisp and clean look, closeup, portrait facing the camera, flat illustration, minimalism, geometric shapes, 4k, vibrant colours", "negative_prompt": "{negative_prompt}"},
70
+ "Moe": {"prompt": "{prompt} kawaii chibi, moe, chiibi style, moe anime style, moe anime, moe, anime style, manga style, anime characters, 4k, cute", "negative_prompt": "{negative_prompt}"},
71
+ "Monochromatic": {"prompt": "{prompt} anime style, monochromatic, mono stone, monochromatic light, anime characters, single tone, sharp focus, 4k, highly detailed, shadows", "negative_prompt": "{negative_prompt}"},
72
+ "My Hero Academia": {"prompt": "{prompt} By Kohei Horikoshi, My Hero Academia, My Hero Academia anime, My Hero Academia manga, My Hero Academia anime style, My Hero Academia character style, 4k, My Hero Academia manga style, Quirks, super heroes, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
73
+ "Mystical": {"prompt": "{prompt} fireflies, deep focus, d&d, fantasy, intricate, elegant, highly detailed, digital painting, artstation, concept art, matte, sharp focus, illustration, hearthstrom, gereg rutkowski, alphonse mucha, andreas rocha, anime style, manga style, anime scene, 4k", "negative_prompt": "{negative_prompt}"},
74
+ "Naruto": {"prompt": "{prompt} By Masashi Kishimoto, naruto, naruto anime, naruto manga, naruto anime style, naruto character style, 4k, naruto manga style, shinobi, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
75
+ "Neon": {"prompt": "{prompt} neon art style, night time dark with neon colors, blue neon lighting, violet and aqua neon lights, blacklight neon colors, rococo cyber neon lighting", "negative_prompt": "{negative_prompt}"},
76
+ "Oil Painting": {"prompt": "{prompt} Oil painting style, impasto style, anime characters, soft light, 8K, HD, super high detail, high painting quality, oil paint art style, dry brushing technique, brush strokes, anime style, In the style of a portrait with oil paints, paint texture", "negative_prompt": "{negative_prompt}"},
77
+ "One Piece": {"prompt": "{prompt} By eiichiro oda, one piece, one piece anime, one piece manga, one piece anime style, one piece character style, 4k, one piece manga style, adventure, pirates, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
78
+ "Photography": {"prompt": "{prompt} Photography styles, ray tracing, depth of field, field of view, 4k, characters, anime, anime style, manga style, cinematic, portraits, different face pose, illustration, visually appealing background, vibrant, dynamic, camera lens, nature, cityscape, sharp focus, full body portraits, hyperealistic photography", "negative_prompt": "{negative_prompt}"},
79
+ "Pop Art": {"prompt": "{prompt} pop art painting, anime pop art painting, anime pop art, detailed patterns pop art, silkscreen pop art, pop art poster, roy lichtenstein style, anime, manga, anime style, manga style, anime character, manga character, 4k", "negative_prompt": "{negative_prompt}"},
80
+ "Poster Art": {"prompt": "{prompt} anime characters album art, Poster, layout, typography, logo, risography, Ghibli, simon stalenhag, insane detail, artstation, 8k, anime style, comic style, anime art, manga art", "negative_prompt": "{negative_prompt}"},
81
+ "Retro": {"prompt": "{prompt} retro futuristic anime illustration, featured on illustrationx, art deco illustration, beautiful retro art, stylized digital illustration, highly detailed vector art, mads berg, automotive design art, epic smooth illustration, by mads berg, stylized illustration, ash thorp khyzyl saleem, clean vector art, anime style, manga style, comic style, 4k", "negative_prompt": "{negative_prompt}"},
82
+ "Retrowave": {"prompt": "{prompt} retrowave, anime Illustration, retrowave anime art, anime noen light, retro anime, digital art, manga style, anime style, 4k", "negative_prompt": "{negative_prompt}"},
83
+ "Samurai": {"prompt": "{prompt} samurai lifesyle, vagabond manga style, anime, manga, anime art, miyamoto musashi inspired, Japanese art, ancient japanese samurai, feudal japan art, feudal japan art, 4k, katana, bushido, sword", "negative_prompt": "{negative_prompt}"},
84
+ "Satoshi Kon": {"prompt": "{prompt} Satoshi Kon style, manga illustration, surrealism characters, manga, anime, 2d, anime art, manga art, comic style, anime movie, anime characters, 4k", "negative_prompt": "{negative_prompt}"},
85
+ "Scenic": {"prompt": "{prompt} illustration of anime characters, amazing scenery, moon, cheery blossom trees, nightmarish illustrations, nightscape, intricate soft colors illustrations, orientalist imagery, luminous landscape painting, anime style, manga style, comic, detailed, different weathers, scifi, high resolution, 4k", "negative_prompt": "{negative_prompt}"},
86
+ "Scribble": {"prompt": "{prompt} Scribble art style, simple design, clear color, cel-shading, line art, muted color, 4k, anime style, anime characters, manga character, uneven line art, vibrant colors, portraits, scribble, cute, highly detailed", "negative_prompt": "{negative_prompt}"},
87
+ "Seinen": {"prompt": "{prompt} seinen, seinen manga style, manga characters, seinen anime, by kentaro miura, by takehiko inoue, by makoto yukimura, manga style, detailed, in the art style berserk, in the art style vagabond, colours, cienmatic, 4k", "negative_prompt": "{negative_prompt}"},
88
+ "Shinobi": {"prompt": "{prompt} anime style, shinobi, ninja, shuriken, ninja mask, manga style, ninja era, shinobi era, anime ninja characters, 4k, ninja characters, highly detailed", "negative_prompt": "{negative_prompt}"},
89
+ "Shonen": {"prompt": "{prompt} Anime characters, anime style, 8k, dark reflections, dynamic anime, lens flares, The high definition detail in the image will highlight sharp and defined facial features, 32k uhd, dappled, epic, action, shonen, dynamic, high contrast background, detailed facial features, flames, shonen manga, fighting manga, wallpaper style, angry, full body portrait", "negative_prompt": "{negative_prompt}"},
90
+ "Sketch": {"prompt": "{prompt} sketch, pencil drawing, hand drawn anime, anime sketch, sketch on paper, anime style, manga style, anime characters, 4k", "negative_prompt": "{negative_prompt}"},
91
+ "Sports": {"prompt": "{prompt} sports, sports anime, by takehiko inoue, by Haruichi Furudate, slam dunk style, aesthetic anime, 4k, detailed, Sports background, illustration, sharp focus, athletes, vibrant, hyper realeastic photograhpy", "negative_prompt": "{negative_prompt}"},
92
+ "Steampunk": {"prompt": "{prompt} steampunk, steampunk city, anime steampunk, stylized digital anime illustration, sharp focus, elegant, intricate, digital painting, global illumination, ray tracing, advanced technology, anime style, 4k", "negative_prompt": "{negative_prompt}"},
93
+ "Sticker": {"prompt": "{prompt} sticker, sticker art, symmetrical sticker design, sticker art, sticker illustration, anime sticker, manga sticker, anime style, manga style, comic, 4k, anime characters, manga characters", "negative_prompt": "{negative_prompt}"},
94
+ "Studio Ghibli": {"prompt": "{prompt} by Hayao Mayazaki, Studio Ghibli, Studio Ghibli Style, Ghibli Style art, Ghibli Style characters, cartoon style, beautifully rendered and expressive rich colors, vibrant pastel colors, imaginative and fantastical landscapes, sharp attention to detail, realism and a strong sense of nostalgia and warmth, sharp attention to small details and textures, fantastical creatures, settings, depth and emotions emphasized and accentuated by lighting and shading, extremely high quality, incredibly high finite definition, high resolution, hand-drawn and cel animation techniques, anime, 4k", "negative_prompt": "{negative_prompt}"},
95
+ "Super Heroes": {"prompt": "{prompt} Super Heroes, DC style, Marvel Style, DC Character, Marvel Character, anime style, comic style, manga style, cinematic, 4k, Heroes", "negative_prompt": "{negative_prompt}"},
96
+ "Surrealism": {"prompt": "{prompt} salvador dali painting, highly detailed surrealist art, surrealist conceptual art, masterpiece surrealism, surreal architecture, surrealistic digital artwork, whimsical surrealism, bizarre art, anime art, anime, manga, manga art, comic style, manga style, 4k, anime character, manga character", "negative_prompt": "{negative_prompt}"},
97
+ "Tarot Card": {"prompt": "{prompt} A Ornate Tarot Card, anime characters, with a text at the bottom of the card, close on face, tarot card, Front and two sides, It's full of mystical magic, 8k, anime style, manga style, anime", "negative_prompt": "{negative_prompt}"},
98
+ "Tokyo Ghoul": {"prompt": "{prompt} By Ishida sui, Tokyo Ghoul, Tokyo Ghoul anime, Tokyo Ghoul manga, Tokyo Ghoul anime style, Tokyo Ghoul character style, 4k, Tokyo Ghoul manga style, Ghouls, sharp focus, detailed", "negative_prompt": "{negative_prompt}"},
99
+ "Ukiyoe": {"prompt": "{prompt} Ukiyoe, illustration, Akihiro Yamada style, new Haicheng style, 4k, chaotic form, animation light, samurai champloo style, anime style, manga style, ukiyo-e artstyle, Rokugan aestehtics, ukiyoe art style, woodblock print, kanji", "negative_prompt": "{negative_prompt}"},
100
+ "Vikings": {"prompt": "{prompt} by Makoto Yukimura,, Scandinavians, jomsviking, Vikings era, Viking soldier, Viking era in anime style, style of vinland saga, anime characters, manga characters, Viking huts in background, paint splatter, flowing colors, Background of lush forest and earthy tones, viking environment, 4k", "negative_prompt": "{negative_prompt}"},
101
+ "Water Colour": {"prompt": "{prompt} water colour paint style, anime style, manga style, 4k, paintings, pastel colours, vibrant, illustration, ink paintings", "negative_prompt": "{negative_prompt}"},
102
+ "Waterbender": {"prompt": "{prompt} water elements in anime style, fantasy anime, water, exotic, highly detailed and realistic, dynamic lighting, anime characters, anime style, manga style, manga, comic style, 4k, water benders, anime water power character", "negative_prompt": "{negative_prompt}"},
103
+ "Yoshitaka Amano": {"prompt": "{prompt} Yoshitaka Amano style, beautiful light and shadow, Virgo, anime characters, close up, Japanese anime, rich details, 16k resolution, 1990s cyberpunk, centered composition", "negative_prompt": ""}
104
+ }
presets/Arc.json ADDED
The diff for this file is too large to render. See raw diff
 
presets/Controlnet.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "OpenPose": "openpose",
3
+ "Scribble": "scribble",
4
+ "Line Art": "lineart",
5
+ "Depth": "depth",
6
+ "Canny": "canny"
7
+ }
presets/Error.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "error": {
3
+ "data": "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+43DWiUpycz+7//rD+v/yx6ch1dZXgvjXms9z/vunQQCmUlkUMABtDgrCqh1LJMzItTTVgWhKCAEEIGEDIR5dGAW6oSioBZppQhoPWptFUqxKmEeQkMGDYQMe7/vs9b6wT7t5ef59To951xfz/GP776t3bJly6ZNm4ho+PDhHTt2RFJmxgRmJoL/BIJvCfxjBP+YwN9H8N8n8PcR/PcJ/FcQWVDau6987dq133zzzfjx4886K7e5udnzPPi/AZXgNDSxWKyoqAgA+vXrd821VxNBgsC3CM4g+PcE/iMEf5/A30fwVwL/B1UlIhFhZmM8VX377bc/++wzRCwqKopGo/F4HACISEQQEf5K4D+L4O9RVUS01sZiMd/3q6qqVixbXl9f369fvx49epA1egYjIvynEHyXMSYej1trFy1aVFFRcf755z/88MOICP+AwHcFgZs6daoLJT2j9aRJk0QcACAi/Bd9882J5ctW1p860aVLlwceeIDOABFRVfh//vmwvLwc/pmY2fM8VRURACAiRMPMqkpEoHRa8dTipqYmABg3Pj8jMxNJRQQR2am1duvWre+++66qDhs27JxzzhERY/G0MAx932cO4R8j+JbAP0bwjwn8fQT/fQJ/H8F/n8B/AQkDEZXv+eq5554jolGjRuXltUFEVYX/G1AJEUUxHo8XFxcz8+23396z17WqCiAAAt8iOIPg3xP4jxD8fQJ/H8F3CPwfEFEVT1PV5557bu/evZ7nTZs2jZkR0VrLCZ7niQicIfCfRfD3IKKIqKrneWEYHjlyZMWy5SLSu3fvH/7whyE7RCSC05iZiOAfIPguEbHWMjMAnDhxIi0tTROICP4jAt/V3BwvLi425CUlJRUUToYz5DREhP8Cqq35Zs6cOYBy6aWX3nfffUSkyogI/8//CCwvL4f/HQSnKQHAtJJpjY2NAJA/bmxmVpYCE5GqghIAbNu2bfPmzao6YsSIdu3a1dTU1H5djYipqam5ubnWEjNba0UEEZ1znhcREVWtra2trq4OwzAtLS07OzsajQIAETCztVZVwzCMRqPOOVVFRADABOcEEVX16NGjJ+rqo9Fo67TUrKwsa21TUxMze57n+z4kqCqAYELtGd80Nze3aNGiTZs2LVu2FBFEBABVRURmDoJARJKTk4motra2qqqKmVu0aNGpUyfnHBEZY5gZAETEWisiiFhVVVVXVxcEQUpKSmZmZqtWrVRVRIwxmsDMsVjMGJOUlKSqsVispqYmJycnGo2qKiSEYXjw4MFYLBaJRHJyclq1aqWq8XhcRDzPM8b4vt/cFGfm8vLyV155BVBGjBiRmZlJRJFIhM4AEQEgVY3H48eOHWtqagKA3NzczMxMSFBVTAjDMBqNOueYORaLHT161DmXkpTcpk2blJSWsVisuKgEEW/rfVvPXtciIoAACHyLAADRMLMxRlWdc0eOHInFYqqamWAMqioiAoCIeJ7nnBhjGhoajh8/3tjYiIht2rTJyMgwBp1zAOB5nnMOAJxzQRAAUGrL1vF4vLKy8uTJk0ialZWVnZ0NCapqyGtoaCCil19+effu3X7EFhYWOueMMZFIxBjjnCMiAFDV+vr6qqqqxsbG5OTktm3bJiUlWUvMDAnGeGEYxuNxAPA8z/f9r7/+urq6Oh4LW7Zs2aFDB2PxNOcCYzznXBAEhw8ffvnFNc652267rXv37ori+77nGRFBRFUlojAMI5FIkKCqRNb3fUS01jIzJCBiQ0ODMQYRk5KSnHPxeFxEEDE5ORkRmdlaq6oiQkR1dXXHjx8PwzAajbZp06ZVq1bOOWuJmUXA9/3GhuaioiJEbNGixZSCSaoq4owxACQiqnr8+PHa2lpjTOvWrdu2bauqzrl4PI6IycnJmhCLxaqrapctW8bMF1988T333qWqRBSJRFTVWqvKzjlEU1FRceLECSJKTU3Nzc31PE9EVNXzvDAMEZGImLmmpqa2tlZEMjIy2rRpY4wBEGY2xgCAc84Yg4giYoxxziEaInLOeZ534sSJ48ePNzc3JycnZ2RkpKenE5GIwN+oajweBwBEtNYaY4iImRFRRJqbmwEgKSmJElS1ubk5CALf95OSkpj5+PHj0Wg0Pb01fJ9geXk5/O8gOE0JAKaVTGtsbASA/HFjM7MzVJWIVBWUAGDbtm2bN29W1QcffHDnzp1//OMfPd/E43Hf99u0aTNo0MCMjAwiEhFKCEM+fPjwL3/5y4qKikgk4pxj5uTk5L59+1522WWeZ1TVGMPMROScM8Zggog456y1APTll1+++eabDQ0NoOScIwMdO3YcNGjQypUrKysrs7KyJk6cyMyIaIwJw/jXX3+9cePG8vJyAPI8r6mpKRKJdO/e/dZbb01KSlJVYwwzV1VVzZ07NxqNDh48eO/evb///e+dc8YYVU1JSRkyZEhOTg4zG2OICABE5Pjx42+++eaxY8eYGQBExPf966+/vmfPnikpKZpARNu3b3/11VcRcdSoUQcOHHjnnXeYedSoUbm5uUQUBMH27ds3bNhARGEYqioidu/e/YYbbpg1axYinn322cOHD2fm53/x4ldffUVEiCjqjDHMjIj9+vW77rrrnAtEhMhu3rz5gw8+UFX4m7y8vEGDBuXk5IRhaIwREWttPB5n5nffffeDDz4wxjAzKkQikZtvvrV79+7FRSVBENx1z129ruvBzAACIPAtgjMIEYMg2L59+4YNG4goDEMAUNWcnJy7776zXbt2vu9DQhAEzPrBBx+8//77IgIAIoKI7du379evT4cOHQBARBARAJYtW3bo0BHfi44YMeK11147duwYAKiq55uuXbvecccdKSkpCMY5V1hYyMzOuWg0KuqYGQAQsbi4OBKJIKKq1tbWvv3223v27AmCIBKJIGIYhtdee+0tt9wSjfqRSISZg8BVVlYuXrwYAHr37h2Px7dt24aIwmCMSUtLG3DfPR06dLCWnJPXX399+/bt1loOBRFFBBEV5YYbbujd+zZVRUQiUlVjTBAERDRz5sy6ujoAys/Pz8zMREQiQkQROXTo0LJly5xzF1988Y9//GMAeOKJJ4wxLVq0mDJlinPO87wwDFW1qanpjTfeKC8vV1VEVFVjzOWXX37bbbe1bJninPP9aBAEYcAFBQXGmJYtWz456QljjCqrqnNy9OjRtWvXfvPNN9ZaInLO5ebm3n///Rs2bDh06BAAlJSUENFvf/vbTZs2eTbS3NwcjUbDMBR1zHz55Zc/8MADqoqI8XjzF198sXHjr0+dOuV5XhAERJSRkdGnT58f/OAHxphYLOZ5HhFVV1e/8sorFRUVImKMEZEOHTrcddddOTlZ1lrnHCIaY0QEEQHAOef7viqKSGNj48aNG3ft2iUJxhhVveCCC26//fZWrVpZa0WEiP7yl78sWLBAVbt37z5gwIAwDCnBObdr165XX33VWjt8+PB27doxc319/ezZs5k5Nzd30KBBq1evrq+vv/HGG2+++Ub4PsHy8nL430SgNK1kWmNjIwDkjxubmZ2hykRWVSFh29b3N2/ejIjp6ek1NTWq6vnGOafsIpFISsvUsWPHRqNRESEi59ynn3761ltvISIAqKrv+y6UMAwRsdvFFw0efD8RAQAze56nCQCAiCJirR8EwdatW99///2mpqaUlBRmBgAiQkRjjOd5sVisVatWEyZMUFVEJKKjR48uW7bMJRARABhjACAIgoyMjJEjR6ampgZBYIyprKxcsGCB53np6enHjx+nBBEBAFU1xowfPz4rK0tVnXPW2r179y5fvpzQIiIze57nOEBE51xWVlZ+fj4iGmOY+Y9//OO6detUtU+fPr/61a8wYdSoUW3atHHOvfnmm59++qm11jlnjEFEVWXmrKysuro6EenYseOwYcOI6KUX1/zpT38CAGOMAjvnPM8Lw/C+++676qqrVDUIglmzZjU0NACAMQYAiCgIAmOMiDz22GPt27cXEUQUkTAM586d29jYKCKqCgCWjHOOyHbr1m3Xnz631t72o1t79rwWCAEEQOBbBGdQPB5/6aWX9u7dCwmICACaYIzp3bt3jx49EFFVnXOLFy+uqqoCAFV1znmeBwCqaowZNGhQ165dEdEYIyK/+MUvvvrqK89GkpKSGhsbnXO+74dhKCLGmM6dOz/00EOIKCKlpaVhAhEBymnWWmPMxIkTk5OTPc87ePDgihUrYrGYtRYRCS0zh2FIBrKyskaPHm2MsdYCwJEjR5566ilEbNWqVX19vaqKSMRPisVivu8r8JgxY7KyMozxXnvttc8++4yZPeOLCBEBgKL06tWrb9/ezIyoAIBoRAQAEHHHjp2vv/46ANx0000/+tGPnHOICABEtHTp0oMHDgPAzx78SZcuXYIgmDx5srXW87zi4mIRAQAiqqysnDdvHiIaY0SEiEDJOUcGIpFIfv6YtLQ0ZgWAeCwsKipS1dTU1ILCycwMIMaYTz75w7rX3/A8j5lVFRHDMExKSiKinJycw4cPW2unTp2alJT03nvvbdq0KQxD3/eZGQCQ1Pf9Ll26DBw4EBI2btz40UcfGWNUFQCIiJk1oV+/ftdddx0kNDU1zZs3r7m52TkXjUZVNRaLGWM8z3vssRF5eXmq6pwzxogIAKiqMZ6IAEB9ff3cuXNdgrVWVYkoDENEtNaOGjUqMzPT933nXFNT07Rp0xDx0ksvHThwIDMTkTEmCIJdu3atXbsWAPLz8zMyMowx8Xi8sLCQiFJSUuLxeBAEInLrrbfefPON8H2C5eXl8L+JAGBaSVljQxMA5I8bm5mdocpEVlUhYdvW9zdv3szMnudlZGT89Kc/zc7J3Ldv32uvvlJXV6dIvXr1uu2226LRqIhUVlYuWrSIiESkd+/e119/PRFVHP3LCy+8UF9fL+puuummW265iYgAQEQAQFURERJU8eDBg0uWLEHE5OTkLl269OnTp3Xr1rt3737xxRebm5uttaraunXriRMnAgAiBkFQWFjIzER0xRVX3HHHHb7vnzx5cvXq1ceOHfM8r1u3bvfcc4/necz89ddfz5kzBxNat2794x//uF27dhUVFWvWrPnmm28A4MILL/zJT37inPM8r6Ki4plnnlFVQnv11Vf36dPH87xv6mqfe+65urq6MAyvuOKKe+65x1oLANu3b1+7di0iqqqIpKam+r7/4IMPZmZmfvLJJ2+99RYi+r5/dUJycvInn3zy0Ucf1dXVJScnh2HYsWPHYcOGIeL7731QWVnZ0NCwb98+JO3atWskEiGiiy++uHPnzog4Z86c+vr6IAjatm07YMCAvLy8WCy2bdu2999/31qrqlOmTElOTkZEEVm8ePHhw4eJyBjTp0+fyy+/vPFUw5YtW/785y+dc4QmDMN7B9xz5ZWXoyEAARD4FsEZ9NZbb33yyScA4Hne5ZdffvHFF4dh+K//+q+7d++21gLAhAkTsrKynHMrVqw4cOCAiCQlJd1yyy1du3atra3dtGnT8ePHY7FYNBodP358q1atEBEAVq5cuW/fPhU8rUuXLvfdd5/v+5999tnGjRtFJAzDoUOHdunSJRaLvfnmm865gwcPnjx50np04YUXGmNU9a677kpJSamvr58/f/6pU6eI6MILL7z33nuToikNDQ0vv/zy/v37AeWcc84ZPny4iKhqZWXlU089Za0VkZYtWw4ePPjcc889euTYCy+8UFtb60fseed1/slPfmKM9+GHH1ZUVDQ1Ne3+spyIcnJycnNznYQXndHVWiviEFEEVDUSiahqGHJpaWlTU1NGRkZ+fj4RqaqIJCUlTZw4MdYcZGdnT3hiHDMj4pNPPhkEQevWradOncrMqtrY2FhWVgYA1tqUlJT+/fvn5ubu33fwN7/5TVNzAyIag1OmTPH9KBE1N8WLiopUNTU1taBwMjMDyKFDh5YvXykMp7Vv3/6OO+5o06ZNeXn5hg0b6uvrAYCZPc+bNm0aM+/fv3/Hjh1BEHz55ZdElJaW1rZdnqqeffbZPXr08Dxv69at77zzDgBYawcOHPiDH/wAAP70pz+tX78+Ho9ba0eMGNG2bVtm/td//ddf/epXxphOnTr97Gc/Q8QtW7Zs3bo1OTn5X/7lx+3atfN9n5mNMapKRACgis45VS0uLmbmMAxbt27du3fv9u3bV1ZWbty48dSpUyKCiAUFBZFIhIhqamrmzJljrb3sssvuvvvuaDTqEjzP27Fjx9q1a51z+fn5ubm5ItLQ0DBt2jTP88IwtNaqampq6vXXX3/NNVfD9wmWl5fD/zSBMwjOIACYVlLW2NgIivnjxmZmp6kykVVVAAKAbVvf37x5szEmPT19zJgxeBoIETU2nioqKjLGy8vLGzNmTDweRzSLFi2qrq4WkdGjR+fm5iIiM1trRWTBggVVVZVexC8snOL7vqoiIjMbYzQBAJyTkpKSeDxujPn58Efbt29PqM45ay0zP/vss5WVlcycmZk5fvwTiCgia9eu/fzzz5l50KBBF198MTNHIpEwDAFg9erVu3fvNsYMHz68Q4cOxphjx47Nnz8fAJKTk5944olIJEJEANDYeKqsrIyZrbVFRUWRSEREXnvttU8/3U5EI0aMaNu2red5qgoAIrJkyZJDhw4ZY8aNG5ednRkEwY4dO9544w1VtdY+8MADnTt3ttYiYkNDQ0lJiYhYa5944om0tDQRsdaGYVhfXz9nzhxVFZGOHTsOHz6cmYmsqu7evXv16tVE8Nhjj+Xl5QGAMUZEjh+vfuqpp5xz55133pAhQxDRGBMEASIePnz46aefjkQit9566w9/+ENVPXLkyOLFiwHA9/3Jkyd7nkcEeIYeP149e/Zsa31E7Nu3b69ePQQUQAAEziD4m+N/qXr66aeZGRELCwtTUlKISESYef/+/StXrrz//vsvueQSEfnqq69eeuklEcnJyRk9erQxhogQ0Tn3u9/97p133onH4zk5OePHj3fOGWNWrVq1Z88eVbzqqqvuuece51xSUqS5ufnzzz9fs2aNMaZbt24DBgywZ/gismzZsoMHDxqD06dPBwARISIRWb/+zd///veI2Ldv3169ellrnXOISERr167dsWMHIo4cOTIvLw8RDx48uHjxYkRs1arV+PHjiUBVEZGIZs+eXV1dndq6ZUFBASLCGXTgwIHFzyzxfb9Pnz69evUSYCIScXiGiohBq6pB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b99ujGnZsuWTTz6hqiJSVlbW3BxHxJ8PH9G23VmOmYhUlYiCIAAA3/dVFROOHj367LPPquqDDz54wQUXKDCIAgAiPv3005WVlcw8adKk5ORkY7zZs2d//fXX0Wh0woQJLVu2FBFrLasTEVUFAGOMiFhrnXM7d+5ct25dEASPP/54u3btVFVEiOjQgcNLlixBxIyMjPHjxwMAJqiqc27t2rW7du0CgM6dOw8ZMgQRRURV9+7du2LFCs/zHn300bZt2yKiiHie99FHH61bt46IBg4ceMkllxhjwjCMRqPOOQCorz/RqlUrETHGiMjOnTtffPFFz/NuuOHG2267DQCMMaFzxphYLDZ79uxTDSettb17977++utFBM4Q+K7dX5Y///yLzHz++ecPGTJERKy1YRgaY5qamt55552bb745IyNDRDZu3PjBBx8gYo8ePfr27YuIkMDMDQ0NCxYsiMfjycnJU6dO9TyvsbHx+eefLy8vjyT5paWlzExEACAixpiCggLnXNu2bUeOHBmGIREh4sqVK/fu3WvQzpgxQ1UBgIicc8uWLTt69Cgijh49OjMzk4istczsnFPVwMVbtGjBzAAgIhUVFcuWLXPO3X777T169AAAESEiRHzxxRf//Oc/e54pLi5GROdcJJJ08ODBpUuWq2rfvn2vu+46ltBaK+IAQFWNMSIOABCNqgIQALhQ1q5d+8UXXxDRyJEj58yZYz26+eabb731VlUFQVUFgCeffFJVk5KSioqKiAgAFixYUFFRQUSjRo3Ky8szxjAzABhjdu7cuWbNGlW94oorBgwYoKqxWKywsNBa27p16wkTJhhjRGTGjBknT55MSkoaO3ZsamoqMxtjnHPGmJ07d7722mvMYSQSmTJlSjQaVWURqa6unT9/obX23HPPffjhhxExFot5nnfs2LGFCxcaY/Ly8kaMGIGI1lpmttbG4/HGxsa0tLQgiFlrAYSITpyob2xszMvLQ0RmRcTSkmmxeHN6Ztrjj49CRFX1PI8TPM8TAVV94YUXvvzyS3Y6dOjQLl26iAghGmOccxUVFUuWLInH4506dRo5cqRzrr6+fsaMGUTUunXrsWPHep7HzGQMAMybN+/48eOqOnr06Pbt24dhGIs3FRcXE1FWVtaYMWMAQFXxDIXvEywvL4d/LoIzBP5/RMRan5lLS8qampqYefz48VnZGQBCRIjIrIi45d1t7777rqr+/Oc/73xuR+ecKhtjEPHpp58+ergiLS1t3LhxSUlJzrm33nrr008/DYLgggsuuPvuu1u1aoWIIlJbW/vyyy8T0X33D8jOzgYAIlJVIlJVRBQRACCyW7du3fybLaraokWLAQMGtGubp2fgr3/96127doVhCADZ2dn5+WOstc4Fhw4dWr58JQC0bNnqkUceycjMBBRrbV1d3SuvvHL8+PGBAwdeeOGFYRj6vl9RUbFgwQJVHTZs2HnnneecM0iqrIrLli07dOiQiBQUFLRq1co598UXX6xZ8yozt2rVavjw4a1atTLGKEp9ff2qVauampp+9rOf5eXlqaox5rPPPlu/fj0zP/74423atCEiVcXTFJ566qnKykoRueCCC+6+++4WLVowcxiGv00gIhE5++yzhw4dSgmIuH///uXLlwNA7969u3fvzsy+7xNRLBYrLS0FAFUdPHjweeedl5SUIiJBENu5c+ebb7555513XnrppTahvr5+7ty5zc3NItK/f/+rrupuT/NNbW3t+vXrDxw4ICKIeOedd15zzTXwVwLfxaHMmzevvr7eOXfxxRf3798/Go0iYk1NzSuvvFJdXY2Iw4cPP/vss5ubm+fMmdPQ0GCMueWWW6666qrk5GTnXF1d3XPPPXfixAlVvTmBma21q1ev3rdvHxqaNm0aIooIABCRqk6ZMiUMw3PPPfeRRx5hZiISkRdeeKG8vBwVHnrooXbt2qlqNBo1xuzateull15S1RYtWgwbNiwjIwMAELG5uXn9+vWHjhweOHDgueeei4gicvTo0WeffRYA+vfvf91114kIIqoqAPziF7/YvXt3EMSefvpp5xwAIJqampqZM2caY7p27Tpw4EAiCsOwRYtkY0wYhsxsDAKAKgKAMZ6IqOrevXtXPfcLAGiZmtLQ0AAAEydObNmyJSJaMpxQUFAAAElJSVOnTgUA59yhQ4dWrFhBRMaYhx9+ODMzs0WLFk1NTbt373799deJiJkff/zxtm3bBgklJSWqmpqaOmHCBGutiGzduvXdd7caY5KTk0eMGJGens7MYRju27fv5ZdflIRIJDJ1agERGWNUtaGhafr06aqanJw8btw4RDTGRCIRVV2+fPmBAweIqFevXtdff31ycrKqBoGrqqpaunTxBRdcMGDAAN/3jcFPP/30l7/8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2rTpvffeU1Ui0gQA8Dzv3nvvvfzyywEgFotFo9HGxsaSkhIRSU1NnTx5MgAwMyI651avXn3gwAEAsPb/Yw9OoO0uy/vRf5/ned/f3vskZAByQAFRVGYCJMikeMGKIla9WBBFilaXctHlgOCAEIgUEaT/VoEWBF11tihOSLkVLTgwj6mI5BDCEBMSIyHjydn7977P8705u2XZeuPq37XUyt98PqmUIiIADj300CeeeGJsbCyl9Nd//REMmZmILV68+DOf+UzbtqqaUtpzzz1f//rXi0hETExMXHTRRW3bursORUSttdPpHHfccXPm7FdKSSmVUi677LJf/OIXbVtFhKSZMWSnnXb6f055e9OkUoqqYkhVI8LMBoOBatrktttu+853vjMYDFQVQESklGqtRx555Mtf/nKS7i4iGLryyisfeeQRALVWM4uIrbba6sgjj7zmmmtLNfVgAAAgAElEQVRqraeddtp2221HcuPGjeeff36t7XbbbXf66acDiAiSIoI/JjI2NoY/tAAgYhEBQFXvvvtekqX1OXP363QySfwHFZHHH3982bJlJJ///OfPnDkTQEQFICILFy7csGFjSmn//ffnEAAza9t21apVd99998MPP7x+/foZM2bssssuc+bMGR0dFWEMiYiq1lpTSiRV1d0BJWlmIrJ2zfqf//znv1i5POf87J13mTVrVq/Xu/DCC1evXj06Onrq+94TUVNKpRRVTSmtXPnEfffdt3DhwlWrVm211Va77LLLfvvtt8MOO0QEADMjOT4+/sADD0TEbrvtNn36dBEBYhMACxcuXLduHYA5cw5Q1aZp2rbtdDpt2z755JP33Xff/fffv3Hjxl6vs8suu+y///477bRTKSXnDKCUsnr16sWLF7v7vvvuOzIyIiIRgUkqIhFRSnn44Ydvu+22VatWmdkBBxyw7777Tp069Z577imlzJw5c6+99qq1untKyd1TSk8++eTChQvXrl1rZvvuu++2226rqiISEePj44888siCBQtWrlwJYOuttz7iiCO23Xbb6dOnk15rBdA0Ta0BYHx8/Cc/+ck999wzMTExffr0uXPn7rrrrr1eb8GCBe6+8847zZo1S1WxeVpKaZqm3+8/+uijd91118qVKyPiec973kEHHbTtttv2er2JiQkzSynVWgH0+/2HH374lltuWb16dUpp9913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1VfffffdZnbBBRfUWkWEZErq7qpaazWziFDVGMo519ZVlRIppVJKSqmUgaqK2CZt2+acI7BmzZpLL75kfHyclK233vqoo47ad999VZVkRF25cuU111yzePFiM3H3Y4899sADD4wIEaHA3QGYWUSICEkziwhVBeDuAJqmKaVExNKljy9evPjwww+XSVTVWitJESGZUooIVXV3ESF5xeVX/vznP2+6nXnz5plJ27a9Xq/WGhEyFBEAVNVLbZqmhm9iZhFhZj//+c8vvvhSMzv66KNf/OIXu7uqrl69+t577507d+7MmTNJ30RE3L1pGnePQM6ZpLubySalFFU1s7ZtU0oRkXNu2zal5O6qSYZUtW37EdHr9WqtHGrbttfrkQQQEWZGMiJUFUMcyjm7O0kgMEnxKwpARJ588skLL7iIpIpceOGFpZSUUsAfe+yxq6+++oknnjDNc+fOfd3rXte2LSQ+/OEPk+x2u+eccw4AEQFAUlUjQkRUFYB7yTlHBIBSStM07i4i7t7pdNxdRCJCVUmWUlJKJAHoUCkFgA7FJKiqCAHUWnPOEYEhMyPZtm3OmSSgJFWVZM653++nlNw9JXV3kjlnkrXWiEgpAVBVd951113f+MY3SJ599lkjIyPunlKKCBEBICK1hpmJCAARqbVtmqaUklKqtapqRJDMOUdESqltWwAiAoBDAFRVREiKSESoakSklCKCpKpGBElAc861trXWpmlqrSmlWmtKqZSiQwDcXTUBIKmqETWl5O4AIkJVzayUklJy91prt9utNcwsIkopOWcziwiSGBKRZcuWLVq06NBDDxURVU0pRYS7q2pKqW3bnLO7m4m7A1BVDqlqDKWUSOK3IWNjizAp8F+RNDN3r7VOTAwuuuiiQb+klI5//XH77ruviJCMCDPj0BNPPHH55ZcPBhO77LLLX/7lXzZNU2vNOZMCwN3rkIh0Oh0RAZBScneSKaVaq4gAUFV3FxEAg8EAgJk1TePuOee2bQeDgYiYWdM0AEgvpXS73VKKiAAwywDcneTExES3200pRYSIkBSR8fFxM+t0Om3bTpkyxd051Ol0Nm7c2DSNu5sZAHcn3cwiQlVJikhEAIiAqpoZSQAk+/0+ABHZaqutBoMBgJSSD9lQKSUimqaptZoZya9+9asLFizIOc+bN69pGgARwaeklCKqqgKICFV19yZ1SLq7mTlrROScSUZErbVpuqra9gdXXHHFkiVLI2Ln5zzrlFNOiQh5iruLSM75Rz/60be+9a1tttnmqKNetv/++5N095zzYDDodru1VnfPOZN095RSv99vmgYASREBICKkACCpqqUUAE2TVLWUklIaDAZt24pY0zRmRvKKyz/12GOPTZs27QMf+IDlJCKDwUTTNBGRUnL3DRs2dHKX5MjIyGAwyJ3G3VUVQNu2y5cvv/zyy0m+8pWvfNGLXkRSREimlAD0+/1OJwOIgKpySERqrYPBQFVHRkbatm2aJiLMhKS7p5T6/bbb7dZaAQwGA3fPOatqt9vt9/tmhkmhk1JE1FpLKWYGIGcDEBFm5u461LatqpoZSfw6BSAiv/zlLz9+4d/knMP9ggsukKHibUppzZo15557rmk2sw9/+MNbbbVVKeXMM88UZafTOffccwGoakSQVFUOTUxMqKqZiUhKyd2bJpVSAJhZ27Y5Z0Brraq6YcOGnHOn05GnDAaDnLOZlVLMjKSImFl/qNPppKQAzKyUklKKiFpr0zSqqdYqIoPBoJSSc+52uxGhqiLi7qpKekSoKsmmaSKilCIigN5y823X/vM1ZnbGGWeMjIykpLVWMwNQijdNo6pt26okwtu27Xa7g8Eg5wyApKqSBBARJHPOEQGApKqK0N3NjKS7A1BVACISEaSYWb/fJwmg0+moaq01pSQi7p5zLmWgqu7e7Xb7/RYAyVqru3e7XTNzd1WtteacI0IVm7h70zSDQTEzVZ2YmBgMBlOmTEkpiYi7Y0hV3V1VAYhISqltWxFJKbVtq6pm1ratmYlI27a11ojo9XoppVprShoRIgJAVWutIoLfhoyNLcKkwH8lIhzqdDrnn3/BihUrup2Rl770pS/+v16Ucy6lNE1Ta40IMyNpZsuXL09JZ8yYkVKKCAyRUkr553/+57vuuquUklJy96OOOuqwww4zMxlq27bX6/34xz++++67ARx77LErV678yle+4u6quvPOO59wwgkzZsxYsWLFZz/72VWrVpmZiLzmNa854IADRNjtdgeDAYCrr7562bJlnU7vhBNOuPPOO7/3ve+pakTsvffeb3jDG0TkoYce+tKXvjQYDHToHe94xzOf+UwRIamqq1ev/sIXvgBgt912+7M/+zNVNTPSReTBBx+87rrrROQNb3jD6OhoRAwG5dOf/nQpZbvttjv22GO/9KUvLVy4kGRE7LbbbieeeOLIyEjbtjlnEVm+fPmXv/zlbre75557Hn744ap6xRVXTExMrF69et26dSmlHXbYwd1F5E1vetOMGTM+97nPjY+Pu/t73/vuOtTpdNwdwM8fW/qd73ynlLLTTjsd8xf/t5mVUlJKJFXVnQA2rFv/0Y9+NALTp09//wdPV9Wcs5mVUsyMJIBaq6r+9Kc/3WuvvcwkIkimlFasWHHVVVeR3GuvvV7ykpeoakQAIPnggw9+//vfJ/n2t7+91+sNBgOSn/rUlao6Ojp63HHH5ZxLKREVAMnrrrvuxz/+cc65FJ8yZcpxxx235557fuqyyxcvXjxz5syzzz673w5U1UzcPSKWLl161VVXPfnkk0lz27Y77LDD8ccf/4wdnllKSUPuvmTJkn/4h3+otb7yla888sgj+/1+Sumyyy6bmJgYHR096aST2rYvIvfdd/8Pf/hDkm9605uWLl169dVXt21LstZ6wgkn7L///iJSyiDnHBGqCuhgMLj55ptvuOGGtm3NLCJmz5593HHHNU1DMqVUa0tSxB566KGvfe1rTz75pIjknG5Y+LwAACAASURBVF/4wkNe8YpXyJC7i4gOkQQQEfh1CoDk2rVrL7zgolprTumjH/2oqgIIuJkBOPvss/sTLYBTTz11dHS01jpv3jxRppTOPfdcVXV3AKpaa/3JT37yzW9+czAYABCR3Xbb7S/+4i+mT59OugyRFBGStcbtt9/+L//yLyTbts05H3300QcffPCNN9740EMPATj55JNVlUMRcdttt1177bVm1rZtSunEE0/YY489RISkmYlI27ak/Nu//ds111wzGAxSSrXW5z//+W984xtzzmamqiSBAFBrbZqmlFJrHRkZueqqq1b+4sk1a9asW78mIkZHR3u9Xtv2X/Oa1+y8885mdvPNt955550k3/zmN5fWv/jFL65bv+YjH/nIbbfddscdd7j7a1/72p122omkqppZRAwGg09/+tMka62nnHJKSgrAzCKCpKqSlCGS4+MTX/va1x544AERAbD11lu//vWvnzVr1hVXXEFyxowZJ510UkRNKUWEqrZtvfnmm6+//nqS7t7tdl/xilcceOCBN9xww9jYWES87W1vGxnpRgRJVRWxxYsXf/azny2lkFTVffbZ59hjj12+fPl1113X7/dPOOGE7bffnmTbtpdeeimAbbbZ5qSTTnL3nPP111//s5/9rNPpvOUtb1mwYMG3v/3tWquITJ069Zhjjtljjz1IV1V31yEAJPHbkLGxRZgU+JUAQApJs1xrnXfWOWZWa503b96UqT33oqpt2/Z6PXdXVXcHQFKHSilmpqq11rEHHvz85z+PIREBQNLdu93u2972tmc/+9nuLkPf/e53b7zxRlJ23XXXBx54IOccESICoNPpHH300d/85jdJAiDp7t1u93nP2+VNb/pLkqoJwMUXX7xs2TIz22677ZYvX25mESildDqdqVOn7rPPPjfddJMqSLp7ztndX/KSl7zsZS8DEBHr168///zzVXXu3Lmvf/3r+/1+SkmEtdYHHnjg85//vIiddtpps2bNAjA+Pj5//vymaWbMmDE+PlFrjQiSKelgMBgZGfngBz84ZcoUM+v3+ytWrLjssstKKYcffvhRRx1lZh/72MdWr14NQMRkKCIAfOhDH5o6deR73/veD3/4QxF59atffeihh9Zac87uRVWvuebaW2+9XYSnn3769JkzAKiCpIiQjICqfv6zX1i4cCEor37Nqw554cFm0rZVRNy9aRp3B2BmAEopOWfSIyLnXGtdufKJT3ziEyT33Xff448/HoCqkhSRW2+99etf/7qZzZ8/v9PppJTWrVt37vy/FpFnPetZ73jHO0gXkaZpHnnkkSuvvHIwGIgIAHdXVZK77rprrbFkyZJut3vGGWd0ek2tVURqrVdcccXixYtTSiQRNDN3zznPnj37hBNOqLVGhKouW7bs4osvTikdffTRhxxySM7Z3efPn19rnTlz5mmnnWZmEXHrrbd+61vfUtXnP//5ixYtjgh3zzmrota66667vvWtb40IHXL39evXf/zjH3d3M+v325wzgFprSvr2t799l112ads256yq/+93/+Vf//VfAeScSymqKiI55w984APdbrdpEoB+v9/tdmut7p5SwuaQsnbt2o9//OO11mzpox/9qKqSVNV+v59z/tjHPrZ+/XhEnH766dtss417mTdvnojknD/ykY+oqrvnnFevXnvJJZesX79eREopnU4HiFJKSunP//zPDz744JSSu4sIEOvWrbv00n/YsGFjRJRSut0ugFLKDjvssP3229955529Xu+8884TEXdX1UsuuWTZsmXunlJyLzK0447PPOWUU1TV3XPu1FrPO+/8iYkJABFBCVVt27bb7R533HH77rsvgIhISSNCVSPCzEgCuPzyyxcvejTnTBKAe2maJiJOOumk3XbbTUSuv/76H/zgBxE45phjvv71r6dNGjv33HOfeOKJiy66SFVnzJhx+umnN01Ta3X3lNJgMJg/f36t9eCDD37ta18bUVWVJICUEslSXFVLKYsXL/7CF75AEkAppdfrDQYDk7T//vsvWHBPRIyOjr7vfe8zM5IR8eSTT1566aUbN25UVQDuVFURGR0dnTVrm5/85CdmdtZZZ/V6PTNT1VLKZZddtnTpUnc3M0Dd3UymTJny8pe//Ktf/WrO+Z3vfOeOO+5Ist/vn3vuuQB6vd7ZZ59NMiK+/e1v33bbHSIyd+7ce++9F0ApxUzcPaV04IEHHnPMMQDMTETatg9ATPHbkLGxRZgU+JUAoJoigpS2beefc26tdb/99jvpTSdGVJIioqrubmb9fr9pGgDu3jSNu3NIRBYuXPjFz38JQK210+nsuuuuJMfGxtxdRMzsPe95z+joqKqWUr7//e9/73vfM8sAut3unDlzzOzWW29t21ZVSeact9pqqzlz5qxZs2bBggVt24rI8ccfN2fOfqRscvHFFy9fvpxDM2fO3G+//davH1+wYMFgMMg5u7uZPetZO+66665Lly69//77RURVTz311FmzZgFYvXr1BRdcAOCAAw44/vjjSapqRAVw//33f/GLXyTl1FNP3X777Ulu3LjxvPPOK6XknGuN7bffft999x0fH7/jjttqrSIyderUD3/4wyRVdenSpZdeeimAQw455FWvehWAj3/84+vWrSMZARFxdzMTkfe9732zZm2zfv368847T0RmzJhxxhlnmNnExISZmOXzzjt/7dq106ZNO/PMM6BiZrW2AFRVRACNiI+cc+7GjRtN03tPfc/o9rNqbVNqRMTM2rYVEVV1dxExM3dXBclaa0rp8cdXfOITn1DVF7zgBccee6y7A1BVALfccsu1115rZh/84AdHRkZUdePGjeef97GIeNaznnXyySd3u83ExMSGDRs++clPjo+Pq6qZzZ49e8qUKQ8++ODKlStFpBRvmqbX65155plQYujTn/70okWLcs4icthhhz1ju+2XLVt28803l1JU9fDDDz/yyCM7nU7btkuWLPnUpz7l7q9+9asPOeQQVQUwb968UsoznvGMd7/73QDM7Ac/+MF3v/vdiCBZaxx88MHbbbfdz372s8cee6TWSvKUU0557nOfGxEismrVqk9+8pOlFJLbbLPNwQcfOjIyct999z344INAuPsHP/jBbbbZJiJWrFjxyUsuJtntdg8++OBtt9325ptvXrFiBYD999//da97XURVVTMbDAbdbtfdSWLzdNWqVRdeeGHOOapfcMEFACJCVc1sw4YN5557bgQ2mTdv3rRp09q2f+aZZ4pIr9ebP38+AFVdu3btJZf8/dq1a0Vk6tSpRxxxhKo+9tgj9957b0SklE488cQ999zT3VNKtbb/63/93Zo162qtKaV99tlnZGRk+fLljz76qKqKCEkzO//880spAG6//fZrrrkGwNSpU4844ggRuf76fxkfHzeTN77xjbNnz46Ifr+98MILN27sk5w1a9acOXOmz5y2aNGi++67LyLatn3Xu961yy67RIQINwEQEWZG0t2vvPIzjz2yBIC7q2rOVkqJiL/6q7/ae++9AXznO9+58cYbO52euwMgOWWrkfnz59da//Zv//aXv/yliLz73e/efvvtAaSUSinf+ta3br/9dlU9+eSTn/3sZ4tQVWutMlRrVU2bPPTQQ1deeaUPTZs2ba+99gLw0EMPPfnE6l6v17b9iNh6663f//73qyrJiYmJT37yk6tXr1ZVEZk7d+62244uWbLkpz/9aa/Xa9t+rTXnfNZZZ02dOpVkKeUrX/nKz372M3cH8OxnP3unnXZev379T3/6E3c3Mwy9613vGh0dNbOJiYlzzjknpTQyMnL22We7u5ldffXVd955t6q6O8mDDjpo6623XrDgnpUrV7q7iJx66qmjo6Migkmhqs7Ab0PGxhZhUuBXApOUJKC/+MUvPvF3FwN4+ctffvgRLwZChCLm7gDMjKSIRISIxFCn06m1isiFF1645sm1gL7qVa86+OCDU0ok+/3+D37wgxtuuMHMZs2adeqpp9Zau93udddd98Mf/rDWuvXWW7/3ve/t9XoA1q5d+zd/8zdt24rIc57znJNPPtndc86LFi26/PLLm6Z5znN2futb3yoiAP7u7/7u8ccfTyntscceJ5xwooj8f8zBCXhVZZYo7LXW9+19EjKQkIEIqIhtAYoFSuGIWE7XAbW7S2y1ULGcWpQZwpSQnAwkQUBBBBQFFFQUBaUFtQqcURwQEQUJiChjAAWSkJxz9v7WWj85T/l49Wp3c5+y//u+vu9/8803Dz30kLVWRC677LKLLrrQGCMiH3300UsvvQQAl1122SWXXAIABw4cmDZtmoj06NGjX79+RKSqiAoAGzZ88cwzzwDAoEGDOnTogIiHDx++//77nRMiuuaaa84991wR8TyvsbF+5syZhw4dcs5VVlb6vo+Iu3fvnjFjBjNfdNFF11xzTRiGABCG4dKlSzdu/JKZKyoqrLWJRML3fWNMGIYvvrhk3bp1IjJ69Og2bdoQEQBs3LjxyScXIuKZZ5554403hhwAABEc5ZxTVd9Pcc6VRyuCIECg8ooyRUlNjTjnJGn//v1B4IhIRIwxAKCqzrlIJJKXl5eSkrJv376pU6eGYdirV68bbrjBGCNJ1tr3339/6dKliFhcXJyZmcnMsVisrLQcETt27HjPPfeIiDHmiSfm1dbWqmqXLl1uvPHGtLQ05xwifvvtzieeeCIIAudcenr6hAkTAFFVP/jw/RdffBERTzrppNtuuy01NZVDBwBNTbHHH3983769xpiKigpVtdZ+8803M2fOJKK+fftecMEFiBgEQUVFRSwW69DhhMGDBxuDRPTGG2+sWLHCGC8lJWXo0KGZmZmqaq396KOPlixZQgSnnHLKX/7yFwAQkRdeeOHTTz9V1auvvvaCCy7QJETctm3bo48+aozJyEgbN24cEa1du3bx80sAoG/fvhdeeKGoA4AXX3yxc+fOXbp0QUQAMcaICBE554wxqgq/BNEcOnSopqaGmQ3SlClTnHNEJCKNjY2LFi3atm0bEZ1xxhnXX3+DMYY5HD9+PAD4vl9eXs7MiPq3v61avfr9RCJx/vnnX3vttQBgjFHVvXv3PvLILGaORCITJkyw1jrnXnjhhbVr16pix44d+/fvn5WVxcwAcPDgwccee+zQoUMmKRqNep6nqk888cTGjRsJzahRo/LycwEgHm9evnz52Wef3a5dOyJCxJdffnnNmjXMevHFF1/Y54+prVIEWFV37tw5e/ZsVfV9v6ioKBKJqLKqep4XBIG1VkSMMYlESGA+WPPhK6+uYOZx48akpaUBgLWWiIIgWLly5dtvvy0Cxpg/9Ox1QZ/ekVQ/IyMDAOrr66urq1X1oosuuvzyyxGRiIIgKCkpISJEjEajxhhVNsYwszGGmQHA91Oam5sffPDB77//3lp75ZVXnndub2stAKjq+k8/ffrpp4nIGFNQkD9s2DAAYObly5e/8847xpiuXbvecMNNrVq1EhEi+v777+fNm/fdd98RkYgbP358dnZ2EATffvvtnDlzRCQ1NXXgwPsKCgpUFRGbmhqXLFmyadMmVQWAIUOGnHjiiUEQOOdKS0sBoHXr1oWFhdZaAFi8ePFHH601xmRlZd17772tW7dWVRFZtWrVW2+9oapdu3a97bbbVJWZVdVaK8BwLLC2diu0EPiRQAs6ill379798IxZiHjppZdeculFRMAcIhoiEhFVtdaGYWiMERFjDAAwMyJu2LDhqaeeIjBnnnnmjTf+mTk0xlNlAFLVp59++osvvkDEoqKi9PR0VX3jjTf+9re/AcC//Mu/nH322arq+34QBPPmzdu2bRsiDhs2LDc31xijqoj4wAMP1NXVFRTkjxw5UkQAYNasWTt27EDEe+6558QTTzLGhGGoqtXV1fX19Z7nTZgwoVWrFERUVedcWVlZEAS///3v//znPxPRd999N3nyZBHp2bPnTTfdJCKqioiqumnTpgULFhDRsGHDCgoKRCQWi5WVlRFZIopGo9ZaY4yIAMjHH3+8dOlSESksLMzPz3fO7d69e9asWap6zjnn/Ou//iszG2MQcdGiRevWrY9EIuXl5QAgIsagc873/W3bts2ePdsYc8IJJwwcOJCZiei5555ft26dMaa4uDglxSdrVJU5tNYioqqKADNXVVbHYjFhrZlUbTxiDlUVET3PmzhxYn19o4ggooioqrXWOUdElZWVRFRXVzdjxgxVPfPMM2+44QZmNsaoKjN/8sknS5cuBYBoNJqSkoKITU1NFWWVxph27drdd999xphYLFZeHnXOtW3bdtiwYfADIlLVzz///OmnF4lIVlZWUVFR6Jy1dsbD03fv3u37/rhx4yKRCB6lcJQx3tatW+fMeQQRzz///GuvvVZEduzYMXv2bFXt27dvnz59RERVy8vLgyBo0ya3sLBQlVX1ww8/fPHFFwGof//+Xbt2jUQizIyIiUQiGo2qciQSiUajiHj48OHq6mpEzMrKGj16rOd5QRAYYyBp1apVr7/+uogbOXJkfn7+559//tTTi1T15JNPvvnmm9PSUwGAma21IqKq1hIzi4gxRlXh16lifX19TU0NHqWQlZXleZ6q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HTo0NzfX87yGhoaKigoiys3NHTVqlIggIgAgYm1t7dy5cxFxyJAh7du3F5GdO3fOnDnTWnvWWWddc801RGSMEZFFixZ9tv4LMlhTUyPigDSRSFhL1loR+PLL2nlzn7DWXnP11b179163bt0zzzzD6vr163fWWWdhCwUARFRVRGRmYzwAmPPo41u3bkWkG2+8oeeZPRDVOSEiRNy0aZMqxuNxYwwixmKxl156CRE9zysvL1fVffv2Tp06FRH/8Ic/3HDDDQAgIqqKiB988MGSJUs8z5SUlKSlpSUSCedcaWmZCJx00on33nsvM9fW1j7++OORSKRfv35nnfUH5xwR6VHA1vjOuZkzZ+/evTctLa24uBgRAWD8+PEiAkmqCgCICAAigogAYozJzMwcNWqU7/tfffXVo48+iohXXHHFhRdeSETOuWg0Go/HCwoKCgsLRQQA3n333WXLlhHRyJEjCwoK9AcAUFhY6HkeAEyaNImZP/9849NPPw0AROSc833fOYeIqioivm+ZWUT+9Kc/nX322caYPXvqFi1aVFdXp6pEYIwJw/C888674qorI5GIiENEYwwiOucQEX6FMV5dXd0DDzygqojYrl07ZlZVS8b3/a5du15wwQWISETMTETMWlRUJCKpqanRaNQY8/XXX8+cOdNaCwDMbIyRJM/zAEBVJenUU0+944479u7dO2XKFES94oorLrroQiJCRGZGRABAxOeee379+vUAMHHiRGstM6vqxo0bV6x49dChQ8wMAJFIhJn/9Kd/6dWrFzPv379/+vQZAKCqxpggCIwxRAQAiBiGoRexzHzOOef069fPuQB+TgBAHK5bt27x4sW+75eUlKSkpIgIABARALzyyitvvPEGERUWFubn56syECJqGDK2MGVlZUE8zM/PHzxoiHNufPH4lKNS/XHjxhmDRykLEYkIIgLQUar44osvrlmzBhGrqip93w/DUFU9z8TjcWO8MAyj0WgQBMcdd9zo0aMBYNOmTQsXLgzDsG/fvn369EHUowAA0QAQIi5YsOCLL75A1KKioszMTCIaO3ascy43N7ewsBAAEJGZjTGaVFtbu2DBAic8bNiwtm3bGmMSiUQ0GnXOZWVlTSgqRkRmfuGFFz7++BNjTFVVpaoCCLSgo8rLyxsbG3NyckaPHo2oAKDA1lrHCscCa2u3QguBHwm0IABgVmPMpJrJ+/fvT09Pv/zyy88792zPM0HgRFwkkuqcQ0QiUtXm5uZYLJaXl+ecQ8Rnnnlmw4YNiDhu3Lj09HRrLTNjEjNv37597ty5InDllVf27t3b87yVK1e+9tprxqOBAweeeOKJzExEAPDkk09u3rzZGFNZWYmIAOCcM8bMmDFjz549uW1yRo0apaoiMnPmzD179qhqcXFxRkYGAKiqiEycODEej2dmZo4ZMwZRAUAVnXOVlZVhGHbp0uWWW24BgMOHD0+ZMiWRSPTq1euWW25pbm72PE9VRWTDhg3PPvusqo4cOTI/Px8Rm5uby8vLRaSgoGD48OGIqKoAoKpfffXVvHnzRGTIkCHt2rVDxL17906fPh0RzznnnGuvvZaIRAQRFy9evO6Tz/yIF41GVZksEhGAMDORjcUS0dJyIrLGTJgw4emnn968eXNKq0hRUZHvW0hSVUhCRGY2xgOAbV9tnzNnjjEmJydn8KB7Pc+z1jrnVJWIRAARiQgAvvzyy4ULF4Zh4txzz73uuuvCMDxw4PspU6akpqaedtppN9xwAwCoKhGp6po17y1btgwRS0tL09JSwzBMJBKVlVWqeMIJJ9x7771EtGnTpvnz5wPItddee/bZZxMRIgIAc+h5EWaeNGlyQ0NDenr6hAkTmBkAysvLjxw54nlebm4uADCzMQYAEFFVRRwRZWZm3nXXXSKyY8eOmTNnEtHVV199/vnnAwAznvAd1gAAIABJREFUV1RUxOPx/Pz8ESNGiIgx5r333vuP//gPRBwxYkR+fr4mYdLo0aONMSJSU1MDAJs3b5k3b54xJiUlJSsrKwxDYwwiqqoxxrkAAIjoyiuv7NKlCzMTWSI6dOjQW2+9tXVr7cGDB51ziNjr7LP69eunSQCiqpgEv4JZY7FYZWWlqgJAVVVVJBIJggBVPM9jVhGx1gIAMyNiGIbFxcVENhKJlJaWisjBgwcnT56MiJFIJDs7GxGJyDlHRKqKiKoKAD169OjTp3cYhmVlZYh45pln9uvXDxFVVUSMMcyMiI899ti2bdvS0zMnTJgAAKoKACICAHv27HnzzTfr6uoOHNjneR4z9+/fv0ePHjt37nzooYdEJDU1LTs7m4hEBAC0BSMiEALAOeecc95556ky/JwAAIG3Zs2al156SUQqKio8z1NV3/fDMDTGvPrqq2+//TYiFhYW5uTkMIdO2FoismEYel7k2WefXfvRJ8aYgQMHBkEwd948IrrpzzecdtppiGqMYRcYY9gpIqoiEQHQ8uXL33nnHSIaO3Z0RkYGAFhrmUMiEoHDhw9PmjTJGNO6devCwkJmrqurmzlzpoj07Nnz+uuvR0QiUlVEdE48z5s8efL+/fuJoKioKCUlxRgTjUYTiUR2dnZhYSEAEBEzW2udc57nrV69+qWXXmKVwsLCnJwc3/cbGxvLy8tFJDs7e9yYsQCgqi+99NLHH39CRDU1VSKiyojonDPGVFRMbGpqysnJGT16NICoqqgjIgWCY4G1tVuhhcCPBACM8cIw9LyIc+7A/u8nT55MRIg4eNC9HTp0QEQiSiQSkUiEk4IgmD59ekNDw0UXXXTppZcCwEcffbR06VJEPOecc/75n/+ZiIwxQRAYYwBg8eLFH3zwQSSSWlhY2KZNG1VdlSTAAwcO7NixIwAYY5xz8+fP37JlizGmoqICEYlIk6ZPn15XV5eXkztmzBgRAYDp06fv3btXVUtKSlJTU4kIAESktLQ0FotlZWUVFxeLOCICIOdcSUlJEARdu3a94447VPXAgQNTpkyx1nbo0GHgwIGqCgCqaq196qmnPv/8c2YePnx4+/btwzBsbm6eOHGiiOTn548cOZKIAEBVAWDLli2PPfYYAIwYMaJdu3YismvXrtmzZzNz7969r732WlUVEUR8/vnn1378aSTFr6ysVGVFQUTnAmt9ETDGvLd6zbJly0B1yJAhjzzyiHOuy6mdBwwYoMqqioiqSkQAICKe5wWBQ0RDXk1NzYEDB4wx3X/f7cYbbyQiAMAk58QYAwAHDx6cMmVKEASIOmLEiLZt2xpj9u078MADDzDzP/3TP915552e56mqiBDRwoULN278XESKi4tbtWrled6RI0ei0XJVPf744wcNGiQiiFhcXAwA7doVDB48WFVFxPM85xwAfP311489NtcYE4lExo8fH4lEwjCcMWPG/v37fd8vLi6ORCKcREQAICKeZ0SEiJxzIrJ79+7Zs2cDwJVXXnnBBRcgoqpGo9F4PJ6Xlzdq1ChEVNXVq1e//PLLRDRs2LD8/HxENMYws3OuuLhYRBCxurraWrt3774ZM2Y459q0aTNq1ChENMaoKgA454xBInLOYRIRIZrm5mZrrTFGxNXX18+ePbuxsdH6XkVFhXMuEokkEjHP84goCAIigl9ijLd3796pU6cCgDGmqqrKGMPMBOqcM8YzxogIMxtjAMA5V1RUpIqRSKSyspKZVTUajYZhmJ+fP2LECGYGACKy1iYSCQCIRCJhGAKAtZRIJO6///6DBw/m5+ePGzcukUiYJOccETU0NEyaNImZrfXLyso8z2NmIgIATYKkL7/c+OSTTxpjOnbsePfddzc2NlZVVRGR50Wi0aiI4A+IwDlH1jAzACAigMDPCQCIw3Xr1r3wwgu+748ZM6ZVq1ae54VhSEQAsHz58tWrVwNAYWFhmzZtAMD6JgjiAOR5XhC4RCJRUzUpCIIePXrEYrEtW7cS0YSSorS0NOaQma3Bo4SBiFSRma31N27cuHDhQlU97bSu/fv3JyJoIYioiuvWrXvuuecAID8/f/jw4ZFIJAiCkpKSIAjS09OLiopU1fM8SbLW//rrr+fMmaOqQRCvqanxfV9EFixYsHHjRmNMeXm553mIqKoi4vv+kSNHpkyZ0tzcLKADBw486aSTgiBwzkWjURHJysoqHl8kIgCwdOnSDz/8GBGrqyeqKqJaa8MwNMaUlpbFYrG8vLyRI0cCiDGGJVRVJAvHAmtrt0ILgZ9CRE0CACI7f/78LbVfiQgRXXbZZX369LHWAgAzE9G+ffsee+yxpqYmRCSi0ugEz/OCIJg8efKRxmYAGDBgQOfOnYMgSEtLc869++67r732GgBkZGSMHj1aVT3Pe/XVV9966y0kHThw4PHHHy8ixhgRefLJJ7du3Soi1dXVACAinueJyLRp0/bv39+6desxY8YwszFm2rRp+/btY+aSkpLU1FQiUlVjTGlpaTweT09PnzBhAnNIRCKCiCUl0SAITjnllDvvvFNVmXn8+PHW2iAIiouLc3JynHOIuG/fvgcffBARVXXw4MHt2rUjosbGxsrKSkTMz88fMWKEiEASIm7ZsmXevHkAMGTIkHbt2onIrl27Hn74YRHp06fP1VdfDQCe54nI888//8lHnwJqRUUFEZBFAAiCIBKJqKJzLtacqKysFOa0tLSmpibP826+tX/nzqcYYyBJRBAVAETgKGttGIbGeIcOHXpg6jTnHEvYtm3bO+64Izs7W5Ks8VV1y9bNzz33XCwWY+bf/e53AwYMICJjTDwWlJWVMQsRRaPRSCQiIkS0c+eO2bNnM7MxpqSkpFVaCgA0NDRMrKxGxPbt2w8ZMoSZAWDWrFnffvstIvbu3fvqq69WVRHxPC+RSEydOvVIY30sFsvLyysuLmZmAPjb3/62atUqY8wpp5wyYMAAa62qhmGYmpr68ccfb95Se91113meh0nffPPNww8/jIhXX311nz59RAQRS0tLwzDMzc0dNWqUqgLA6tWrX375ZSIaMWJEXl6eiBCRiKhqUVEREQHAxIkTAQDBzJw5c+fOncx8xx13nHrqqZxERMaYRc8+3bFjx7PPPtsY41zgnLyweMnhw4cHDx4sIqqsqvPmzautrQXCqqoqYwwR7dq16+WXXz777F49evSAX0WHDh26//77AUBEampqVBUAiMDzvCAIVFVEIpFIGDIihmFYUlIiIqmpqdFoFAAQcfHixZ+s/RQALr744ssvv5wMIGIQBJ7nvfbaa0R08cUXG2PCMPQ8b9GiRRs2bBCGzp07/+Uvf0FEAJCkWbNm7dy50/M8IqqqqnLOIeKRI0fmzJnTuXPnvn37AooxJgzDmpqaxsbGdu3a3XfffdbaZ555Zu3atcaYq6666pKLL3POEepRIrJixYpW6WmXXnopADAzosLPCQAgeh9++OGLL77IzGPGjMnLy1NVAFBVRFyxYsW7776rqmPGjMnOzgYAEUdEqup5XiIRWmsfnzN369atRGSMCcLw+OOPHzJ0EDOrsjFGxAEAogEAInLOWevHYrGa6vsTiYQCDxgw4PTTT2dm5xwR7d27d/r06QCgqm3bth01apRzDhFXrVq1cuVKY0x6evrYsWOJSFU9z9uzu2727NnxeBwAyMC4cePS09OttZ988snixYudcxkZGWPGjPE8LxKJJBIJVHjllVfefvttRATCQYMGnXDCCaoaj8dLS0sBID09vaR4gnOOiJYuXbr2k08BoKq6UkQQlYhEhIgqKiY2NTXl5OSMHDkSQIhIlaEFwbHA2tqt0ELgp5xznudBErOKyLy5T2zbtg0RASAlJSUtLc33fUQ8cuRIfX09ETGz7/uFhYWtszIw6cMPP3x+8RIistbm5eWdeOKJYRh+8803Bw8eFBHP82677bbOnTsDADOvXLny9ddfV+D77ruvY8eOzjlMeuKJJzZt2kREkyZNQsQwDD3PE5Hp06fv3r27bdu2o0aNUlUieuCBB+rq6gCgqKgoMzNTVZkZEcvKyhKJREZGRlFREaJKkqqWlVWEYfi73/3u9ttvV1UAeOGFF9auXUtEqampp59+el5e3s6dO2tra+PxuIhYa4cNG5abm4uI8Xi8tLRUVQsKCkaNGsXMiEhEqlpbWzt//nxVve+++zp06GCM2b1794wZM5i5T58+V199NTMbY5xz77///oqXXyGiVq1SOnXqFA9i//Zv/5aVlRWGoTEeIgrDggULtm7Z4pwTkdatM0aPHZOS4jvnEBGSRBy2MADgnLPWGuMlEokttV898cQTnm8SiQQR5eTk+L4PAMLQ3NwcizeFYaiq6enpY8aMSUlJISJmBqVnn332s882AEBaWlrPnj2zs7O3b9++deuWWCxGRKpaVFSUkpJiPYrFYpUVVYlE4uSTT77nnntExFp78ODByZMnq6qItGnTpmvXrq1atfr666937doVj8dBORKJpKSkRKPR5uZm3/eJ6MEHH9y/f7+IZGVldevWrX379s65jz76aOfOnQKam5s7cuRIVfU8b9u2bXPmzFHVvn37XnDBBarKzKWlpWEY5uXljRo1SlWJaPXq1cuWLSOikSNH5ufniwgAICIRjRgxwlrLzJMnT1ZVUKqrq3v44Yedc8zcvn37P/zhD23atNm/f//7779/pKlBRE4++eQ777zTWnrqqac2rP/c8yJZWVm9e/du1Srlyy+/XL9+PRFltckeO3ZsEATMXF5ezi3CP//5z927d4dfgmgOHjw4adIkZvZ9f+LEiUSEiEEQR0RrLSKqqoggGgBwzhUVFSGiMaa6ulpEEPG7776b8dDMMAyZOTs7u9dZPXNycr777rsNGzbU1dUBQIcOHYYMGSIiiFhfXz99+vTmpriqtmnT5vjjjy8oKNixY8f27dtjsRgiOufS0tKi0SgRqWpNTU1DQwMidurUqccZvweADz74YOfOncx83nnn9evXLwiCpqamqqoqYwwz5+bk9+zZMy+3zcGDBz/++OPDhw+H7HJzc4cPH26tVWX4OQEgIrtt27bHHntMVVNSUtq3b2+tveiii0444QQieuWVV958800AGDt2bG5uLjNbS8ysScZ4IrJ92zePPfaYqgIAGTN06NC8/BxqAdqCAYDIhmForVVVADLGrPtk/bPPPivqiCgrK+v0008nou3bt+/atSsMQ8/zmDk7O7uwsNAYIyKJRGLWrFl79+71krKysqy1zc3N9YcbiYiZnXN+xBYVFaWkpCCiiMyfP3/79u0ikpKScuKJJxYUFDQ3N2/ZXFtfX8/MnuehoYEDB7Zv3x4AYrFYWVkZAGRkZEwoKlZVIlqyZMl773/geV51zUREVGURAQBEjEbLm5qa8vLyxowZAyBHqbIxRhXhWGBtbS38EmttGIaqCgDGeCIShuHKlSvfW70mDEPP88IwtNZqEhGJuoKCgjvuuCMjIwMAjDFhGHqe997qNcuWLZMkz/NUFREBwBjTr1+/nn84Q0Scc0T0+uuvr1q1ChHvvvvuTp06IaImPfnkk19++aXneaWlpZ7nqSoiisisWbN27tyZn58/ZMgQ3/eZecaMGbt37/Z9f/To0RkZGZQUj8erqqqampqys7NHjx6NqIhojInFYhMnVsfj8VNPPfXWW29FRGPM4cOHp06d2tTUZK0VEc/zRMQ516tXr7Vr1yLisGHDCgoKELGhoaGqqgpA8vPzhw4dSkQAQEQAtGnTpieffBIR77333vbt2xtjvvnmm1mzZqnq+eeff+211yIiACBiQ0PDQ9Nm1NfXG4+YWZXHjh2blZVljBEBRBSGI0eOTJw4UVWtMX369L7iqisR1TmHiEQEAIgKAM6J53maBEAAwMx1dXULFixobGwUEQBgZt/3mRkAVNUYc8opp9x4441paamaBEAIpqGhYerUqc3NzZikqgBARL/73e82b96MiKXRCenp6QBw+PDh8vJyIjr55JPvuusuYwwzg1Jtbe1TTz3FzKoqItZaAGDmTp06uTCxc+fOzMzMsWPHpqamJhIJRDx06ND8+fN37dqVmpoqIkQUBIG1FgC8iN+/f/8uXboAQBAEe/funTZtmu/7V1xxRZ8+fay1iURi4sSJsVisoKBg6NChiAgA77333vLlyxFx6NCh+fn5RISIkjR+/HgAQMSqqipjjIgQUW1t7fz58xGRmUUEEQHAGCMibdq0ueeeu9PT04no0KFDcx557ODBg0QEAEQUhiFZo6q33HJLly5dUlJSmpqaJkyYYIxBxEsvvfTii/8Iv0REGhsbq6pqjDFhGE6dOjUIAmstEaiqc84Yw8ye5zGzqopISUmJKhJRVVUVMyOiMeabb755/PHHwzBERGb2PI+ZVZWZc3Jy7rjjL23atPF9n5lVde/efY8+8lgQBM65SCSSSCR83xeRNm3atG3b9ssvvzQWKysrEVFEvvrqq7lz52qStVZVEREArLVDhw5t06YNIhpjdu7c+eijj8bjcQBARBBFRM/z4vF4alqrYcOGZWam+77PzPBLRICZp06deujQISISESK6+eabTzvtNAB47bXX3n77bSIaNmxYXl4eIoo4ZvY8DwBEwBgDgtOmTdu3bx8zp2emRaNR5xwiOhcYYxD1KERkZiKrqgAESe+9997y5csBwBjDzIgoIqravXv3devWpaSkZGVljR49GhFFBAAaGxvnzp27f/9+5xwAWGtVFZROP/10Zt68ebPjoLi4OCsrS5MaGhrmzp27d+9eAEBEIlJVAjTGXHLZpa+++qqqDh06tH379iISj8cnTpwYhmF2dvbo0aOtteJ4yZIlH69d53letKzEGIOoIkJEIlJRMTEWi+Xm5o4cOVKVEVGViUgV4VhgbW0t/BIRISJMck6stSICALt27lm/fv0XX3zR0NDAzERkjDn5n07q2bNnt27djDHMbIwRESJiZkK7Z8+e119/fcuWLc45VU1JSenateuFF17Yrn2Bcw4APM9j5g8++GDdunWqev311+fn52uSMeall17as2ePiAwaNEhVEZGZjTGLFi06ePBgZmbmzTffrKpE9Nxzz+3fvx8A7rzzztTU1DAMPc8TkccffzwIglatWt1+++2IGoahtZaZ58x5PAzDTp069e3bFwAQkZmbm5tXrFjx6aefIiIzH3fccRdffHFGRsarr77KzLfccktWVhYABEHw6KOPep7JzMy8+eabEZGZVRXR7Nq1a9myZQBw0003ZWdne563e/fuJUuWAEC3bt3++Mc/qqok+b6/b+/+d999d9v2rxKJRCTi3X333ZmZmQBAZPUoQWPMhAkTEokEId5338AOJ7RXVWMMMyMiMxuDImKtHwSBMQZaECICADM759avX79x48Zt27Y551SViFJSUjp37ty9e/fTTjtNRFQZEVWViFQRlA4ePLhixYotW7YkEgkiateu3WWXXeacW716tai76667rLUAwMxz5swBgLZt21533XVEpKoAgGD27t371ltvbdq0KQxDEUlLS+vdu/e555772qsrdu3a1bp16wEDBiCiiBCRqsbj8fXr169evfq7774DAFVt1apVt27deve5oG3bts45ay0i7t69e9myZc653r179+jRAwBEZO7cuUEQZGVl3XzzzaqKiJ999tm7776r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RKSqPXv2FJH169eGEJi5d+/eF174ryJiZiSoYWzHAF555ZUHH3zQFO4OoHefnq2trSklV+vZs2dbW1uM8bzzzhsyZAgRufvMmTNbW1tFMlVl5t69exZF0draykGKothjjz3OPPNMAFSzYsWKu+++e/PmzVmWqaqIAFBVrxk1atRpp50WQogxzpwxu6Ojw8xExMx8KygzX3bZpb169WIO115z3ZrVa0MI5mpmffv2VvXW1s0kXKlUhg4dev7556tqnoeUbNWqVXffedeWLVtEJMuyfv36pZRWr15NRO4+duzYY445hpndnYhmzZq1efPm7j17tLW1FUWR5/kHPvCBU089NcuylJKqhhDMDAARhRAmTpxIRKWsrq2tLcuyGGOfPn3eeecdd6Wa/fbb78QTTwRARADmz5+/cuXKLMtKpdLmzZvdPc/zGTNmmNmiRYvuv//+GCPVAHB3M6Oa0aNHf+YznzEzAMy8YMGCJUuWiIiqMvNOO+20fv1GZi6KIssyZqgqM/fo0WPz5s0pJTMbMGDABRdcwDWq2tzcrKr19fWVSkXVt+revXul0p5Scnci2muvvU477TQiqlQqzc3NIpmZwclhYAcshDB79uyUEteoKhGhy/sPlctldPnbM2zHANwdADMDMMPq1atvuukmVT103GFHHXWUCHV0dMycOTPGqKpZlp133pcHDRpERC+88MI3v/lNZj799C+MHDkSTKtWrZo3bx4zf/rTnz7kkENijCtXrowx/sd//MfSpUvd/fTTTyci4Wy3wbvmIQNw+eVTiCil1Ldv389//pRddtmFmZctW3bfffe1trYz81e/ekG/fn1FxOAAiMjMiGSrFO2dd9752rwbOjo6Qggf/vCHP/GJTzQ01BHRr3/96x98/4ebNm1OqQghnHnmv4wcOTJGDSFMmzattbWVmfv27fv5z39+0KBdUkpLly697777zWBmU6ZMaWxsNLNk8Wtf+9rq1avdfdSoURMmTOjXr6+qvvrb3/z7936wefNmjenII4+cMGFCjHHZsmXu/vjjjy9btqyuru7Uf/48M5vZkCGDS6WSqs69+vqNGzaBvFevXqf+8ym7775bjLpy5cr77ruvvb3djaZMmdKje3fV6E433fS1t956i4iOqHH3EMLKlSu/9a1vvf3221mWnXPOlwYPHgzAzObMmbNp0yZiBjBk6OAPfehDAwYMGDx4cAgMwN2xDTkTUVNTc7VaBUxEDj300MMOO6yuri6l9OKLL/7whz9sa2sDcPLJp+63335mFkKYP39+S0sLiMxs4MCB++yzT69evT7ykY+0tW+59tprW1tbQwgHHLDfEUcc0bt3746Ojueff/6JJ56otEdm/vznTxk1am93F8luueWWN95oYeY+fXqddtppO+/cz50eeOCBV1551bci23vvvU899dRSqdTa2nrnnXe+uXKVqn7+85/fZ599RDJ3nzp1akqJiNz1o2NHf+xjH+vZsyfAL7/88iOPPNLe3u7uE4785GGHHQZgyZIlzOHhhx9et3Y9MU4/44shsJmNGDECNV4jIqoKgIhQQ0Tuji7vKSqXy+jyt2fYjgEQkZmhhkjMbM6cOVu2bNlt18Hnn3++uy9a9Npdd90FIMuyjo6OI4+cMH78eALPmzfvrbffNLMpUy7v3r27uq1atermm28OIRx11FFjxozJ87xarRLRN7/5zZdffpmIZs6cmWWZqhKREMxs0qQpZiYiX/nK+QMHDmSGqjLzb36z6N5773X3k0763OjRo6vVDg4CQFVFRNWJyI2efPLJxx7/oYiMHj36s5/9rLsSkVkCeO3qdfPnfz3GqpmdffaZQ4cOFcncffr06e3t7SIyderUurrczFjgRs8884uHH36Emc8666whQ4bkef5/f/mLhx9+2Mz22GOPM844Q1UBY2aDr1uz9uZ5XyeiEHjy5MmlUmadcP/99//6179uaGiYemUTEQEGwCwRyTVzrntn02ZiTJ58WX23BhEC4O7PP//i/fffX1dqOOGEEw7Yf38ievnll++//35mHHjggZ/5zGeYWUQqlUqpVFq/fv31118fY+zff8DFF1/sNXPmzNm8eTMxH3TQQZ/57PEpJSISEXfdioiwDTkTUVNTc7VaBezoo4/++Mc/XhQFM6uqiCxZsuSuu+6qVqu9evWZOnWqu6eUbrvttpaWFjUbPnz4mWeeWV9fX61WzezxJ3705JNPhhAOPPDAE088oVqtigh3wuLFS+68456UUs+e3adOvUJV3f3WWxe2tLS4+7nnnj1y5MhqtUNEUrKmpmYikhCumDK5VCpVq9W6urpVq1bdeP0NWZYdcMABn/3sZ83g7s3NzdVqlZk/9rFDP3X0BNUYQl4URZaV1q1bd+ONN1Yqld49e02aNCnLspSSO11//fXr121goZmzZxRFJcsyAERkZqpaKpWKogghuLuZiQgRmRm6vNeoXC6jy7vF0IkBEJGZMbN1Qn19/T333POrX/0qk3zKlCn19fU33HDDmjVvNzQ09O/ff8WKFf37D7jwwgtbt7RNmTKlVJfvtttu55xzVpZl6rZy5cp58+aFEI4++uiDDjooyzIiAvDtb3/7ueeeE5GpU6fW1dW5O23lpqqXX95ERABmz54JQIQAuPumTa1XXXVVCOHIIz/xsY99TDWSMAAzCyGYgbaC3HzzzStWrCiVSjNmTiuKghnuzsxmlofSo49+/8c//g8ROf30L4wYMYI5mNm0adOKomhoaJg6dSpgAFgQC12y5I0777zb3Y899tixY8e6+113LVy0aBGYLr300r59+xKRmQEwSyLyox888eSTT4bAEydO7NOnl6oSyf333//Kq78ulUpXXnklOhkRmSXmcM2c6zZu2FTfUDd9erO6mSVmBrBs2fJbb71Vkx9++OFHjh9fKpXuueeel19+2d3PP//83r17xhhFxN0BuPvDDz+8aNGi7t27T5kyhUiIaNq0aR0dHd0aG5uamqpFh4ioRmYGwMzujm3ImYiampqr1Wq/fn0nTpxYrVZFBABtc/fd95bLZSKaNm1aCEFVb7311paWFidrbm4ulUpE5DU33XTTmjVrsixrbm4mInfP89De3g6gVKq/5657Fy1aZJZmzpzOzO6+YMEdLS0teZ43NzcRkbtSJ7n66rmrV68eMnTol79ynrszs9VMmzatvb39oweN/tznPgdwURSzZ88uikJVZ82aIRmnVBBJCCEly7LsW9/61nPPPQfziy66aODAgWbGHObNm9eybHmWh6vnzjFLROTuMUYRYWYiSimFENwdABGllMwsz3MzQ5f3DpXLZXR5txg6MWpUNc9zM0vJmHnx4sV33HEHezjllFNGjBw+a9asoqgcf/zxpVLpoYceCiGfPn36hvUbb55/U7VaPfPMf9lzzz1jjBzkzTff/NrXvkZExx9//NixY93dzAB8+9vffvHFF0MI06ZNExFmNjOGE8mkSZe7OzNPmzatVMrMEgB32rBh09y5c9396KOPHjdurAgZHAAzp5SYAxFp8muvvXb9+vWDBg0690tnZ1kWAscYRYRILPnixYvvumuhqp555r/sueeeZnD3WbNmtbe39+7d+8ILLyyVSoBVKpW6urrXXlu0cOFdzPzpT3963LhxZnbzzfOWL1/et99OEydONDMAXOOu7rTotcV33nmnCP3zP//zBz/4AVUF+IEHHnj5169069btyiuvTCkxs7uKiJnNvfr6TRvf6dO394UX/isHYuYYY5ZlS5cuW7BgAUEOP/zwTx55JBEtWLBg2bJlXkPkRKSqRJRlWYyRmammubk5hBzA3Llz169fP2To0HPOOYcFZiZC7i4ilUolhIBtyJmImpqaq9Xq3nvv+cUvfjGlJCIhBACVSiWE8LOf/fx73/uemc2cOTOEQES33nrr0qVLu3VvaGpqIqIYY5Zl7j537tw1a9YMHz78nHPOAeDuZqlUKqWUAP75z37x6KOPplTMnj1TRJh5wYI73njjjT59+lx22aUAiNw64frrb9ywYcPg3Xc/90tnu3sIwczcfcqUKe6+/777nXDCCUQC4IorrlDVgQMHXnDBl0nAjJQsy7KUTFVfeOGF7373u0J84okn7rPPPkTkTjfddNPaNevMdfrMaSJkZiEEIjIzZi6KIs9zVU0pEVEIwWtExMzQ5b1D5XIZXd59RKSqzAyAOaSUiGjmzJltrZU999zzyCPHz5s3TwJddNFFjY2N06dPJ8hRRx21efPmH//4x8x82aRLe/ToIUIp2dtvvz1v3jxVPf7448eNGweAiAA8+OCDzz33XKlUmjp1ap7nzAzAXc0wedIVZk5EV189B2SAUSfZuOGdq66aQ0QTJnzy8I8fBpi7AyAiMyMSAO5+3XXXrVm9btCgQRde9K8xRgAiUhRFnuduVC6X77p7IYCzzjprjz32UFUAU6dOTSn122nniy+5UFWZQURmtmxpy4IFtzHzcccdN3bsWCKaN+/GN998s75bw5QpU9wdgIiYmaqKyEsvvvzggw8S+emnn77nnnsCIKJ777331d/+pq6urmlqMwvMLASOMYpkc2ZfvWH9xj59e0+ZcnnUwsyY2d1XrXrrpptuIhXbkZcAAB1RSURBVMgntjriCCKaP/+mt956K6kzc7VaDSEwc0opZKyqANy9oaGhubk5hFAUxVWzr25raxs8ePD5559fxIqIEHlKCUCe56qKbciZiJqamqvV6l4f2PMLX/gCACKKMYoI1fzkx09///vfBzBz5kxmDiHccssty5Yt69ZY39TUFGOsq6tLKanq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mdmKFasWLFigyY844ojxRx7BzK62cOHCxa8vJaLhw4ePHz9+wIABRPTW26ueeOKJ119/vX///ieddNLAgQOZ2cyuuuqqd955Z9iwYeeee667m1kIbGYxxlKpZGbYhpyJqKmpuVqtgp2IRo0aNXr06J122qm9vf3ZZ5997rnnzMzdzz3nvEGDBmVZ5u4LFix4Y9mSbt3qr7zySoBjjCEEdzezG264Ye2a9UQ0ePDgsWPH7rLrgC1btjz//PMvvfSSJoQg55x71qBBuwBg5lvm3/bGG2/07t174mWXMDORb8Uc5lx1zfr164cNG3bOuWe5OxGhZsqUKSml/fff/+STT2ZIe3v7nDlziqJIKYnIsBFDx40bN3DArpVK5cUXX3z66afNTFVPOvlz+++/PzPMLIR84cKFv3n1NREZ/dGPjBo1ipmHDRtGRMx89913//a3vxWRf/qnfzrwwAPdHQAzmxkzuyu6vHeoXC6jy3uDASy84+5FixaJMBFNm36liDCzu1933XXr1q1LKTU2NjY1NQHGzKpKJG+99daNN94YQjjqqKMOOeQQEYkxAnjrrbfmzZtHNSklEbngggsGDtyZiCZeejkzm9mcq2czs1liZlXdtLF1zpw5IjLhU0cedthhgGEHGMDy5csXLlyYUiqKIkhORCklrunXr9/adatTSmeffeaIESOY2cymT5/Z2tq60047TZ48OcZIRMxw99cXLbnzzjvd/bjjjhszZoy7M/OmTZsW3nXnmjVr3J2ZVZWZ3R0AQ8aNG3f0MUcBcNeUUl1d3WuvvXbXXfeoqpnleV4UxeTJk3v37gngmjnXbdy4sWfvHldccYVqdHeqaWlZcfPNN4vIxz/+8fHjxwNg+IYNm26/487169cTEYCkRQjB3VHTr1+/r3zlKyEEImLmWbNmbdmyZejQoeecc06M1VKpFGMkohBYVQHeKsaYZZlGE5GpU68siqJXn56bNm1SVREhohgjEYUQ3P3www8fP348EYlISmnBggUtLS2NjQ1NTU0xxhACkagqEa1evfruu+9eu3atcEZE7k5EIHN3puy4444de/BHzZKZhRC+fsvtS5cu7d69+9SmKwCYJSJyp2uuvnbjxo277777eeefC8DdmdndJ02aBGDfffc99dRTU0oApjXPqFarPXv0iDG2tm8RESJSVeGsKIosy8aMGXPMsUcTOQBmNrPXX3994cK73J2IVLW+vn7atGkA3H369Ont7e0Ahg8fftZZZxGRmYUQvAYwdHnvULlcRpf3BgN47pcvPPzww9Vqdeiw3S+88MJqtUpE7v7kk08+8cQTzHzwwQcfddQEd88ySSmFULds2bL58+fHGE888cTRo0fHGEulEoCiKH72s5899dRT7e3tpVIppXTBBRfsuuvAoiiuvHKaKYhoxsxppVJmZqpaV1e3atVbN94wL8Z49Kc/9bGPHWpmRIQ/xACIaM2aNQ899NCKFSvcyMyIqKGh4YADDvjgPh+44447VOPZZ589dOhQVc2ybNq0GZVKpVevXpdccgkRlUrZli1b6uvry79ddO+99xZFcfzxxx966KFFURARM3dUK4888siLL75oZiGEGCMR9e7de/wRR37kIwcmU3ctlUqqmlISkaee+s9nnnmmvb09pRRCmDjxkp49ezLzVbPmbNmypUevnpdeejERlUqlLVu2NDQ0LFnyxu23314UxSc/+clPfOITZkZuIrKlrf17j/77r371q5RSlouZqWq3bt1Gjhz5mc98prGxUVWJyN2vuuqqzZs3Dx48+JxzzimVsmq1KiJEFGNVRAAGoKohBBi5+4wZs1pbWz/4oVEf/ehHv/vd727cuNHM8jx398bGxvHjx3/kIx9xdzOjmttuu23p0qXdutVPnTo1y7KOjo4sKwEwMyLasGHD97///fJri4uiKJVK7e3tpbqsT58+xx37TyNHjkxaMCPLMjO7+eZbVq54s3v37pMvv0w1lkqllBIzXz3nug0bNuw+ZLevfOUr1Wo1hKCqAKZNm1apVEaPHn3cccdlWVatVqc1zzCz3QYN+tSnPvV//u3hlStXioi7E6Rnz54HH3zwoYeNY8ZWRFQURQhBRH74w8d+/vOft7e3iwgzT58+XUTcfcGCBS0tLe4+YcKEww47jIjcHUBKKcsyd0WX9w6Vy2V0ec+wG6mqiCQtuBOYGYCqqyqAEIK7ighg7q5KzOzuzKyqzCwiqsrM7k5E7r65pmfPno2Nje5aKpXa2jqC5MxsngAjciJKybKsFAslIpCFwGaJSLBjbGYi8s4777z88stFUey000577bVXqVQysxgjM7aqry/FqEQUo7o7M2dZllJBRCKiqkRSrVaZGYCIMHMIIaXkriGESqWyaNGiFStWNDY2DhkyZNCg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DyMCIiKyH0YERERkP4wIiIjIfhgREBGR/TAiICIi+2FEQERE9sOIgIiI7IcRARER2Q8jAiIish9GBEREZD+MCIiIyH4YERARkf0wIiAiIvthREBERPbDiICIiOyHEQEREdkPIwIiIrIfRgRERGQ/jAiIiMh+GBEQEZH9MCIgIiL7YURARET2w4iAiIjshxEBERHZDyMCIiKyH0YERERkP4wIiIjIfhgREBGR/TAiICIi+2FEQERE9sOIgIiI7IcRARER2Q8jAiIish9GBEREZD+MCIiIyH4YERARkf0wIiAiIvthREBERPbDiICIiOyHEQEREdkPIwIiIrIfRgRERGQ/jAiIiMh+GBEQEZH9MCIgIiL7YURARET2w4iAiIjshxEBERHZDyMCIiKyH0YERERkP4wIiIjIfhgREBGR/TAiICIi+2FEQERE9sOIgIiI7IcRARER2Q8jAiIish9GBEREZD+MCIiIyH4YERARkf0wIiAiIvthREBERPbDiICIiOyHEQEREdkPIwIiIrIfRgRERGQ/jAiIiMh+GBEQEZH9MCIgIiL7YURARET2w4iAiIjshxEBERHZDyMCIiKyH0YERERkP4wIiIjIfhgREBGR/TAiICIiH6/uNrPuxqW7AZgZIwIiIvLx6m4AZtYXdwew1mJEQEREPl5mttayy1oLwBgDACMCIiLy8SLZF5IAuhuAmTEiICIiH6+qGmPU5TiO7p5zujsjAiIi8lEjWVW8zDmP4/j0008ZERARkY+XmWUmSTNba5F88eLF559/zoiAiIh8vPoyxqiq7n7x4sVnn31mZoyI7ualqnipKpK4kOxuiIjI/wfdDYAkgO42M5JV1d3u/vj4+OLFC3cHwN/85jckzay7q8rMAFQVSfzvkATQ3RARkT8/kt2NP8Xd60LSzLq7qrobwBjjiy++eHx8xCUz+dvf/hZAd1dVd5uZu3c33usLLiQhIiIfTneT7G5ceAHQ3Znp7gC628wAdDcAks+fP//8889vtxsumenujIjuJmlmAPqSmWbGC/4AyaqCiIh8OGbW3QC6m2R3A+huM6sqAGYGIDNJHsfx6aefPj4+mhmAqgJgZt3NV69evXz58uuvvx5juHtmAhhjrLVI4r3uxoUkRETkw+luXEgCINkXXvq9Mcbj4+OLFy/cvarMrLtJAqgqM2NmmtnT09PLly+/+uordx9jZCYuJPHHqgoXkhARkf8r3Y0LSVxIdjf+QHcDOM/z8fHxk08+GWPgvaoyMwBrrTEGAPYFAMnM/Pry+vVrAH0BwAtEROSDIgmgu3Hpblx4MbNPPvnkG9/4xnme7g6gL2bW3SQz08xIAuhuVhVJXLqbJICqut/va615WWtlZl36AqAvALobIiLyZ0ASF74HwC5+GWMcx3Gep7uf54k/parMDP/DfwGxRA89O3K+ewAAAABJRU5ErkJggg=="
4
+ }
5
+ }
presets/Feature.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Image Generator": "f1",
3
+ "Image Controlnet": "f2",
4
+ "Image Variation": "f3",
5
+ "Image Inpainting": "f4",
6
+ "Image Eraser": "f5",
7
+ "Image Upscaler": "f6",
8
+ "Prompt Generator": "f7",
9
+ "Creative Upscaler": "f8",
10
+ "Background Remover": "f9",
11
+ "Realtime Generator": "f10",
12
+ "Realtime Canvas": "f11",
13
+ "Face Consistency": "f12",
14
+ "Style Consistency": "f13",
15
+ "Face Restoration": "f14",
16
+ "Face Swapper": "f15",
17
+ "Image Enhancer": "f16",
18
+ "Image 3D LUT Processor": "f17",
19
+ "Prompt Randomizer": "f18"
20
+ }
21
+
presets/Keyword.json ADDED
@@ -0,0 +1,454 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Popular": [
3
+ "Enchanting forest path",
4
+ "Vibrant city skyline",
5
+ "Snow-covered winter wonderland",
6
+ "Lush green meadow",
7
+ "Historical ancient ruins",
8
+ "Sun-kissed beach scene",
9
+ "Starry night sky",
10
+ "Whimsical fairytale castle",
11
+ "Urban street art",
12
+ "Tranquil garden pond",
13
+ "Vibrant street market",
14
+ "Peaceful riverbank",
15
+ "Majestic wildlife safari",
16
+ "Magical underwater world",
17
+ "Serene zen garden",
18
+ "Mystical moonlit landscape",
19
+ "Vintage retro vibes",
20
+ "Dreamy pastel colors",
21
+ "Dramatic thunderstorm",
22
+ "Playful children at play",
23
+ "Majestic mountain range",
24
+ "Colorful autumn foliage",
25
+ "Breathtaking coastal cliffs",
26
+ "Serene lakeside view",
27
+ "Idyllic countryside landscape",
28
+ "Tranquil waterfall oasis",
29
+ "Majestic Gothic cathedral",
30
+ "Cozy mountain cabin",
31
+ "Rustic barn landscape",
32
+ "Golden hour",
33
+ "Colorful garden",
34
+ "Neon lights",
35
+ "Foggy atmosphere",
36
+ "Mysterious foggy alley",
37
+ "Cloudy skies",
38
+ "Smoky haze",
39
+ "Tropical bird",
40
+ "Cute cat",
41
+ "Fluffy animal",
42
+ "Beautiful woman",
43
+ "Dancing flames",
44
+ "Flickering fire"
45
+ ],
46
+ "Quality": [
47
+ "High-definition",
48
+ "Premium",
49
+ "Superior",
50
+ "Professional",
51
+ "Flawless",
52
+ "Exquisite",
53
+ "Craftsmanship",
54
+ "Unparalleled",
55
+ "High-end",
56
+ "Photorealistic",
57
+ "Textured",
58
+ "Fine art",
59
+ "Impressive",
60
+ "Immersive",
61
+ "Hyperrealistic",
62
+ "High-resolution",
63
+ "Lifelike",
64
+ "Masterpiece",
65
+ "Detailed brushwork",
66
+ "Multi-layered",
67
+ "Real-time rendering",
68
+ "Ambient occlusion",
69
+ "Global illumination",
70
+ "Atmospheric effects",
71
+ "Reflections",
72
+ "Shadows",
73
+ "Composition",
74
+ "Symmetry",
75
+ "Subtle gradients",
76
+ "Color harmony",
77
+ "High dynamic range (HDR)",
78
+ "PBR (Physically Based Rendering)",
79
+ "Specular highlights",
80
+ "Translucency",
81
+ "Noise reduction",
82
+ "Post-processing effects",
83
+ "Naturalistic",
84
+ "Otherworldly",
85
+ "Fantasy",
86
+ "Magical",
87
+ "Dreamlike",
88
+ "Aesthetic",
89
+ "Transcendent",
90
+ "Mesmerizing",
91
+ "Enchanting",
92
+ "Captivating",
93
+ "Thought-provoking",
94
+ "Expressive",
95
+ "Evocative",
96
+ "Mind-bending",
97
+ "Interactive",
98
+ "3D modeling",
99
+ "Sculptural forms",
100
+ "Organic textures",
101
+ "Architectural design",
102
+ "Urban landscapes",
103
+ "Nature-inspired",
104
+ "Sci-fi",
105
+ "Cyberpunk",
106
+ "Steampunk",
107
+ "Abstract",
108
+ "Minimalist",
109
+ "Pop art",
110
+ "Conceptual",
111
+ "Collage",
112
+ "Experimental",
113
+ "Multidimensional",
114
+ "Timeless",
115
+ "Haunting",
116
+ "Emotive",
117
+ "Dynamic composition",
118
+ "Fluid motion",
119
+ "Ethereal",
120
+ "Mystical",
121
+ "Symbolic",
122
+ "Highly detailed",
123
+ "Details",
124
+ "Octane render",
125
+ "HD",
126
+ "8K",
127
+ "Unreal engine",
128
+ "Ray tracing",
129
+ "VRay",
130
+ "High quality",
131
+ "Ultra detailed",
132
+ "Detailed matte painting",
133
+ "Stunning visuals",
134
+ "Iridescent accents",
135
+ "Vibrant",
136
+ "Creative",
137
+ "Elegant",
138
+ "Intricate",
139
+ "Smooth",
140
+ "Full HD",
141
+ "Depth of field",
142
+ "Wallpaper",
143
+ "Studio light",
144
+ "Cinematic lighting",
145
+ "Cinematic",
146
+ "Realistic lighting",
147
+ "Soft lighting",
148
+ "Dynamic lighting",
149
+ "Centered",
150
+ "Sharp focus",
151
+ "Panoramic",
152
+ "Volumetric light",
153
+ "Uplight"
154
+ ],
155
+ "Styles": [
156
+ "Minimalism",
157
+ "Street art",
158
+ "Graffiti",
159
+ "Abstract",
160
+ "Portraits",
161
+ "Landscape",
162
+ "Still life",
163
+ "Wildlife",
164
+ "Nature",
165
+ "Architecture",
166
+ "Character design",
167
+ "Sci-fi",
168
+ "Anime",
169
+ "Manga",
170
+ "Comic book",
171
+ "Graphic novel",
172
+ "Typography",
173
+ "Calligraphy",
174
+ "Mixed media",
175
+ "Collage",
176
+ "Mosaic",
177
+ "Sculpture",
178
+ "Ceramic art",
179
+ "Glass art",
180
+ "Installation art",
181
+ "Performance art",
182
+ "Kinetic art",
183
+ "Interactive art",
184
+ "Video art",
185
+ "Sound art",
186
+ "Generative art",
187
+ "Algorithmic art",
188
+ "Data visualization",
189
+ "Augmented reality",
190
+ "Virtual reality",
191
+ "Motion graphics",
192
+ "Music-inspired",
193
+ "Fashion-inspired",
194
+ "Botanical",
195
+ "Underwater",
196
+ "Celestial",
197
+ "Cityscape",
198
+ "Abstract expressionism",
199
+ "Cubism",
200
+ "Dadaism",
201
+ "Fauvism",
202
+ "Constructivism",
203
+ "Land art",
204
+ "Street photography",
205
+ "Documentary photography",
206
+ "Fashion photography",
207
+ "Still photography",
208
+ "Macro photography",
209
+ "High-speed photography",
210
+ "Long exposure photography",
211
+ "Black and white photography",
212
+ "Infrared photography",
213
+ "Experimental photography",
214
+ "Nature photography",
215
+ "Wildlife photography",
216
+ "Concept art",
217
+ "Digital painting",
218
+ "Oil painting",
219
+ "3D",
220
+ "Drawing",
221
+ "Sketch",
222
+ "Watercolor",
223
+ "Cartoon",
224
+ "Vintage",
225
+ "Aesthetic",
226
+ "Illustration",
227
+ "Pointillism",
228
+ "Pop art",
229
+ "Bokeh",
230
+ "Black and White",
231
+ "Psychedelic",
232
+ "Texture",
233
+ "Brush effect",
234
+ "Cyberpunk",
235
+ "Background",
236
+ "Futuristic",
237
+ "Steampunk",
238
+ "Postmodernism",
239
+ "Surrealism",
240
+ "Impressionism",
241
+ "Hyperrealism",
242
+ "Ultra-realism",
243
+ "Trending on Artstation",
244
+ "Artstation",
245
+ "Dark fantasy",
246
+ "Epic fantasy",
247
+ "Renaissance",
248
+ "Fantasy world",
249
+ "Fantasy",
250
+ "Oriental art"
251
+ ],
252
+ "Colors": [
253
+ "Opalescent",
254
+ "Metallic",
255
+ "Prismatic",
256
+ "Iridescent",
257
+ "Gradient",
258
+ "Vibrant",
259
+ "Earth tones",
260
+ "Subtle hues",
261
+ "Vivid",
262
+ "Tonal variations",
263
+ "Warm colors",
264
+ "Cool colors",
265
+ "Tangerine",
266
+ "Teal",
267
+ "Lavender",
268
+ "Moss green",
269
+ "Ochre",
270
+ "Peach",
271
+ "Olive",
272
+ "Coral",
273
+ "Rustic",
274
+ "Rusty red",
275
+ "Sapphire",
276
+ "Silvery",
277
+ "Smoky",
278
+ "Turquoise",
279
+ "Verdant",
280
+ "Amethyst",
281
+ "Aquamarine",
282
+ "Azure",
283
+ "Blush pink",
284
+ "Chartreuse",
285
+ "Deep purple",
286
+ "Maroon",
287
+ "Mustard yellow",
288
+ "Orchid",
289
+ "Peachy",
290
+ "Pistachio",
291
+ "Plum",
292
+ "Scarlet",
293
+ "Analogue colors",
294
+ "Bronze",
295
+ "Burgundy",
296
+ "Canary yellow",
297
+ "Cobalt blue",
298
+ "Colorful",
299
+ "Coral pink",
300
+ "Crimson",
301
+ "Cyan",
302
+ "Deep colors",
303
+ "Golden",
304
+ "Duotone",
305
+ "Electric violet",
306
+ "Fluorescent orange",
307
+ "Glitter",
308
+ "Holographic",
309
+ "Indigo",
310
+ "Ivory Lime Green",
311
+ "Magenta",
312
+ "Mauve",
313
+ "Monochromic",
314
+ "Nacre color",
315
+ "Neon colors",
316
+ "Pale lilac",
317
+ "Pastel colors",
318
+ "Pearly",
319
+ "Periwinkle",
320
+ "Rich colors",
321
+ "Rose Gold",
322
+ "Sepia colors"
323
+ ],
324
+ "Artists": [
325
+ "Rembrandt",
326
+ "Claude Monet",
327
+ "Pierre-Auguste Renoir",
328
+ "Edgar Degas",
329
+ "Paul Cézanne",
330
+ "Vincent van Gogh",
331
+ "Henri Matisse",
332
+ "Wassily Kandinsky",
333
+ "Pablo Picasso",
334
+ "Georges Braque",
335
+ "Henri Rousseau",
336
+ "Marc Chagall",
337
+ "Jackson Pollock",
338
+ "Mark Rothko",
339
+ "Salvador Dalí",
340
+ "Joan Miró",
341
+ "René Magritte",
342
+ "Frida Kahlo",
343
+ "Piet Mondrian",
344
+ "Paul Klee",
345
+ "Roy Lichtenstein",
346
+ "Andy Warhol",
347
+ "Jean-Michel Basquiat",
348
+ "Damien Hirst",
349
+ "Banksy",
350
+ "William Waterhouse",
351
+ "Albert Bierstadt",
352
+ "Alphonse Mucha",
353
+ "Martine Johanna",
354
+ "Thomas Kinkade",
355
+ "Jose Daniel",
356
+ "Shaun Tan",
357
+ "Jonathan Solter",
358
+ "Alena Aenami",
359
+ "Android Jones",
360
+ "Hokusai",
361
+ "Makoto Shinkai",
362
+ "Diego Gisbert",
363
+ "Georgia O'Keeffe",
364
+ "Kazimir Malevich",
365
+ "Egon Schiele",
366
+ "Gustav Klimt",
367
+ "Edvard Munch",
368
+ "Johannes Vermeer",
369
+ "Francisco Goya",
370
+ "Sandro Botticelli",
371
+ "Michelangelo"
372
+ ],
373
+ "Mood": [
374
+ "Serene",
375
+ "Vibrant",
376
+ "Mysterious",
377
+ "Tranquil",
378
+ "Surreal",
379
+ "Magical",
380
+ "Futuristic",
381
+ "Serendipitous",
382
+ "Captivating",
383
+ "Luminous",
384
+ "Mystical",
385
+ "Evocative",
386
+ "Enigmatic",
387
+ "Dynamic",
388
+ "Peaceful",
389
+ "Enthralling",
390
+ "Sublime",
391
+ "Ethereal",
392
+ "Soothing",
393
+ "Intriguing",
394
+ "Mesmerizing",
395
+ "Abstract",
396
+ "Lively",
397
+ "Breathtaking",
398
+ "Harmonious",
399
+ "Dreamy",
400
+ "Awe-inspiring",
401
+ "Thought-provoking",
402
+ "Intense",
403
+ "Melancholic",
404
+ "Melancholy",
405
+ "Romantic",
406
+ "Emotional",
407
+ "Energetic",
408
+ "Joyful",
409
+ "Nostalgic",
410
+ "Uplifting",
411
+ "Epic",
412
+ "Calm",
413
+ "Moody",
414
+ "Dark",
415
+ "Dramatic",
416
+ "Playful",
417
+ "Whimsical",
418
+ "Gloomy",
419
+ "Hypnotic",
420
+ "Immersive",
421
+ "Sensual",
422
+ "Sensory",
423
+ "Intimate",
424
+ "Reverie",
425
+ "Contemplative",
426
+ "Reflective",
427
+ "Wistful",
428
+ "Lyrical",
429
+ "Fanciful",
430
+ "Adventurous",
431
+ "Delicate",
432
+ "Dynamic",
433
+ "Ebullient",
434
+ "Ecstatic",
435
+ "Effervescent",
436
+ "Expansive",
437
+ "Exuberant",
438
+ "Fervent",
439
+ "Fresh",
440
+ "Impressionistic",
441
+ "Jubilant",
442
+ "Lively",
443
+ "Nimble",
444
+ "Radiant",
445
+ "Resplendent",
446
+ "Sprightly",
447
+ "Sunny",
448
+ "Thrilling",
449
+ "Vital",
450
+ "Vivacious",
451
+ "Wholesome",
452
+ "Zesty"
453
+ ]
454
+ }
presets/Lora.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "None": "picture",
3
+ "Anime": "anime",
4
+ "Pixar": "pixar-style",
5
+ "Raw": "raw",
6
+ "Cinematic Lighting": "cinematic lighting"
7
+ }
presets/Model.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Anime V1": "120",
3
+ "Anime V2": "121",
4
+ "Anime V3": "21",
5
+ "Meina Mix": "116",
6
+ "Orange Mix": "103",
7
+ "Toon You": "113",
8
+ "V1": "27",
9
+ "V3": "28",
10
+ "V4": "30",
11
+ "V4.1": "32",
12
+ "V5 Anime": "34",
13
+ "V5 Lite": "36",
14
+ "V5 Ultra Real": "33",
15
+ "V5.1 Illustrative": "35",
16
+ "V5.2": "126",
17
+ "V6 Alpha": "39",
18
+ "Turbo": "128",
19
+ "Portrait": "26",
20
+ "Realistic": "29",
21
+ "Creative": "31",
22
+ "Disney": "102",
23
+ "Dreamshaper": "111",
24
+ "Lyriel": "104",
25
+ "RPG": "105",
26
+ "Realistic Vision": "110",
27
+ "Unreal Engine 5": "114",
28
+ "Blue Pencil XL": "203",
29
+ "Dreamshaper XL Lightning": "201",
30
+ "Fantasy": "129",
31
+ "PixArt-Σ": "40",
32
+ "SD XL": "122",
33
+ "SD XL Tattoo": "124"
34
+ }
presets/Model2.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "Flux Schnell": "308",
3
+ "Turbo": "304",
4
+ "Anime": "301",
5
+ "Realistic": "302",
6
+ "Artistic": "303"
7
+ }
presets/Prompt.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "scene": [
3
+ "None",
4
+ "Aerial shot scene",
5
+ "Animated scene",
6
+ "Character shot scene",
7
+ "Cutaway shot scene",
8
+ "Documentary scene",
9
+ "Dramatic scene",
10
+ "Fantasy scene",
11
+ "Horror scene",
12
+ "Landscape shot scene",
13
+ "Music video scene",
14
+ "Mystery scene",
15
+ "Nature scene",
16
+ "News scene",
17
+ "Romance scene",
18
+ "Science fiction scene",
19
+ "Sports scene",
20
+ "Talk show scene",
21
+ "War scene",
22
+ "Western scene"
23
+ ],
24
+ "filter": [
25
+ "None",
26
+ "Polarizing filter",
27
+ "Neutral density filter",
28
+ "Graduated neutral density filter",
29
+ "UV filter",
30
+ "Fluorescent filter",
31
+ "Warming filter",
32
+ "Cooling filter",
33
+ "Red filter",
34
+ "Orange filter",
35
+ "Yellow filter",
36
+ "Green filter",
37
+ "Blue filter",
38
+ "Purple filter",
39
+ "Pink filter",
40
+ "Infrared filter",
41
+ "Star filter",
42
+ "Soft focus filter",
43
+ "Vignette filter",
44
+ "Diffuser filter",
45
+ "Fog filter"
46
+ ],
47
+ "camera": [
48
+ "None",
49
+ "DSLR camera",
50
+ "Mirrorless camera",
51
+ "Point-and-shoot camera",
52
+ "Film camera",
53
+ "Medium format camera",
54
+ "Large format camera",
55
+ "Disposable camera",
56
+ "Instant camera",
57
+ "Rangefinder camera",
58
+ "Action camera",
59
+ "Drone camera",
60
+ "Smartphone camera",
61
+ "Go-Pro camera",
62
+ "Trail camera",
63
+ "Security camera",
64
+ "Underwater camera",
65
+ "Toy camera",
66
+ "Pinhole camera",
67
+ "Camera obscura",
68
+ "Holga camera"
69
+ ],
70
+ "material": [
71
+ "None",
72
+ "Made of acrylic",
73
+ "Made of bronze",
74
+ "Made of ceramic",
75
+ "Made of copper",
76
+ "Made of cotton",
77
+ "Made of leather",
78
+ "Made of linen",
79
+ "Made of gold",
80
+ "Made of iron",
81
+ "Made of marble",
82
+ "Made of nylon",
83
+ "Made of paper",
84
+ "Made of plastic",
85
+ "Made of rubber",
86
+ "Made of silver",
87
+ "Made of steel",
88
+ "Made of stone",
89
+ "Made of silk",
90
+ "Made of wool",
91
+ "Made of bamboo",
92
+ "Made of glass",
93
+ "Made of grass",
94
+ "Made of ice",
95
+ "Made of wood",
96
+ "Made of clay",
97
+ "Made of concrete",
98
+ "Made of crystal",
99
+ "Made of feather",
100
+ "Made of jute"
101
+ ],
102
+ "perspective": [
103
+ "None",
104
+ "Aerial perspective",
105
+ "Atmospheric perspective",
106
+ "Bird's-eye perspective",
107
+ "Close-up perspective",
108
+ "Dutch angle perspective",
109
+ "Fish-eye perspective",
110
+ "High angle perspective",
111
+ "Low angle perspective",
112
+ "Macro perspective",
113
+ "Normal perspective",
114
+ "Overhead perspective",
115
+ "Panoramic perspective",
116
+ "Point-of-view perspective",
117
+ "Rising angle perspective",
118
+ "Rule of thirds perspective",
119
+ "Side angle perspective",
120
+ "Slanted angle perspective",
121
+ "Top-down perspective",
122
+ "Trompe-l'œil perspective",
123
+ "Worm's-eye perspective"
124
+ ],
125
+ "medium": [
126
+ "None",
127
+ "Acrylic",
128
+ "Watercolor",
129
+ "Oil",
130
+ "Pastel",
131
+ "Pen and ink",
132
+ "Graphite",
133
+ "Charcoal",
134
+ "Colored pencil",
135
+ "Marker",
136
+ "Pencil crayon",
137
+ "Clay",
138
+ "Sculpture",
139
+ "Photography",
140
+ "Printmaking",
141
+ "Collage",
142
+ "Assemblage",
143
+ "Textile art",
144
+ "Digital art"
145
+ ],
146
+ "lighting": [
147
+ "None",
148
+ "Natural light",
149
+ "Cinematic lighting",
150
+ "Contre-jour lighting",
151
+ "Dramatic lighting",
152
+ "Tungsten light",
153
+ "Fluorescent light",
154
+ "Umbrella",
155
+ "Barn doors",
156
+ "Grid spot",
157
+ "Reflector",
158
+ "Lantern",
159
+ "Icicle lights",
160
+ "String lights",
161
+ "Neon lights",
162
+ "Flood light",
163
+ "Spot light",
164
+ "Stage light",
165
+ "Work light",
166
+ "Atmospheric lighting",
167
+ "Aurora borealis",
168
+ "Backlight",
169
+ "Backlit",
170
+ "Bioluminescence",
171
+ "Black light",
172
+ "Bright lighting",
173
+ "Campfire lighting",
174
+ "Candlelight",
175
+ "Crepuscular rays",
176
+ "Daylight",
177
+ "Dusk",
178
+ "Early morning",
179
+ "Full moon",
180
+ "Golden hour sunlight",
181
+ "Indoor lighting",
182
+ "Infrared lighting",
183
+ "Laser light",
184
+ "Late afternoon",
185
+ "Moonlight",
186
+ "Natural light",
187
+ "Nightlight",
188
+ "Pink light",
189
+ "Prismatic lighting",
190
+ "Rainbow lighting",
191
+ "Red light",
192
+ "Reflection",
193
+ "Side lighting",
194
+ "Stage lighting",
195
+ "Studio lighting",
196
+ "Sunset",
197
+ "Task lighting",
198
+ "Uplight",
199
+ "UV light",
200
+ "Warm lighting",
201
+ "White light"
202
+ ],
203
+ "rendering": [
204
+ "None",
205
+ "Unreal Engine",
206
+ "Unity",
207
+ "CryEngine",
208
+ "Source",
209
+ "Havok",
210
+ "GameMaker",
211
+ "Frostbite",
212
+ "RenderMan",
213
+ "Mudbox",
214
+ "Blender",
215
+ "3ds Max",
216
+ "Maya",
217
+ "Cinema 4D",
218
+ "Houdini",
219
+ "Arnold",
220
+ "V-Ray",
221
+ "Keyshot",
222
+ "Modo",
223
+ "ZBrush",
224
+ "Substance Designer"
225
+ ],
226
+ "artstyle": [
227
+ "None",
228
+ "Abstract Expressionism",
229
+ "Art Deco",
230
+ "Art Nouveau",
231
+ "Baroque",
232
+ "Classicism",
233
+ "Cubism",
234
+ "Dada",
235
+ "Expressionism",
236
+ "Fauvism",
237
+ "Futurism",
238
+ "Impressionism",
239
+ "Mannerism",
240
+ "Minimalism",
241
+ "Modernism",
242
+ "Neoclassicism",
243
+ "Post-Impressionism",
244
+ "Realism",
245
+ "Rococo",
246
+ "Romanticism",
247
+ "Surrealism",
248
+ "Symbolism"
249
+ ],
250
+ "painter": [
251
+ "None",
252
+ "by Vincent van Gogh",
253
+ "by Claude Monet",
254
+ "by Rembrandt",
255
+ "by Paul Cézanne",
256
+ "by Salvador Dali",
257
+ "by Pablo Picasso",
258
+ "by Henri Matisse",
259
+ "by Frida Kahlo",
260
+ "by Johannes Vermeer",
261
+ "by Leonardo da Vinci",
262
+ "by Michelangelo",
263
+ "by Edgar Degas",
264
+ "by Jan Vermeer",
265
+ "by Pierre-Auguste Renoir",
266
+ "by Gustav Klimt",
267
+ "by Edvard Munch",
268
+ "by Georgia O'Keeffe",
269
+ "by Henri de Toulouse-Lautrec",
270
+ "by Franz Marc",
271
+ "by Giovanni Bellini",
272
+ "by Hieronymus Bosch",
273
+ "by Grant Wood",
274
+ "by Edward Hopper",
275
+ "by Mary Cassatt",
276
+ "by Albrecht Dürer",
277
+ "by Paul Gauguin",
278
+ "by John Singer Sargent",
279
+ "by Titian",
280
+ "by Caravaggio",
281
+ "by Francisco Goya",
282
+ "by John Constable",
283
+ "by Caspar David Friedrich",
284
+ "by William Morris",
285
+ "by Pierre Bonnard",
286
+ "by Camille Pissarro",
287
+ "by Paul Klee",
288
+ "by Rene Magritte"
289
+ ]
290
+ }
presets/Remix.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "Anime": "21",
3
+ "Toon": "22",
4
+ "Realistic": "29"
5
+ }
presets/Remix2.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "None": "None",
3
+ "Base": "Base",
4
+ "Controlnet": "Controlnet"
5
+ }
presets/Size.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Square (1:1)": "1:1",
3
+ "Standard TV (4:3)": "4:3",
4
+ "35mm Film (3:2)": "3:2",
5
+ "Portrait (2:3)": "2:3",
6
+ "Widescreen TV (16:9)": "16:9",
7
+ "Portrait Wide (9:16)": "9:16",
8
+ "Medium Format (5:4)": "5:4",
9
+ "Portrait Medium (4:5)": "4:5",
10
+ "Panoramic (3:1)": "3:1",
11
+ "Portrait Standard (3:4)": "3:4",
12
+ "Widescreen Panoramic (12:5)": "12:5",
13
+ "Portrait Panoramic (5:12)": "5:12"
14
+ }
presets/V1.json ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "3D Game": {"prompt": "{prompt}, isometric 3d video game design, 3d game art, isometric game art, mobile game assets, fantasy video game, mobile game, 3d epic illustration, epic video game, stylized mobile game graphics", "negative_prompt": "{negative_prompt}"},
3
+ "Abstract Cityscape": {"prompt": "{prompt} abstract cityscape, Ultra Realistic Cinematic Light abstract, futuristic, cityscape, Out of focus background and incredible 16k resolution produced in Unreal Engine 5 and Octan render", "negative_prompt": "{negative_prompt}"},
4
+ "Abstract Vibrant": {"prompt": "{prompt}, vibrant, editorial, abstract elements, colorful, color splatter, realism, Inspired by the style of Ryan Hewett, dynamic realism, soft lighting and intricate details", "negative_prompt": "{negative_prompt}"},
5
+ "Amazonian": {"prompt": "{prompt}, amazonian cave, jungle, waterfall, moss-covered ancient ruins, Dramatic lighting and intense colors, mesmerizing details of the environment and breathtaking atmosphere", "negative_prompt": "{negative_prompt}"},
6
+ "Anime": {"prompt": "{prompt}, anime atmospheric, atmospheric anime, anime character; full body art, digital anime art, beautiful anime art style, anime picture, anime arts, beautiful anime style, digital advanced anime art, anime painting, anime artwork, beautiful anime art, detailed digital anime art, anime epic artwork", "negative_prompt": "{negative_prompt}"},
7
+ "Aquatic": {"prompt": "{prompt}, graceful movement with intricate details, inspired by artists like Lotte Reiniger, Carne Griffiths and Alphonse Mucha. Dreamy and surreal atmosphere, twirling in water surface", "negative_prompt": "{negative_prompt}"},
8
+ "Architecture": {"prompt": "{prompt}, modern architecture design, luxury architecture, bright, very beautiful, trending on unsplash, breath taking", "negative_prompt": "{negative_prompt}"},
9
+ "Avatar": {"prompt": "{prompt}, avatar movie, avatar with blue skin, vfx movie, cinematic lighting, utopian jungle, pandora jungle, sci-fi nether world, lost world, pandora fantasy, high quality render", "negative_prompt": "{negative_prompt}"},
10
+ "Bauhaus": {"prompt": "{prompt} Bauhaus art movement, by Wassily Kandinsky, bauhaus style painting, geometric abstraction, vibrant colors, painting", "negative_prompt": "{negative_prompt}"},
11
+ "Candyland": {"prompt": "{prompt}, candy land style, whimsical fantasy art, japanese pop surrealism, colorfull digital fantasy art, made of candy and lollypops, whimsical and dreamy", "negative_prompt": "{negative_prompt}"},
12
+ "Chromatic": {"prompt": "{prompt}, (((chromatic))) vaporwave nostalgia, vaporwave artwork, ((synthwave)), chromatic colors, , 3d render, vibrant chromatic colors, glowing chromatic colors", "negative_prompt": "{negative_prompt}"},
13
+ "Cinematic Render": {"prompt": "{prompt}, cinematic, breathtaking colors, close-up, cgscociety, computer rendering, by mike winkelmann, uhd, rendered in cinema4d, surface modeling, 8k, render octane, inspired by beksinski", "negative_prompt": "{negative_prompt}"},
14
+ "Claymation": {"prompt": "{prompt} clay animation, as a claymation character, claymation style, animation key shot, plasticine, clay animation, stopmotion animation, aardman character design, plasticine models", "negative_prompt": "{negative_prompt}"},
15
+ "Clip Art": {"prompt": "{prompt}, (((clip art))), clip art illustration, cartoon character, thin black stroke outline, pastel colors, cute illustration, vector illustration", "negative_prompt": "{negative_prompt}"},
16
+ "Coloring Book": {"prompt": "{prompt}, line art illustration, lineart behance hd, illustration line art style, line art colouring page, decora inspired illustrations, coloring pages, digital line-art, line art!!, thick line art, coloring book page, clean coloring book page, black ink line art, coloring page, detailed line art", "negative_prompt": "{negative_prompt}"},
17
+ "Comic Book": {"prompt": "{prompt}, Comic cover, 1960s marvel comic, comic book illustrations", "negative_prompt": "{negative_prompt}"},
18
+ "Comic V2": {"prompt": "{prompt}, comic book, john romita senior, inspired by Alton Tobey, by Alan Davis, arachnophobia, by Alton Tobey, as a panel of a marvel comic, marvel comic", "negative_prompt": "{negative_prompt}"},
19
+ "Cosmic": {"prompt": "{prompt}, in cosmic atmosphere, humanitys cosmic future, space art concept, scene in space, cosmic space, beautiful space star planet, background in space, realistic, cinematic, breathtaking view", "negative_prompt": "{negative_prompt}"},
20
+ "Crayon Art": {"prompt": "{prompt}, crayon drawing, inspired by Louis Valtat, inspired by Gabriele Münter, oil pastels, crayon on paper, crayon texture, crayon illustration, drawing done with crayons, pastel colors", "negative_prompt": "{negative_prompt}"},
21
+ "Cubism": {"prompt": "{prompt} cubist picasso, cubism, a cubist painting, heavy cubism, cubist painting, by Carlo Carrà, style of picasso, modern cubism, futuristic cubism", "negative_prompt": "{negative_prompt}"},
22
+ "Cyberpunk": {"prompt": "{prompt}, synthwave image, (neotokyo), dreamy colorful cyberpunk colors, cyberpunk blade runner art, retrofuturism, cyberpunk, beautiful cyberpunk style, cgsociety 9", "negative_prompt": "{negative_prompt}"},
23
+ "Disney": {"prompt": "{prompt}, disney animation, disney splash art, disney color palette, disney renaissance film, disney pixar movie still, disney art style, disney concept art, nixri, wonderful compositions, pixar, disney concept artists, 2d character design", "negative_prompt": "{negative_prompt}"},
24
+ "Dystopian": {"prompt": "{prompt}, cifi world, cybernetic civilizations, peter gric and dan mumford, brutalist dark futuristic, dystopian brutalist atmosphere, dark dystopian world, cinematic 8k, end of the world, doomsday", "negative_prompt": "{negative_prompt}"},
25
+ "Elven": {"prompt": "{prompt}, elven lifestyle, photoreal, realistic, 32k quality, crafted by Elves and engraved in copper, elven fantasy land, hyper detailed", "negative_prompt": "{negative_prompt}"},
26
+ "Euphoric": {"prompt": "{prompt}, digital illustration, style of charlie bowater, dreamy colorful cyberpunk colors, euphoric fantasy, epic dreamlike fantasy, beautiful oil matte painting, 8k fantasy art, fantasy art, jessica rossier color scheme, dreamlike diffusion", "negative_prompt": "{negative_prompt}"},
27
+ "Extra-terrestrial": {"prompt": "{prompt}, deepdream cosmic, painting by android jones, cosmic entity, humanoid creature, james jean soft light 4k, sci fi, extra terrestrial, cinematic", "negative_prompt": "{negative_prompt}"},
28
+ "Fantasy": {"prompt": "{prompt}, fantasy matte painting, ( ( thomas kinkade ) ), high exposure, highly detailed, tim white, michael whelan", "negative_prompt": "{negative_prompt}"},
29
+ "Firebender": {"prompt": "{prompt}, fire elements, fantasy, fire, lava, striking. A majestic composition with fire elements, fire and ashes surrounding, highly detailed and realistic, cinematic lighting", "negative_prompt": "{negative_prompt}"},
30
+ "Forestpunk": {"prompt": "{prompt}, forestpunk, vibrant, HDRI, organic motifs and pollen in the air, bold vibrant colors and textures, spectacular sparkling rays, photorealistic quality with Hasselblad", "negative_prompt": "{negative_prompt}"},
31
+ "Futuristic": {"prompt": "{prompt}, futuristic, elegant atmosphere, glowing lights, highly detailed, digital painting, artstation, concept art, smooth sharp focus, illustration, mars ravelo, gereg rutkowski", "negative_prompt": "{negative_prompt}"},
32
+ "GTA": {"prompt": "{prompt}, gta iv art style, gta art, gta loading screen art, gta chinatowon art style, gta 5 loading screen poster, grand theft auto 5, grand theft auto video game", "negative_prompt": "{negative_prompt}"},
33
+ "Glass Art": {"prompt": "{prompt}, inside glass ball, translucent sphere, cgsociety 9, glass orb, behance, polished, beautiful digital artwork, exquisite digital art, in a short round glass vase, octane render", "negative_prompt": "{negative_prompt}"},
34
+ "Glitch": {"prompt": "{prompt}, glitchwave, vaporwave pixel sorting, ((glitch art)), vektroid, glitch art aesthetic, psychedelic glitch art, glitch outline", "negative_prompt": "{negative_prompt}"},
35
+ "Gothic": {"prompt": "{prompt}, goth lifestyle, dark goth, grunge, cinematic photography, dramatic dark scenery, dark ambient beautiful", "negative_prompt": "{negative_prompt}"},
36
+ "Graffiti": {"prompt": "{prompt}, graffiti background, colorful graffiti, graffiti art style, colorful mural, ravi supa, symbolic mural, juxtapoz, pablo picasso, street art", "negative_prompt": "{negative_prompt}"},
37
+ "Halloween": {"prompt": "{prompt}, vibrant colors, halloween night, spooky aesthetic, creepy vibes, by Anne Stokes, digital painting style, illustration, bewitching, halloween, in a halloween style, dark theme, fearful atmosphere, supernatural, vibrant colors", "negative_prompt": "{negative_prompt}"},
38
+ "Haunted": {"prompt": "{prompt}, horror cgi 4 k, scary color art in 4 k, horror movie cinematography, insidious, la llorona, still from animated horror movie, film still from horror movie, haunted, eerie, unsettling, creepy", "negative_prompt": "{negative_prompt}"},
39
+ "Icon": {"prompt": "{prompt}, single vector graphics icon, ios icon, smooth shape, vector", "negative_prompt": "{negative_prompt}"},
40
+ "Illustration": {"prompt": "{prompt}, minimalistic vector art, illustrative style, style of ian hubert, style of gilles beloeil, inspired by Hsiao-Ron Cheng, style of jonathan solter, style of alexandre chaudret, by Echo Chernik", "negative_prompt": "{negative_prompt}"},
41
+ "Impressionism": {"prompt": "{prompt}, impressionism+++ , impressionist painting, style of claude monet, by Blanche Hoschedé Monet, impressionism and expressionism, impressionist art, monet painting", "negative_prompt": "{negative_prompt}"},
42
+ "Ink": {"prompt": "{prompt}, Black Ink, Hand drawn, Minimal art, artstation, artgem, monochrome", "negative_prompt": "{negative_prompt}"},
43
+ "Interior": {"prompt": "{prompt}, modern architecture by makoto shinkai, ilya kuvshinov, lois van baarle, rossdraws and frank lloyd wright", "negative_prompt": "{negative_prompt}"},
44
+ "Japanese Art": {"prompt": "{prompt}, Ukiyoe, illustration, muted colors", "negative_prompt": "{negative_prompt}"},
45
+ "Kawaii Chibi": {"prompt": "{prompt}, kawaii chibi romance, fantasy, illustration, Colorful idyllic cheerful, Kawaii Chibi inspired", "negative_prompt": "{negative_prompt}"},
46
+ "Knolling Case": {"prompt": "{prompt}, in square glass case, glass cube, glowing, knolling case, ash thorp, studio background, desktopography, cgsociety 9, cgsociety, mind-bending digital art", "negative_prompt": "{negative_prompt}"},
47
+ "Landscape": {"prompt": "{prompt}, landscape 4k, beautiful landscapes, nature wallpaper, 8k photography", "negative_prompt": "{negative_prompt}"},
48
+ "Logo": {"prompt": "{prompt}, creative logo, unique logo, visual identity, geometric type, graphic design, logotype design, brand identity, vector based, trendy typography, best of behance", "negative_prompt": "{negative_prompt}"},
49
+ "Macro Photography": {"prompt": "{prompt}, macro photography, award winning macro photography, depth of field, extreme closeup, 8k hd, focused", "negative_prompt": "{negative_prompt}"},
50
+ "Marble": {"prompt": "{prompt}, in greek marble style, classical antiquities, ancient greek classical ancient greek art, marble art, realistic, cinematic", "negative_prompt": "{negative_prompt}"},
51
+ "Medieval": {"prompt": "{prompt}, movie still from game of thrones, powerful fantasy epic, middle ages, olden times, roman empire, 1400 ce, highly detailed background, cinematic lighting, 8k render, high quality, bright colours", "negative_prompt": "{negative_prompt}"},
52
+ "Minecraft": {"prompt": "{prompt}, minecraft build, style of minecraft, pixel style, 8 bit, epic, cinematic, screenshot from minecraft, detailed natural lighting, minecraft gameplay, mojang, minecraft mods, minecraft in real life, blocky like minecraft", "negative_prompt": "{negative_prompt}"},
53
+ "Minimalism": {"prompt": "{prompt}, minimalism++ , minimal art, minimal aesthetic, minimal design, modern minimalism, minimal color palette, beautiful art, minimal vibes", "negative_prompt": "{negative_prompt}"},
54
+ "Mystical": {"prompt": "{prompt}, fireflies, deep focus, d&d, fantasy, intricate, elegant, highly detailed, digital painting, artstation, concept art, matte, sharp focus, illustration, hearthstrom, gereg rutkowski, alphonse mucha, andreas rocha", "negative_prompt": "{negative_prompt}"},
55
+ "Neo fauvism": {"prompt": "{prompt}, neo-fauvism painting, neo-fauvism movement, digital illustration, poster art, cgsociety saturated colors, fauvist", "negative_prompt": "{negative_prompt}"},
56
+ "Neon": {"prompt": "{prompt}, neon art style, night time dark with neon colors, blue neon lighting, violet and aqua neon lights, blacklight neon colors, rococo cyber neon lighting", "negative_prompt": "{negative_prompt}"},
57
+ "Origami": {"prompt": "{prompt} polygonal art, layered paper art, paper origami, wonderful compositions, folded geometry, paper craft, made from paper", "negative_prompt": "{negative_prompt}"},
58
+ "Painting": {"prompt": "{prompt}, atmospheric dreamscape painting, by Mac Conner, vibrant gouache painting scenery, vibrant painting, vivid painting, a beautiful painting, dream scenery art, instagram art, psychedelic painting, lofi art, bright art", "negative_prompt": "{negative_prompt}"},
59
+ "Palette Knife": {"prompt": "{prompt}, detailed impasto brush strokes, detail acrylic palette knife, thick impasto technique, palette knife, vibrant 8k colors", "negative_prompt": "{negative_prompt}"},
60
+ "PaperCut Style": {"prompt": "{prompt}, layered paper art, paper modeling art, paper craft, paper art, papercraft, paper cutout, paper cut out collage artwork, paper cut art", "negative_prompt": "{negative_prompt}"},
61
+ "Pattern": {"prompt": "{prompt} seamless pattern, ((repetitive pattern)), pattern design, background image, wallpaper, colorful, decorated, flat design", "negative_prompt": "{negative_prompt}"},
62
+ "Picaso": {"prompt": "{prompt}, painting, by pablo picaso, cubism", "negative_prompt": "{negative_prompt}"},
63
+ "Pixel Art": {"prompt": "{prompt}, one pixel brush, pixelart, colorful pixel art", "negative_prompt": "{negative_prompt}"},
64
+ "Polaroid": {"prompt": "{prompt}, old polaroid, 35mm", "negative_prompt": "{negative_prompt}"},
65
+ "Poly Art": {"prompt": "{prompt}, low poly, artstation, studio lightning, stainless steel, grey color scheme", "negative_prompt": "{negative_prompt}"},
66
+ "Pop Art": {"prompt": "{prompt}, pop art painting, detailed patterns pop art, silkscreen pop art, pop art poster, roy lichtenstein style", "negative_prompt": "{negative_prompt}"},
67
+ "Pop Art II": {"prompt": "{prompt}, style of shepherd fairey, (Andy Warhol art style), silkscreen pop art, martin ansin artwork, high contrast illustrations, lowbrow pop art style, trending on artstatioin, vector style", "negative_prompt": "{negative_prompt}"},
68
+ "Poster Art": {"prompt": "{prompt}, album art, Poster, layout, typography, logo, risography, ghibili, simon stalenhag, insane detail, artstation, 8k", "negative_prompt": "{negative_prompt}"},
69
+ "Product Photography": {"prompt": "{prompt}, product photo studio lighting, high detail product photo, product photography, commercial product photography, realistic, light, 8k, award winning product photography, professional closeup", "negative_prompt": "{negative_prompt}"},
70
+ "Psychedelic": {"prompt": "{prompt}, psychedelic painting, psychedelic dripping colors, colorful detailed projections, android jones and chris dyer, psychedelic vibrant colors, intricate psychedelic patterns, psychedelic visuals, hallucinatory art", "negative_prompt": "{negative_prompt}"},
71
+ "Rainbow": {"prompt": "{prompt}, intricate rainbow environment, rainbow bg, from lorax movie, pixar color palette, volumetric rainbow lighting, gorgeous digital painting, 8k cinematic", "negative_prompt": "{negative_prompt}"},
72
+ "Render": {"prompt": "{prompt}, isometric, polaroid octane render, 3 d render 1 5 0 mm lens, keyshot product render, rendered, keyshot product render pinterest, 3 d product render, 3 d cgi render, 3d cgi render, ultra wide angle isometric view", "negative_prompt": "{negative_prompt}"},
73
+ "Rennaisance": {"prompt": "{prompt}, renaissance period, neo-classical painting, italian renaissance workshop, pittura metafisica, raphael high renaissance, ancient roman painting, michelangelo painting, Leonardo da Vinci, italian renaissance architecture", "negative_prompt": "{negative_prompt}"},
74
+ "Retro": {"prompt": "{prompt}, retro futuristic illustration, featured on illustrationx, art deco illustration, beautiful retro art, stylized digital illustration, highly detailed vector art, ( ( mads berg ) ), automotive design art, epic smooth illustration, by mads berg, stylized illustration, ash thorp khyzyl saleem, clean vector art", "negative_prompt": "{negative_prompt}"},
75
+ "Retrowave": {"prompt": "{prompt}, Illustration, retrowave art, noen light, retro, digital art, trending on artstation", "negative_prompt": "{negative_prompt}"},
76
+ "Rococco": {"prompt": "{prompt}, francois boucher oil painting, rococco style, rococco lifestyle, a flemish Baroque, by Karel Dujardin, vintage look, cinematic hazy lighting", "negative_prompt": "{negative_prompt}"},
77
+ "Salvador Dali": {"prompt": "{prompt}, Painting, by salvador dali, allegory, surrealism, religious art, genre painting, portrait, painter, still life", "negative_prompt": "{negative_prompt}"},
78
+ "Samurai": {"prompt": "{prompt}, samurai lifesyle, miyamoto musashi, Japanese art, ancient japanese samurai, feudal japan art, feudal japan art", "negative_prompt": "{negative_prompt}"},
79
+ "Scatter": {"prompt": "{prompt}, breaking pieces, exploding pieces, shattering pieces, disintegration, contemporary digital art, inspired by Dan Hillier, inspired by Igor Morski, dramatic digital art, behance art, cgsociety 9, 3d advanced digital art, mind-bending digital art, disintegrating", "negative_prompt": "{negative_prompt}"},
80
+ "Shamrock Fantasy": {"prompt": "{prompt}, shamrock fantasy, fantasy, vivid colors, grapevine, celtic fantasy art, lucky clovers, dreamlike atmosphere, captivating details, soft light and vivid colors", "negative_prompt": "{negative_prompt}"},
81
+ "Sketch": {"prompt": "{prompt}, pencil, hand drawn, sketch, on paper", "negative_prompt": "{negative_prompt}"},
82
+ "Stained Glass": {"prompt": "{prompt} intricate wiccan spectrum, stained glass art, vividly beautiful colors, beautiful stained glass window, colorful image, intricate stained glass triptych, gothic stained glass style, stained glass window!!!", "negative_prompt": "{negative_prompt}"},
83
+ "Steampunk": {"prompt": "{prompt}, steampunk, stylized digital illustration, sharp focus, elegant, intricate, digital painting, artstation concept art, global illumination, ray tracing, advanced technology, chaykan howard, campion pascal, cooke darwin, davis jack, pink atmosphere", "negative_prompt": "{negative_prompt}"},
84
+ "Sticker": {"prompt": "{prompt}, sticker, sticker art, symmetrical sticker design, sticker - art, sticker illustration, die - cut sticker", "negative_prompt": "{negative_prompt}"},
85
+ "Studio Ghibli": {"prompt": "{prompt} by Hayao Mayazaki, Studio Ghibli, Studio Ghibli Style, Ghibli Style art, Ghibli Style characters, cartoon style, beautifully rendered and expressive rich colors, vibrant pastel colors, imaginative and fantastical landscapes, sharp attention to detail, realism and a strong sense of nostalgia and warmth, sharp attention to small details and textures, fantastical creatures, settings, depth and emotions emphasized and accentuated by lighting and shading, extremely high quality, incredibly high finite definition, high resolution, hand-drawn and cel animation techniques, anime, 4k", "negative_prompt": "{negative_prompt}"},
86
+ "Surrealism": {"prompt": "{prompt}, salvador dali painting, highly detailed surrealist art, surrealist conceptual art, masterpiece surrealism, surreal architecture, surrealistic digital artwork, whimsical surrealism, bizarre art", "negative_prompt": "{negative_prompt}"},
87
+ "Tattoo": {"prompt": "{prompt}, tattoo design, tattoo designs++ , black ink tattoo, line art, extraordinary designs, artistic tattoos, black and white tattoo, impressive, graphic illustrations, tattoo on skin, creative designs, vibrant colors, unique tattoos", "negative_prompt": "{negative_prompt}"},
88
+ "Valentines Day": {"prompt": "{prompt}, valentines Day, love, pink and red theme, Valentine aesthetic, roses, chocolates, love in the air, vibrant colors, hyper-realistic, creative artwork", "negative_prompt": "{negative_prompt}"},
89
+ "Van Gogh": {"prompt": "{prompt}, painting, by van gogh", "negative_prompt": "{negative_prompt}"},
90
+ "Vibrant": {"prompt": "{prompt}, Psychedelic, water colors spots, vibrant color scheme, highly detailed, romanticism style, cinematic, artstation, greg rutkowski", "negative_prompt": "{negative_prompt}"},
91
+ "Vibrant Viking": {"prompt": "{prompt}, Viking era, digital painting, pop of colour, forest, paint splatter, flowing colors, Background of lush forest and earthy tones, Artistic representation of movement and atmosphere", "negative_prompt": "{negative_prompt}"},
92
+ "Waterbender": {"prompt": "{prompt} water elements, fantasy, water, exotic, A majestic composition with water elements, waterfall, lush moss and exotic flowers, highly detailed and realistic, dynamic lighting", "negative_prompt": "{negative_prompt}"},
93
+ "Woolitize": {"prompt": "{prompt} cute! c4d, made out of wool, volumetric wool felting, wool felting art, houdini sidefx, rendered in arnold, soft smooth lighting, soft pastel colors", "negative_prompt": ""}
94
+ }
presets/V2.json ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "1980s Anime Art": {"prompt": "(1980s anime, cinematic, aesthetic, wow) anime illustration of {prompt}", "negative_prompt": "{negative_prompt}, cgi, render, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
3
+ "1980s Anime Screencap": {"prompt": "dvd screengrab from a 1980s anime film, low resolution. A low quality 80's anime movie screengrab of {prompt}", "negative_prompt": "{negative_prompt}, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
4
+ "1990s Yearbook": {"prompt": "Photo of a {prompt} in high school yearbook photoshoot, simple colored background. a high school yearbook photo from the 1988. retro look style.", "negative_prompt": "{negative_prompt}, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
5
+ "Ghibli Character": {"prompt": "anime, studio ghibli, {prompt}, standing, simple background", "negative_prompt": "{negative_prompt}, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
6
+ "DVD Screengrab": {"prompt": "dvd screengrab from a 1980s film, low resolution. A low quality movie screengrab of {prompt}", "negative_prompt": "{negative_prompt}, cgi, render, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
7
+ "Vintage Japanese Poster": {"prompt": "beautiful classic japanese anime movie poster of {prompt}, japanese poster title, vintage", "negative_prompt": "{negative_prompt}, cgi, render, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
8
+ "Satin Sportsuit": {"prompt": "{prompt} wearing satin sportsuit, sporty and rich, canon dslr, night street, rim light, raytraced lighting", "negative_prompt": "{negative_prompt}, deformed, bad anatomy, disfigured, poorly drawn face, mutated, extra limb, ugly, poorly drawn hands, missing limb, floating limbs, disconnected limbs, disconnected head, malformed hands, long neck, mutated hands and fingers, bad hands, missing fingers, cropped, worst quality, low quality, mutation, poorly drawn, huge calf, bad hands, fused hand, missing hand, disappearing arms, disappearing thigh, disappearing calf, disappearing legs, missing fingers, fused fingers, abnormal eye proportion, Abnormal hands, abnormal legs, abnormal feet, abnormal fingers, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch"},
9
+ "Cinematic Dynamic": {"prompt": "epic cinematic shot of dynamic {prompt} in motion. main subject of high budget action movie. raw photo, motion blur. best quality, high resolution", "negative_prompt": "{negative_prompt}, static, still, motionless, sluggish. drawing, painting, illustration, rendered. low budget. low quality, low resolution"},
10
+ "Spontaneous Picture": {"prompt": "spontaneous picture of {prompt}, taken by talented amateur. best quality, high resolution. magical moment, natural look. simple but good looking", "negative_prompt": "{negative_prompt}, overthinked. low quality, low resolution"},
11
+ "Artistic Vision": {"prompt": "powerful artistic vision of {prompt}. breathtaking masterpiece made by great artist. best quality, high resolution", "negative_prompt": "{negative_prompt}, insignificant, flawed, made by bad artist. low quality, low resolution"},
12
+ "Dark Dream": {"prompt": "dark and unsettling dream showing {prompt}. best quality, high resolution. created by genius but depressed mad artist. grim beauty", "negative_prompt": "{negative_prompt}, naive, cheerful. comfortable, casual, boring, cliche. low quality, low resolution"},
13
+ "Gloomy Art": {"prompt": "astonishing gloomy art made mainly of shadows and lighting, forming {prompt}. masterful usage of lighting, shadows and chiaroscuro. made by black-hearted artist, drawing from darkness. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
14
+ "Bad Dream": {"prompt": "picture from really bad dream about terrifying {prompt}, true horror. bone-chilling vision. mad world that shouldn't exist. best quality, high resolution", "negative_prompt": "{negative_prompt}, nice dream, pleasant experience. low quality, low resolution"},
15
+ "Underground": {"prompt": "uncanny caliginous vision of {prompt}, created by remarkable underground artist. best quality, high resolution. raw and brutal art, careless but impressive style. inspired by darkness and chaos", "negative_prompt": "{negative_prompt}, photography, mainstream, civilized. low quality, low resolution"},
16
+ "Surreal Painting": {"prompt": "surreal painting representing strange vision of {prompt}. harmonious madness, synergy with chance. unique artstyle, mindbending art, magical surrealism. best quality, high resolution", "negative_prompt": "{negative_prompt}, photography, illustration, drawing. realistic, possible. logical, sane. low quality, low resolution"},
17
+ "Dynamic Illustration": {"prompt": "insanely dynamic illustration of {prompt}. best quality, high resolution. crazy artstyle, careless brushstrokes, emotional and fun", "negative_prompt": "{negative_prompt}, photography, realistic. static, still, slow, boring. low quality, low resolution"},
18
+ "Undead Art": {"prompt": "long forgotten art created by undead artist illustrating {prompt}, tribute to the death and decay. miserable art of the damned. wretched and decaying world. best quality, high resolution", "negative_prompt": "{negative_prompt}, alive, playful, living. low quality, low resolution"},
19
+ "Elemental Art": {"prompt": "art illustrating insane amounts of raging elemental energy turning into {prompt}, avatar of elements. magical surrealism, wizardry. best quality, high resolution", "negative_prompt": "{negative_prompt}, photography, realistic, real. low quality, low resolution"},
20
+ "Space Art": {"prompt": "winner of inter-galactic art contest illustrating {prompt}, symbol of the interstellar singularity. best quality, high resolution. artstyle previously unseen in the whole galaxy", "negative_prompt": "{negative_prompt}, created by human race, low quality, low resolution"},
21
+ "Ancient Illustration": {"prompt": "sublime ancient illustration of {prompt}, predating human civilization. crude and simple, but also surprisingly beautiful artwork, made by genius primeval artist. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
22
+ "Brave Art": {"prompt": "brave, shocking, and brutally true art showing {prompt}. inspired by courage and unlimited creativity. truth found in chaos. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
23
+ "Heroic Fantasy": {"prompt": "heroic fantasy painting of {prompt}, in the dangerous fantasy world. airbrush over oil on canvas. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
24
+ "Dark Cyberpunk": {"prompt": "dark cyberpunk illustration of brutal {prompt} in a world without hope, ruled by ruthless criminal corporations. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
25
+ "Lyrical Geometry": {"prompt": "geometric and lyrical abstraction painting presenting {prompt}. oil on metal. best quality, high resolution", "negative_prompt": "{negative_prompt}, photography, realistic, drawing, rendered. low quality, low resolution"},
26
+ "Sumi-E Symbolic": {"prompt": "big long brushstrokes of deep black sumi-e turning into symbolic painting of {prompt}. master level raw art. best quality, high resolution", "negative_prompt": "{negative_prompt}, photography, rendered. low quality, low resolution"},
27
+ "Sumi-E Detailed": {"prompt": "highly detailed black sumi-e painting of {prompt}. in-depth study of perfection, created by a master. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
28
+ "Manga II": {"prompt": "manga artwork presenting {prompt}. created by japanese manga artist. highly emotional. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
29
+ "Anime II": {"prompt": "anime artwork illustrating {prompt}. created by japanese anime studio. highly emotional. best quality, high resolution", "negative_prompt": "{negative_prompt}, low quality, low resolution"},
30
+ "Comic II": {"prompt": "breathtaking illustration from adult comic book presenting {prompt}. fabulous artwork. best quality, high resolution", "negative_prompt": "{negative_prompt}, deformed, ugly, low quality, low resolution"},
31
+ "3D Model": {"prompt": "professional 3d model {prompt} . octane render, highly detailed, volumetric, dramatic lighting", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, low poly, blurry, painting"},
32
+ "Analog Film": {"prompt": "analog film photo {prompt} . faded film, desaturated, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage", "negative_prompt": "{negative_prompt}, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"},
33
+ "Anime": {"prompt": "anime artwork {prompt} . anime style, key visual, vibrant, studio anime, highly detailed", "negative_prompt": "{negative_prompt}, photo, deformed, black and white, realism, disfigured, low contrast"},
34
+ "Cinematic": {"prompt": "cinematic film still {prompt} . shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy", "negative_prompt": "{negative_prompt}, anime, cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured"},
35
+ "Comic Book": {"prompt": "comic {prompt} . graphic illustration, comic art, graphic novel art, vibrant, highly detailed", "negative_prompt": "{negative_prompt}, photograph, deformed, glitch, noisy, realistic, stock photo"},
36
+ "Craft Clay": {"prompt": "play-doh style {prompt} . sculpture, clay art, centered composition, Claymation", "negative_prompt": "{negative_prompt}, sloppy, messy, grainy, highly detailed, ultra textured, photo"},
37
+ "Digital Art": {"prompt": "concept art {prompt} . digital artwork, illustrative, painterly, matte painting, highly detailed", "negative_prompt": "{negative_prompt}, photo, photorealistic, realism, ugly"},
38
+ "Disney Character": {"prompt": "A Pixar animation character of {prompt} . pixar-style, studio anime, Disney, high-quality", "negative_prompt": "{negative_prompt}, lowres, bad anatomy, bad hands, text, bad eyes, bad arms, bad legs, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, blurry, grayscale, noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"},
39
+ "Enhance": {"prompt": "breathtaking {prompt} . award-winning, professional, highly detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, distorted, grainy"},
40
+ "Fantasy Art": {"prompt": "ethereal fantasy concept art of {prompt} . magnificent, celestial, ethereal, painterly, epic, majestic, magical, fantasy art, cover art, dreamy", "negative_prompt": "{negative_prompt}, photographic, realistic, realism, 35mm film, dslr, cropped, frame, text, deformed, glitch, noise, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, sloppy, duplicate, mutated, black and white"},
41
+ "Isometric": {"prompt": "isometric style {prompt} . vibrant, beautiful, crisp, detailed, ultra detailed, intricate", "negative_prompt": "{negative_prompt}, deformed, mutated, ugly, disfigured, blur, blurry, noise, noisy, realistic, photographic"},
42
+ "Line Art": {"prompt": "line art drawing {prompt} . professional, sleek, modern, minimalist, graphic, line art, vector graphics", "negative_prompt": "{negative_prompt}, anime, photorealistic, 35mm film, deformed, glitch, blurry, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, mutated, realism, realistic, impressionism, expressionism, oil, acrylic"},
43
+ "Lowpoly": {"prompt": "low-poly style {prompt} . low-poly game art, polygon mesh, jagged, blocky, wireframe edges, centered composition", "negative_prompt": "{negative_prompt}, noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"},
44
+ "Neonpunk": {"prompt": "neonpunk style {prompt} . cyberpunk, vaporwave, neon, vibes, vibrant, stunningly beautiful, crisp, detailed, sleek, ultramodern, magenta highlights, dark purple shadows, high contrast, cinematic, ultra detailed, intricate, professional", "negative_prompt": "{negative_prompt}, painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured"},
45
+ "Origami": {"prompt": "origami style {prompt} . paper art, pleated paper, folded, origami art, pleats, cut and fold, centered composition", "negative_prompt": "{negative_prompt}, noisy, sloppy, messy, grainy, highly detailed, ultra textured, photo"},
46
+ "Photographic": {"prompt": "cinematic photo {prompt} . 35mm photograph, film, bokeh, professional, 4k, highly detailed", "negative_prompt": "{negative_prompt}, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly"},
47
+ "Pixel Art": {"prompt": "pixel-art {prompt} . low-res, blocky, pixel art style, 8-bit graphics", "negative_prompt": "{negative_prompt}, sloppy, messy, blurry, noisy, highly detailed, ultra textured, photo, realistic"},
48
+ "Texture": {"prompt": "texture {prompt} top down close-up", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry"},
49
+ "Advertising": {"prompt": "advertising poster style {prompt} . Professional, modern, product-focused, commercial, eye-catching, highly detailed", "negative_prompt": "{negative_prompt}, noisy, blurry, amateurish, sloppy, unattractive"},
50
+ "Automotive": {"prompt": "automotive advertisement style {prompt} . sleek, dynamic, professional, commercial, vehicle-focused, high-resolution, highly detailed", "negative_prompt": "{negative_prompt}, noisy, blurry, unattractive, sloppy, unprofessional"},
51
+ "Corporate": {"prompt": "corporate branding style {prompt} . professional, clean, modern, sleek, minimalist, business-oriented, highly detailed", "negative_prompt": "{negative_prompt}, noisy, blurry, grungy, sloppy, cluttered, disorganized"},
52
+ "Fashion Editorial": {"prompt": "fashion editorial style {prompt} . high fashion, trendy, stylish, editorial, magazine style, professional, highly detailed", "negative_prompt": "{negative_prompt}, outdated, blurry, noisy, unattractive, sloppy"},
53
+ "Food Photography": {"prompt": "food photography style {prompt} . appetizing, professional, culinary, high-resolution, commercial, highly detailed", "negative_prompt": "{negative_prompt}, unappetizing, sloppy, unprofessional, noisy, blurry"},
54
+ "Gourmet Food Photography": {"prompt": "gourmet food photo of {prompt} . soft natural lighting, macro details, vibrant colors, fresh ingredients, glistening textures, bokeh background, styled plating, wooden tabletop, garnished, tantalizing, editorial quality", "negative_prompt": "{negative_prompt}, cartoon, anime, sketch, grayscale, dull, overexposed, cluttered, messy plate, deformed"},
55
+ "Luxury": {"prompt": "luxury product style {prompt} . elegant, sophisticated, high-end, luxurious, professional, highly detailed", "negative_prompt": "{negative_prompt}, cheap, noisy, blurry, unattractive, amateurish"},
56
+ "Real Estate": {"prompt": "real estate photography style {prompt} . professional, inviting, well-lit, high-resolution, property-focused, commercial, highly detailed", "negative_prompt": "{negative_prompt}, dark, blurry, unappealing, noisy, unprofessional"},
57
+ "Retail": {"prompt": "retail packaging style {prompt} . vibrant, enticing, commercial, product-focused, eye-catching, professional, highly detailed", "negative_prompt": "{negative_prompt}, noisy, blurry, amateurish, sloppy, unattractive"},
58
+ "Abstract": {"prompt": "abstract style {prompt} . non-representational, colors and shapes, expression of feelings, imaginative, highly detailed", "negative_prompt": "{negative_prompt}, realistic, photographic, figurative, concrete"},
59
+ "Abstract Expressionism": {"prompt": "abstract expressionist painting {prompt} . energetic brushwork, bold colors, abstract forms, expressive, emotional", "negative_prompt": "{negative_prompt}, realistic, photorealistic, low contrast, plain, simple, monochrome"},
60
+ "Art Deco": {"prompt": "art deco style {prompt} . geometric shapes, bold colors, luxurious, elegant, decorative, symmetrical, ornate, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"},
61
+ "Art Nouveau": {"prompt": "art nouveau style {prompt} . elegant, decorative, curvilinear forms, nature-inspired, ornate, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, modernist, minimalist"},
62
+ "Constructivist": {"prompt": "constructivist style {prompt} . geometric shapes, bold colors, dynamic composition, propaganda art style", "negative_prompt": "{negative_prompt}, realistic, photorealistic, low contrast, plain, simple, abstract expressionism"},
63
+ "Cubist": {"prompt": "cubist artwork {prompt} . geometric shapes, abstract, innovative, revolutionary", "negative_prompt": "{negative_prompt}, anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"},
64
+ "Expressionist": {"prompt": "expressionist {prompt} . raw, emotional, dynamic, distortion for emotional effect, vibrant, use of unusual colors, detailed", "negative_prompt": "{negative_prompt}, realism, symmetry, quiet, calm, photo"},
65
+ "Graffiti": {"prompt": "graffiti style {prompt} . street art, vibrant, urban, detailed, tag, mural", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"},
66
+ "Hyperrealism": {"prompt": "hyperrealistic art {prompt} . extremely high-resolution details, photographic, realism pushed to extreme, fine texture, incredibly lifelike", "negative_prompt": "{negative_prompt}, simplified, abstract, unrealistic, impressionistic, low resolution"},
67
+ "Impressionist": {"prompt": "impressionist painting {prompt} . loose brushwork, vibrant color, light and shadow play, captures feeling over form", "negative_prompt": "{negative_prompt}, anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"},
68
+ "Pointillism": {"prompt": "pointillism style {prompt} . composed entirely of small, distinct dots of color, vibrant, highly detailed", "negative_prompt": "{negative_prompt}, line drawing, smooth shading, large color fields, simplistic"},
69
+ "Pop Art": {"prompt": "pop Art style {prompt} . bright colors, bold outlines, popular culture themes, ironic or kitsch", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, minimalist"},
70
+ "Psychedelic": {"prompt": "psychedelic style {prompt} . vibrant colors, swirling patterns, abstract forms, surreal, trippy", "negative_prompt": "{negative_prompt}, monochrome, black and white, low contrast, realistic, photorealistic, plain, simple"},
71
+ "Renaissance": {"prompt": "renaissance style {prompt} . realistic, perspective, light and shadow, religious or mythological themes, highly detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, modernist, minimalist, abstract"},
72
+ "Steampunk": {"prompt": "steampunk style {prompt} . antique, mechanical, brass and copper tones, gears, intricate, detailed", "negative_prompt": "{negative_prompt}, deformed, glitch, noisy, low contrast, anime, photorealistic"},
73
+ "Surrealist": {"prompt": "surrealist art {prompt} . dreamlike, mysterious, provocative, symbolic, intricate, detailed", "negative_prompt": "{negative_prompt}, anime, photorealistic, realistic, deformed, glitch, noisy, low contrast"},
74
+ "Typography": {"prompt": "typographic art {prompt} . stylized, intricate, detailed, artistic, text-based", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"},
75
+ "Watercolor": {"prompt": "watercolor painting {prompt} . vibrant, beautiful, painterly, detailed, textural, artistic", "negative_prompt": "{negative_prompt}, anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"},
76
+ "Biomechanical": {"prompt": "biomechanical style {prompt} . blend of organic and mechanical elements, futuristic, cybernetic, detailed, intricate", "negative_prompt": "{negative_prompt}, natural, rustic, primitive, organic, simplistic"},
77
+ "Biomechanical Cyberpunk": {"prompt": "biomechanical cyberpunk {prompt} . cybernetics, human-machine fusion, dystopian, organic meets artificial, dark, intricate, highly detailed", "negative_prompt": "{negative_prompt}, natural, colorful, deformed, sketch, low contrast, watercolor"},
78
+ "Cybernetic": {"prompt": "cybernetic style {prompt} . futuristic, technological, cybernetic enhancements, robotics, artificial intelligence themes", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"},
79
+ "Cybernetic Robot": {"prompt": "cybernetic robot {prompt} . android, AI, machine, metal, wires, tech, futuristic, highly detailed", "negative_prompt": "{negative_prompt}, organic, natural, human, sketch, watercolor, low contrast"},
80
+ "Cyberpunk Cityscape": {"prompt": "cyberpunk cityscape {prompt} . neon lights, dark alleys, skyscrapers, futuristic, vibrant colors, high contrast, highly detailed", "negative_prompt": "{negative_prompt}, natural, rural, deformed, low contrast, black and white, sketch, watercolor"},
81
+ "Futuristic": {"prompt": "futuristic style {prompt} . sleek, modern, ultramodern, high tech, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vintage, antique"},
82
+ "Retro Cyberpunk": {"prompt": "retro cyberpunk {prompt} . 80's inspired, synthwave, neon, vibrant, detailed, retro futurism", "negative_prompt": "{negative_prompt}, modern, desaturated, black and white, realism, low contrast"},
83
+ "Retro Futurism": {"prompt": "retro-futuristic {prompt} . vintage sci-fi, 50s and 60s style, atomic age, vibrant, highly detailed", "negative_prompt": "{negative_prompt}, contemporary, realistic, rustic, primitive"},
84
+ "Sci-Fi": {"prompt": "sci-fi style {prompt} . futuristic, technological, alien worlds, space themes, advanced civilizations", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, historical, medieval"},
85
+ "Vaporwave": {"prompt": "vaporwave style {prompt} . retro aesthetic, cyberpunk, vibrant, neon colors, vintage 80s and 90s style, highly detailed", "negative_prompt": "{negative_prompt}, monochrome, muted colors, realism, rustic, minimalist, dark"},
86
+ "Bubble Bobble": {"prompt": "Bubble Bobble style {prompt} . 8-bit, cute, pixelated, fantasy, vibrant, reminiscent of Bubble Bobble game", "negative_prompt": "{negative_prompt}, realistic, modern, photorealistic, violent, horror"},
87
+ "Cyberpunk Game": {"prompt": "cyberpunk game style {prompt} . neon, dystopian, futuristic, digital, vibrant, detailed, high contrast, reminiscent of cyberpunk genre video games", "negative_prompt": "{negative_prompt}, historical, natural, rustic, low detailed"},
88
+ "Fighting Game": {"prompt": "fighting game style {prompt} . dynamic, vibrant, action-packed, detailed character design, reminiscent of fighting video games", "negative_prompt": "{negative_prompt}, peaceful, calm, minimalist, photorealistic"},
89
+ "GTA": {"prompt": "GTA-style artwork {prompt} . satirical, exaggerated, pop art style, vibrant colors, iconic characters, action-packed", "negative_prompt": "{negative_prompt}, realistic, black and white, low contrast, impressionist, cubist, noisy, blurry, deformed"},
90
+ "Mario": {"prompt": "Super Mario style {prompt} . vibrant, cute, cartoony, fantasy, playful, reminiscent of Super Mario series", "negative_prompt": "{negative_prompt}, realistic, modern, horror, dystopian, violent"},
91
+ "Minecraft": {"prompt": "Minecraft style {prompt} . blocky, pixelated, vibrant colors, recognizable characters and objects, game assets", "negative_prompt": "{negative_prompt}, smooth, realistic, detailed, photorealistic, noise, blurry, deformed"},
92
+ "Pokemon": {"prompt": "Pokémon style {prompt} . vibrant, cute, anime, fantasy, reminiscent of Pokémon series", "negative_prompt": "{negative_prompt}, realistic, modern, horror, dystopian, violent"},
93
+ "Retro Arcade": {"prompt": "retro arcade style {prompt} . 8-bit, pixelated, vibrant, classic video game, old school gaming, reminiscent of 80s and 90s arcade games", "negative_prompt": "{negative_prompt}, modern, ultra-high resolution, photorealistic, 3D"},
94
+ "Retro Game": {"prompt": "retro game art {prompt} . 16-bit, vibrant colors, pixelated, nostalgic, charming, fun", "negative_prompt": "{negative_prompt}, realistic, photorealistic, 35mm film, deformed, glitch, low contrast, noisy"},
95
+ "RPG Fantasy Game": {"prompt": "role-playing game (RPG) style fantasy {prompt} . detailed, vibrant, immersive, reminiscent of high fantasy RPG games", "negative_prompt": "{negative_prompt}, sci-fi, modern, urban, futuristic, low detailed"},
96
+ "Strategy Game": {"prompt": "strategy game style {prompt} . overhead view, detailed map, units, reminiscent of real-time strategy video games", "negative_prompt": "{negative_prompt}, first-person view, modern, photorealistic"},
97
+ "Streetfighter": {"prompt": "Street Fighter style {prompt} . vibrant, dynamic, arcade, 2D fighting game, highly detailed, reminiscent of Street Fighter series", "negative_prompt": "{negative_prompt}, 3D, realistic, modern, photorealistic, turn-based strategy"},
98
+ "Zelda": {"prompt": "Legend of Zelda style {prompt} . vibrant, fantasy, detailed, epic, heroic, reminiscent of The Legend of Zelda series", "negative_prompt": "{negative_prompt}, sci-fi, modern, realistic, horror"},
99
+ "Architectural": {"prompt": "architectural style {prompt} . clean lines, geometric shapes, minimalist, modern, architectural drawing, highly detailed", "negative_prompt": "{negative_prompt}, curved lines, ornate, baroque, abstract, grunge"},
100
+ "Disco": {"prompt": "disco-themed {prompt} . vibrant, groovy, retro 70s style, shiny disco balls, neon lights, dance floor, highly detailed", "negative_prompt": "{negative_prompt}, minimalist, rustic, monochrome, contemporary, simplistic"},
101
+ "Dreamscape": {"prompt": "dreamscape {prompt} . surreal, ethereal, dreamy, mysterious, fantasy, highly detailed", "negative_prompt": "{negative_prompt}, realistic, concrete, ordinary, mundane"},
102
+ "Dystopian": {"prompt": "dystopian style {prompt} . bleak, post-apocalyptic, somber, dramatic, highly detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, cheerful, optimistic, vibrant, colorful"},
103
+ "Fairy Tale": {"prompt": "fairy tale {prompt} . magical, fantastical, enchanting, storybook style, highly detailed", "negative_prompt": "{negative_prompt}, realistic, modern, ordinary, mundane"},
104
+ "Gothic": {"prompt": "gothic style {prompt} . dark, mysterious, haunting, dramatic, ornate, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, cheerful, optimistic"},
105
+ "Grunge": {"prompt": "grunge style {prompt} . textured, distressed, vintage, edgy, punk rock vibe, dirty, noisy", "negative_prompt": "{negative_prompt}, smooth, clean, minimalist, sleek, modern, photorealistic"},
106
+ "Horror": {"prompt": "horror-themed {prompt} . eerie, unsettling, dark, spooky, suspenseful, grim, highly detailed", "negative_prompt": "{negative_prompt}, cheerful, bright, vibrant, light-hearted, cute"},
107
+ "Kawaii": {"prompt": "kawaii style {prompt} . cute, adorable, brightly colored, cheerful, anime influence, highly detailed", "negative_prompt": "{negative_prompt}, dark, scary, realistic, monochrome, abstract"},
108
+ "Lovecraftian": {"prompt": "lovecraftian horror {prompt} . eldritch, cosmic horror, unknown, mysterious, surreal, highly detailed", "negative_prompt": "{negative_prompt}, light-hearted, mundane, familiar, simplistic, realistic"},
109
+ "Macabre": {"prompt": "macabre style {prompt} . dark, gothic, grim, haunting, highly detailed", "negative_prompt": "{negative_prompt}, bright, cheerful, light-hearted, cartoonish, cute"},
110
+ "Manga": {"prompt": "manga style {prompt} . vibrant, high-energy, detailed, iconic, Japanese comic style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style"},
111
+ "Metropolis": {"prompt": "metropolis-themed {prompt} . urban, cityscape, skyscrapers, modern, futuristic, highly detailed", "negative_prompt": "{negative_prompt}, rural, natural, rustic, historical, simple"},
112
+ "Minimalist": {"prompt": "minimalist style {prompt} . simple, clean, uncluttered, modern, elegant", "negative_prompt": "{negative_prompt}, ornate, complicated, highly detailed, cluttered, disordered, messy, noisy"},
113
+ "Monochrome": {"prompt": "monochrome {prompt} . black and white, contrast, tone, texture, detailed", "negative_prompt": "{negative_prompt}, colorful, vibrant, noisy, blurry, deformed"},
114
+ "Nautical": {"prompt": "nautical-themed {prompt} . sea, ocean, ships, maritime, beach, marine life, highly detailed", "negative_prompt": "{negative_prompt}, landlocked, desert, mountains, urban, rustic"},
115
+ "Space": {"prompt": "space-themed {prompt} . cosmic, celestial, stars, galaxies, nebulas, planets, science fiction, highly detailed", "negative_prompt": "{negative_prompt}, earthly, mundane, ground-based, realism"},
116
+ "Stained Glass": {"prompt": "stained glass style {prompt} . vibrant, beautiful, translucent, intricate, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"},
117
+ "Techwear Fashion": {"prompt": "techwear fashion {prompt} . futuristic, cyberpunk, urban, tactical, sleek, dark, highly detailed", "negative_prompt": "{negative_prompt}, vintage, rural, colorful, low contrast, realism, sketch, watercolor"},
118
+ "Tribal": {"prompt": "tribal style {prompt} . indigenous, ethnic, traditional patterns, bold, natural colors, highly detailed", "negative_prompt": "{negative_prompt}, modern, futuristic, minimalist, pastel"},
119
+ "Zentangle": {"prompt": "zentangle {prompt} . intricate, abstract, monochrome, patterns, meditative, highly detailed", "negative_prompt": "{negative_prompt}, colorful, representative, simplistic, large fields of color"},
120
+ "Collage": {"prompt": "collage style {prompt} . mixed media, layered, textural, detailed, artistic", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic"},
121
+ "Flat Papercut": {"prompt": "flat papercut style {prompt} . silhouette, clean cuts, paper, sharp edges, minimalist, color block", "negative_prompt": "{negative_prompt}, 3D, high detail, noise, grainy, blurry, painting, drawing, photo, disfigured"},
122
+ "Kirigami": {"prompt": "kirigami representation of {prompt} . 3D, paper folding, paper cutting, Japanese, intricate, symmetrical, precision, clean lines", "negative_prompt": "{negative_prompt}, painting, drawing, 2D, noisy, blurry, deformed"},
123
+ "Paper Mache": {"prompt": "paper mache representation of {prompt} . 3D, sculptural, textured, handmade, vibrant, fun", "negative_prompt": "{negative_prompt}, 2D, flat, photo, sketch, digital art, deformed, noisy, blurry"},
124
+ "Paper Quilling": {"prompt": "paper quilling art of {prompt} . intricate, delicate, curling, rolling, shaping, coiling, loops, 3D, dimensional, ornamental", "negative_prompt": "{negative_prompt}, photo, painting, drawing, 2D, flat, deformed, noisy, blurry"},
125
+ "Papercut Collage": {"prompt": "papercut collage of {prompt} . mixed media, textured paper, overlapping, asymmetrical, abstract, vibrant", "negative_prompt": "{negative_prompt}, photo, 3D, realistic, drawing, painting, high detail, disfigured"},
126
+ "Papercut Shadow Box": {"prompt": "3D papercut shadow box of {prompt} . layered, dimensional, depth, silhouette, shadow, papercut, handmade, high contrast", "negative_prompt": "{negative_prompt}, painting, drawing, photo, 2D, flat, high detail, blurry, noisy, disfigured"},
127
+ "Stacked Papercut": {"prompt": "stacked papercut art of {prompt} . 3D, layered, dimensional, depth, precision cut, stacked layers, papercut, high contrast", "negative_prompt": "{negative_prompt}, 2D, flat, noisy, blurry, painting, drawing, photo, deformed"},
128
+ "Thick Layered Papercut": {"prompt": "thick layered papercut art of {prompt} . deep 3D, volumetric, dimensional, depth, thick paper, high stack, heavy texture, tangible layers", "negative_prompt": "{negative_prompt}, 2D, flat, thin paper, low stack, smooth texture, painting, drawing, photo, deformed"},
129
+ "Alien": {"prompt": "alien-themed {prompt} . extraterrestrial, cosmic, otherworldly, mysterious, sci-fi, highly detailed", "negative_prompt": "{negative_prompt}, earthly, mundane, common, realistic, simple"},
130
+ "Film Noir": {"prompt": "film noir style {prompt} . monochrome, high contrast, dramatic shadows, 1940s style, mysterious, cinematic", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, vibrant, colorful"},
131
+ "Glamour": {"prompt": "glamorous photo {prompt} . high fashion, luxurious, extravagant, stylish, sensual, opulent, elegance, stunning beauty, professional, high contrast, detailed", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, distorted, grainy, sketch, low contrast, dull, plain, modest"},
132
+ "HDR": {"prompt": "HDR photo of {prompt} . High dynamic range, vivid, rich details, clear shadows and highlights, realistic, intense, enhanced contrast, highly detailed", "negative_prompt": "{negative_prompt}, flat, low contrast, oversaturated, underexposed, overexposed, blurred, noisy"},
133
+ "iPhone Photography": {"prompt": "iphone photo {prompt} . large depth of field, deep depth of field, highly detailed", "negative_prompt": "{negative_prompt}, drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly, shallow depth of field, bokeh"},
134
+ "Long Exposure": {"prompt": "long exposure photo of {prompt} . Blurred motion, streaks of light, surreal, dreamy, ghosting effect, highly detailed", "negative_prompt": "{negative_prompt}, static, noisy, deformed, shaky, abrupt, flat, low contrast"},
135
+ "Neon Noir": {"prompt": "neon noir {prompt} . cyberpunk, dark, rainy streets, neon signs, high contrast, low light, vibrant, highly detailed", "negative_prompt": "{negative_prompt}, bright, sunny, daytime, low contrast, black and white, sketch, watercolor"},
136
+ "Silhouette": {"prompt": "silhouette style {prompt} . high contrast, minimalistic, black and white, stark, dramatic", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, color, realism, photorealistic"},
137
+ "Tilt-Shift": {"prompt": "tilt-shift photo of {prompt} . selective focus, miniature effect, blurred background, highly detailed, vibrant, perspective control", "negative_prompt": "{negative_prompt}, blurry, noisy, deformed, flat, low contrast, unrealistic, oversaturated, underexposed"},
138
+ "Cinematic Diva": {"prompt": "UHD, 8K, ultra detailed, a cinematic photograph of {prompt}, beautiful lighting, great composition", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, NSFW"},
139
+ "Academia": {"prompt": "Academia, {prompt}, preppy Ivy League style, stark, dramatic, chic boarding school, academia", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, grunge, sloppy, unkempt"},
140
+ "Action Figure": {"prompt": "Action Figure, {prompt}, plastic collectable action figure, collectable toy action figure", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
141
+ "Adorable 3D Character": {"prompt": "Adorable 3D Character, {prompt}, 3D render, adorable character, 3D art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, grunge, sloppy, unkempt, photograph, photo, realistic"},
142
+ "Adorable Kawaii": {"prompt": "Adorable Kawaii, {prompt}, pretty, cute, adorable, kawaii", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, gothic, dark, moody, monochromatic"},
143
+ "Astral Aura": {"prompt": "Astral Aura, {prompt}, astral, colorful aura, vibrant energy", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
144
+ "Avant-garde": {"prompt": "Avant-garde, {prompt}, unusual, experimental, avant-garde art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
145
+ "Baroque": {"prompt": "Baroque, {prompt}, dramatic, exuberant, grandeur, baroque art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
146
+ "Bauhaus-Style Poster": {"prompt": "Bauhaus-Style Poster, {prompt}, simple geometric shapes, clean lines, primary colors, Bauhaus-Style Poster", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
147
+ "Blueprint Schematic Drawing": {"prompt": "Blueprint Schematic Drawing, {prompt}, technical drawing, blueprint, schematic", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
148
+ "Caricature": {"prompt": "Caricature, {prompt}, exaggerated, comical, caricature", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realistic"},
149
+ "Cel Shaded Art": {"prompt": "Cel Shaded Art, {prompt}, 2D, flat color, toon shading, cel shaded style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
150
+ "Character Design Sheet": {"prompt": "Character Design Sheet, {prompt}, character reference sheet, character turn around", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
151
+ "Classicism Art": {"prompt": "Classicism Art, {prompt}, inspired by Roman and Greek culture, clarity, harmonious, classicism art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
152
+ "Color Field Painting": {"prompt": "Color Field Painting, {prompt}, abstract, simple, geometic, color field painting style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
153
+ "Colored Pencil Art": {"prompt": "Colored Pencil Art, {prompt}, colored pencil strokes, light color, visible paper texture, colored pencil art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
154
+ "Conceptual Art": {"prompt": "Conceptual Art, {prompt}, concept art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
155
+ "Constructivism": {"prompt": "Constructivism Art, {prompt}, minimalistic, geometric forms, constructivism art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
156
+ "Cubism": {"prompt": "Cubism Art, {prompt}, flat geometric forms, cubism art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
157
+ "Dadaism": {"prompt": "Dadaism Art, {prompt}, satirical, nonsensical, dadaism art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
158
+ "Dark Fantasy": {"prompt": "Dark Fantasy Art, {prompt}, dark, moody, dark fantasy style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, bright, sunny"},
159
+ "Dark Moody Atmosphere": {"prompt": "Dark Moody Atmosphere, {prompt}, dramatic, mysterious, dark moody atmosphere", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, vibrant, colorful, bright"},
160
+ "DMT Art Style": {"prompt": "DMT Art Style, {prompt}, bright colors, surreal visuals, swirling patterns, DMT art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
161
+ "Doodle Art": {"prompt": "Doodle Art Style, {prompt}, drawing, freeform, swirling patterns, doodle art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
162
+ "Double Exposure": {"prompt": "Double Exposure Style, {prompt}, double image ghost effect, image combination, double exposure style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
163
+ "Dripping Paint Splatter Art": {"prompt": "Dripping Paint Splatter Art, {prompt}, dramatic, paint drips, splatters, dripping paint", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
164
+ "Expressionism": {"prompt": "Expressionism Art Style, {prompt}, movement, contrast, emotional, exaggerated forms, expressionism art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
165
+ "Faded Polaroid Photo": {"prompt": "Faded Polaroid Photo, {prompt}, analog, old faded photo, old polaroid", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, vibrant, colorful"},
166
+ "Fauvism": {"prompt": "Fauvism Art, {prompt}, painterly, bold colors, textured brushwork, fauvism art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
167
+ "Flat 2D Art": {"prompt": "Flat 2D Art, {prompt}, simple flat color, 2-dimensional, Flat 2D Art Style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, 3D, photo, realistic"},
168
+ "Fortnite Art Style": {"prompt": "Fortnite Art Style, {prompt}, 3D cartoon, colorful, Fortnite Art Style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photo, realistic"},
169
+ "Futurism": {"prompt": "Futurism Art Style, {prompt}, dynamic, dramatic, Futurism Art Style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
170
+ "Glitchcore": {"prompt": "Glitchcore Art Style, {prompt}, dynamic, dramatic, distorted, vibrant colors, glitchcore art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
171
+ "Glo-fi": {"prompt": "Glo-fi Art Style, {prompt}, dynamic, dramatic, vibrant colors, glo-fi art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
172
+ "Googie Art Style": {"prompt": "Googie Art Style, {prompt}, dynamic, dramatic, 1950\"s futurism, bold boomerang angles, Googie art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
173
+ "Graffiti Art": {"prompt": "Graffiti Art Style, {prompt}, dynamic, dramatic, vibrant colors, graffiti art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
174
+ "Harlem Renaissance Art": {"prompt": "Harlem Renaissance Art Style, {prompt}, dynamic, dramatic, 1920s African American culture, Harlem Renaissance art style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
175
+ "High Fashion": {"prompt": "High Fashion, {prompt}, dynamic, dramatic, haute couture, elegant, ornate clothing, High Fashion", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
176
+ "Idyllic": {"prompt": "Idyllic, {prompt}, peaceful, happy, pleasant, happy, harmonious, picturesque, charming", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
177
+ "Impressionism": {"prompt": "Impressionism, {prompt}, painterly, small brushstrokes, visible brushstrokes, impressionistic style", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
178
+ "Infographic Drawing": {"prompt": "Infographic Drawing, {prompt}, diagram, infographic", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
179
+ "Ink Dripping Drawing": {"prompt": "Ink Dripping Drawing, {prompt}, ink drawing, dripping ink", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, colorful, vibrant"},
180
+ "Japanese Ink Drawing": {"prompt": "Japanese Ink Drawing, {prompt}, ink drawing, inkwash, Japanese Ink Drawing", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, colorful, vibrant"},
181
+ "Knolling Photography": {"prompt": "Knolling Photography, {prompt}, flat lay photography, object arrangment, knolling photography", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
182
+ "Light Cheery Atmosphere": {"prompt": "Light Cheery Atmosphere, {prompt}, happy, joyful, cheerful, carefree, gleeful, lighthearted, pleasant atmosphere", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, monochromatic, dark, moody"},
183
+ "Logo Design": {"prompt": "Logo Design, {prompt}, dynamic graphic art, vector art, minimalist, professional logo design", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
184
+ "Luxurious Elegance": {"prompt": "Luxurious Elegance, {prompt}, extravagant, ornate, designer, opulent, picturesque, lavish", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
185
+ "Macro Photography": {"prompt": "Macro Photography, {prompt}, close-up, macro 100mm, macro photography", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
186
+ "Mandola Art": {"prompt": "Mandola art style, {prompt}, complex, circular design, mandola", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
187
+ "Marker Drawing": {"prompt": "Marker Drawing, {prompt}, bold marker lines, visibile paper texture, marker drawing", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photograph, realistic"},
188
+ "Medievalism": {"prompt": "Medievalism, {prompt}, inspired by The Middle Ages, medieval art, elaborate patterns and decoration, Medievalism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
189
+ "Minimalism": {"prompt": "Minimalism, {prompt}, abstract, simple geometic shapes, hard edges, sleek contours, Minimalism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
190
+ "Neo-Baroque": {"prompt": "Neo-Baroque, {prompt}, ornate and elaborate, dynaimc, Neo-Baroque", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
191
+ "Neo-Byzantine": {"prompt": "Neo-Byzantine, {prompt}, grand decorative religious style, Orthodox Christian inspired, Neo-Byzantine", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
192
+ "Neo-Futurism": {"prompt": "Neo-Futurism, {prompt}, high-tech, curves, spirals, flowing lines, idealistic future, Neo-Futurism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
193
+ "Neo-Impressionism": {"prompt": "Neo-Impressionism, {prompt}, tiny dabs of color, Pointillism, painterly, Neo-Impressionism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photograph, realistic"},
194
+ "Neo-Rococo": {"prompt": "Neo-Rococo, {prompt}, curved forms, naturalistic ornamentation, elaborate, decorative, gaudy, Neo-Rococo", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
195
+ "Neoclassicism": {"prompt": "Neoclassicism, {prompt}, ancient Rome and Greece inspired, idealic, sober colors, Neoclassicism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
196
+ "Op Art": {"prompt": "Op Art, {prompt}, optical illusion, abstract, geometric pattern, impression of movement, Op Art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
197
+ "Ornate and Intricate": {"prompt": "Ornate and Intricate, {prompt}, decorative, highly detailed, elaborate, ornate, intricate", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
198
+ "Pencil Sketch Drawing": {"prompt": "Pencil Sketch Drawing, {prompt}, black and white drawing, graphite drawing", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
199
+ "Pop Art II": {"prompt": "Pop Art, {prompt}, vivid colors, flat color, 2D, strong lines, Pop Art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photo, realistic"},
200
+ "Rococo": {"prompt": "Rococo, {prompt}, flamboyant, pastel colors, curved lines, elaborate detail, Rococo", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
201
+ "Silhouette Art": {"prompt": "Silhouette Art, {prompt}, high contrast, well defined, Silhouette Art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
202
+ "Simple Vector Art": {"prompt": "Simple Vector Art, {prompt}, 2D flat, simple shapes, minimalistic, professional graphic, flat color, high contrast, Simple Vector Art", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, 3D, photo, realistic"},
203
+ "Sketchup": {"prompt": "Sketchup, {prompt}, CAD, professional design, Sketchup", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photo, photograph"},
204
+ "Steampunk II": {"prompt": "Steampunk, {prompt}, retrofuturistic science fantasy, steam-powered tech, vintage industry, gears, neo-victorian, steampunk", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
205
+ "Surrealism": {"prompt": "Surrealism, {prompt}, expressive, dramatic, organic lines and forms, dreamlike and mysterious, Surrealism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realistic"},
206
+ "Suprematism": {"prompt": "Suprematism, {prompt}, abstract, limited color palette, geometric forms, Suprematism", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, realistic"},
207
+ "Terragen": {"prompt": "Terragen, {prompt}, beautiful massive landscape, epic scenery, Terragen", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
208
+ "Tranquil Relaxing Atmosphere": {"prompt": "Tranquil Relaxing Atmosphere, {prompt}, calming style, soothing colors, peaceful, idealic, Tranquil Relaxing Atmosphere", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, oversaturated"},
209
+ "Sticker Designs": {"prompt": "Vector Art Stickers, {prompt}, professional vector design, sticker designs, Sticker Sheet", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
210
+ "Vibrant Rim Light": {"prompt": "Vibrant Rim Light, {prompt}, bright rim light, high contrast, bold edge light", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
211
+ "Volumetric Lighting": {"prompt": "Volumetric Lighting, {prompt}, light depth, dramatic atmospheric lighting, Volumetric Lighting", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast"},
212
+ "Watercolor II": {"prompt": "Watercolor style painting, {prompt}, visible paper texture, colorwash, watercolor", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, photo, realistic"},
213
+ "Whimsical and Playful": {"prompt": "Whimsical and Playful, {prompt}, imaginative, fantastical, bight colors, stylized, happy, Whimsical and Playful", "negative_prompt": "{negative_prompt}, ugly, deformed, noisy, blurry, low contrast, drab, boring, moody"}
214
+ }
presets/V4.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "None": {"prompt": "{prompt}", "negative_prompt": "{negative_prompt}"},
3
+ "Icon": {"prompt": "{prompt}<effect>0001</effect>", "negative_prompt": "{negative_prompt}"},
4
+ "Logo": {"prompt": "{prompt}<effect>0002</effect>", "negative_prompt": "{negative_prompt}"},
5
+ "Pixel Art": {"prompt": "{prompt}<effect>0003</effect>", "negative_prompt": "{negative_prompt}"},
6
+ "Paper Cut": {"prompt": "{prompt}<effect>0004</effect>", "negative_prompt": "{negative_prompt}"},
7
+ "Sticker": {"prompt": "{prompt}<effect>0005</effect>", "negative_prompt": "{negative_prompt}"},
8
+ "Book Cover": {"prompt": "{prompt}<effect>0006</effect>", "negative_prompt": "{negative_prompt}"},
9
+ "Sketch": {"prompt": "{prompt}<effect>0007</effect>", "negative_prompt": "{negative_prompt}"},
10
+ "Flat Style": {"prompt": "{prompt}<effect>0008</effect>", "negative_prompt": "{negative_prompt}"},
11
+ "Vector Art": {"prompt": "{prompt}<effect>0009</effect>", "negative_prompt": "{negative_prompt}"},
12
+ "Doodle": {"prompt": "{prompt}<effect>0010</effect>", "negative_prompt": "{negative_prompt}"},
13
+ "Minimal": {"prompt": "{prompt}<effect>0011</effect>", "negative_prompt": "{negative_prompt}"},
14
+ "Scribble": {"prompt": "{prompt}<effect>0012</effect>", "negative_prompt": "{negative_prompt}"},
15
+ "Product Design": {"prompt": "{prompt}<effect>0013</effect>", "negative_prompt": "{negative_prompt}"}
16
+ }
presets/Variate.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Anime V1": "120",
3
+ "Anime V2": "121",
4
+ "Anime V3": "21",
5
+ "Meina Mix": "116",
6
+ "Orange Mix": "103",
7
+ "Toon You": "113",
8
+ "V1": "27",
9
+ "V3": "28",
10
+ "V4": "30",
11
+ "V4.1": "32",
12
+ "Realistic": "29",
13
+ "Creative": "31",
14
+ "Disney": "102",
15
+ "Dreamshaper": "111",
16
+ "Absolute Reality": "119",
17
+ "Lyriel": "104",
18
+ "RPG": "105",
19
+ "Realistic Vision": "110",
20
+ "Unreal Engine 5": "114"
21
+ }
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ gradio==4.40.0
2
+ pillow_lut
3
+ selenium