kuzzle 2.18.1 → 2.19.2
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.
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/lib/api/controllers/adminController.js +9 -0
- package/lib/api/controllers/debugController.d.ts +59 -0
- package/lib/api/controllers/debugController.js +285 -0
- package/lib/api/controllers/documentController.js +43 -29
- package/lib/api/controllers/index.js +1 -0
- package/lib/api/controllers/securityController.js +2 -2
- package/lib/api/documentExtractor.js +49 -8
- package/lib/api/funnel.js +30 -8
- package/lib/api/httpRoutes.js +6 -0
- package/lib/api/request/kuzzleRequest.d.ts +12 -4
- package/lib/api/request/kuzzleRequest.js +17 -13
- package/lib/cluster/idCardHandler.js +1 -1
- package/lib/config/default.config.js +3 -0
- package/lib/config/documentEventAliases.d.ts +7 -0
- package/lib/config/documentEventAliases.js +26 -12
- package/lib/core/backend/backend.d.ts +4 -0
- package/lib/core/backend/backend.js +9 -0
- package/lib/core/network/protocols/httpwsProtocol.js +6 -0
- package/lib/core/shared/sdk/embeddedSdk.d.ts +1 -1
- package/lib/core/shared/sdk/embeddedSdk.js +33 -0
- package/lib/kerror/codes/0-core.json +35 -0
- package/lib/kerror/codes/2-api.json +6 -0
- package/lib/kuzzle/kuzzle.d.ts +1 -1
- package/lib/kuzzle/kuzzle.js +27 -8
- package/lib/model/storage/apiKey.js +1 -6
- package/lib/service/storage/elasticsearch.js +40 -13
- package/lib/types/DebugModule.d.ts +23 -0
- package/lib/types/DebugModule.js +39 -0
- package/lib/types/config/SecurityConfiguration.d.ts +10 -0
- package/lib/util/crypto.d.ts +1 -0
- package/lib/util/crypto.js +12 -0
- package/lib/util/name-generator.d.ts +79 -0
- package/lib/util/name-generator.js +1409 -1345
- package/lib/util/time.d.ts +1 -0
- package/lib/util/time.js +9 -0
- package/npm-shrinkwrap.json +19422 -0
- package/package.json +4 -6
- package/lib/core/security/README.md +0 -224
- package/lib/core/shared/README.md +0 -3
- package/package-lock.json +0 -8422
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/*
|
|
2
3
|
* Kuzzle, a backend software, self-hostable and ready to use
|
|
3
4
|
* to power modern apps
|
|
@@ -18,1354 +19,1417 @@
|
|
|
18
19
|
* See the License for the specific language governing permissions and
|
|
19
20
|
* limitations under the License.
|
|
20
21
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
|
+
exports.randomNumber = exports.NameGenerator = void 0;
|
|
24
|
+
class NameGenerator {
|
|
25
|
+
/**
|
|
26
|
+
* Returns a random name.
|
|
27
|
+
*
|
|
28
|
+
* # Usage:
|
|
29
|
+
*
|
|
30
|
+
* ```js
|
|
31
|
+
* const name = NameGenerator.getRandomName(); // 'verdi'
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @returns a random name
|
|
35
|
+
*/
|
|
36
|
+
static getRandomName() {
|
|
37
|
+
return names[randomNumber(names.length)];
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Returns a random adjective.
|
|
41
|
+
*
|
|
42
|
+
* # Usage
|
|
43
|
+
*
|
|
44
|
+
* ```js
|
|
45
|
+
* const adj = NameGenerator.getRandomAdjective(); // 'absent'
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @returns a random adjective
|
|
49
|
+
*/
|
|
50
|
+
static getRandomAdjective() {
|
|
51
|
+
return adjectives[randomNumber(adjectives.length)];
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Generates a random formatted name that consists of an optional prefix, a random adjective,
|
|
55
|
+
* a random name and an optional random number separated by separator (default: '-').
|
|
56
|
+
*
|
|
57
|
+
* Format: `[prefix<separator>]<adjective><separator><name>[<separator>random number]`
|
|
58
|
+
*
|
|
59
|
+
* Format example: `something-dashing-euler-1164`
|
|
60
|
+
*
|
|
61
|
+
* ## Usage
|
|
62
|
+
*
|
|
63
|
+
* ```js
|
|
64
|
+
* let name = NameGenerator.generateRandomName({
|
|
65
|
+
* prefix: 'my',
|
|
66
|
+
* separator: '_',
|
|
67
|
+
* postfixRandRange: { min: 1, max: 10 }
|
|
68
|
+
* }); // 'my_abandoned_yogi_5'
|
|
69
|
+
*
|
|
70
|
+
* name = NameGenerator.generateRandomName({
|
|
71
|
+
* separator: ' ',
|
|
72
|
+
* postfixRandRange: false
|
|
73
|
+
* }); // 'amused vampire'
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* @param {GenerateRandomNameOpts} opts Optional options
|
|
77
|
+
*
|
|
78
|
+
* @returns a random formatted name
|
|
79
|
+
*/
|
|
80
|
+
static generateRandomName({ prefix, separator = '-', postfixRandRange = { max: 100000, min: 0 }, } = {}) {
|
|
81
|
+
const adjective = NameGenerator.getRandomAdjective();
|
|
82
|
+
const name = NameGenerator.getRandomName();
|
|
83
|
+
prefix = prefix !== undefined ? `${prefix}${separator}` : '';
|
|
84
|
+
if (postfixRandRange === false) {
|
|
85
|
+
return `${prefix}${adjective}${separator}${name}`;
|
|
86
|
+
}
|
|
87
|
+
const { min = 0, max } = postfixRandRange;
|
|
88
|
+
return `${prefix}${adjective}${separator}${name}${separator}${randomNumber(min, max)}`;
|
|
89
|
+
}
|
|
26
90
|
}
|
|
27
|
-
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
91
|
+
exports.NameGenerator = NameGenerator;
|
|
92
|
+
function randomNumber(min, max) {
|
|
93
|
+
if (max === undefined) {
|
|
94
|
+
max = min;
|
|
95
|
+
min = 0;
|
|
96
|
+
}
|
|
97
|
+
max = Math.floor(max);
|
|
98
|
+
min = Math.floor(min);
|
|
99
|
+
return Math.floor(Math.random() * (max - min)) + min;
|
|
34
100
|
}
|
|
35
|
-
|
|
36
|
-
module.exports = { generateRandomName, randomNumber };
|
|
37
|
-
|
|
101
|
+
exports.randomNumber = randomNumber;
|
|
38
102
|
const adjectives = [
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
103
|
+
'aback',
|
|
104
|
+
'abandoned',
|
|
105
|
+
'abashed',
|
|
106
|
+
'aberrant',
|
|
107
|
+
'abiding',
|
|
108
|
+
'ablaze',
|
|
109
|
+
'able',
|
|
110
|
+
'aboard',
|
|
111
|
+
'abrasive',
|
|
112
|
+
'abrupt',
|
|
113
|
+
'absent',
|
|
114
|
+
'absorbed',
|
|
115
|
+
'abstracted',
|
|
116
|
+
'absurd',
|
|
117
|
+
'abundant',
|
|
118
|
+
'acceptable',
|
|
119
|
+
'accessible',
|
|
120
|
+
'accidental',
|
|
121
|
+
'accurate',
|
|
122
|
+
'acidic',
|
|
123
|
+
'acoustic',
|
|
124
|
+
'acrid',
|
|
125
|
+
'actually',
|
|
126
|
+
'adamant',
|
|
127
|
+
'adorable',
|
|
128
|
+
'adventurous',
|
|
129
|
+
'agitated',
|
|
130
|
+
'alert',
|
|
131
|
+
'aloof',
|
|
132
|
+
'amiable',
|
|
133
|
+
'amused',
|
|
134
|
+
'annoyed',
|
|
135
|
+
'antsy',
|
|
136
|
+
'anxious',
|
|
137
|
+
'appetizing',
|
|
138
|
+
'apprehensive',
|
|
139
|
+
'astonishing',
|
|
140
|
+
'average',
|
|
141
|
+
'bashful',
|
|
142
|
+
'batty',
|
|
143
|
+
'beautiful',
|
|
144
|
+
'befitting',
|
|
145
|
+
'beneficial',
|
|
146
|
+
'bent',
|
|
147
|
+
'berserk',
|
|
148
|
+
'bewildered',
|
|
149
|
+
'billowy',
|
|
150
|
+
'biting',
|
|
151
|
+
'bitter',
|
|
152
|
+
'bizarre',
|
|
153
|
+
'bland',
|
|
154
|
+
'bloody',
|
|
155
|
+
'blue',
|
|
156
|
+
'blushing',
|
|
157
|
+
'boiling',
|
|
158
|
+
'bored',
|
|
159
|
+
'boring',
|
|
160
|
+
'bouncy',
|
|
161
|
+
'boundless',
|
|
162
|
+
'brainy',
|
|
163
|
+
'brash',
|
|
164
|
+
'brave',
|
|
165
|
+
'brawny',
|
|
166
|
+
'breakable',
|
|
167
|
+
'breezy',
|
|
168
|
+
'brief',
|
|
169
|
+
'bright',
|
|
170
|
+
'broad',
|
|
171
|
+
'bulky',
|
|
172
|
+
'bumpy',
|
|
173
|
+
'burly',
|
|
174
|
+
'bustling',
|
|
175
|
+
'busy',
|
|
176
|
+
'cagey',
|
|
177
|
+
'calculating',
|
|
178
|
+
'callous',
|
|
179
|
+
'calm',
|
|
180
|
+
'capable',
|
|
181
|
+
'capricious',
|
|
182
|
+
'careful',
|
|
183
|
+
'careless',
|
|
184
|
+
'caring',
|
|
185
|
+
'cautious',
|
|
186
|
+
'ceaseless',
|
|
187
|
+
'certain',
|
|
188
|
+
'changeable',
|
|
189
|
+
'charming',
|
|
190
|
+
'cheeky',
|
|
191
|
+
'cheerful',
|
|
192
|
+
'chemical',
|
|
193
|
+
'chief',
|
|
194
|
+
'chilly',
|
|
195
|
+
'chivalrous',
|
|
196
|
+
'chunky',
|
|
197
|
+
'classy',
|
|
198
|
+
'clean',
|
|
199
|
+
'clever',
|
|
200
|
+
'cloistered',
|
|
201
|
+
'closed',
|
|
202
|
+
'cloudy',
|
|
203
|
+
'clumsy',
|
|
204
|
+
'cluttered',
|
|
205
|
+
'coherent',
|
|
206
|
+
'cold',
|
|
207
|
+
'colorful',
|
|
208
|
+
'colossal',
|
|
209
|
+
'combative',
|
|
210
|
+
'comfortable',
|
|
211
|
+
'common',
|
|
212
|
+
'complete',
|
|
213
|
+
'complex',
|
|
214
|
+
'concerned',
|
|
215
|
+
'confused',
|
|
216
|
+
'conscious',
|
|
217
|
+
'contemplative',
|
|
218
|
+
'convincing',
|
|
219
|
+
'convoluted',
|
|
220
|
+
'cool',
|
|
221
|
+
'cooperative',
|
|
222
|
+
'coordinated',
|
|
223
|
+
'corny',
|
|
224
|
+
'costly',
|
|
225
|
+
'courageous',
|
|
226
|
+
'crabby',
|
|
227
|
+
'crazy',
|
|
228
|
+
'creepy',
|
|
229
|
+
'crooked',
|
|
230
|
+
'cuddly',
|
|
231
|
+
'cultured',
|
|
232
|
+
'cumbersome',
|
|
233
|
+
'curious',
|
|
234
|
+
'curly',
|
|
235
|
+
'cut',
|
|
236
|
+
'cynical',
|
|
237
|
+
'daffy',
|
|
238
|
+
'daily',
|
|
239
|
+
'damp',
|
|
240
|
+
'dangerous',
|
|
241
|
+
'dapper',
|
|
242
|
+
'dashing',
|
|
243
|
+
'dazzling',
|
|
244
|
+
'deafening',
|
|
245
|
+
'dear',
|
|
246
|
+
'debonair',
|
|
247
|
+
'deceitful',
|
|
248
|
+
'decisive',
|
|
249
|
+
'decorous',
|
|
250
|
+
'deep',
|
|
251
|
+
'defiant',
|
|
252
|
+
'delicate',
|
|
253
|
+
'delicious',
|
|
254
|
+
'delightful',
|
|
255
|
+
'delirious',
|
|
256
|
+
'demonic',
|
|
257
|
+
'dependent',
|
|
258
|
+
'depressed',
|
|
259
|
+
'deranged',
|
|
260
|
+
'descriptive',
|
|
261
|
+
'deserted',
|
|
262
|
+
'detailed',
|
|
263
|
+
'determined',
|
|
264
|
+
'devilish',
|
|
265
|
+
'disgusted',
|
|
266
|
+
'distinct',
|
|
267
|
+
'distraught',
|
|
268
|
+
'distressed',
|
|
269
|
+
'disturbed',
|
|
270
|
+
'dizzy',
|
|
271
|
+
'drab',
|
|
272
|
+
'drained',
|
|
273
|
+
'dull',
|
|
274
|
+
'eager',
|
|
275
|
+
'early',
|
|
276
|
+
'earsplitting',
|
|
277
|
+
'earthy',
|
|
278
|
+
'easy',
|
|
279
|
+
'eatable',
|
|
280
|
+
'economic',
|
|
281
|
+
'ecstatic',
|
|
282
|
+
'educated',
|
|
283
|
+
'efficacious',
|
|
284
|
+
'efficient',
|
|
285
|
+
'eight',
|
|
286
|
+
'elastic',
|
|
287
|
+
'elated',
|
|
288
|
+
'elderly',
|
|
289
|
+
'electric',
|
|
290
|
+
'elegant',
|
|
291
|
+
'elfin',
|
|
292
|
+
'elite',
|
|
293
|
+
'emaciated',
|
|
294
|
+
'embarrassed',
|
|
295
|
+
'eminent',
|
|
296
|
+
'empty',
|
|
297
|
+
'enchanted',
|
|
298
|
+
'enchanting',
|
|
299
|
+
'encouraging',
|
|
300
|
+
'endurable',
|
|
301
|
+
'energetic',
|
|
302
|
+
'enormous',
|
|
303
|
+
'entertaining',
|
|
304
|
+
'enthusiastic',
|
|
305
|
+
'envious',
|
|
306
|
+
'equable',
|
|
307
|
+
'equal',
|
|
308
|
+
'erratic',
|
|
309
|
+
'ethereal',
|
|
310
|
+
'exasperated',
|
|
311
|
+
'excited',
|
|
312
|
+
'exhilarated',
|
|
313
|
+
'extensive',
|
|
314
|
+
'exuberant',
|
|
315
|
+
'fabulous',
|
|
316
|
+
'faded',
|
|
317
|
+
'faint',
|
|
318
|
+
'fair',
|
|
319
|
+
'faithful',
|
|
320
|
+
'false',
|
|
321
|
+
'familiar',
|
|
322
|
+
'famous',
|
|
323
|
+
'fancy',
|
|
324
|
+
'fantastic',
|
|
325
|
+
'far',
|
|
326
|
+
'fascinated',
|
|
327
|
+
'fast',
|
|
328
|
+
'fearless',
|
|
329
|
+
'feigned',
|
|
330
|
+
'festive',
|
|
331
|
+
'few',
|
|
332
|
+
'fierce',
|
|
333
|
+
'flat',
|
|
334
|
+
'floppy',
|
|
335
|
+
'fluttering',
|
|
336
|
+
'foolish',
|
|
337
|
+
'frantic',
|
|
338
|
+
'fresh',
|
|
339
|
+
'friendly',
|
|
340
|
+
'frightened',
|
|
341
|
+
'frothy',
|
|
342
|
+
'frustrating',
|
|
343
|
+
'funny',
|
|
344
|
+
'fuzzy',
|
|
345
|
+
'gabby',
|
|
346
|
+
'gainful',
|
|
347
|
+
'gamy',
|
|
348
|
+
'gaping',
|
|
349
|
+
'garrulous',
|
|
350
|
+
'gaudy',
|
|
351
|
+
'general',
|
|
352
|
+
'gentle',
|
|
353
|
+
'ghastly',
|
|
354
|
+
'giant',
|
|
355
|
+
'giddy',
|
|
356
|
+
'gifted',
|
|
357
|
+
'gigantic',
|
|
358
|
+
'glamorous',
|
|
359
|
+
'gleaming',
|
|
360
|
+
'glib',
|
|
361
|
+
'glistening',
|
|
362
|
+
'glorious',
|
|
363
|
+
'glossy',
|
|
364
|
+
'godly',
|
|
365
|
+
'good',
|
|
366
|
+
'goofy',
|
|
367
|
+
'gorgeous',
|
|
368
|
+
'graceful',
|
|
369
|
+
'grandiose',
|
|
370
|
+
'grateful',
|
|
371
|
+
'grieving',
|
|
372
|
+
'gritty',
|
|
373
|
+
'grubby',
|
|
374
|
+
'grumpy',
|
|
375
|
+
'habitual',
|
|
376
|
+
'half',
|
|
377
|
+
'hallowed',
|
|
378
|
+
'halting',
|
|
379
|
+
'handsome',
|
|
380
|
+
'handy',
|
|
381
|
+
'hanging',
|
|
382
|
+
'hapless',
|
|
383
|
+
'happy',
|
|
384
|
+
'harmonious',
|
|
385
|
+
'harsh',
|
|
386
|
+
'hateful',
|
|
387
|
+
'heady',
|
|
388
|
+
'healthy',
|
|
389
|
+
'heartbreaking',
|
|
390
|
+
'heavenly',
|
|
391
|
+
'heavy',
|
|
392
|
+
'hellish',
|
|
393
|
+
'helpful',
|
|
394
|
+
'helpless',
|
|
395
|
+
'hesitant',
|
|
396
|
+
'hideous',
|
|
397
|
+
'high',
|
|
398
|
+
'hilarious',
|
|
399
|
+
'hissing',
|
|
400
|
+
'historical',
|
|
401
|
+
'holistic',
|
|
402
|
+
'hollow',
|
|
403
|
+
'homeless',
|
|
404
|
+
'homely',
|
|
405
|
+
'honorable',
|
|
406
|
+
'horrible',
|
|
407
|
+
'horrific',
|
|
408
|
+
'hospitable',
|
|
409
|
+
'huge',
|
|
410
|
+
'hulking',
|
|
411
|
+
'humdrum',
|
|
412
|
+
'humorous',
|
|
413
|
+
'hungry',
|
|
414
|
+
'hurried',
|
|
415
|
+
'hurt',
|
|
416
|
+
'hushed',
|
|
417
|
+
'husky',
|
|
418
|
+
'hypnotic',
|
|
419
|
+
'icky',
|
|
420
|
+
'icy',
|
|
421
|
+
'ideal',
|
|
422
|
+
'ill',
|
|
423
|
+
'illegal',
|
|
424
|
+
'illustrious',
|
|
425
|
+
'imaginary',
|
|
426
|
+
'immense',
|
|
427
|
+
'imminent',
|
|
428
|
+
'impartial',
|
|
429
|
+
'important',
|
|
430
|
+
'impossible',
|
|
431
|
+
'incandescent',
|
|
432
|
+
'incredible',
|
|
433
|
+
'industrious',
|
|
434
|
+
'infamous',
|
|
435
|
+
'innate',
|
|
436
|
+
'innocent',
|
|
437
|
+
'inquisitive',
|
|
438
|
+
'insidious',
|
|
439
|
+
'instinctive',
|
|
440
|
+
'intelligent',
|
|
441
|
+
'interesting',
|
|
442
|
+
'intrigued',
|
|
443
|
+
'invincible',
|
|
444
|
+
'irate',
|
|
445
|
+
'irritable',
|
|
446
|
+
'irritating',
|
|
447
|
+
'itchy',
|
|
448
|
+
'jaded',
|
|
449
|
+
'jagged',
|
|
450
|
+
'jazzy',
|
|
451
|
+
'jealous',
|
|
452
|
+
'jittery',
|
|
453
|
+
'jolly',
|
|
454
|
+
'joyous',
|
|
455
|
+
'judicious',
|
|
456
|
+
'jumbled',
|
|
457
|
+
'jumpy',
|
|
458
|
+
'kaput',
|
|
459
|
+
'keen',
|
|
460
|
+
'kind',
|
|
461
|
+
'kindhearted',
|
|
462
|
+
'kindly',
|
|
463
|
+
'knotty',
|
|
464
|
+
'knowing',
|
|
465
|
+
'known',
|
|
466
|
+
'labored',
|
|
467
|
+
'lackadaisical',
|
|
468
|
+
'lacking',
|
|
469
|
+
'lame',
|
|
470
|
+
'lamentable',
|
|
471
|
+
'languid',
|
|
472
|
+
'large',
|
|
473
|
+
'last',
|
|
474
|
+
'late',
|
|
475
|
+
'lazy',
|
|
476
|
+
'lean',
|
|
477
|
+
'learned',
|
|
478
|
+
'left',
|
|
479
|
+
'legal',
|
|
480
|
+
'lethal',
|
|
481
|
+
'level',
|
|
482
|
+
'light',
|
|
483
|
+
'likeable',
|
|
484
|
+
'limping',
|
|
485
|
+
'literate',
|
|
486
|
+
'little',
|
|
487
|
+
'lively',
|
|
488
|
+
'livid',
|
|
489
|
+
'living',
|
|
490
|
+
'lonely',
|
|
491
|
+
'longing',
|
|
492
|
+
'loose',
|
|
493
|
+
'lopsided',
|
|
494
|
+
'loud',
|
|
495
|
+
'loutish',
|
|
496
|
+
'lovely',
|
|
497
|
+
'loving',
|
|
498
|
+
'lucky',
|
|
499
|
+
'ludicrous',
|
|
500
|
+
'lumpy',
|
|
501
|
+
'lush',
|
|
502
|
+
'luxuriant',
|
|
503
|
+
'lying',
|
|
504
|
+
'lyrical',
|
|
505
|
+
'macabre',
|
|
506
|
+
'maddening',
|
|
507
|
+
'madly',
|
|
508
|
+
'magenta',
|
|
509
|
+
'magical',
|
|
510
|
+
'magnificent',
|
|
511
|
+
'majestic',
|
|
512
|
+
'makeshift',
|
|
513
|
+
'malicious',
|
|
514
|
+
'mammoth',
|
|
515
|
+
'maniacal',
|
|
516
|
+
'many',
|
|
517
|
+
'marked',
|
|
518
|
+
'marvelous',
|
|
519
|
+
'massive',
|
|
520
|
+
'material',
|
|
521
|
+
'materialistic',
|
|
522
|
+
'mean',
|
|
523
|
+
'measly',
|
|
524
|
+
'meaty',
|
|
525
|
+
'medical',
|
|
526
|
+
'melancholy',
|
|
527
|
+
'mellow',
|
|
528
|
+
'melodic',
|
|
529
|
+
'melted',
|
|
530
|
+
'merciful',
|
|
531
|
+
'messy',
|
|
532
|
+
'mighty',
|
|
533
|
+
'military',
|
|
534
|
+
'milky',
|
|
535
|
+
'miniature',
|
|
536
|
+
'mistaken',
|
|
537
|
+
'misty',
|
|
538
|
+
'mixed',
|
|
539
|
+
'modern',
|
|
540
|
+
'moldy',
|
|
541
|
+
'momentous',
|
|
542
|
+
'moody',
|
|
543
|
+
'mortified',
|
|
544
|
+
'motionless',
|
|
545
|
+
'mountainous',
|
|
546
|
+
'muddled',
|
|
547
|
+
'muddy',
|
|
548
|
+
'mundane',
|
|
549
|
+
'murky',
|
|
550
|
+
'mushy',
|
|
551
|
+
'mute',
|
|
552
|
+
'mysterious',
|
|
553
|
+
'nappy',
|
|
554
|
+
'narrow',
|
|
555
|
+
'nasty',
|
|
556
|
+
'natural',
|
|
557
|
+
'nauseating',
|
|
558
|
+
'neat',
|
|
559
|
+
'nebulous',
|
|
560
|
+
'necessary',
|
|
561
|
+
'needy',
|
|
562
|
+
'neighborly',
|
|
563
|
+
'nervous',
|
|
564
|
+
'new',
|
|
565
|
+
'next',
|
|
566
|
+
'nice',
|
|
567
|
+
'nifty',
|
|
568
|
+
'nimble',
|
|
569
|
+
'nine',
|
|
570
|
+
'nippy',
|
|
571
|
+
'noiseless',
|
|
572
|
+
'noisy',
|
|
573
|
+
'nonchalant',
|
|
574
|
+
'nonsensical',
|
|
575
|
+
'nonstop',
|
|
576
|
+
'normal',
|
|
577
|
+
'nostalgic',
|
|
578
|
+
'nosy',
|
|
579
|
+
'noxious',
|
|
580
|
+
'numberless',
|
|
581
|
+
'numerous',
|
|
582
|
+
'nutritious',
|
|
583
|
+
'nutty',
|
|
584
|
+
'obnoxious',
|
|
585
|
+
'observant',
|
|
586
|
+
'obtainable',
|
|
587
|
+
'oceanic',
|
|
588
|
+
'odd',
|
|
589
|
+
'offbeat',
|
|
590
|
+
'old',
|
|
591
|
+
'omniscient',
|
|
592
|
+
'one',
|
|
593
|
+
'onerous',
|
|
594
|
+
'open',
|
|
595
|
+
'opposite',
|
|
596
|
+
'optimal',
|
|
597
|
+
'orange',
|
|
598
|
+
'ordinary',
|
|
599
|
+
'organic',
|
|
600
|
+
'outgoing',
|
|
601
|
+
'outrageous',
|
|
602
|
+
'outstanding',
|
|
603
|
+
'painful',
|
|
604
|
+
'pale',
|
|
605
|
+
'paltry',
|
|
606
|
+
'panicky',
|
|
607
|
+
'panoramic',
|
|
608
|
+
'parallel',
|
|
609
|
+
'parched',
|
|
610
|
+
'parsimonious',
|
|
611
|
+
'past',
|
|
612
|
+
'pastoral',
|
|
613
|
+
'peaceful',
|
|
614
|
+
'penitent',
|
|
615
|
+
'perfect',
|
|
616
|
+
'periodic',
|
|
617
|
+
'permissible',
|
|
618
|
+
'perpetual',
|
|
619
|
+
'precious',
|
|
620
|
+
'prickly',
|
|
621
|
+
'proud',
|
|
622
|
+
'quack',
|
|
623
|
+
'quaint',
|
|
624
|
+
'quarrelsome',
|
|
625
|
+
'quick',
|
|
626
|
+
'quiet',
|
|
627
|
+
'quirky',
|
|
628
|
+
'quixotic',
|
|
629
|
+
'quizzical',
|
|
630
|
+
'rabid',
|
|
631
|
+
'ragged',
|
|
632
|
+
'rainy',
|
|
633
|
+
'rambunctious',
|
|
634
|
+
'rampant',
|
|
635
|
+
'rapid',
|
|
636
|
+
'rare',
|
|
637
|
+
'raspy',
|
|
638
|
+
'ratty',
|
|
639
|
+
'ready',
|
|
640
|
+
'real',
|
|
641
|
+
'reassured',
|
|
642
|
+
'rebel',
|
|
643
|
+
'receptive',
|
|
644
|
+
'recondite',
|
|
645
|
+
'red',
|
|
646
|
+
'redundant',
|
|
647
|
+
'reflective',
|
|
648
|
+
'regular',
|
|
649
|
+
'relieved',
|
|
650
|
+
'responsive',
|
|
651
|
+
'robust',
|
|
652
|
+
'rotund',
|
|
653
|
+
'rough',
|
|
654
|
+
'round',
|
|
655
|
+
'sable',
|
|
656
|
+
'sad',
|
|
657
|
+
'safe',
|
|
658
|
+
'salty',
|
|
659
|
+
'same',
|
|
660
|
+
'sarcastic',
|
|
661
|
+
'sassy',
|
|
662
|
+
'satisfying',
|
|
663
|
+
'savory',
|
|
664
|
+
'scant',
|
|
665
|
+
'scarce',
|
|
666
|
+
'scared',
|
|
667
|
+
'scary',
|
|
668
|
+
'scattered',
|
|
669
|
+
'scientific',
|
|
670
|
+
'scintillating',
|
|
671
|
+
'scrawny',
|
|
672
|
+
'screeching',
|
|
673
|
+
'second',
|
|
674
|
+
'shaggy',
|
|
675
|
+
'shaky',
|
|
676
|
+
'sharp',
|
|
677
|
+
'shiny',
|
|
678
|
+
'short',
|
|
679
|
+
'silky',
|
|
680
|
+
'silly',
|
|
681
|
+
'skinny',
|
|
682
|
+
'slimy',
|
|
683
|
+
'slippery',
|
|
684
|
+
'small',
|
|
685
|
+
'smiling',
|
|
686
|
+
'smoggy',
|
|
687
|
+
'smooth',
|
|
688
|
+
'smug',
|
|
689
|
+
'soggy',
|
|
690
|
+
'solid',
|
|
691
|
+
'sour',
|
|
692
|
+
'sparkling',
|
|
693
|
+
'spicy',
|
|
694
|
+
'splendid',
|
|
695
|
+
'spotless',
|
|
696
|
+
'square',
|
|
697
|
+
'steady',
|
|
698
|
+
'steep',
|
|
699
|
+
'sticky',
|
|
700
|
+
'stormy',
|
|
701
|
+
'stout',
|
|
702
|
+
'straight',
|
|
703
|
+
'strange',
|
|
704
|
+
'strong',
|
|
705
|
+
'stunning',
|
|
706
|
+
'substantial',
|
|
707
|
+
'successful',
|
|
708
|
+
'succulent',
|
|
709
|
+
'superficial',
|
|
710
|
+
'superior',
|
|
711
|
+
'swanky',
|
|
712
|
+
'sweet',
|
|
713
|
+
'tacit',
|
|
714
|
+
'tacky',
|
|
715
|
+
'talented',
|
|
716
|
+
'tall',
|
|
717
|
+
'tangible',
|
|
718
|
+
'tangy',
|
|
719
|
+
'tart',
|
|
720
|
+
'tasteful',
|
|
721
|
+
'tasteless',
|
|
722
|
+
'tasty',
|
|
723
|
+
'tearful',
|
|
724
|
+
'tedious',
|
|
725
|
+
'teeny',
|
|
726
|
+
'telling',
|
|
727
|
+
'tender',
|
|
728
|
+
'tense',
|
|
729
|
+
'terrible',
|
|
730
|
+
'testy',
|
|
731
|
+
'thankful',
|
|
732
|
+
'thoughtful',
|
|
733
|
+
'timely',
|
|
734
|
+
'tricky',
|
|
735
|
+
'troubled',
|
|
736
|
+
'twitterpated',
|
|
737
|
+
'ubiquitous',
|
|
738
|
+
'unaccountable',
|
|
739
|
+
'unarmed',
|
|
740
|
+
'unbiased',
|
|
741
|
+
'uncovered',
|
|
742
|
+
'understood',
|
|
743
|
+
'uninterested',
|
|
744
|
+
'unique',
|
|
745
|
+
'unknown',
|
|
746
|
+
'unusual',
|
|
747
|
+
'upbeat',
|
|
748
|
+
'uppity',
|
|
749
|
+
'upset',
|
|
750
|
+
'useful',
|
|
751
|
+
'utopian',
|
|
752
|
+
'uttermost',
|
|
753
|
+
'vagabond',
|
|
754
|
+
'vague',
|
|
755
|
+
'valuable',
|
|
756
|
+
'various',
|
|
757
|
+
'vast',
|
|
758
|
+
'vengeful',
|
|
759
|
+
'venomous',
|
|
760
|
+
'verdant',
|
|
761
|
+
'versed',
|
|
762
|
+
'vexed',
|
|
763
|
+
'victorious',
|
|
764
|
+
'vigorous',
|
|
765
|
+
'violent',
|
|
766
|
+
'violet',
|
|
767
|
+
'virtuous',
|
|
768
|
+
'vivacious',
|
|
769
|
+
'vivid',
|
|
770
|
+
'voiceless',
|
|
771
|
+
'volatile',
|
|
772
|
+
'voracious',
|
|
773
|
+
'wacky',
|
|
774
|
+
'waiting',
|
|
775
|
+
'wakeful',
|
|
776
|
+
'wandering',
|
|
777
|
+
'warlike',
|
|
778
|
+
'warm',
|
|
779
|
+
'wary',
|
|
780
|
+
'watery',
|
|
781
|
+
'wealthy',
|
|
782
|
+
'weary',
|
|
783
|
+
'whimsical',
|
|
784
|
+
'whispering',
|
|
785
|
+
'whole',
|
|
786
|
+
'whopping',
|
|
787
|
+
'wicked',
|
|
788
|
+
'wide',
|
|
789
|
+
'wiggly',
|
|
790
|
+
'wild',
|
|
791
|
+
'willing',
|
|
792
|
+
'windy',
|
|
793
|
+
'wiry',
|
|
794
|
+
'wise',
|
|
795
|
+
'wistful',
|
|
796
|
+
'witty',
|
|
797
|
+
'wobbly',
|
|
798
|
+
'woebegone',
|
|
799
|
+
'wonderful',
|
|
800
|
+
'worried',
|
|
801
|
+
'wrathful',
|
|
802
|
+
'wrong',
|
|
803
|
+
'yellow',
|
|
804
|
+
'yielding',
|
|
805
|
+
'young',
|
|
806
|
+
'youthful',
|
|
807
|
+
'yummy',
|
|
808
|
+
'zany',
|
|
809
|
+
'zealous',
|
|
810
|
+
'zippy',
|
|
747
811
|
];
|
|
748
|
-
|
|
749
812
|
const names = [
|
|
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
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
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
|
-
|
|
872
|
-
|
|
873
|
-
|
|
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
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
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
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
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
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
813
|
+
'aardvark',
|
|
814
|
+
'achilles',
|
|
815
|
+
'acrobat',
|
|
816
|
+
'actor',
|
|
817
|
+
'aeolus',
|
|
818
|
+
'aether',
|
|
819
|
+
'albatross',
|
|
820
|
+
'alligator',
|
|
821
|
+
'ampere',
|
|
822
|
+
'anansi',
|
|
823
|
+
'anaxagoras',
|
|
824
|
+
'anaximander',
|
|
825
|
+
'andersen',
|
|
826
|
+
'andromache',
|
|
827
|
+
'andromeda',
|
|
828
|
+
'ant',
|
|
829
|
+
'anteater',
|
|
830
|
+
'antelope',
|
|
831
|
+
'antigone',
|
|
832
|
+
'anthropologist',
|
|
833
|
+
'aphrodite',
|
|
834
|
+
'apollo',
|
|
835
|
+
'arachne',
|
|
836
|
+
'arborist',
|
|
837
|
+
'archaeologist',
|
|
838
|
+
'archimedes',
|
|
839
|
+
'architect',
|
|
840
|
+
'ares',
|
|
841
|
+
'ariadne',
|
|
842
|
+
'aristotle',
|
|
843
|
+
'armadillo',
|
|
844
|
+
'artemis',
|
|
845
|
+
'artisan',
|
|
846
|
+
'artist',
|
|
847
|
+
'asclepius',
|
|
848
|
+
'asimov',
|
|
849
|
+
'astronaut',
|
|
850
|
+
'atalanta',
|
|
851
|
+
'athena',
|
|
852
|
+
'attorney',
|
|
853
|
+
'atwood',
|
|
854
|
+
'author',
|
|
855
|
+
'babbage',
|
|
856
|
+
'bach',
|
|
857
|
+
'badger',
|
|
858
|
+
'bagheera',
|
|
859
|
+
'baker',
|
|
860
|
+
'balzac',
|
|
861
|
+
'banjo',
|
|
862
|
+
'barnacle',
|
|
863
|
+
'bartender',
|
|
864
|
+
'basilisk',
|
|
865
|
+
'bat',
|
|
866
|
+
'baudelaire',
|
|
867
|
+
'bear',
|
|
868
|
+
'beatboxer',
|
|
869
|
+
'beauvoir',
|
|
870
|
+
'beckett',
|
|
871
|
+
'bee',
|
|
872
|
+
'beethoven',
|
|
873
|
+
'beetle',
|
|
874
|
+
'bernouilli',
|
|
875
|
+
'besant',
|
|
876
|
+
'bigfoot',
|
|
877
|
+
'bird',
|
|
878
|
+
'bison',
|
|
879
|
+
'blacksmith',
|
|
880
|
+
'boar',
|
|
881
|
+
'bogeyman',
|
|
882
|
+
'bohr',
|
|
883
|
+
'boltzmann',
|
|
884
|
+
'boole',
|
|
885
|
+
'boreas',
|
|
886
|
+
'borges',
|
|
887
|
+
'boudicca',
|
|
888
|
+
'boxer',
|
|
889
|
+
'brachiosaurus',
|
|
890
|
+
'bradbury',
|
|
891
|
+
'brahmagupta',
|
|
892
|
+
'brahms',
|
|
893
|
+
'bronte',
|
|
894
|
+
'buffalo',
|
|
895
|
+
'bug',
|
|
896
|
+
'burgess',
|
|
897
|
+
'butterfly',
|
|
898
|
+
'calliope',
|
|
899
|
+
'calvin',
|
|
900
|
+
'camel',
|
|
901
|
+
'camus',
|
|
902
|
+
'canary',
|
|
903
|
+
'cantor',
|
|
904
|
+
'capybara',
|
|
905
|
+
'caracal',
|
|
906
|
+
'caravaggio',
|
|
907
|
+
'caribou',
|
|
908
|
+
'carnot',
|
|
909
|
+
'carpenter',
|
|
910
|
+
'carroll',
|
|
911
|
+
'carson',
|
|
912
|
+
'cartoonist',
|
|
913
|
+
'cashier',
|
|
914
|
+
'cassandra',
|
|
915
|
+
'cassiopeia',
|
|
916
|
+
'castor',
|
|
917
|
+
'cat',
|
|
918
|
+
'catfish',
|
|
919
|
+
'centaur',
|
|
920
|
+
'centipede',
|
|
921
|
+
'cerberus',
|
|
922
|
+
'cervantes',
|
|
923
|
+
'cezanne',
|
|
924
|
+
'chadwick',
|
|
925
|
+
'chandrasekhar',
|
|
926
|
+
'charpak',
|
|
927
|
+
'cheetah',
|
|
928
|
+
'chemist',
|
|
929
|
+
'cherenkov',
|
|
930
|
+
'chicken',
|
|
931
|
+
'chimera',
|
|
932
|
+
'chimpanzee',
|
|
933
|
+
'chinchilla',
|
|
934
|
+
'chipmunk',
|
|
935
|
+
'chopin',
|
|
936
|
+
'christie',
|
|
937
|
+
'cinematographer',
|
|
938
|
+
'circe',
|
|
939
|
+
'clio',
|
|
940
|
+
'cloud',
|
|
941
|
+
'colorist',
|
|
942
|
+
'comedian',
|
|
943
|
+
'composer',
|
|
944
|
+
'coriolis',
|
|
945
|
+
'cornelius',
|
|
946
|
+
'coulomb',
|
|
947
|
+
'cow',
|
|
948
|
+
'coyote',
|
|
949
|
+
'crab',
|
|
950
|
+
'critic',
|
|
951
|
+
'crocodile',
|
|
952
|
+
'cuckoo',
|
|
953
|
+
'curator',
|
|
954
|
+
'curie',
|
|
955
|
+
'daedalus',
|
|
956
|
+
'daffy',
|
|
957
|
+
'dali',
|
|
958
|
+
'dancer',
|
|
959
|
+
'darwin',
|
|
960
|
+
'davinci',
|
|
961
|
+
'debussy',
|
|
962
|
+
'deer',
|
|
963
|
+
'defoe',
|
|
964
|
+
'degas',
|
|
965
|
+
'demeter',
|
|
966
|
+
'democritus',
|
|
967
|
+
'dentist',
|
|
968
|
+
'descartes',
|
|
969
|
+
'dickens',
|
|
970
|
+
'dickinson',
|
|
971
|
+
'diebold',
|
|
972
|
+
'dijkstra',
|
|
973
|
+
'dingo',
|
|
974
|
+
'dinosaur',
|
|
975
|
+
'dionysus',
|
|
976
|
+
'dirac',
|
|
977
|
+
'dog',
|
|
978
|
+
'dolphin',
|
|
979
|
+
'doppleganger',
|
|
980
|
+
'doppler',
|
|
981
|
+
'dostoevsky',
|
|
982
|
+
'dove',
|
|
983
|
+
'dragon',
|
|
984
|
+
'dragonfly',
|
|
985
|
+
'dramaturge',
|
|
986
|
+
'droopy',
|
|
987
|
+
'duck',
|
|
988
|
+
'dumas',
|
|
989
|
+
'dvorak',
|
|
990
|
+
'eagle',
|
|
991
|
+
'ebadi',
|
|
992
|
+
'echidna',
|
|
993
|
+
'eco',
|
|
994
|
+
'economist',
|
|
995
|
+
'eel',
|
|
996
|
+
'ehrenfest',
|
|
997
|
+
'einstein',
|
|
998
|
+
'electrician',
|
|
999
|
+
'elephant',
|
|
1000
|
+
'elk',
|
|
1001
|
+
'emerson',
|
|
1002
|
+
'empedocles',
|
|
1003
|
+
'endymion',
|
|
1004
|
+
'engineer',
|
|
1005
|
+
'eosphorus',
|
|
1006
|
+
'epicurus',
|
|
1007
|
+
'erato',
|
|
1008
|
+
'ernst',
|
|
1009
|
+
'essayist',
|
|
1010
|
+
'euclid',
|
|
1011
|
+
'euler',
|
|
1012
|
+
'euripides',
|
|
1013
|
+
'euterpe',
|
|
1014
|
+
'fairy',
|
|
1015
|
+
'falcon',
|
|
1016
|
+
'faraday',
|
|
1017
|
+
'faulkner',
|
|
1018
|
+
'fawcett',
|
|
1019
|
+
'fawkes',
|
|
1020
|
+
'feynman',
|
|
1021
|
+
'fibonacci',
|
|
1022
|
+
'filmmaker',
|
|
1023
|
+
'firebird',
|
|
1024
|
+
'fitzgerald',
|
|
1025
|
+
'flamingo',
|
|
1026
|
+
'flaubert',
|
|
1027
|
+
'flea',
|
|
1028
|
+
'foreman',
|
|
1029
|
+
'foucault',
|
|
1030
|
+
'fourier',
|
|
1031
|
+
'fox',
|
|
1032
|
+
'frank',
|
|
1033
|
+
'franklin',
|
|
1034
|
+
'fredon',
|
|
1035
|
+
'freelancer',
|
|
1036
|
+
'freeman',
|
|
1037
|
+
'frog',
|
|
1038
|
+
'fuller',
|
|
1039
|
+
'gaia',
|
|
1040
|
+
'galileo',
|
|
1041
|
+
'gamow',
|
|
1042
|
+
'gandalf',
|
|
1043
|
+
'gandhi',
|
|
1044
|
+
'ganymede',
|
|
1045
|
+
'garfield',
|
|
1046
|
+
'gauss',
|
|
1047
|
+
'gecko',
|
|
1048
|
+
'geographer',
|
|
1049
|
+
'geologist',
|
|
1050
|
+
'geralt',
|
|
1051
|
+
'gershwin',
|
|
1052
|
+
'ghost',
|
|
1053
|
+
'ghostwriter',
|
|
1054
|
+
'giraffe',
|
|
1055
|
+
'gnome',
|
|
1056
|
+
'goat',
|
|
1057
|
+
'goblin',
|
|
1058
|
+
'godzilla',
|
|
1059
|
+
'goethe',
|
|
1060
|
+
'goldfish',
|
|
1061
|
+
'golem',
|
|
1062
|
+
'goose',
|
|
1063
|
+
'gorgon',
|
|
1064
|
+
'gorilla',
|
|
1065
|
+
'greene',
|
|
1066
|
+
'greer',
|
|
1067
|
+
'griffin',
|
|
1068
|
+
'grizzly',
|
|
1069
|
+
'hades',
|
|
1070
|
+
'hamster',
|
|
1071
|
+
'hare',
|
|
1072
|
+
'hawk',
|
|
1073
|
+
'hawking',
|
|
1074
|
+
'haydn',
|
|
1075
|
+
'hedgehog',
|
|
1076
|
+
'hedwig',
|
|
1077
|
+
'heisenberg',
|
|
1078
|
+
'helios',
|
|
1079
|
+
'hemmingway',
|
|
1080
|
+
'hepburn',
|
|
1081
|
+
'hephaestus',
|
|
1082
|
+
'hera',
|
|
1083
|
+
'heraclitus',
|
|
1084
|
+
'hermes',
|
|
1085
|
+
'heron',
|
|
1086
|
+
'hertz',
|
|
1087
|
+
'hesperus',
|
|
1088
|
+
'hestia',
|
|
1089
|
+
'higgs',
|
|
1090
|
+
'hilbert',
|
|
1091
|
+
'hippopotamus',
|
|
1092
|
+
'historian',
|
|
1093
|
+
'hobbes',
|
|
1094
|
+
'holiday',
|
|
1095
|
+
'hooke',
|
|
1096
|
+
'hopper',
|
|
1097
|
+
'hornet',
|
|
1098
|
+
'horse',
|
|
1099
|
+
'hubble',
|
|
1100
|
+
'huffman',
|
|
1101
|
+
'hugo',
|
|
1102
|
+
'huxley',
|
|
1103
|
+
'huygens',
|
|
1104
|
+
'hydra',
|
|
1105
|
+
'hyena',
|
|
1106
|
+
'iago',
|
|
1107
|
+
'icarus',
|
|
1108
|
+
'iguana',
|
|
1109
|
+
'illusionist',
|
|
1110
|
+
'illustrator',
|
|
1111
|
+
'imp',
|
|
1112
|
+
'impala',
|
|
1113
|
+
'impressionist',
|
|
1114
|
+
'inventor',
|
|
1115
|
+
'jabberwocky',
|
|
1116
|
+
'jackal',
|
|
1117
|
+
'jaguar',
|
|
1118
|
+
'janitor',
|
|
1119
|
+
'jellyfish',
|
|
1120
|
+
'joule',
|
|
1121
|
+
'journalist',
|
|
1122
|
+
'joyce',
|
|
1123
|
+
'kafka',
|
|
1124
|
+
'kahlo',
|
|
1125
|
+
'kangaroo',
|
|
1126
|
+
'keats',
|
|
1127
|
+
'keller',
|
|
1128
|
+
'kelvin',
|
|
1129
|
+
'kepler',
|
|
1130
|
+
'kernighan',
|
|
1131
|
+
'kestrel',
|
|
1132
|
+
'kierkegaard',
|
|
1133
|
+
'kipling',
|
|
1134
|
+
'kite',
|
|
1135
|
+
'kitten',
|
|
1136
|
+
'kiwi',
|
|
1137
|
+
'klimt',
|
|
1138
|
+
'knuth',
|
|
1139
|
+
'koala',
|
|
1140
|
+
'koenig',
|
|
1141
|
+
'kolmogorov',
|
|
1142
|
+
'korn',
|
|
1143
|
+
'ladybird',
|
|
1144
|
+
'lagrange',
|
|
1145
|
+
'lake',
|
|
1146
|
+
'laplace',
|
|
1147
|
+
'lemming',
|
|
1148
|
+
'lemur',
|
|
1149
|
+
'leopard',
|
|
1150
|
+
'leprechaun',
|
|
1151
|
+
'leucothea',
|
|
1152
|
+
'lion',
|
|
1153
|
+
'lizard',
|
|
1154
|
+
'llama',
|
|
1155
|
+
'loroupe',
|
|
1156
|
+
'lovecraft',
|
|
1157
|
+
'lovelace',
|
|
1158
|
+
'lynx',
|
|
1159
|
+
'lyricist',
|
|
1160
|
+
'maathai',
|
|
1161
|
+
'magician',
|
|
1162
|
+
'magritte',
|
|
1163
|
+
'mahler',
|
|
1164
|
+
'majorana',
|
|
1165
|
+
'manatee',
|
|
1166
|
+
'manticore',
|
|
1167
|
+
'mantis',
|
|
1168
|
+
'marconi',
|
|
1169
|
+
'mathematician',
|
|
1170
|
+
'matisse',
|
|
1171
|
+
'maugrim',
|
|
1172
|
+
'maupassant',
|
|
1173
|
+
'maxwell',
|
|
1174
|
+
'mechanic',
|
|
1175
|
+
'medusa',
|
|
1176
|
+
'mermaid',
|
|
1177
|
+
'meerkat',
|
|
1178
|
+
'melpomene',
|
|
1179
|
+
'melville',
|
|
1180
|
+
'mice',
|
|
1181
|
+
'michelangelo',
|
|
1182
|
+
'mime',
|
|
1183
|
+
'miner',
|
|
1184
|
+
'minotaur',
|
|
1185
|
+
'minstrel',
|
|
1186
|
+
'mobydick',
|
|
1187
|
+
'mockingbird',
|
|
1188
|
+
'mole',
|
|
1189
|
+
'moliere',
|
|
1190
|
+
'monet',
|
|
1191
|
+
'mongoose',
|
|
1192
|
+
'monkey',
|
|
1193
|
+
'moth',
|
|
1194
|
+
'mozart',
|
|
1195
|
+
'munch',
|
|
1196
|
+
'murphy',
|
|
1197
|
+
'musician',
|
|
1198
|
+
'nabokov',
|
|
1199
|
+
'naturalist',
|
|
1200
|
+
'nereus',
|
|
1201
|
+
'nero',
|
|
1202
|
+
'neurologist',
|
|
1203
|
+
'newt',
|
|
1204
|
+
'newton',
|
|
1205
|
+
'nietzsche',
|
|
1206
|
+
'nightingale',
|
|
1207
|
+
'noether',
|
|
1208
|
+
'novelist',
|
|
1209
|
+
'nymph',
|
|
1210
|
+
'nyx',
|
|
1211
|
+
'oceanographer',
|
|
1212
|
+
'ocelot',
|
|
1213
|
+
'ogre',
|
|
1214
|
+
'ohm',
|
|
1215
|
+
'okapi',
|
|
1216
|
+
'opossum',
|
|
1217
|
+
'oppenheimer',
|
|
1218
|
+
'orangutan',
|
|
1219
|
+
'orpheus',
|
|
1220
|
+
'orwell',
|
|
1221
|
+
'osprey',
|
|
1222
|
+
'otter',
|
|
1223
|
+
'owl',
|
|
1224
|
+
'painter',
|
|
1225
|
+
'paleontologist',
|
|
1226
|
+
'panda',
|
|
1227
|
+
'pankhurst',
|
|
1228
|
+
'parks',
|
|
1229
|
+
'parrot',
|
|
1230
|
+
'peacock',
|
|
1231
|
+
'pegasus',
|
|
1232
|
+
'pelican',
|
|
1233
|
+
'penciller',
|
|
1234
|
+
'penelope',
|
|
1235
|
+
'penguin',
|
|
1236
|
+
'penrose',
|
|
1237
|
+
'performer',
|
|
1238
|
+
'peron',
|
|
1239
|
+
'persephone',
|
|
1240
|
+
'perseus',
|
|
1241
|
+
'phaenon',
|
|
1242
|
+
'phaethon',
|
|
1243
|
+
'pharmacist',
|
|
1244
|
+
'phoenix',
|
|
1245
|
+
'photographer',
|
|
1246
|
+
'photojournalist',
|
|
1247
|
+
'physicist',
|
|
1248
|
+
'picasso',
|
|
1249
|
+
'pigeon',
|
|
1250
|
+
'piranha',
|
|
1251
|
+
'pixie',
|
|
1252
|
+
'planck',
|
|
1253
|
+
'plato',
|
|
1254
|
+
'platypus',
|
|
1255
|
+
'playwright',
|
|
1256
|
+
'plucky',
|
|
1257
|
+
'plumber',
|
|
1258
|
+
'poe',
|
|
1259
|
+
'poet',
|
|
1260
|
+
'poincare',
|
|
1261
|
+
'pollock',
|
|
1262
|
+
'polyhymnia',
|
|
1263
|
+
'porcupine',
|
|
1264
|
+
'poseidon',
|
|
1265
|
+
'potamoi',
|
|
1266
|
+
'professor',
|
|
1267
|
+
'prokofiev',
|
|
1268
|
+
'proust',
|
|
1269
|
+
'psychiatrist',
|
|
1270
|
+
'psychologist',
|
|
1271
|
+
'pterodactyl',
|
|
1272
|
+
'puffin',
|
|
1273
|
+
'puma',
|
|
1274
|
+
'pushkin',
|
|
1275
|
+
'pyroeis',
|
|
1276
|
+
'pythagoras',
|
|
1277
|
+
'rabbit',
|
|
1278
|
+
'rachmaninov',
|
|
1279
|
+
'racoon',
|
|
1280
|
+
'radiologist',
|
|
1281
|
+
'raphael',
|
|
1282
|
+
'ratel',
|
|
1283
|
+
'rattlesnake',
|
|
1284
|
+
'ravel',
|
|
1285
|
+
'raven',
|
|
1286
|
+
'ray',
|
|
1287
|
+
'reeves',
|
|
1288
|
+
'rembrandt',
|
|
1289
|
+
'renoir',
|
|
1290
|
+
'reptile',
|
|
1291
|
+
'rhinoceros',
|
|
1292
|
+
'riemann',
|
|
1293
|
+
'rimbaud',
|
|
1294
|
+
'ringmaster',
|
|
1295
|
+
'ritchie',
|
|
1296
|
+
'roach',
|
|
1297
|
+
'roadrunner',
|
|
1298
|
+
'roddent',
|
|
1299
|
+
'rooster',
|
|
1300
|
+
'rubens',
|
|
1301
|
+
'rutherford',
|
|
1302
|
+
'saintexupery',
|
|
1303
|
+
'sakharov',
|
|
1304
|
+
'salinger',
|
|
1305
|
+
'salmon',
|
|
1306
|
+
'sanger',
|
|
1307
|
+
'sappho',
|
|
1308
|
+
'sartre',
|
|
1309
|
+
'sasquatch',
|
|
1310
|
+
'satie',
|
|
1311
|
+
'scenographer',
|
|
1312
|
+
'schrodinger',
|
|
1313
|
+
'schubert',
|
|
1314
|
+
'schumann',
|
|
1315
|
+
'schwarzschild',
|
|
1316
|
+
'scientist',
|
|
1317
|
+
'screenwriter',
|
|
1318
|
+
'scribe',
|
|
1319
|
+
'sculptor',
|
|
1320
|
+
'sea',
|
|
1321
|
+
'seahorse',
|
|
1322
|
+
'sealion',
|
|
1323
|
+
'selene',
|
|
1324
|
+
'serval',
|
|
1325
|
+
'seurat',
|
|
1326
|
+
'shadowfax',
|
|
1327
|
+
'shakespeare',
|
|
1328
|
+
'shannon',
|
|
1329
|
+
'shark',
|
|
1330
|
+
'sheep',
|
|
1331
|
+
'shelley',
|
|
1332
|
+
'shelob',
|
|
1333
|
+
'shostakovich',
|
|
1334
|
+
'showrunner',
|
|
1335
|
+
'sibelius',
|
|
1336
|
+
'sinatra',
|
|
1337
|
+
'singer',
|
|
1338
|
+
'siren',
|
|
1339
|
+
'skylark',
|
|
1340
|
+
'snake',
|
|
1341
|
+
'sociologist',
|
|
1342
|
+
'socrates',
|
|
1343
|
+
'soloist',
|
|
1344
|
+
'solzhenitsyn',
|
|
1345
|
+
'sophocles',
|
|
1346
|
+
'sparrow',
|
|
1347
|
+
'sphinx',
|
|
1348
|
+
'spider',
|
|
1349
|
+
'sprite',
|
|
1350
|
+
'squirrel',
|
|
1351
|
+
'stanton',
|
|
1352
|
+
'statistician',
|
|
1353
|
+
'steinbeck',
|
|
1354
|
+
'stendhal',
|
|
1355
|
+
'stevenson',
|
|
1356
|
+
'stilbon',
|
|
1357
|
+
'stoker',
|
|
1358
|
+
'strauss',
|
|
1359
|
+
'stravinsky',
|
|
1360
|
+
'stroustrup',
|
|
1361
|
+
'surgeon',
|
|
1362
|
+
'susskind',
|
|
1363
|
+
'swallow',
|
|
1364
|
+
'swamp',
|
|
1365
|
+
'swan',
|
|
1366
|
+
'sylph',
|
|
1367
|
+
'tapir',
|
|
1368
|
+
'tarantula',
|
|
1369
|
+
'taxidermist',
|
|
1370
|
+
'tchaikovsky',
|
|
1371
|
+
'termite',
|
|
1372
|
+
'terpsichore',
|
|
1373
|
+
'tesla',
|
|
1374
|
+
'tethys',
|
|
1375
|
+
'thales',
|
|
1376
|
+
'thalia',
|
|
1377
|
+
'thaumas',
|
|
1378
|
+
'theseus',
|
|
1379
|
+
'thomson',
|
|
1380
|
+
'thunderbird',
|
|
1381
|
+
'tiger',
|
|
1382
|
+
'toad',
|
|
1383
|
+
'tolkien',
|
|
1384
|
+
'tolstoy',
|
|
1385
|
+
'tortoise',
|
|
1386
|
+
'toucan',
|
|
1387
|
+
'triceratops',
|
|
1388
|
+
'triteia',
|
|
1389
|
+
'triton',
|
|
1390
|
+
'trout',
|
|
1391
|
+
'turing',
|
|
1392
|
+
'turtle',
|
|
1393
|
+
'twain',
|
|
1394
|
+
'tweety',
|
|
1395
|
+
'tyrannosaurus',
|
|
1396
|
+
'ungoliant',
|
|
1397
|
+
'unicorn',
|
|
1398
|
+
'uralia',
|
|
1399
|
+
'vampire',
|
|
1400
|
+
'vangogh',
|
|
1401
|
+
'vaughan',
|
|
1402
|
+
'velazquez',
|
|
1403
|
+
'velociraptor',
|
|
1404
|
+
'verdi',
|
|
1405
|
+
'vermeer',
|
|
1406
|
+
'verne',
|
|
1407
|
+
'virgil',
|
|
1408
|
+
'volta',
|
|
1409
|
+
'voltaire',
|
|
1410
|
+
'vulture',
|
|
1411
|
+
'wagner',
|
|
1412
|
+
'waiter',
|
|
1413
|
+
'waldo',
|
|
1414
|
+
'wallaby',
|
|
1415
|
+
'wanda',
|
|
1416
|
+
'warhol',
|
|
1417
|
+
'wasp',
|
|
1418
|
+
'weasel',
|
|
1419
|
+
'welder',
|
|
1420
|
+
'werewolf',
|
|
1421
|
+
'whale',
|
|
1422
|
+
'wilde',
|
|
1423
|
+
'wolf',
|
|
1424
|
+
'woodstock',
|
|
1425
|
+
'writer',
|
|
1426
|
+
'yeats',
|
|
1427
|
+
'yogi',
|
|
1428
|
+
'yousafzai',
|
|
1429
|
+
'zebra',
|
|
1430
|
+
'zephyrus',
|
|
1431
|
+
'zeus',
|
|
1432
|
+
'zola',
|
|
1433
|
+
'zoologist',
|
|
1371
1434
|
];
|
|
1435
|
+
//# sourceMappingURL=name-generator.js.map
|