@rvoh/dream 0.30.0 → 0.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/dist/cjs/src/bin/index.js +26 -11
  2. package/dist/cjs/src/cli/index.js +28 -0
  3. package/dist/cjs/src/cli/logger/DreamCliLogger.js +57 -0
  4. package/dist/cjs/src/cli/logger/helpers/createSpinner.js +14 -0
  5. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggable.js +22 -0
  6. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggableSpinner.js +31 -0
  7. package/dist/cjs/src/cli/logger/loggable/DreamCliLoggableText.js +21 -0
  8. package/dist/cjs/src/cli/logger/loggable/colorize.js +8 -0
  9. package/dist/cjs/src/cli/logger/loggable/spinners.js +1185 -0
  10. package/dist/cjs/src/helpers/db/runMigration.js +8 -3
  11. package/dist/esm/src/bin/index.js +24 -9
  12. package/dist/esm/src/cli/index.js +28 -0
  13. package/dist/esm/src/cli/logger/DreamCliLogger.js +54 -0
  14. package/dist/esm/src/cli/logger/helpers/createSpinner.js +11 -0
  15. package/dist/esm/src/cli/logger/loggable/DreamCliLoggable.js +19 -0
  16. package/dist/esm/src/cli/logger/loggable/DreamCliLoggableSpinner.js +28 -0
  17. package/dist/esm/src/cli/logger/loggable/DreamCliLoggableText.js +18 -0
  18. package/dist/esm/src/cli/logger/loggable/colorize.js +5 -0
  19. package/dist/esm/src/cli/logger/loggable/spinners.js +1183 -0
  20. package/dist/esm/src/helpers/db/runMigration.js +8 -3
  21. package/dist/types/src/cli/index.d.ts +5 -0
  22. package/dist/types/src/cli/logger/DreamCliLogger.d.ts +22 -0
  23. package/dist/types/src/cli/logger/helpers/createSpinner.d.ts +2 -0
  24. package/dist/types/src/cli/logger/loggable/DreamCliLoggable.d.ts +15 -0
  25. package/dist/types/src/cli/logger/loggable/DreamCliLoggableSpinner.d.ts +21 -0
  26. package/dist/types/src/cli/logger/loggable/DreamCliLoggableText.d.ts +16 -0
  27. package/dist/types/src/cli/logger/loggable/colorize.d.ts +5 -0
  28. package/dist/types/src/cli/logger/loggable/spinners.d.ts +355 -0
  29. package/docs/assets/search.js +1 -1
  30. package/docs/classes/Benchmark.html +2 -2
  31. package/docs/classes/CalendarDate.html +2 -2
  32. package/docs/classes/CreateOrFindByFailedToCreateAndFind.html +3 -3
  33. package/docs/classes/Decorators.html +19 -19
  34. package/docs/classes/Dream.html +126 -126
  35. package/docs/classes/DreamApplication.html +4 -4
  36. package/docs/classes/DreamBin.html +2 -2
  37. package/docs/classes/DreamCLI.html +6 -4
  38. package/docs/classes/DreamDbConnection.html +2 -2
  39. package/docs/classes/DreamImporter.html +2 -2
  40. package/docs/classes/DreamMigrationHelpers.html +7 -7
  41. package/docs/classes/DreamSerializer.html +2 -2
  42. package/docs/classes/DreamTransaction.html +2 -2
  43. package/docs/classes/Encrypt.html +2 -2
  44. package/docs/classes/Env.html +2 -2
  45. package/docs/classes/GlobalNameNotSet.html +3 -3
  46. package/docs/classes/NonLoadedAssociation.html +3 -3
  47. package/docs/classes/Query.html +50 -50
  48. package/docs/classes/Range.html +2 -2
  49. package/docs/classes/RecordNotFound.html +3 -3
  50. package/docs/classes/ValidationError.html +3 -3
  51. package/docs/functions/Attribute.html +1 -1
  52. package/docs/functions/RendersMany.html +1 -1
  53. package/docs/functions/RendersOne.html +1 -1
  54. package/docs/functions/ReplicaSafe.html +1 -1
  55. package/docs/functions/STI.html +1 -1
  56. package/docs/functions/SoftDelete.html +1 -1
  57. package/docs/functions/camelize.html +1 -1
  58. package/docs/functions/capitalize.html +1 -1
  59. package/docs/functions/closeAllDbConnections.html +1 -1
  60. package/docs/functions/compact.html +1 -1
  61. package/docs/functions/db.html +1 -1
  62. package/docs/functions/debug.html +1 -1
  63. package/docs/functions/dreamDbConnections.html +1 -1
  64. package/docs/functions/dreamPath.html +1 -1
  65. package/docs/functions/generateDream.html +1 -1
  66. package/docs/functions/globalClassNameFromFullyQualifiedModelName.html +1 -1
  67. package/docs/functions/hyphenize.html +1 -1
  68. package/docs/functions/inferSerializerFromDreamClassOrViewModelClass.html +1 -1
  69. package/docs/functions/inferSerializerFromDreamOrViewModel.html +1 -1
  70. package/docs/functions/isEmpty.html +1 -1
  71. package/docs/functions/loadRepl.html +1 -1
  72. package/docs/functions/lookupClassByGlobalName.html +1 -1
  73. package/docs/functions/pascalize.html +1 -1
  74. package/docs/functions/pgErrorType.html +1 -1
  75. package/docs/functions/range-1.html +1 -1
  76. package/docs/functions/relativeDreamPath.html +1 -1
  77. package/docs/functions/round.html +1 -1
  78. package/docs/functions/serializerNameFromFullyQualifiedModelName.html +1 -1
  79. package/docs/functions/sharedPathPrefix.html +1 -1
  80. package/docs/functions/snakeify.html +1 -1
  81. package/docs/functions/sortBy.html +1 -1
  82. package/docs/functions/standardizeFullyQualifiedModelName.html +1 -1
  83. package/docs/functions/uncapitalize.html +1 -1
  84. package/docs/functions/uniq.html +1 -1
  85. package/docs/functions/validateColumn.html +1 -1
  86. package/docs/functions/validateTable.html +1 -1
  87. package/docs/interfaces/AttributeStatement.html +2 -2
  88. package/docs/interfaces/DecoratorContext.html +2 -2
  89. package/docs/interfaces/DreamApplicationInitOptions.html +2 -2
  90. package/docs/interfaces/DreamApplicationOpts.html +2 -2
  91. package/docs/interfaces/DreamSerializerAssociationStatement.html +2 -2
  92. package/docs/interfaces/EncryptOptions.html +2 -2
  93. package/docs/interfaces/OpenapiSchemaProperties.html +1 -1
  94. package/docs/interfaces/OpenapiSchemaPropertiesShorthand.html +1 -1
  95. package/docs/interfaces/OpenapiTypeFieldObject.html +1 -1
  96. package/docs/types/Camelized.html +1 -1
  97. package/docs/types/CommonOpenapiSchemaObjectFields.html +1 -1
  98. package/docs/types/DreamAssociationMetadata.html +1 -1
  99. package/docs/types/DreamAttributes.html +1 -1
  100. package/docs/types/DreamClassColumn.html +1 -1
  101. package/docs/types/DreamColumn.html +1 -1
  102. package/docs/types/DreamColumnNames.html +1 -1
  103. package/docs/types/DreamLogLevel.html +1 -1
  104. package/docs/types/DreamLogger.html +1 -1
  105. package/docs/types/DreamOrViewModelSerializerKey.html +1 -1
  106. package/docs/types/DreamParamSafeAttributes.html +1 -1
  107. package/docs/types/DreamParamSafeColumnNames.html +1 -1
  108. package/docs/types/DreamSerializerKey.html +1 -1
  109. package/docs/types/DreamSerializers.html +1 -1
  110. package/docs/types/DreamTableSchema.html +1 -1
  111. package/docs/types/DreamVirtualColumns.html +1 -1
  112. package/docs/types/EncryptAlgorithm.html +1 -1
  113. package/docs/types/Hyphenized.html +1 -1
  114. package/docs/types/IdType.html +1 -1
  115. package/docs/types/OpenapiAllTypes.html +1 -1
  116. package/docs/types/OpenapiFormats.html +1 -1
  117. package/docs/types/OpenapiNumberFormats.html +1 -1
  118. package/docs/types/OpenapiPrimitiveTypes.html +1 -1
  119. package/docs/types/OpenapiSchemaArray.html +1 -1
  120. package/docs/types/OpenapiSchemaArrayShorthand.html +1 -1
  121. package/docs/types/OpenapiSchemaBase.html +1 -1
  122. package/docs/types/OpenapiSchemaBody.html +1 -1
  123. package/docs/types/OpenapiSchemaBodyShorthand.html +1 -1
  124. package/docs/types/OpenapiSchemaCommonFields.html +1 -1
  125. package/docs/types/OpenapiSchemaExpressionAllOf.html +1 -1
  126. package/docs/types/OpenapiSchemaExpressionAnyOf.html +1 -1
  127. package/docs/types/OpenapiSchemaExpressionOneOf.html +1 -1
  128. package/docs/types/OpenapiSchemaExpressionRef.html +1 -1
  129. package/docs/types/OpenapiSchemaExpressionRefSchemaShorthand.html +1 -1
  130. package/docs/types/OpenapiSchemaInteger.html +1 -1
  131. package/docs/types/OpenapiSchemaNull.html +1 -1
  132. package/docs/types/OpenapiSchemaNumber.html +1 -1
  133. package/docs/types/OpenapiSchemaObject.html +1 -1
  134. package/docs/types/OpenapiSchemaObjectAllOf.html +1 -1
  135. package/docs/types/OpenapiSchemaObjectAllOfShorthand.html +1 -1
  136. package/docs/types/OpenapiSchemaObjectAnyOf.html +1 -1
  137. package/docs/types/OpenapiSchemaObjectAnyOfShorthand.html +1 -1
  138. package/docs/types/OpenapiSchemaObjectBase.html +1 -1
  139. package/docs/types/OpenapiSchemaObjectBaseShorthand.html +1 -1
  140. package/docs/types/OpenapiSchemaObjectOneOf.html +1 -1
  141. package/docs/types/OpenapiSchemaObjectOneOfShorthand.html +1 -1
  142. package/docs/types/OpenapiSchemaObjectShorthand.html +1 -1
  143. package/docs/types/OpenapiSchemaPartialSegment.html +1 -1
  144. package/docs/types/OpenapiSchemaPrimitiveGeneric.html +1 -1
  145. package/docs/types/OpenapiSchemaShorthandExpressionAllOf.html +1 -1
  146. package/docs/types/OpenapiSchemaShorthandExpressionAnyOf.html +1 -1
  147. package/docs/types/OpenapiSchemaShorthandExpressionOneOf.html +1 -1
  148. package/docs/types/OpenapiSchemaShorthandExpressionSerializableRef.html +1 -1
  149. package/docs/types/OpenapiSchemaShorthandExpressionSerializerRef.html +1 -1
  150. package/docs/types/OpenapiSchemaShorthandPrimitiveGeneric.html +1 -1
  151. package/docs/types/OpenapiSchemaString.html +1 -1
  152. package/docs/types/OpenapiShorthandAllTypes.html +1 -1
  153. package/docs/types/OpenapiShorthandPrimitiveTypes.html +1 -1
  154. package/docs/types/OpenapiTypeField.html +1 -1
  155. package/docs/types/Pascalized.html +1 -1
  156. package/docs/types/PrimaryKeyType.html +1 -1
  157. package/docs/types/RoundingPrecision.html +1 -1
  158. package/docs/types/SerializableClassOrSerializerCallback.html +1 -1
  159. package/docs/types/SerializableDreamClassOrViewModelClass.html +1 -1
  160. package/docs/types/SerializableDreamOrViewModel.html +1 -1
  161. package/docs/types/SerializableTypes.html +1 -1
  162. package/docs/types/Snakeified.html +1 -1
  163. package/docs/types/Timestamp.html +1 -1
  164. package/docs/types/UpdateableAssociationProperties.html +1 -1
  165. package/docs/types/UpdateableProperties.html +1 -1
  166. package/docs/types/ValidationType.html +1 -1
  167. package/docs/types/ViewModelSerializerKey.html +1 -1
  168. package/docs/types/WhereStatementForDream.html +1 -1
  169. package/docs/types/WhereStatementForDreamClass.html +1 -1
  170. package/docs/variables/DreamConst.html +1 -1
  171. package/docs/variables/TRIGRAM_OPERATORS.html +1 -1
  172. package/docs/variables/openapiPrimitiveTypes-1.html +1 -1
  173. package/docs/variables/openapiShorthandPrimitiveTypes-1.html +1 -1
  174. package/docs/variables/ops.html +1 -1
  175. package/docs/variables/primaryKeyTypes.html +1 -1
  176. package/package.json +3 -2
