kuzzle 2.19.2 → 2.19.5

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 (293) hide show
  1. package/lib/api/controllers/adminController.js +94 -80
  2. package/lib/api/controllers/authController.js +239 -212
  3. package/lib/api/controllers/baseController.js +89 -51
  4. package/lib/api/controllers/bulkController.js +62 -49
  5. package/lib/api/controllers/clusterController.js +6 -8
  6. package/lib/api/controllers/collectionController.js +140 -129
  7. package/lib/api/controllers/debugController.d.ts +2 -2
  8. package/lib/api/controllers/debugController.js +33 -31
  9. package/lib/api/controllers/documentController.js +365 -274
  10. package/lib/api/controllers/index.js +13 -13
  11. package/lib/api/controllers/indexController.js +46 -50
  12. package/lib/api/controllers/memoryStorageController.js +410 -360
  13. package/lib/api/controllers/realtimeController.js +37 -36
  14. package/lib/api/controllers/securityController.js +553 -412
  15. package/lib/api/controllers/serverController.js +111 -104
  16. package/lib/api/documentExtractor.js +75 -68
  17. package/lib/api/funnel.js +411 -312
  18. package/lib/api/httpRoutes.js +1493 -324
  19. package/lib/api/openapi/OpenApiManager.d.ts +1 -1
  20. package/lib/api/openapi/OpenApiManager.js +22 -22
  21. package/lib/api/openapi/components/document/count.yaml +1 -1
  22. package/lib/api/openapi/components/document/create.yaml +2 -2
  23. package/lib/api/openapi/components/document/delete.yaml +1 -1
  24. package/lib/api/openapi/components/document/deleteByQuery.yaml +1 -1
  25. package/lib/api/openapi/components/document/exists.yaml +1 -1
  26. package/lib/api/openapi/components/document/get.yaml +2 -2
  27. package/lib/api/openapi/components/document/index.js +12 -12
  28. package/lib/api/openapi/components/document/replace.yaml +1 -1
  29. package/lib/api/openapi/components/document/scroll.yaml +1 -1
  30. package/lib/api/openapi/components/document/validate.yaml +1 -1
  31. package/lib/api/openapi/components/index.d.ts +2 -2
  32. package/lib/api/openapi/components/index.js +1 -1
  33. package/lib/api/openapi/components/security/index.js +1 -1
  34. package/lib/api/openapi/components/security/upsertUser.yaml +2 -3
  35. package/lib/api/openapi/index.d.ts +1 -1
  36. package/lib/api/openapi/openApiGenerator.d.ts +1 -1
  37. package/lib/api/openapi/openApiGenerator.js +7 -7
  38. package/lib/api/rateLimiter.js +12 -13
  39. package/lib/api/request/index.d.ts +4 -4
  40. package/lib/api/request/kuzzleRequest.d.ts +9 -9
  41. package/lib/api/request/kuzzleRequest.js +91 -90
  42. package/lib/api/request/requestContext.d.ts +2 -2
  43. package/lib/api/request/requestContext.js +17 -17
  44. package/lib/api/request/requestInput.d.ts +1 -1
  45. package/lib/api/request/requestInput.js +19 -19
  46. package/lib/api/request/requestResponse.d.ts +4 -4
  47. package/lib/api/request/requestResponse.js +31 -33
  48. package/lib/cluster/command.js +48 -44
  49. package/lib/cluster/idCardHandler.d.ts +1 -1
  50. package/lib/cluster/idCardHandler.js +15 -15
  51. package/lib/cluster/index.js +2 -2
  52. package/lib/cluster/node.js +301 -269
  53. package/lib/cluster/publisher.js +45 -46
  54. package/lib/cluster/state.d.ts +5 -5
  55. package/lib/cluster/state.js +8 -8
  56. package/lib/cluster/subscriber.js +163 -113
  57. package/lib/cluster/workers/IDCardRenewer.js +33 -32
  58. package/lib/config/default.config.d.ts +1 -1
  59. package/lib/config/default.config.js +212 -171
  60. package/lib/config/documentEventAliases.js +6 -6
  61. package/lib/config/index.js +161 -98
  62. package/lib/config/sdkCompatibility.json +8 -8
  63. package/lib/core/auth/formatProcessing.js +7 -7
  64. package/lib/core/auth/passportResponse.js +7 -7
  65. package/lib/core/auth/passportWrapper.js +34 -30
  66. package/lib/core/auth/tokenManager.d.ts +2 -2
  67. package/lib/core/auth/tokenManager.js +11 -10
  68. package/lib/core/backend/applicationManager.d.ts +1 -1
  69. package/lib/core/backend/applicationManager.js +2 -2
  70. package/lib/core/backend/backend.d.ts +4 -4
  71. package/lib/core/backend/backend.js +34 -31
  72. package/lib/core/backend/backendCluster.d.ts +8 -9
  73. package/lib/core/backend/backendCluster.js +8 -8
  74. package/lib/core/backend/backendConfig.d.ts +2 -2
  75. package/lib/core/backend/backendConfig.js +3 -3
  76. package/lib/core/backend/backendController.d.ts +2 -2
  77. package/lib/core/backend/backendController.js +9 -10
  78. package/lib/core/backend/backendErrors.d.ts +3 -3
  79. package/lib/core/backend/backendErrors.js +2 -1
  80. package/lib/core/backend/backendHook.d.ts +3 -3
  81. package/lib/core/backend/backendHook.js +5 -5
  82. package/lib/core/backend/backendImport.d.ts +3 -3
  83. package/lib/core/backend/backendImport.js +23 -23
  84. package/lib/core/backend/backendOpenApi.d.ts +2 -2
  85. package/lib/core/backend/backendOpenApi.js +16 -16
  86. package/lib/core/backend/backendPipe.d.ts +3 -3
  87. package/lib/core/backend/backendPipe.js +6 -6
  88. package/lib/core/backend/backendPlugin.d.ts +4 -4
  89. package/lib/core/backend/backendPlugin.js +14 -14
  90. package/lib/core/backend/backendStorage.d.ts +2 -2
  91. package/lib/core/backend/backendStorage.js +1 -2
  92. package/lib/core/backend/backendVault.d.ts +2 -2
  93. package/lib/core/backend/backendVault.js +3 -3
  94. package/lib/core/backend/index.d.ts +14 -14
  95. package/lib/core/backend/internalLogger.d.ts +1 -1
  96. package/lib/core/backend/internalLogger.js +5 -5
  97. package/lib/core/cache/cacheDbEnum.js +4 -4
  98. package/lib/core/cache/cacheEngine.js +79 -85
  99. package/lib/core/network/accessLogger.js +126 -120
  100. package/lib/core/network/clientConnection.js +5 -5
  101. package/lib/core/network/context.js +8 -8
  102. package/lib/core/network/entryPoint.js +100 -85
  103. package/lib/core/network/httpRouter/index.js +63 -60
  104. package/lib/core/network/httpRouter/routeHandler.js +18 -19
  105. package/lib/core/network/httpRouter/routePart.js +23 -19
  106. package/lib/core/network/protocolManifest.js +3 -3
  107. package/lib/core/network/protocols/httpMessage.js +8 -10
  108. package/lib/core/network/protocols/httpwsProtocol.js +305 -250
  109. package/lib/core/network/protocols/internalProtocol.js +27 -24
  110. package/lib/core/network/protocols/mqttProtocol.js +106 -96
  111. package/lib/core/network/protocols/protocol.js +20 -17
  112. package/lib/core/network/router.js +56 -46
  113. package/lib/core/plugin/plugin.js +151 -120
  114. package/lib/core/plugin/pluginContext.d.ts +7 -7
  115. package/lib/core/plugin/pluginContext.js +48 -44
  116. package/lib/core/plugin/pluginManifest.js +13 -12
  117. package/lib/core/plugin/pluginRepository.js +26 -27
  118. package/lib/core/plugin/pluginsManager.js +425 -304
  119. package/lib/core/plugin/privilegedContext.js +3 -3
  120. package/lib/core/realtime/actionEnum.js +1 -1
  121. package/lib/core/realtime/channel.d.ts +1 -1
  122. package/lib/core/realtime/channel.js +22 -22
  123. package/lib/core/realtime/connectionRooms.d.ts +1 -1
  124. package/lib/core/realtime/hotelClerk.d.ts +2 -2
  125. package/lib/core/realtime/hotelClerk.js +53 -50
  126. package/lib/core/realtime/index.js +5 -5
  127. package/lib/core/realtime/notification/document.js +25 -25
  128. package/lib/core/realtime/notification/index.js +4 -4
  129. package/lib/core/realtime/notification/server.js +3 -3
  130. package/lib/core/realtime/notification/user.js +4 -4
  131. package/lib/core/realtime/notifier.js +113 -75
  132. package/lib/core/realtime/room.d.ts +1 -1
  133. package/lib/core/realtime/subscription.d.ts +1 -1
  134. package/lib/core/realtime/subscription.js +1 -1
  135. package/lib/core/security/index.js +8 -8
  136. package/lib/core/security/profileRepository.d.ts +6 -6
  137. package/lib/core/security/profileRepository.js +48 -45
  138. package/lib/core/security/roleRepository.js +127 -115
  139. package/lib/core/security/securityLoader.js +70 -63
  140. package/lib/core/security/tokenRepository.js +132 -118
  141. package/lib/core/security/userRepository.js +104 -88
  142. package/lib/core/shared/KoncordeWrapper.d.ts +1 -1
  143. package/lib/core/shared/KoncordeWrapper.js +3 -1
  144. package/lib/core/shared/abstractManifest.js +22 -23
  145. package/lib/core/shared/repository.js +69 -67
  146. package/lib/core/shared/sdk/embeddedSdk.d.ts +2 -2
  147. package/lib/core/shared/sdk/embeddedSdk.js +36 -32
  148. package/lib/core/shared/sdk/funnelProtocol.d.ts +1 -1
  149. package/lib/core/shared/sdk/funnelProtocol.js +11 -11
  150. package/lib/core/shared/sdk/impersonatedSdk.js +19 -18
  151. package/lib/core/shared/store.js +127 -32
  152. package/lib/core/statistics/index.js +2 -2
  153. package/lib/core/statistics/statistics.js +99 -85
  154. package/lib/core/storage/clientAdapter.js +219 -136
  155. package/lib/core/storage/indexCache.js +3 -3
  156. package/lib/core/storage/storageEngine.js +10 -13
  157. package/lib/core/storage/storeScopeEnum.js +3 -3
  158. package/lib/core/validation/baseType.js +12 -10
  159. package/lib/core/validation/index.js +2 -2
  160. package/lib/core/validation/types/anything.js +4 -4
  161. package/lib/core/validation/types/boolean.js +7 -7
  162. package/lib/core/validation/types/date.js +165 -131
  163. package/lib/core/validation/types/email.js +18 -21
  164. package/lib/core/validation/types/enum.js +34 -21
  165. package/lib/core/validation/types/geoPoint.js +7 -7
  166. package/lib/core/validation/types/geoShape.js +148 -125
  167. package/lib/core/validation/types/integer.js +9 -9
  168. package/lib/core/validation/types/ipAddress.js +17 -19
  169. package/lib/core/validation/types/numeric.js +36 -29
  170. package/lib/core/validation/types/object.js +19 -19
  171. package/lib/core/validation/types/string.js +36 -29
  172. package/lib/core/validation/types/url.js +17 -19
  173. package/lib/core/validation/validation.js +422 -378
  174. package/lib/kerror/codes/1-services.json +7 -1
  175. package/lib/kerror/codes/4-plugin.json +2 -2
  176. package/lib/kerror/codes/index.js +85 -63
  177. package/lib/kerror/errors/badRequestError.d.ts +1 -1
  178. package/lib/kerror/errors/externalServiceError.d.ts +1 -1
  179. package/lib/kerror/errors/forbiddenError.d.ts +1 -1
  180. package/lib/kerror/errors/gatewayTimeoutError.d.ts +1 -1
  181. package/lib/kerror/errors/index.d.ts +15 -15
  182. package/lib/kerror/errors/internalError.d.ts +1 -1
  183. package/lib/kerror/errors/kuzzleError.d.ts +1 -1
  184. package/lib/kerror/errors/multipleErrorsError.d.ts +1 -1
  185. package/lib/kerror/errors/multipleErrorsError.js +1 -1
  186. package/lib/kerror/errors/notFoundError.d.ts +1 -1
  187. package/lib/kerror/errors/partialError.d.ts +1 -1
  188. package/lib/kerror/errors/partialError.js +1 -1
  189. package/lib/kerror/errors/pluginImplementationError.d.ts +1 -1
  190. package/lib/kerror/errors/pluginImplementationError.js +2 -1
  191. package/lib/kerror/errors/preconditionError.d.ts +1 -1
  192. package/lib/kerror/errors/serviceUnavailableError.d.ts +1 -1
  193. package/lib/kerror/errors/sizeLimitError.d.ts +1 -1
  194. package/lib/kerror/errors/tooManyRequestsError.d.ts +1 -1
  195. package/lib/kerror/errors/unauthorizedError.d.ts +1 -1
  196. package/lib/kerror/index.d.ts +3 -3
  197. package/lib/kerror/index.js +17 -16
  198. package/lib/kuzzle/dumpGenerator.js +130 -114
  199. package/lib/kuzzle/event/kuzzleEventEmitter.js +96 -70
  200. package/lib/kuzzle/event/pipeRunner.js +26 -25
  201. package/lib/kuzzle/event/waterfall.js +13 -15
  202. package/lib/kuzzle/index.js +2 -2
  203. package/lib/kuzzle/internalIndexHandler.js +80 -59
  204. package/lib/kuzzle/kuzzle.js +99 -99
  205. package/lib/kuzzle/kuzzleStateEnum.js +1 -1
  206. package/lib/kuzzle/log.js +23 -18
  207. package/lib/kuzzle/vault.js +34 -19
  208. package/lib/model/security/profile.d.ts +3 -3
  209. package/lib/model/security/profile.js +38 -37
  210. package/lib/model/security/rights.js +5 -5
  211. package/lib/model/security/role.d.ts +3 -3
  212. package/lib/model/security/role.js +25 -26
  213. package/lib/model/security/token.d.ts +1 -1
  214. package/lib/model/security/token.js +4 -4
  215. package/lib/model/security/user.d.ts +2 -2
  216. package/lib/model/security/user.js +9 -9
  217. package/lib/model/storage/apiKey.js +43 -33
  218. package/lib/model/storage/baseModel.js +49 -45
  219. package/lib/service/cache/redis.js +60 -55
  220. package/lib/service/service.js +17 -17
  221. package/lib/service/storage/elasticsearch.js +839 -755
  222. package/lib/service/storage/esWrapper.js +103 -86
  223. package/lib/service/storage/queryTranslator.js +52 -59
  224. package/lib/types/Controller.d.ts +3 -3
  225. package/lib/types/ControllerDefinition.d.ts +3 -3
  226. package/lib/types/DebugModule.d.ts +3 -2
  227. package/lib/types/DebugModule.js +1 -1
  228. package/lib/types/EventHandler.d.ts +31 -1
  229. package/lib/types/Global.d.ts +1 -1
  230. package/lib/types/HttpStream.d.ts +2 -1
  231. package/lib/types/HttpStream.js +7 -5
  232. package/lib/types/Kuzzle.d.ts +1 -1
  233. package/lib/types/KuzzleDocument.d.ts +1 -1
  234. package/lib/types/OpenApiDefinition.d.ts +1 -1
  235. package/lib/types/PasswordPolicy.d.ts +1 -1
  236. package/lib/types/Plugin.d.ts +8 -8
  237. package/lib/types/Plugin.js +2 -2
  238. package/lib/types/Policy.d.ts +1 -1
  239. package/lib/types/RequestPayload.d.ts +1 -1
  240. package/lib/types/ResponsePayload.d.ts +1 -1
  241. package/lib/types/Token.d.ts +1 -1
  242. package/lib/types/User.d.ts +1 -1
  243. package/lib/types/config/DumpConfiguration.d.ts +8 -8
  244. package/lib/types/config/HttpConfiguration.d.ts +1 -1
  245. package/lib/types/config/KuzzleConfiguration.d.ts +1 -1
  246. package/lib/types/config/LimitsConfiguration.d.ts +8 -8
  247. package/lib/types/config/PluginsConfiguration.d.ts +4 -4
  248. package/lib/types/config/SecurityConfiguration.d.ts +62 -62
  249. package/lib/types/config/ServerConfiguration.d.ts +55 -55
  250. package/lib/types/config/ServicesConfiguration.d.ts +2 -2
  251. package/lib/types/config/internalCache/InternalCacheRedisConfiguration.d.ts +10 -10
  252. package/lib/types/config/publicCache/PublicCacheRedisConfiguration.d.ts +3 -3
  253. package/lib/types/config/storageEngine/StorageEngineElasticsearchConfiguration.d.ts +194 -110
  254. package/lib/types/errors/ErrorDefinition.d.ts +1 -1
  255. package/lib/types/errors/ErrorDomains.d.ts +1 -1
  256. package/lib/types/events/EventGenericDocument.d.ts +26 -0
  257. package/lib/types/events/EventGenericDocument.js +3 -0
  258. package/lib/types/index.d.ts +39 -38
  259. package/lib/types/index.js +1 -0
  260. package/lib/types/realtime/RealtimeScope.d.ts +1 -1
  261. package/lib/types/realtime/RealtimeUsers.d.ts +1 -1
  262. package/lib/util/assertType.js +13 -11
  263. package/lib/util/async.d.ts +1 -0
  264. package/lib/util/async.js +61 -0
  265. package/lib/util/asyncStore.js +19 -21
  266. package/lib/util/bufferedPassThrough.d.ts +3 -2
  267. package/lib/util/bufferedPassThrough.js +4 -4
  268. package/lib/util/bytes.js +9 -13
  269. package/lib/util/crypto.js +1 -1
  270. package/lib/util/debug.js +5 -5
  271. package/lib/util/deprecate.js +24 -21
  272. package/lib/util/didYouMean.js +7 -7
  273. package/lib/util/dump-collection.d.ts +2 -2
  274. package/lib/util/dump-collection.js +26 -26
  275. package/lib/util/esRequest.d.ts +1 -0
  276. package/lib/util/esRequest.js +62 -0
  277. package/lib/util/extractFields.js +24 -25
  278. package/lib/util/inflector.js +5 -5
  279. package/lib/util/koncordeCompat.d.ts +2 -2
  280. package/lib/util/koncordeCompat.js +5 -5
  281. package/lib/util/memoize.js +3 -5
  282. package/lib/util/mutex.d.ts +19 -1
  283. package/lib/util/mutex.js +39 -12
  284. package/lib/util/name-generator.js +1331 -1331
  285. package/lib/util/promback.js +8 -10
  286. package/lib/util/readYamlFile.d.ts +1 -1
  287. package/lib/util/readYamlFile.js +1 -1
  288. package/lib/util/requestAssertions.js +34 -34
  289. package/lib/util/safeObject.js +5 -5
  290. package/lib/util/stackTrace.js +20 -22
  291. package/lib/util/wildcard.js +15 -15
  292. package/package.json +28 -29
  293. package/npm-shrinkwrap.json +0 -19422
@@ -77,10 +77,10 @@ class NameGenerator {
77
77
  *
78
78
  * @returns a random formatted name
79
79
  */
80
- static generateRandomName({ prefix, separator = '-', postfixRandRange = { max: 100000, min: 0 }, } = {}) {
80
+ static generateRandomName({ prefix, separator = "-", postfixRandRange = { max: 100000, min: 0 }, } = {}) {
81
81
  const adjective = NameGenerator.getRandomAdjective();
82
82
  const name = NameGenerator.getRandomName();
83
- prefix = prefix !== undefined ? `${prefix}${separator}` : '';
83
+ prefix = prefix !== undefined ? `${prefix}${separator}` : "";
84
84
  if (postfixRandRange === false) {
85
85
  return `${prefix}${adjective}${separator}${name}`;
86
86
  }
@@ -100,1336 +100,1336 @@ function randomNumber(min, max) {
100
100
  }
101
101
  exports.randomNumber = randomNumber;
102
102
  const adjectives = [
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',
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",
811
811
  ];
812
812
  const names = [
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',
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",
1434
1434
  ];
1435
1435
  //# sourceMappingURL=name-generator.js.map