@@ -0,0 +1,1183 @@
1
+ export default {
2
+ dots: {
3
+ interval: 80,
4
+ frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
5
+ },
6
+ dots2: {
7
+ interval: 80,
8
+ frames: ['⣾', '⣽', '⣻', '⢿', '⡿', '⣟', '⣯', '⣷'],
9
+ },
10
+ dots3: {
11
+ interval: 80,
12
+ frames: ['⠋', '⠙', '⠚', '⠞', '⠖', '⠦', '⠴', '⠲', '⠳', '⠓'],
13
+ },
14
+ dots4: {
15
+ interval: 80,
16
+ frames: ['⠄', '⠆', '⠇', '⠋', '⠙', '⠸', '⠰', '⠠', '⠰', '⠸', '⠙', '⠋', '⠇', '⠆'],
17
+ },
18
+ dots5: {
19
+ interval: 80,
20
+ frames: ['⠋', '⠙', '⠚', '⠒', '⠂', '⠂', '⠒', '⠲', '⠴', '⠦', '⠖', '⠒', '⠐', '⠐', '⠒', '⠓', '⠋'],
21
+ },
22
+ dots6: {
23
+ interval: 80,
24
+ frames: [
25
+ '⠁',
26
+ '⠉',
27
+ '⠙',
28
+ '⠚',
29
+ '⠒',
30
+ '⠂',
31
+ '⠂',
32
+ '⠒',
33
+ '⠲',
34
+ '⠴',
35
+ '⠤',
36
+ '⠄',
37
+ '⠄',
38
+ '⠤',
39
+ '⠴',
40
+ '⠲',
41
+ '⠒',
42
+ '⠂',
43
+ '⠂',
44
+ '⠒',
45
+ '⠚',
46
+ '⠙',
47
+ '⠉',
48
+ '⠁',
49
+ ],
50
+ },
51
+ dots7: {
52
+ interval: 80,
53
+ frames: [
54
+ '⠈',
55
+ '⠉',
56
+ '⠋',
57
+ '⠓',
58
+ '⠒',
59
+ '⠐',
60
+ '⠐',
61
+ '⠒',
62
+ '⠖',
63
+ '⠦',
64
+ '⠤',
65
+ '⠠',
66
+ '⠠',
67
+ '⠤',
68
+ '⠦',
69
+ '⠖',
70
+ '⠒',
71
+ '⠐',
72
+ '⠐',
73
+ '⠒',
74
+ '⠓',
75
+ '⠋',
76
+ '⠉',
77
+ '⠈',
78
+ ],
79
+ },
80
+ dots8: {
81
+ interval: 80,
82
+ frames: [
83
+ '⠁',
84
+ '⠁',
85
+ '⠉',
86
+ '⠙',
87
+ '⠚',
88
+ '⠒',
89
+ '⠂',
90
+ '⠂',
91
+ '⠒',
92
+ '⠲',
93
+ '⠴',
94
+ '⠤',
95
+ '⠄',
96
+ '⠄',
97
+ '⠤',
98
+ '⠠',
99
+ '⠠',
100
+ '⠤',
101
+ '⠦',
102
+ '⠖',
103
+ '⠒',
104
+ '⠐',
105
+ '⠐',
106
+ '⠒',
107
+ '⠓',
108
+ '⠋',
109
+ '⠉',
110
+ '⠈',
111
+ '⠈',
112
+ ],
113
+ },
114
+ dots9: {
115
+ interval: 80,
116
+ frames: ['⢹', '⢺', '⢼', '⣸', '⣇', '⡧', '⡗', '⡏'],
117
+ },
118
+ dots10: {
119
+ interval: 80,
120
+ frames: ['⢄', '⢂', '⢁', '⡁', '⡈', '⡐', '⡠'],
121
+ },
122
+ dots11: {
123
+ interval: 100,
124
+ frames: ['⠁', '⠂', '⠄', '⡀', '⢀', '⠠', '⠐', '⠈'],
125
+ },
126
+ dots12: {
127
+ interval: 80,
128
+ frames: [
129
+ '⢀⠀',
130
+ '⡀⠀',
131
+ '⠄⠀',
132
+ '⢂⠀',
133
+ '⡂⠀',
134
+ '⠅⠀',
135
+ '⢃⠀',
136
+ '⡃⠀',
137
+ '⠍⠀',
138
+ '⢋⠀',
139
+ '⡋⠀',
140
+ '⠍⠁',
141
+ '⢋⠁',
142
+ '⡋⠁',
143
+ '⠍⠉',
144
+ '⠋⠉',
145
+ '⠋⠉',
146
+ '⠉⠙',
147
+ '⠉⠙',
148
+ '⠉⠩',
149
+ '⠈⢙',
150
+ '⠈⡙',
151
+ '⢈⠩',
152
+ '⡀⢙',
153
+ '⠄⡙',
154
+ '⢂⠩',
155
+ '⡂⢘',
156
+ '⠅⡘',
157
+ '⢃⠨',
158
+ '⡃⢐',
159
+ '⠍⡐',
160
+ '⢋⠠',
161
+ '⡋⢀',
162
+ '⠍⡁',
163
+ '⢋⠁',
164
+ '⡋⠁',
165
+ '⠍⠉',
166
+ '⠋⠉',
167
+ '⠋⠉',
168
+ '⠉⠙',
169
+ '⠉⠙',
170
+ '⠉⠩',
171
+ '⠈⢙',
172
+ '⠈⡙',
173
+ '⠈⠩',
174
+ '⠀⢙',
175
+ '⠀⡙',
176
+ '⠀⠩',
177
+ '⠀⢘',
178
+ '⠀⡘',
179
+ '⠀⠨',
180
+ '⠀⢐',
181
+ '⠀⡐',
182
+ '⠀⠠',
183
+ '⠀⢀',
184
+ '⠀⡀',
185
+ ],
186
+ },
187
+ dots13: {
188
+ interval: 80,
189
+ frames: ['⣼', '⣹', '⢻', '⠿', '⡟', '⣏', '⣧', '⣶'],
190
+ },
191
+ dots14: {
192
+ interval: 80,
193
+ frames: ['⠉⠉', '⠈⠙', '⠀⠹', '⠀⢸', '⠀⣰', '⢀⣠', '⣀⣀', '⣄⡀', '⣆⠀', '⡇⠀', '⠏⠀', '⠋⠁'],
194
+ },
195
+ dots8Bit: {
196
+ interval: 80,
197
+ frames: [
198
+ '⠀',
199
+ '⠁',
200
+ '⠂',
201
+ '⠃',
202
+ '⠄',
203
+ '⠅',
204
+ '⠆',
205
+ '⠇',
206
+ '⡀',
207
+ '⡁',
208
+ '⡂',
209
+ '⡃',
210
+ '⡄',
211
+ '⡅',
212
+ '⡆',
213
+ '⡇',
214
+ '⠈',
215
+ '⠉',
216
+ '⠊',
217
+ '⠋',
218
+ '⠌',
219
+ '⠍',
220
+ '⠎',
221
+ '⠏',
222
+ '⡈',
223
+ '⡉',
224
+ '⡊',
225
+ '⡋',
226
+ '⡌',
227
+ '⡍',
228
+ '⡎',
229
+ '⡏',
230
+ '⠐',
231
+ '⠑',
232
+ '⠒',
233
+ '⠓',
234
+ '⠔',
235
+ '⠕',
236
+ '⠖',
237
+ '⠗',
238
+ '⡐',
239
+ '⡑',
240
+ '⡒',
241
+ '⡓',
242
+ '⡔',
243
+ '⡕',
244
+ '⡖',
245
+ '⡗',
246
+ '⠘',
247
+ '⠙',
248
+ '⠚',
249
+ '⠛',
250
+ '⠜',
251
+ '⠝',
252
+ '⠞',
253
+ '⠟',
254
+ '⡘',
255
+ '⡙',
256
+ '⡚',
257
+ '⡛',
258
+ '⡜',
259
+ '⡝',
260
+ '⡞',
261
+ '⡟',
262
+ '⠠',
263
+ '⠡',
264
+ '⠢',
265
+ '⠣',
266
+ '⠤',
267
+ '⠥',
268
+ '⠦',
269
+ '⠧',
270
+ '⡠',
271
+ '⡡',
272
+ '⡢',
273
+ '⡣',
274
+ '⡤',
275
+ '⡥',
276
+ '⡦',
277
+ '⡧',
278
+ '⠨',
279
+ '⠩',
280
+ '⠪',
281
+ '⠫',
282
+ '⠬',
283
+ '⠭',
284
+ '⠮',
285
+ '⠯',
286
+ '⡨',
287
+ '⡩',
288
+ '⡪',
289
+ '⡫',
290
+ '⡬',
291
+ '⡭',
292
+ '⡮',
293
+ '⡯',
294
+ '⠰',
295
+ '⠱',
296
+ '⠲',
297
+ '⠳',
298
+ '⠴',
299
+ '⠵',
300
+ '⠶',
301
+ '⠷',
302
+ '⡰',
303
+ '⡱',
304
+ '⡲',
305
+ '⡳',
306
+ '⡴',
307
+ '⡵',
308
+ '⡶',
309
+ '⡷',
310
+ '⠸',
311
+ '⠹',
312
+ '⠺',
313
+ '⠻',
314
+ '⠼',
315
+ '⠽',
316
+ '⠾',
317
+ '⠿',
318
+ '⡸',
319
+ '⡹',
320
+ '⡺',
321
+ '⡻',
322
+ '⡼',
323
+ '⡽',
324
+ '⡾',
325
+ '⡿',
326
+ '⢀',
327
+ '⢁',
328
+ '⢂',
329
+ '⢃',
330
+ '⢄',
331
+ '⢅',
332
+ '⢆',
333
+ '⢇',
334
+ '⣀',
335
+ '⣁',
336
+ '⣂',
337
+ '⣃',
338
+ '⣄',
339
+ '⣅',
340
+ '⣆',
341
+ '⣇',
342
+ '⢈',
343
+ '⢉',
344
+ '⢊',
345
+ '⢋',
346
+ '⢌',
347
+ '⢍',
348
+ '⢎',
349
+ '⢏',
350
+ '⣈',
351
+ '⣉',
352
+ '⣊',
353
+ '⣋',
354
+ '⣌',
355
+ '⣍',
356
+ '⣎',
357
+ '⣏',
358
+ '⢐',
359
+ '⢑',
360
+ '⢒',
361
+ '⢓',
362
+ '⢔',
363
+ '⢕',
364
+ '⢖',
365
+ '⢗',
366
+ '⣐',
367
+ '⣑',
368
+ '⣒',
369
+ '⣓',
370
+ '⣔',
371
+ '⣕',
372
+ '⣖',
373
+ '⣗',
374
+ '⢘',
375
+ '⢙',
376
+ '⢚',
377
+ '⢛',
378
+ '⢜',
379
+ '⢝',
380
+ '⢞',
381
+ '⢟',
382
+ '⣘',
383
+ '⣙',
384
+ '⣚',
385
+ '⣛',
386
+ '⣜',
387
+ '⣝',
388
+ '⣞',
389
+ '⣟',
390
+ '⢠',
391
+ '⢡',
392
+ '⢢',
393
+ '⢣',
394
+ '⢤',
395
+ '⢥',
396
+ '⢦',
397
+ '⢧',
398
+ '⣠',
399
+ '⣡',
400
+ '⣢',
401
+ '⣣',
402
+ '⣤',
403
+ '⣥',
404
+ '⣦',
405
+ '⣧',
406
+ '⢨',
407
+ '⢩',
408
+ '⢪',
409
+ '⢫',
410
+ '⢬',
411
+ '⢭',
412
+ '⢮',
413
+ '⢯',
414
+ '⣨',
415
+ '⣩',
416
+ '⣪',
417
+ '⣫',
418
+ '⣬',
419
+ '⣭',
420
+ '⣮',
421
+ '⣯',
422
+ '⢰',
423
+ '⢱',
424
+ '⢲',
425
+ '⢳',
426
+ '⢴',
427
+ '⢵',
428
+ '⢶',
429
+ '⢷',
430
+ '⣰',
431
+ '⣱',
432
+ '⣲',
433
+ '⣳',
434
+ '⣴',
435
+ '⣵',
436
+ '⣶',
437
+ '⣷',
438
+ '⢸',
439
+ '⢹',
440
+ '⢺',
441
+ '⢻',
442
+ '⢼',
443
+ '⢽',
444
+ '⢾',
445
+ '⢿',
446
+ '⣸',
447
+ '⣹',
448
+ '⣺',
449
+ '⣻',
450
+ '⣼',
451
+ '⣽',
452
+ '⣾',
453
+ '⣿',
454
+ ],
455
+ },
456
+ dotsCircle: {
457
+ interval: 80,
458
+ frames: ['⢎ ', '⠎⠁', '⠊⠑', '⠈⠱', ' ⡱', '⢀⡰', '⢄⡠', '⢆⡀'],
459
+ },
460
+ sand: {
461
+ interval: 80,
462
+ frames: [
463
+ '⠁',
464
+ '⠂',
465
+ '⠄',
466
+ '⡀',
467
+ '⡈',
468
+ '⡐',
469
+ '⡠',
470
+ '⣀',
471
+ '⣁',
472
+ '⣂',
473
+ '⣄',
474
+ '⣌',
475
+ '⣔',
476
+ '⣤',
477
+ '⣥',
478
+ '⣦',
479
+ '⣮',
480
+ '⣶',
481
+ '⣷',
482
+ '⣿',
483
+ '⡿',
484
+ '⠿',
485
+ '⢟',
486
+ '⠟',
487
+ '⡛',
488
+ '⠛',
489
+ '⠫',
490
+ '⢋',
491
+ '⠋',
492
+ '⠍',
493
+ '⡉',
494
+ '⠉',
495
+ '⠑',
496
+ '⠡',
497
+ '⢁',
498
+ ],
499
+ },
500
+ line: {
501
+ interval: 130,
502
+ frames: ['-', '\\', '|', '/'],
503
+ },
504
+ line2: {
505
+ interval: 100,
506
+ frames: ['⠂', '-', '–', '—', '–', '-'],
507
+ },
508
+ pipe: {
509
+ interval: 100,
510
+ frames: ['┤', '┘', '┴', '└', '├', '┌', '┬', '┐'],
511
+ },
512
+ simpleDots: {
513
+ interval: 400,
514
+ frames: ['. ', '.. ', '...', ' '],
515
+ },
516
+ simpleDotsScrolling: {
517
+ interval: 200,
518
+ frames: ['. ', '.. ', '...', ' ..', ' .', ' '],
519
+ },
520
+ star: {
521
+ interval: 70,
522
+ frames: ['✶', '✸', '✹', '✺', '✹', '✷'],
523
+ },
524
+ star2: {
525
+ interval: 80,
526
+ frames: ['+', 'x', '*'],
527
+ },
528
+ flip: {
529
+ interval: 70,
530
+ frames: ['_', '_', '_', '-', '`', '`', "'", '´', '-', '_', '_', '_'],
531
+ },
532
+ hamburger: {
533
+ interval: 100,
534
+ frames: ['☱', '☲', '☴'],
535
+ },
536
+ growVertical: {
537
+ interval: 120,
538
+ frames: ['▁', '▃', '▄', '▅', '▆', '▇', '▆', '▅', '▄', '▃'],
539
+ },
540
+ growHorizontal: {
541
+ interval: 120,
542
+ frames: ['▏', '▎', '▍', '▌', '▋', '▊', '▉', '▊', '▋', '▌', '▍', '▎'],
543
+ },
544
+ balloon: {
545
+ interval: 140,
546
+ frames: [' ', '.', 'o', 'O', '@', '*', ' '],
547
+ },
548
+ balloon2: {
549
+ interval: 120,
550
+ frames: ['.', 'o', 'O', '°', 'O', 'o', '.'],
551
+ },
552
+ noise: {
553
+ interval: 100,
554
+ frames: ['▓', '▒', '░'],
555
+ },
556
+ bounce: {
557
+ interval: 120,
558
+ frames: ['⠁', '⠂', '⠄', '⠂'],
559
+ },
560
+ boxBounce: {
561
+ interval: 120,
562
+ frames: ['▖', '▘', '▝', '▗'],
563
+ },
564
+ boxBounce2: {
565
+ interval: 100,
566
+ frames: ['▌', '▀', '▐', '▄'],
567
+ },
568
+ triangle: {
569
+ interval: 50,
570
+ frames: ['◢', '◣', '◤', '◥'],
571
+ },
572
+ binary: {
573
+ interval: 80,
574
+ frames: [
575
+ '010010',
576
+ '001100',
577
+ '100101',
578
+ '111010',
579
+ '111101',
580
+ '010111',
581
+ '101011',
582
+ '111000',
583
+ '110011',
584
+ '110101',
585
+ ],
586
+ },
587
+ arc: {
588
+ interval: 100,
589
+ frames: ['◜', '◠', '◝', '◞', '◡', '◟'],
590
+ },
591
+ circle: {
592
+ interval: 120,
593
+ frames: ['◡', '⊙', '◠'],
594
+ },
595
+ squareCorners: {
596
+ interval: 180,
597
+ frames: ['◰', '◳', '◲', '◱'],
598
+ },
599
+ circleQuarters: {
600
+ interval: 120,
601
+ frames: ['◴', '◷', '◶', '◵'],
602
+ },
603
+ circleHalves: {
604
+ interval: 50,
605
+ frames: ['◐', '◓', '◑', '◒'],
606
+ },
607
+ squish: {
608
+ interval: 100,
609
+ frames: ['╫', '╪'],
610
+ },
611
+ toggle: {
612
+ interval: 250,
613
+ frames: ['⊶', '⊷'],
614
+ },
615
+ toggle2: {
616
+ interval: 80,
617
+ frames: ['▫', '▪'],
618
+ },
619
+ toggle3: {
620
+ interval: 120,
621
+ frames: ['□', '■'],
622
+ },
623
+ toggle4: {
624
+ interval: 100,
625
+ frames: ['■', '□', '▪', '▫'],
626
+ },
627
+ toggle5: {
628
+ interval: 100,
629
+ frames: ['▮', '▯'],
630
+ },
631
+ toggle6: {
632
+ interval: 300,
633
+ frames: ['ဝ', '၀'],
634
+ },
635
+ toggle7: {
636
+ interval: 80,
637
+ frames: ['⦾', '⦿'],
638
+ },
639
+ toggle8: {
640
+ interval: 100,
641
+ frames: ['◍', '◌'],
642
+ },
643
+ toggle9: {
644
+ interval: 100,
645
+ frames: ['◉', '◎'],
646
+ },
647
+ toggle10: {
648
+ interval: 100,
649
+ frames: ['㊂', '㊀', '㊁'],
650
+ },
651
+ toggle11: {
652
+ interval: 50,
653
+ frames: ['⧇', '⧆'],
654
+ },
655
+ toggle12: {
656
+ interval: 120,
657
+ frames: ['☗', '☖'],
658
+ },
659
+ toggle13: {
660
+ interval: 80,
661
+ frames: ['=', '*', '-'],
662
+ },
663
+ arrow: {
664
+ interval: 100,
665
+ frames: ['←', '↖', '↑', '↗', '→', '↘', '↓', '↙'],
666
+ },
667
+ arrow2: {
668
+ interval: 80,
669
+ frames: ['⬆️ ', '↗️ ', '➡️ ', '↘️ ', '⬇️ ', '↙️ ', '⬅️ ', '↖️ '],
670
+ },
671
+ arrow3: {
672
+ interval: 120,
673
+ frames: ['▹▹▹▹▹', '▸▹▹▹▹', '▹▸▹▹▹', '▹▹▸▹▹', '▹▹▹▸▹', '▹▹▹▹▸'],
674
+ },
675
+ bouncingBar: {
676
+ interval: 80,
677
+ frames: [
678
+ '[ ]',
679
+ '[= ]',
680
+ '[== ]',
681
+ '[=== ]',
682
+ '[====]',
683
+ '[ ===]',
684
+ '[ ==]',
685
+ '[ =]',
686
+ '[ ]',
687
+ '[ =]',
688
+ '[ ==]',
689
+ '[ ===]',
690
+ '[====]',
691
+ '[=== ]',
692
+ '[== ]',
693
+ '[= ]',
694
+ ],
695
+ },
696
+ bouncingBall: {
697
+ interval: 80,
698
+ frames: [
699
+ '( ● )',
700
+ '( ● )',
701
+ '( ● )',
702
+ '( ● )',
703
+ '( ●)',
704
+ '( ● )',
705
+ '( ● )',
706
+ '( ● )',
707
+ '( ● )',
708
+ '(● )',
709
+ ],
710
+ },
711
+ smiley: {
712
+ interval: 200,
713
+ frames: ['😄 ', '😝 '],
714
+ },
715
+ monkey: {
716
+ interval: 300,
717
+ frames: ['🙈 ', '🙈 ', '🙉 ', '🙊 '],
718
+ },
719
+ hearts: {
720
+ interval: 100,
721
+ frames: ['💛 ', '💙 ', '💜 ', '💚 ', '❤️ '],
722
+ },
723
+ clock: {
724
+ interval: 100,
725
+ frames: ['🕛 ', '🕐 ', '🕑 ', '🕒 ', '🕓 ', '🕔 ', '🕕 ', '🕖 ', '🕗 ', '🕘 ', '🕙 ', '🕚 '],
726
+ },
727
+ earth: {
728
+ interval: 180,
729
+ frames: ['🌍 ', '🌎 ', '🌏 '],
730
+ },
731
+ material: {
732
+ interval: 17,
733
+ frames: [
734
+ '█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
735
+ '██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
736
+ '███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
737
+ '████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
738
+ '██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
739
+ '██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
740
+ '███████▁▁▁▁▁▁▁▁▁▁▁▁▁',
741
+ '████████▁▁▁▁▁▁▁▁▁▁▁▁',
742
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
743
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
744
+ '██████████▁▁▁▁▁▁▁▁▁▁',
745
+ '███████████▁▁▁▁▁▁▁▁▁',
746
+ '█████████████▁▁▁▁▁▁▁',
747
+ '██████████████▁▁▁▁▁▁',
748
+ '██████████████▁▁▁▁▁▁',
749
+ '▁██████████████▁▁▁▁▁',
750
+ '▁██████████████▁▁▁▁▁',
751
+ '▁██████████████▁▁▁▁▁',
752
+ '▁▁██████████████▁▁▁▁',
753
+ '▁▁▁██████████████▁▁▁',
754
+ '▁▁▁▁█████████████▁▁▁',
755
+ '▁▁▁▁██████████████▁▁',
756
+ '▁▁▁▁██████████████▁▁',
757
+ '▁▁▁▁▁██████████████▁',
758
+ '▁▁▁▁▁██████████████▁',
759
+ '▁▁▁▁▁██████████████▁',
760
+ '▁▁▁▁▁▁██████████████',
761
+ '▁▁▁▁▁▁██████████████',
762
+ '▁▁▁▁▁▁▁█████████████',
763
+ '▁▁▁▁▁▁▁█████████████',
764
+ '▁▁▁▁▁▁▁▁████████████',
765
+ '▁▁▁▁▁▁▁▁████████████',
766
+ '▁▁▁▁▁▁▁▁▁███████████',
767
+ '▁▁▁▁▁▁▁▁▁███████████',
768
+ '▁▁▁▁▁▁▁▁▁▁██████████',
769
+ '▁▁▁▁▁▁▁▁▁▁██████████',
770
+ '▁▁▁▁▁▁▁▁▁▁▁▁████████',
771
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁███████',
772
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████',
773
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████',
774
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████',
775
+ '█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████',
776
+ '██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███',
777
+ '██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███',
778
+ '███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███',
779
+ '████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██',
780
+ '█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█',
781
+ '█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█',
782
+ '██████▁▁▁▁▁▁▁▁▁▁▁▁▁█',
783
+ '████████▁▁▁▁▁▁▁▁▁▁▁▁',
784
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
785
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
786
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
787
+ '█████████▁▁▁▁▁▁▁▁▁▁▁',
788
+ '███████████▁▁▁▁▁▁▁▁▁',
789
+ '████████████▁▁▁▁▁▁▁▁',
790
+ '████████████▁▁▁▁▁▁▁▁',
791
+ '██████████████▁▁▁▁▁▁',
792
+ '██████████████▁▁▁▁▁▁',
793
+ '▁██████████████▁▁▁▁▁',
794
+ '▁██████████████▁▁▁▁▁',
795
+ '▁▁▁█████████████▁▁▁▁',
796
+ '▁▁▁▁▁████████████▁▁▁',
797
+ '▁▁▁▁▁████████████▁▁▁',
798
+ '▁▁▁▁▁▁███████████▁▁▁',
799
+ '▁▁▁▁▁▁▁▁█████████▁▁▁',
800
+ '▁▁▁▁▁▁▁▁█████████▁▁▁',
801
+ '▁▁▁▁▁▁▁▁▁█████████▁▁',
802
+ '▁▁▁▁▁▁▁▁▁█████████▁▁',
803
+ '▁▁▁▁▁▁▁▁▁▁█████████▁',
804
+ '▁▁▁▁▁▁▁▁▁▁▁████████▁',
805
+ '▁▁▁▁▁▁▁▁▁▁▁████████▁',
806
+ '▁▁▁▁▁▁▁▁▁▁▁▁███████▁',
807
+ '▁▁▁▁▁▁▁▁▁▁▁▁███████▁',
808
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁███████',
809
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁███████',
810
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████',
811
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████',
812
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████',
813
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████',
814
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███',
815
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███',
816
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██',
817
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██',
818
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██',
819
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█',
820
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█',
821
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█',
822
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
823
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
824
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
825
+ '▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁',
826
+ ],
827
+ },
828
+ moon: {
829
+ interval: 80,
830
+ frames: ['🌑 ', '🌒 ', '🌓 ', '🌔 ', '🌕 ', '🌖 ', '🌗 ', '🌘 '],
831
+ },
832
+ runner: {
833
+ interval: 140,
834
+ frames: ['🚶 ', '🏃 '],
835
+ },
836
+ pong: {
837
+ interval: 80,
838
+ frames: [
839
+ '▐⠂ ▌',
840
+ '▐⠈ ▌',
841
+ '▐ ⠂ ▌',
842
+ '▐ ⠠ ▌',
843
+ '▐ ⡀ ▌',
844
+ '▐ ⠠ ▌',
845
+ '▐ ⠂ ▌',
846
+ '▐ ⠈ ▌',
847
+ '▐ ⠂ ▌',
848
+ '▐ ⠠ ▌',
849
+ '▐ ⡀ ▌',
850
+ '▐ ⠠ ▌',
851
+ '▐ ⠂ ▌',
852
+ '▐ ⠈ ▌',
853
+ '▐ ⠂▌',
854
+ '▐ ⠠▌',
855
+ '▐ ⡀▌',
856
+ '▐ ⠠ ▌',
857
+ '▐ ⠂ ▌',
858
+ '▐ ⠈ ▌',
859
+ '▐ ⠂ ▌',
860
+ '▐ ⠠ ▌',
861
+ '▐ ⡀ ▌',
862
+ '▐ ⠠ ▌',
863
+ '▐ ⠂ ▌',
864
+ '▐ ⠈ ▌',
865
+ '▐ ⠂ ▌',
866
+ '▐ ⠠ ▌',
867
+ '▐ ⡀ ▌',
868
+ '▐⠠ ▌',
869
+ ],
870
+ },
871
+ shark: {
872
+ interval: 120,
873
+ frames: [
874
+ '▐|\\____________▌',
875
+ '▐_|\\___________▌',
876
+ '▐__|\\__________▌',
877
+ '▐___|\\_________▌',
878
+ '▐____|\\________▌',
879
+ '▐_____|\\_______▌',
880
+ '▐______|\\______▌',
881
+ '▐_______|\\_____▌',
882
+ '▐________|\\____▌',
883
+ '▐_________|\\___▌',
884
+ '▐__________|\\__▌',
885
+ '▐___________|\\_▌',
886
+ '▐____________|\\▌',
887
+ '▐____________/|▌',
888
+ '▐___________/|_▌',
889
+ '▐__________/|__▌',
890
+ '▐_________/|___▌',
891
+ '▐________/|____▌',
892
+ '▐_______/|_____▌',
893
+ '▐______/|______▌',
894
+ '▐_____/|_______▌',
895
+ '▐____/|________▌',
896
+ '▐___/|_________▌',
897
+ '▐__/|__________▌',
898
+ '▐_/|___________▌',
899
+ '▐/|____________▌',
900
+ ],
901
+ },
902
+ dqpb: {
903
+ interval: 100,
904
+ frames: ['d', 'q', 'p', 'b'],
905
+ },
906
+ weather: {
907
+ interval: 100,
908
+ frames: [
909
+ '☀️ ',
910
+ '☀️ ',
911
+ '☀️ ',
912
+ '🌤 ',
913
+ '⛅️ ',
914
+ '🌥 ',
915
+ '☁️ ',
916
+ '🌧 ',
917
+ '🌨 ',
918
+ '🌧 ',
919
+ '🌨 ',
920
+ '🌧 ',
921
+ '🌨 ',
922
+ '⛈ ',
923
+ '🌨 ',
924
+ '🌧 ',
925
+ '🌨 ',
926
+ '☁️ ',
927
+ '🌥 ',
928
+ '⛅️ ',
929
+ '🌤 ',
930
+ '☀️ ',
931
+ '☀️ ',
932
+ ],
933
+ },
934
+ christmas: {
935
+ interval: 400,
936
+ frames: ['🌲', '🎄'],
937
+ },
938
+ grenade: {
939
+ interval: 80,
940
+ frames: [
941
+ '، ',
942
+ '′ ',
943
+ ' ´ ',
944
+ ' ‾ ',
945
+ ' ⸌',
946
+ ' ⸊',
947
+ ' |',
948
+ ' ⁎',
949
+ ' ⁕',
950
+ ' ෴ ',
951
+ ' ⁓',
952
+ ' ',
953
+ ' ',
954
+ ' ',
955
+ ],
956
+ },
957
+ point: {
958
+ interval: 125,
959
+ frames: ['∙∙∙', '●∙∙', '∙●∙', '∙∙●', '∙∙∙'],
960
+ },
961
+ layer: {
962
+ interval: 150,
963
+ frames: ['-', '=', '≡'],
964
+ },
965
+ betaWave: {
966
+ interval: 80,
967
+ frames: ['ρββββββ', 'βρβββββ', 'ββρββββ', 'βββρβββ', 'ββββρββ', 'βββββρβ', 'ββββββρ'],
968
+ },
969
+ fingerDance: {
970
+ interval: 160,
971
+ frames: ['🤘 ', '🤟 ', '🖖 ', '✋ ', '🤚 ', '👆 '],
972
+ },
973
+ fistBump: {
974
+ interval: 80,
975
+ frames: [
976
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
977
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
978
+ '🤜\u3000\u3000\u3000\u3000🤛 ',
979
+ '\u3000🤜\u3000\u3000🤛\u3000 ',
980
+ '\u3000\u3000🤜🤛\u3000\u3000 ',
981
+ '\u3000🤜✨🤛\u3000\u3000 ',
982
+ '🤜\u3000✨\u3000🤛\u3000 ',
983
+ ],
984
+ },
985
+ soccerHeader: {
986
+ interval: 80,
987
+ frames: [
988
+ ' 🧑⚽️ 🧑 ',
989
+ '🧑 ⚽️ 🧑 ',
990
+ '🧑 ⚽️ 🧑 ',
991
+ '🧑 ⚽️ 🧑 ',
992
+ '🧑 ⚽️ 🧑 ',
993
+ '🧑 ⚽️ 🧑 ',
994
+ '🧑 ⚽️🧑 ',
995
+ '🧑 ⚽️ 🧑 ',
996
+ '🧑 ⚽️ 🧑 ',
997
+ '🧑 ⚽️ 🧑 ',
998
+ '🧑 ⚽️ 🧑 ',
999
+ '🧑 ⚽️ 🧑 ',
1000
+ ],
1001
+ },
1002
+ mindblown: {
1003
+ interval: 160,
1004
+ frames: [
1005
+ '😐 ',
1006
+ '😐 ',
1007
+ '😮 ',
1008
+ '😮 ',
1009
+ '😦 ',
1010
+ '😦 ',
1011
+ '😧 ',
1012
+ '😧 ',
1013
+ '🤯 ',
1014
+ '💥 ',
1015
+ '✨ ',
1016
+ '\u3000 ',
1017
+ '\u3000 ',
1018
+ '\u3000 ',
1019
+ ],
1020
+ },
1021
+ speaker: {
1022
+ interval: 160,
1023
+ frames: ['🔈 ', '🔉 ', '🔊 ', '🔉 '],
1024
+ },
1025
+ orangePulse: {
1026
+ interval: 100,
1027
+ frames: ['🔸 ', '🔶 ', '🟠 ', '🟠 ', '🔶 '],
1028
+ },
1029
+ bluePulse: {
1030
+ interval: 100,
1031
+ frames: ['🔹 ', '🔷 ', '🔵 ', '🔵 ', '🔷 '],
1032
+ },
1033
+ orangeBluePulse: {
1034
+ interval: 100,
1035
+ frames: ['🔸 ', '🔶 ', '🟠 ', '🟠 ', '🔶 ', '🔹 ', '🔷 ', '🔵 ', '🔵 ', '🔷 '],
1036
+ },
1037
+ timeTravel: {
1038
+ interval: 100,
1039
+ frames: ['🕛 ', '🕚 ', '🕙 ', '🕘 ', '🕗 ', '🕖 ', '🕕 ', '🕔 ', '🕓 ', '🕒 ', '🕑 ', '🕐 '],
1040
+ },
1041
+ aesthetic: {
1042
+ interval: 80,
1043
+ frames: ['▰▱▱▱▱▱▱', '▰▰▱▱▱▱▱', '▰▰▰▱▱▱▱', '▰▰▰▰▱▱▱', '▰▰▰▰▰▱▱', '▰▰▰▰▰▰▱', '▰▰▰▰▰▰▰', '▰▱▱▱▱▱▱'],
1044
+ },
1045
+ dwarfFortress: {
1046
+ interval: 80,
1047
+ frames: [
1048
+ ' ██████£££ ',
1049
+ '☺██████£££ ',
1050
+ '☺██████£££ ',
1051
+ '☺▓█████£££ ',
1052
+ '☺▓█████£££ ',
1053
+ '☺▒█████£££ ',
1054
+ '☺▒█████£££ ',
1055
+ '☺░█████£££ ',
1056
+ '☺░█████£££ ',
1057
+ '☺ █████£££ ',
1058
+ ' ☺█████£££ ',
1059
+ ' ☺█████£££ ',
1060
+ ' ☺▓████£££ ',
1061
+ ' ☺▓████£££ ',
1062
+ ' ☺▒████£££ ',
1063
+ ' ☺▒████£££ ',
1064
+ ' ☺░████£££ ',
1065
+ ' ☺░████£££ ',
1066
+ ' ☺ ████£££ ',
1067
+ ' ☺████£££ ',
1068
+ ' ☺████£££ ',
1069
+ ' ☺▓███£££ ',
1070
+ ' ☺▓███£££ ',
1071
+ ' ☺▒███£££ ',
1072
+ ' ☺▒███£££ ',
1073
+ ' ☺░███£££ ',
1074
+ ' ☺░███£££ ',
1075
+ ' ☺ ███£££ ',
1076
+ ' ☺███£££ ',
1077
+ ' ☺███£££ ',
1078
+ ' ☺▓██£££ ',
1079
+ ' ☺▓██£££ ',
1080
+ ' ☺▒██£££ ',
1081
+ ' ☺▒██£££ ',
1082
+ ' ☺░██£££ ',
1083
+ ' ☺░██£££ ',
1084
+ ' ☺ ██£££ ',
1085
+ ' ☺██£££ ',
1086
+ ' ☺██£££ ',
1087
+ ' ☺▓█£££ ',
1088
+ ' ☺▓█£££ ',
1089
+ ' ☺▒█£££ ',
1090
+ ' ☺▒█£££ ',
1091
+ ' ☺░█£££ ',
1092
+ ' ☺░█£££ ',
1093
+ ' ☺ █£££ ',
1094
+ ' ☺█£££ ',
1095
+ ' ☺█£££ ',
1096
+ ' ☺▓£££ ',
1097
+ ' ☺▓£££ ',
1098
+ ' ☺▒£££ ',
1099
+ ' ☺▒£££ ',
1100
+ ' ☺░£££ ',
1101
+ ' ☺░£££ ',
1102
+ ' ☺ £££ ',
1103
+ ' ☺£££ ',
1104
+ ' ☺£££ ',
1105
+ ' ☺▓££ ',
1106
+ ' ☺▓££ ',
1107
+ ' ☺▒££ ',
1108
+ ' ☺▒££ ',
1109
+ ' ☺░££ ',
1110
+ ' ☺░££ ',
1111
+ ' ☺ ££ ',
1112
+ ' ☺££ ',
1113
+ ' ☺££ ',
1114
+ ' ☺▓£ ',
1115
+ ' ☺▓£ ',
1116
+ ' ☺▒£ ',
1117
+ ' ☺▒£ ',
1118
+ ' ☺░£ ',
1119
+ ' ☺░£ ',
1120
+ ' ☺ £ ',
1121
+ ' ☺£ ',
1122
+ ' ☺£ ',
1123
+ ' ☺▓ ',
1124
+ ' ☺▓ ',
1125
+ ' ☺▒ ',
1126
+ ' ☺▒ ',
1127
+ ' ☺░ ',
1128
+ ' ☺░ ',
1129
+ ' ☺ ',
1130
+ ' ☺ &',
1131
+ ' ☺ ☼&',
1132
+ ' ☺ ☼ &',
1133
+ ' ☺☼ &',
1134
+ ' ☺☼ & ',
1135
+ ' ‼ & ',
1136
+ ' ☺ & ',
1137
+ ' ‼ & ',
1138
+ ' ☺ & ',
1139
+ ' ‼ & ',
1140
+ ' ☺ & ',
1141
+ '‼ & ',
1142
+ ' & ',
1143
+ ' & ',
1144
+ ' & ░ ',
1145
+ ' & ▒ ',
1146
+ ' & ▓ ',
1147
+ ' & £ ',
1148
+ ' & ░£ ',
1149
+ ' & ▒£ ',
1150
+ ' & ▓£ ',
1151
+ ' & ££ ',
1152
+ ' & ░££ ',
1153
+ ' & ▒££ ',
1154
+ '& ▓££ ',
1155
+ '& £££ ',
1156
+ ' ░£££ ',
1157
+ ' ▒£££ ',
1158
+ ' ▓£££ ',
1159
+ ' █£££ ',
1160
+ ' ░█£££ ',
1161
+ ' ▒█£££ ',
1162
+ ' ▓█£££ ',
1163
+ ' ██£££ ',
1164
+ ' ░██£££ ',
1165
+ ' ▒██£££ ',
1166
+ ' ▓██£££ ',
1167
+ ' ███£££ ',
1168
+ ' ░███£££ ',
1169
+ ' ▒███£££ ',
1170
+ ' ▓███£££ ',
1171
+ ' ████£££ ',
1172
+ ' ░████£££ ',
1173
+ ' ▒████£££ ',
1174
+ ' ▓████£££ ',
1175
+ ' █████£££ ',
1176
+ ' ░█████£££ ',
1177
+ ' ▒█████£££ ',
1178
+ ' ▓█████£££ ',
1179
+ ' ██████£££ ',
1180
+ ' ██████£££ ',
1181
+ ],
1182
+ },
1183
+ };