choose-your-day 1.0.0

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 (4078) hide show
  1. package/day1/backend-project/.env +0 -0
  2. package/day1/backend-project/node_modules/.bin/bcrypt +16 -0
  3. package/day1/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  4. package/day1/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  5. package/day1/backend-project/node_modules/.bin/nodemon +16 -0
  6. package/day1/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  7. package/day1/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  8. package/day1/backend-project/node_modules/.bin/nodetouch +16 -0
  9. package/day1/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  10. package/day1/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  11. package/day1/backend-project/node_modules/.bin/semver +16 -0
  12. package/day1/backend-project/node_modules/.bin/semver.cmd +17 -0
  13. package/day1/backend-project/node_modules/.bin/semver.ps1 +28 -0
  14. package/day1/backend-project/node_modules/.package-lock.json +1430 -0
  15. package/day1/backend-project/node_modules/@types/node/LICENSE +21 -0
  16. package/day1/backend-project/node_modules/@types/node/README.md +15 -0
  17. package/day1/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  18. package/day1/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  19. package/day1/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  20. package/day1/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  21. package/day1/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  22. package/day1/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  23. package/day1/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  24. package/day1/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  25. package/day1/backend-project/node_modules/@types/node/console.d.ts +93 -0
  26. package/day1/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  27. package/day1/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  28. package/day1/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  29. package/day1/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  30. package/day1/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  31. package/day1/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  32. package/day1/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  33. package/day1/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  34. package/day1/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  35. package/day1/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  36. package/day1/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  37. package/day1/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  38. package/day1/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  39. package/day1/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  40. package/day1/backend-project/node_modules/@types/node/https.d.ts +400 -0
  41. package/day1/backend-project/node_modules/@types/node/index.d.ts +117 -0
  42. package/day1/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  43. package/day1/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  44. package/day1/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  45. package/day1/backend-project/node_modules/@types/node/module.d.ts +755 -0
  46. package/day1/backend-project/node_modules/@types/node/net.d.ts +970 -0
  47. package/day1/backend-project/node_modules/@types/node/os.d.ts +498 -0
  48. package/day1/backend-project/node_modules/@types/node/package.json +155 -0
  49. package/day1/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  50. package/day1/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  51. package/day1/backend-project/node_modules/@types/node/path.d.ts +178 -0
  52. package/day1/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  53. package/day1/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  54. package/day1/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  55. package/day1/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  56. package/day1/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  57. package/day1/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  58. package/day1/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  59. package/day1/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  60. package/day1/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  61. package/day1/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  62. package/day1/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  63. package/day1/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  64. package/day1/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  65. package/day1/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  66. package/day1/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  67. package/day1/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  68. package/day1/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  69. package/day1/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  70. package/day1/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  71. package/day1/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  72. package/day1/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  73. package/day1/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  74. package/day1/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  75. package/day1/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  76. package/day1/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  77. package/day1/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  78. package/day1/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  79. package/day1/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  80. package/day1/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  81. package/day1/backend-project/node_modules/@types/node/url.d.ts +556 -0
  82. package/day1/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  83. package/day1/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  84. package/day1/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  85. package/day1/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  86. package/day1/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  87. package/day1/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  88. package/day1/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  89. package/day1/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  90. package/day1/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  91. package/day1/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  92. package/day1/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  93. package/day1/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  94. package/day1/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  95. package/day1/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  96. package/day1/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  97. package/day1/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  98. package/day1/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  99. package/day1/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  100. package/day1/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  101. package/day1/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  102. package/day1/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  103. package/day1/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  104. package/day1/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  105. package/day1/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  106. package/day1/backend-project/node_modules/accepts/HISTORY.md +250 -0
  107. package/day1/backend-project/node_modules/accepts/LICENSE +23 -0
  108. package/day1/backend-project/node_modules/accepts/README.md +140 -0
  109. package/day1/backend-project/node_modules/accepts/index.js +238 -0
  110. package/day1/backend-project/node_modules/accepts/package.json +47 -0
  111. package/day1/backend-project/node_modules/anymatch/LICENSE +15 -0
  112. package/day1/backend-project/node_modules/anymatch/README.md +87 -0
  113. package/day1/backend-project/node_modules/anymatch/index.d.ts +20 -0
  114. package/day1/backend-project/node_modules/anymatch/index.js +104 -0
  115. package/day1/backend-project/node_modules/anymatch/package.json +48 -0
  116. package/day1/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  117. package/day1/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  118. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  119. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  120. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  121. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  122. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  123. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  124. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  125. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  126. package/day1/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  127. package/day1/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  128. package/day1/backend-project/node_modules/balanced-match/README.md +57 -0
  129. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  130. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  131. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  132. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  133. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  134. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  135. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  136. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  137. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  138. package/day1/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  139. package/day1/backend-project/node_modules/balanced-match/package.json +68 -0
  140. package/day1/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  141. package/day1/backend-project/node_modules/bcryptjs/README.md +201 -0
  142. package/day1/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  143. package/day1/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  144. package/day1/backend-project/node_modules/bcryptjs/index.js +1159 -0
  145. package/day1/backend-project/node_modules/bcryptjs/package.json +76 -0
  146. package/day1/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  147. package/day1/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  148. package/day1/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  149. package/day1/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  150. package/day1/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  151. package/day1/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  152. package/day1/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  153. package/day1/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  154. package/day1/backend-project/node_modules/binary-extensions/index.js +1 -0
  155. package/day1/backend-project/node_modules/binary-extensions/license +10 -0
  156. package/day1/backend-project/node_modules/binary-extensions/package.json +40 -0
  157. package/day1/backend-project/node_modules/binary-extensions/readme.md +25 -0
  158. package/day1/backend-project/node_modules/body-parser/LICENSE +23 -0
  159. package/day1/backend-project/node_modules/body-parser/README.md +494 -0
  160. package/day1/backend-project/node_modules/body-parser/index.js +71 -0
  161. package/day1/backend-project/node_modules/body-parser/lib/read.js +247 -0
  162. package/day1/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  163. package/day1/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  164. package/day1/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  165. package/day1/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  166. package/day1/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  167. package/day1/backend-project/node_modules/body-parser/package.json +52 -0
  168. package/day1/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  169. package/day1/backend-project/node_modules/brace-expansion/README.md +94 -0
  170. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  171. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  172. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  173. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  174. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  175. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  176. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  177. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  178. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  179. package/day1/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  180. package/day1/backend-project/node_modules/brace-expansion/package.json +64 -0
  181. package/day1/backend-project/node_modules/braces/LICENSE +21 -0
  182. package/day1/backend-project/node_modules/braces/README.md +586 -0
  183. package/day1/backend-project/node_modules/braces/index.js +170 -0
  184. package/day1/backend-project/node_modules/braces/lib/compile.js +60 -0
  185. package/day1/backend-project/node_modules/braces/lib/constants.js +57 -0
  186. package/day1/backend-project/node_modules/braces/lib/expand.js +113 -0
  187. package/day1/backend-project/node_modules/braces/lib/parse.js +331 -0
  188. package/day1/backend-project/node_modules/braces/lib/stringify.js +32 -0
  189. package/day1/backend-project/node_modules/braces/lib/utils.js +122 -0
  190. package/day1/backend-project/node_modules/braces/package.json +77 -0
  191. package/day1/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  192. package/day1/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  193. package/day1/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  194. package/day1/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  195. package/day1/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  196. package/day1/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  197. package/day1/backend-project/node_modules/bytes/History.md +97 -0
  198. package/day1/backend-project/node_modules/bytes/LICENSE +23 -0
  199. package/day1/backend-project/node_modules/bytes/Readme.md +152 -0
  200. package/day1/backend-project/node_modules/bytes/index.js +170 -0
  201. package/day1/backend-project/node_modules/bytes/package.json +42 -0
  202. package/day1/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  203. package/day1/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  204. package/day1/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  205. package/day1/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  206. package/day1/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  207. package/day1/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  208. package/day1/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  209. package/day1/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  210. package/day1/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  211. package/day1/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  212. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  213. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  214. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  215. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  216. package/day1/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  217. package/day1/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  218. package/day1/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  219. package/day1/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  220. package/day1/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  221. package/day1/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  222. package/day1/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  223. package/day1/backend-project/node_modules/call-bound/.eslintrc +13 -0
  224. package/day1/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  225. package/day1/backend-project/node_modules/call-bound/.nycrc +9 -0
  226. package/day1/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  227. package/day1/backend-project/node_modules/call-bound/LICENSE +21 -0
  228. package/day1/backend-project/node_modules/call-bound/README.md +53 -0
  229. package/day1/backend-project/node_modules/call-bound/index.d.ts +94 -0
  230. package/day1/backend-project/node_modules/call-bound/index.js +19 -0
  231. package/day1/backend-project/node_modules/call-bound/package.json +99 -0
  232. package/day1/backend-project/node_modules/call-bound/test/index.js +61 -0
  233. package/day1/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  234. package/day1/backend-project/node_modules/chokidar/LICENSE +21 -0
  235. package/day1/backend-project/node_modules/chokidar/README.md +308 -0
  236. package/day1/backend-project/node_modules/chokidar/index.js +973 -0
  237. package/day1/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  238. package/day1/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  239. package/day1/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  240. package/day1/backend-project/node_modules/chokidar/package.json +70 -0
  241. package/day1/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  242. package/day1/backend-project/node_modules/content-disposition/LICENSE +22 -0
  243. package/day1/backend-project/node_modules/content-disposition/README.md +141 -0
  244. package/day1/backend-project/node_modules/content-disposition/index.js +536 -0
  245. package/day1/backend-project/node_modules/content-disposition/package.json +40 -0
  246. package/day1/backend-project/node_modules/content-type/HISTORY.md +29 -0
  247. package/day1/backend-project/node_modules/content-type/LICENSE +22 -0
  248. package/day1/backend-project/node_modules/content-type/README.md +94 -0
  249. package/day1/backend-project/node_modules/content-type/index.js +225 -0
  250. package/day1/backend-project/node_modules/content-type/package.json +42 -0
  251. package/day1/backend-project/node_modules/cookie/LICENSE +24 -0
  252. package/day1/backend-project/node_modules/cookie/README.md +317 -0
  253. package/day1/backend-project/node_modules/cookie/SECURITY.md +25 -0
  254. package/day1/backend-project/node_modules/cookie/index.js +335 -0
  255. package/day1/backend-project/node_modules/cookie/package.json +44 -0
  256. package/day1/backend-project/node_modules/cookie-signature/History.md +70 -0
  257. package/day1/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  258. package/day1/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  259. package/day1/backend-project/node_modules/cookie-signature/index.js +47 -0
  260. package/day1/backend-project/node_modules/cookie-signature/package.json +24 -0
  261. package/day1/backend-project/node_modules/cors/LICENSE +22 -0
  262. package/day1/backend-project/node_modules/cors/README.md +277 -0
  263. package/day1/backend-project/node_modules/cors/lib/index.js +238 -0
  264. package/day1/backend-project/node_modules/cors/package.json +42 -0
  265. package/day1/backend-project/node_modules/debug/LICENSE +20 -0
  266. package/day1/backend-project/node_modules/debug/README.md +481 -0
  267. package/day1/backend-project/node_modules/debug/package.json +64 -0
  268. package/day1/backend-project/node_modules/debug/src/browser.js +272 -0
  269. package/day1/backend-project/node_modules/debug/src/common.js +292 -0
  270. package/day1/backend-project/node_modules/debug/src/index.js +10 -0
  271. package/day1/backend-project/node_modules/debug/src/node.js +263 -0
  272. package/day1/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  273. package/day1/backend-project/node_modules/denque/LICENSE +201 -0
  274. package/day1/backend-project/node_modules/denque/README.md +77 -0
  275. package/day1/backend-project/node_modules/denque/index.d.ts +47 -0
  276. package/day1/backend-project/node_modules/denque/index.js +481 -0
  277. package/day1/backend-project/node_modules/denque/package.json +58 -0
  278. package/day1/backend-project/node_modules/depd/History.md +103 -0
  279. package/day1/backend-project/node_modules/depd/LICENSE +22 -0
  280. package/day1/backend-project/node_modules/depd/Readme.md +280 -0
  281. package/day1/backend-project/node_modules/depd/index.js +538 -0
  282. package/day1/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  283. package/day1/backend-project/node_modules/depd/package.json +45 -0
  284. package/day1/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  285. package/day1/backend-project/node_modules/dotenv/LICENSE +23 -0
  286. package/day1/backend-project/node_modules/dotenv/README-es.md +757 -0
  287. package/day1/backend-project/node_modules/dotenv/README.md +812 -0
  288. package/day1/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  289. package/day1/backend-project/node_modules/dotenv/config.d.ts +1 -0
  290. package/day1/backend-project/node_modules/dotenv/config.js +9 -0
  291. package/day1/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  292. package/day1/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  293. package/day1/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  294. package/day1/backend-project/node_modules/dotenv/lib/main.js +423 -0
  295. package/day1/backend-project/node_modules/dotenv/package.json +62 -0
  296. package/day1/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  297. package/day1/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  298. package/day1/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  299. package/day1/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  300. package/day1/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  301. package/day1/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  302. package/day1/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  303. package/day1/backend-project/node_modules/dunder-proto/README.md +54 -0
  304. package/day1/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  305. package/day1/backend-project/node_modules/dunder-proto/get.js +30 -0
  306. package/day1/backend-project/node_modules/dunder-proto/package.json +76 -0
  307. package/day1/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  308. package/day1/backend-project/node_modules/dunder-proto/set.js +35 -0
  309. package/day1/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  310. package/day1/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  311. package/day1/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  312. package/day1/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  313. package/day1/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  314. package/day1/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  315. package/day1/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  316. package/day1/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  317. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  318. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  319. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  320. package/day1/backend-project/node_modules/ee-first/LICENSE +22 -0
  321. package/day1/backend-project/node_modules/ee-first/README.md +80 -0
  322. package/day1/backend-project/node_modules/ee-first/index.js +95 -0
  323. package/day1/backend-project/node_modules/ee-first/package.json +29 -0
  324. package/day1/backend-project/node_modules/encodeurl/LICENSE +22 -0
  325. package/day1/backend-project/node_modules/encodeurl/README.md +109 -0
  326. package/day1/backend-project/node_modules/encodeurl/index.js +60 -0
  327. package/day1/backend-project/node_modules/encodeurl/package.json +40 -0
  328. package/day1/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  329. package/day1/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  330. package/day1/backend-project/node_modules/es-define-property/.nycrc +9 -0
  331. package/day1/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  332. package/day1/backend-project/node_modules/es-define-property/LICENSE +21 -0
  333. package/day1/backend-project/node_modules/es-define-property/README.md +49 -0
  334. package/day1/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  335. package/day1/backend-project/node_modules/es-define-property/index.js +14 -0
  336. package/day1/backend-project/node_modules/es-define-property/package.json +81 -0
  337. package/day1/backend-project/node_modules/es-define-property/test/index.js +56 -0
  338. package/day1/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  339. package/day1/backend-project/node_modules/es-errors/.eslintrc +5 -0
  340. package/day1/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  341. package/day1/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  342. package/day1/backend-project/node_modules/es-errors/LICENSE +21 -0
  343. package/day1/backend-project/node_modules/es-errors/README.md +55 -0
  344. package/day1/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  345. package/day1/backend-project/node_modules/es-errors/eval.js +4 -0
  346. package/day1/backend-project/node_modules/es-errors/index.d.ts +3 -0
  347. package/day1/backend-project/node_modules/es-errors/index.js +4 -0
  348. package/day1/backend-project/node_modules/es-errors/package.json +80 -0
  349. package/day1/backend-project/node_modules/es-errors/range.d.ts +3 -0
  350. package/day1/backend-project/node_modules/es-errors/range.js +4 -0
  351. package/day1/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  352. package/day1/backend-project/node_modules/es-errors/ref.js +4 -0
  353. package/day1/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  354. package/day1/backend-project/node_modules/es-errors/syntax.js +4 -0
  355. package/day1/backend-project/node_modules/es-errors/test/index.js +19 -0
  356. package/day1/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  357. package/day1/backend-project/node_modules/es-errors/type.d.ts +3 -0
  358. package/day1/backend-project/node_modules/es-errors/type.js +4 -0
  359. package/day1/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  360. package/day1/backend-project/node_modules/es-errors/uri.js +4 -0
  361. package/day1/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  362. package/day1/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  363. package/day1/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  364. package/day1/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  365. package/day1/backend-project/node_modules/es-object-atoms/README.md +63 -0
  366. package/day1/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  367. package/day1/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  368. package/day1/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  369. package/day1/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  370. package/day1/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  371. package/day1/backend-project/node_modules/es-object-atoms/index.js +4 -0
  372. package/day1/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  373. package/day1/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  374. package/day1/backend-project/node_modules/es-object-atoms/package.json +79 -0
  375. package/day1/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  376. package/day1/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  377. package/day1/backend-project/node_modules/escape-html/LICENSE +24 -0
  378. package/day1/backend-project/node_modules/escape-html/Readme.md +43 -0
  379. package/day1/backend-project/node_modules/escape-html/index.js +78 -0
  380. package/day1/backend-project/node_modules/escape-html/package.json +24 -0
  381. package/day1/backend-project/node_modules/etag/HISTORY.md +83 -0
  382. package/day1/backend-project/node_modules/etag/LICENSE +22 -0
  383. package/day1/backend-project/node_modules/etag/README.md +159 -0
  384. package/day1/backend-project/node_modules/etag/index.js +131 -0
  385. package/day1/backend-project/node_modules/etag/package.json +47 -0
  386. package/day1/backend-project/node_modules/express/LICENSE +24 -0
  387. package/day1/backend-project/node_modules/express/Readme.md +276 -0
  388. package/day1/backend-project/node_modules/express/index.js +11 -0
  389. package/day1/backend-project/node_modules/express/lib/application.js +631 -0
  390. package/day1/backend-project/node_modules/express/lib/express.js +81 -0
  391. package/day1/backend-project/node_modules/express/lib/request.js +514 -0
  392. package/day1/backend-project/node_modules/express/lib/response.js +1053 -0
  393. package/day1/backend-project/node_modules/express/lib/utils.js +271 -0
  394. package/day1/backend-project/node_modules/express/lib/view.js +205 -0
  395. package/day1/backend-project/node_modules/express/package.json +99 -0
  396. package/day1/backend-project/node_modules/fill-range/LICENSE +21 -0
  397. package/day1/backend-project/node_modules/fill-range/README.md +237 -0
  398. package/day1/backend-project/node_modules/fill-range/index.js +248 -0
  399. package/day1/backend-project/node_modules/fill-range/package.json +74 -0
  400. package/day1/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  401. package/day1/backend-project/node_modules/finalhandler/LICENSE +22 -0
  402. package/day1/backend-project/node_modules/finalhandler/README.md +150 -0
  403. package/day1/backend-project/node_modules/finalhandler/index.js +293 -0
  404. package/day1/backend-project/node_modules/finalhandler/package.json +47 -0
  405. package/day1/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  406. package/day1/backend-project/node_modules/forwarded/LICENSE +22 -0
  407. package/day1/backend-project/node_modules/forwarded/README.md +57 -0
  408. package/day1/backend-project/node_modules/forwarded/index.js +90 -0
  409. package/day1/backend-project/node_modules/forwarded/package.json +45 -0
  410. package/day1/backend-project/node_modules/fresh/HISTORY.md +80 -0
  411. package/day1/backend-project/node_modules/fresh/LICENSE +23 -0
  412. package/day1/backend-project/node_modules/fresh/README.md +117 -0
  413. package/day1/backend-project/node_modules/fresh/index.js +136 -0
  414. package/day1/backend-project/node_modules/fresh/package.json +46 -0
  415. package/day1/backend-project/node_modules/function-bind/.eslintrc +21 -0
  416. package/day1/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  417. package/day1/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  418. package/day1/backend-project/node_modules/function-bind/.nycrc +13 -0
  419. package/day1/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  420. package/day1/backend-project/node_modules/function-bind/LICENSE +20 -0
  421. package/day1/backend-project/node_modules/function-bind/README.md +46 -0
  422. package/day1/backend-project/node_modules/function-bind/implementation.js +84 -0
  423. package/day1/backend-project/node_modules/function-bind/index.js +5 -0
  424. package/day1/backend-project/node_modules/function-bind/package.json +87 -0
  425. package/day1/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  426. package/day1/backend-project/node_modules/function-bind/test/index.js +252 -0
  427. package/day1/backend-project/node_modules/generate-function/.travis.yml +3 -0
  428. package/day1/backend-project/node_modules/generate-function/LICENSE +21 -0
  429. package/day1/backend-project/node_modules/generate-function/README.md +89 -0
  430. package/day1/backend-project/node_modules/generate-function/example.js +27 -0
  431. package/day1/backend-project/node_modules/generate-function/index.js +181 -0
  432. package/day1/backend-project/node_modules/generate-function/package.json +32 -0
  433. package/day1/backend-project/node_modules/generate-function/test.js +49 -0
  434. package/day1/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  435. package/day1/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  436. package/day1/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  437. package/day1/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  438. package/day1/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  439. package/day1/backend-project/node_modules/get-intrinsic/README.md +71 -0
  440. package/day1/backend-project/node_modules/get-intrinsic/index.js +378 -0
  441. package/day1/backend-project/node_modules/get-intrinsic/package.json +97 -0
  442. package/day1/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  443. package/day1/backend-project/node_modules/get-proto/.eslintrc +10 -0
  444. package/day1/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  445. package/day1/backend-project/node_modules/get-proto/.nycrc +9 -0
  446. package/day1/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  447. package/day1/backend-project/node_modules/get-proto/LICENSE +21 -0
  448. package/day1/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  449. package/day1/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  450. package/day1/backend-project/node_modules/get-proto/README.md +50 -0
  451. package/day1/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  452. package/day1/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  453. package/day1/backend-project/node_modules/get-proto/index.d.ts +5 -0
  454. package/day1/backend-project/node_modules/get-proto/index.js +27 -0
  455. package/day1/backend-project/node_modules/get-proto/package.json +81 -0
  456. package/day1/backend-project/node_modules/get-proto/test/index.js +68 -0
  457. package/day1/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  458. package/day1/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  459. package/day1/backend-project/node_modules/glob-parent/LICENSE +15 -0
  460. package/day1/backend-project/node_modules/glob-parent/README.md +137 -0
  461. package/day1/backend-project/node_modules/glob-parent/index.js +42 -0
  462. package/day1/backend-project/node_modules/glob-parent/package.json +48 -0
  463. package/day1/backend-project/node_modules/gopd/.eslintrc +16 -0
  464. package/day1/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  465. package/day1/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  466. package/day1/backend-project/node_modules/gopd/LICENSE +21 -0
  467. package/day1/backend-project/node_modules/gopd/README.md +40 -0
  468. package/day1/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  469. package/day1/backend-project/node_modules/gopd/gOPD.js +4 -0
  470. package/day1/backend-project/node_modules/gopd/index.d.ts +5 -0
  471. package/day1/backend-project/node_modules/gopd/index.js +15 -0
  472. package/day1/backend-project/node_modules/gopd/package.json +77 -0
  473. package/day1/backend-project/node_modules/gopd/test/index.js +36 -0
  474. package/day1/backend-project/node_modules/gopd/tsconfig.json +9 -0
  475. package/day1/backend-project/node_modules/has-flag/index.js +8 -0
  476. package/day1/backend-project/node_modules/has-flag/license +9 -0
  477. package/day1/backend-project/node_modules/has-flag/package.json +44 -0
  478. package/day1/backend-project/node_modules/has-flag/readme.md +70 -0
  479. package/day1/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  480. package/day1/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  481. package/day1/backend-project/node_modules/has-symbols/.nycrc +9 -0
  482. package/day1/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  483. package/day1/backend-project/node_modules/has-symbols/LICENSE +21 -0
  484. package/day1/backend-project/node_modules/has-symbols/README.md +46 -0
  485. package/day1/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  486. package/day1/backend-project/node_modules/has-symbols/index.js +14 -0
  487. package/day1/backend-project/node_modules/has-symbols/package.json +111 -0
  488. package/day1/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  489. package/day1/backend-project/node_modules/has-symbols/shams.js +45 -0
  490. package/day1/backend-project/node_modules/has-symbols/test/index.js +22 -0
  491. package/day1/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  492. package/day1/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  493. package/day1/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  494. package/day1/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  495. package/day1/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  496. package/day1/backend-project/node_modules/hasown/.nycrc +13 -0
  497. package/day1/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  498. package/day1/backend-project/node_modules/hasown/LICENSE +21 -0
  499. package/day1/backend-project/node_modules/hasown/README.md +40 -0
  500. package/day1/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  501. package/day1/backend-project/node_modules/hasown/index.d.ts +3 -0
  502. package/day1/backend-project/node_modules/hasown/index.js +8 -0
  503. package/day1/backend-project/node_modules/hasown/package.json +91 -0
  504. package/day1/backend-project/node_modules/hasown/tsconfig.json +6 -0
  505. package/day1/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  506. package/day1/backend-project/node_modules/http-errors/LICENSE +23 -0
  507. package/day1/backend-project/node_modules/http-errors/README.md +169 -0
  508. package/day1/backend-project/node_modules/http-errors/index.js +290 -0
  509. package/day1/backend-project/node_modules/http-errors/package.json +54 -0
  510. package/day1/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  511. package/day1/backend-project/node_modules/iconv-lite/README.md +138 -0
  512. package/day1/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  513. package/day1/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  514. package/day1/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  515. package/day1/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  516. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  517. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  518. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  519. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  520. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  521. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  522. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  523. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  524. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  525. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  526. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  527. package/day1/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  528. package/day1/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  529. package/day1/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  530. package/day1/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  531. package/day1/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  532. package/day1/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  533. package/day1/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  534. package/day1/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  535. package/day1/backend-project/node_modules/iconv-lite/package.json +70 -0
  536. package/day1/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  537. package/day1/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  538. package/day1/backend-project/node_modules/ignore-by-default/README.md +26 -0
  539. package/day1/backend-project/node_modules/ignore-by-default/index.js +12 -0
  540. package/day1/backend-project/node_modules/ignore-by-default/package.json +34 -0
  541. package/day1/backend-project/node_modules/inherits/LICENSE +16 -0
  542. package/day1/backend-project/node_modules/inherits/README.md +42 -0
  543. package/day1/backend-project/node_modules/inherits/inherits.js +9 -0
  544. package/day1/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  545. package/day1/backend-project/node_modules/inherits/package.json +29 -0
  546. package/day1/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  547. package/day1/backend-project/node_modules/ipaddr.js/README.md +233 -0
  548. package/day1/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  549. package/day1/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  550. package/day1/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  551. package/day1/backend-project/node_modules/ipaddr.js/package.json +35 -0
  552. package/day1/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  553. package/day1/backend-project/node_modules/is-binary-path/index.js +7 -0
  554. package/day1/backend-project/node_modules/is-binary-path/license +9 -0
  555. package/day1/backend-project/node_modules/is-binary-path/package.json +40 -0
  556. package/day1/backend-project/node_modules/is-binary-path/readme.md +34 -0
  557. package/day1/backend-project/node_modules/is-extglob/LICENSE +21 -0
  558. package/day1/backend-project/node_modules/is-extglob/README.md +107 -0
  559. package/day1/backend-project/node_modules/is-extglob/index.js +20 -0
  560. package/day1/backend-project/node_modules/is-extglob/package.json +69 -0
  561. package/day1/backend-project/node_modules/is-glob/LICENSE +21 -0
  562. package/day1/backend-project/node_modules/is-glob/README.md +206 -0
  563. package/day1/backend-project/node_modules/is-glob/index.js +150 -0
  564. package/day1/backend-project/node_modules/is-glob/package.json +81 -0
  565. package/day1/backend-project/node_modules/is-number/LICENSE +21 -0
  566. package/day1/backend-project/node_modules/is-number/README.md +187 -0
  567. package/day1/backend-project/node_modules/is-number/index.js +18 -0
  568. package/day1/backend-project/node_modules/is-number/package.json +82 -0
  569. package/day1/backend-project/node_modules/is-promise/LICENSE +19 -0
  570. package/day1/backend-project/node_modules/is-promise/index.d.ts +2 -0
  571. package/day1/backend-project/node_modules/is-promise/index.js +6 -0
  572. package/day1/backend-project/node_modules/is-promise/index.mjs +3 -0
  573. package/day1/backend-project/node_modules/is-promise/package.json +30 -0
  574. package/day1/backend-project/node_modules/is-promise/readme.md +33 -0
  575. package/day1/backend-project/node_modules/is-property/LICENSE +22 -0
  576. package/day1/backend-project/node_modules/is-property/README.md +28 -0
  577. package/day1/backend-project/node_modules/is-property/is-property.js +5 -0
  578. package/day1/backend-project/node_modules/is-property/package.json +36 -0
  579. package/day1/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  580. package/day1/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  581. package/day1/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  582. package/day1/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  583. package/day1/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  584. package/day1/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  585. package/day1/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  586. package/day1/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  587. package/day1/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  588. package/day1/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  589. package/day1/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  590. package/day1/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  591. package/day1/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  592. package/day1/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  593. package/day1/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  594. package/day1/backend-project/node_modules/jwa/LICENSE +17 -0
  595. package/day1/backend-project/node_modules/jwa/README.md +150 -0
  596. package/day1/backend-project/node_modules/jwa/index.js +266 -0
  597. package/day1/backend-project/node_modules/jwa/opslevel.yml +6 -0
  598. package/day1/backend-project/node_modules/jwa/package.json +37 -0
  599. package/day1/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  600. package/day1/backend-project/node_modules/jws/LICENSE +17 -0
  601. package/day1/backend-project/node_modules/jws/index.js +22 -0
  602. package/day1/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  603. package/day1/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  604. package/day1/backend-project/node_modules/jws/lib/tostring.js +10 -0
  605. package/day1/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  606. package/day1/backend-project/node_modules/jws/opslevel.yml +6 -0
  607. package/day1/backend-project/node_modules/jws/package.json +34 -0
  608. package/day1/backend-project/node_modules/jws/readme.md +255 -0
  609. package/day1/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  610. package/day1/backend-project/node_modules/lodash.includes/README.md +18 -0
  611. package/day1/backend-project/node_modules/lodash.includes/index.js +745 -0
  612. package/day1/backend-project/node_modules/lodash.includes/package.json +17 -0
  613. package/day1/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  614. package/day1/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  615. package/day1/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  616. package/day1/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  617. package/day1/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  618. package/day1/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  619. package/day1/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  620. package/day1/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  621. package/day1/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  622. package/day1/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  623. package/day1/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  624. package/day1/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  625. package/day1/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  626. package/day1/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  627. package/day1/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  628. package/day1/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  629. package/day1/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  630. package/day1/backend-project/node_modules/lodash.isstring/README.md +18 -0
  631. package/day1/backend-project/node_modules/lodash.isstring/index.js +95 -0
  632. package/day1/backend-project/node_modules/lodash.isstring/package.json +17 -0
  633. package/day1/backend-project/node_modules/lodash.once/LICENSE +47 -0
  634. package/day1/backend-project/node_modules/lodash.once/README.md +18 -0
  635. package/day1/backend-project/node_modules/lodash.once/index.js +294 -0
  636. package/day1/backend-project/node_modules/lodash.once/package.json +17 -0
  637. package/day1/backend-project/node_modules/long/LICENSE +202 -0
  638. package/day1/backend-project/node_modules/long/README.md +286 -0
  639. package/day1/backend-project/node_modules/long/index.d.ts +2 -0
  640. package/day1/backend-project/node_modules/long/index.js +1581 -0
  641. package/day1/backend-project/node_modules/long/package.json +58 -0
  642. package/day1/backend-project/node_modules/long/types.d.ts +474 -0
  643. package/day1/backend-project/node_modules/long/umd/index.d.ts +3 -0
  644. package/day1/backend-project/node_modules/long/umd/index.js +1622 -0
  645. package/day1/backend-project/node_modules/long/umd/package.json +3 -0
  646. package/day1/backend-project/node_modules/long/umd/types.d.ts +474 -0
  647. package/day1/backend-project/node_modules/lru.min/LICENSE +21 -0
  648. package/day1/backend-project/node_modules/lru.min/README.md +392 -0
  649. package/day1/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  650. package/day1/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  651. package/day1/backend-project/node_modules/lru.min/lib/index.js +248 -0
  652. package/day1/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  653. package/day1/backend-project/node_modules/lru.min/package.json +87 -0
  654. package/day1/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  655. package/day1/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  656. package/day1/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  657. package/day1/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  658. package/day1/backend-project/node_modules/math-intrinsics/README.md +50 -0
  659. package/day1/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  660. package/day1/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  661. package/day1/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  662. package/day1/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  663. package/day1/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  664. package/day1/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  665. package/day1/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  666. package/day1/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  667. package/day1/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  668. package/day1/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  669. package/day1/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  670. package/day1/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  671. package/day1/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  672. package/day1/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  673. package/day1/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  674. package/day1/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  675. package/day1/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  676. package/day1/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  677. package/day1/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  678. package/day1/backend-project/node_modules/math-intrinsics/max.js +4 -0
  679. package/day1/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  680. package/day1/backend-project/node_modules/math-intrinsics/min.js +4 -0
  681. package/day1/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  682. package/day1/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  683. package/day1/backend-project/node_modules/math-intrinsics/package.json +86 -0
  684. package/day1/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  685. package/day1/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  686. package/day1/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  687. package/day1/backend-project/node_modules/math-intrinsics/round.js +4 -0
  688. package/day1/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  689. package/day1/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  690. package/day1/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  691. package/day1/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  692. package/day1/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  693. package/day1/backend-project/node_modules/media-typer/LICENSE +22 -0
  694. package/day1/backend-project/node_modules/media-typer/README.md +93 -0
  695. package/day1/backend-project/node_modules/media-typer/index.js +143 -0
  696. package/day1/backend-project/node_modules/media-typer/package.json +33 -0
  697. package/day1/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  698. package/day1/backend-project/node_modules/merge-descriptors/index.js +26 -0
  699. package/day1/backend-project/node_modules/merge-descriptors/license +11 -0
  700. package/day1/backend-project/node_modules/merge-descriptors/package.json +50 -0
  701. package/day1/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  702. package/day1/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  703. package/day1/backend-project/node_modules/mime-db/LICENSE +23 -0
  704. package/day1/backend-project/node_modules/mime-db/README.md +109 -0
  705. package/day1/backend-project/node_modules/mime-db/db.json +9342 -0
  706. package/day1/backend-project/node_modules/mime-db/index.js +12 -0
  707. package/day1/backend-project/node_modules/mime-db/package.json +56 -0
  708. package/day1/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  709. package/day1/backend-project/node_modules/mime-types/LICENSE +23 -0
  710. package/day1/backend-project/node_modules/mime-types/README.md +126 -0
  711. package/day1/backend-project/node_modules/mime-types/index.js +211 -0
  712. package/day1/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  713. package/day1/backend-project/node_modules/mime-types/package.json +49 -0
  714. package/day1/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  715. package/day1/backend-project/node_modules/minimatch/README.md +528 -0
  716. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  717. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  718. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  719. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  720. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  721. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  722. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  723. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  724. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  725. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  726. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  727. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  728. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  729. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  730. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  731. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  732. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  733. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  734. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  735. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  736. package/day1/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  737. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  738. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  739. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  740. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  741. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  742. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  743. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  744. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  745. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  746. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  747. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  748. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  749. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  750. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  751. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  752. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  753. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  754. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  755. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  756. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  757. package/day1/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  758. package/day1/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  759. package/day1/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  760. package/day1/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  761. package/day1/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  762. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  763. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  764. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  765. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  766. package/day1/backend-project/node_modules/minimatch/package.json +73 -0
  767. package/day1/backend-project/node_modules/ms/index.js +162 -0
  768. package/day1/backend-project/node_modules/ms/license.md +21 -0
  769. package/day1/backend-project/node_modules/ms/package.json +38 -0
  770. package/day1/backend-project/node_modules/ms/readme.md +59 -0
  771. package/day1/backend-project/node_modules/mysql2/License +19 -0
  772. package/day1/backend-project/node_modules/mysql2/README.md +114 -0
  773. package/day1/backend-project/node_modules/mysql2/index.d.ts +1 -0
  774. package/day1/backend-project/node_modules/mysql2/index.js +77 -0
  775. package/day1/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  776. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  777. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  778. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  779. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  780. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  781. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  782. package/day1/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  783. package/day1/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  784. package/day1/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  785. package/day1/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  786. package/day1/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  787. package/day1/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  788. package/day1/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  789. package/day1/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  790. package/day1/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  791. package/day1/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  792. package/day1/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  793. package/day1/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  794. package/day1/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  795. package/day1/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  796. package/day1/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  797. package/day1/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  798. package/day1/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  799. package/day1/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  800. package/day1/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  801. package/day1/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  802. package/day1/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  803. package/day1/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  804. package/day1/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  805. package/day1/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  806. package/day1/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  807. package/day1/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  808. package/day1/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  809. package/day1/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  810. package/day1/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  811. package/day1/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  812. package/day1/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  813. package/day1/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  814. package/day1/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  815. package/day1/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  816. package/day1/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  817. package/day1/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  818. package/day1/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  819. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  820. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  821. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  822. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  823. package/day1/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  824. package/day1/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  825. package/day1/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  826. package/day1/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  827. package/day1/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  828. package/day1/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  829. package/day1/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  830. package/day1/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  831. package/day1/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  832. package/day1/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  833. package/day1/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  834. package/day1/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  835. package/day1/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  836. package/day1/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  837. package/day1/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  838. package/day1/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  839. package/day1/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  840. package/day1/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  841. package/day1/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  842. package/day1/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  843. package/day1/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  844. package/day1/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  845. package/day1/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  846. package/day1/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  847. package/day1/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  848. package/day1/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  849. package/day1/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  850. package/day1/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  851. package/day1/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  852. package/day1/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  853. package/day1/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  854. package/day1/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  855. package/day1/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  856. package/day1/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  857. package/day1/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  858. package/day1/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  859. package/day1/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  860. package/day1/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  861. package/day1/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  862. package/day1/backend-project/node_modules/mysql2/lib/server.js +37 -0
  863. package/day1/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  864. package/day1/backend-project/node_modules/mysql2/package.json +95 -0
  865. package/day1/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  866. package/day1/backend-project/node_modules/mysql2/promise.js +209 -0
  867. package/day1/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  868. package/day1/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  869. package/day1/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  870. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  871. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  872. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  873. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  874. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  875. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  876. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  877. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  878. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  879. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  880. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  881. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  882. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  883. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  884. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  885. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  886. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  887. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  888. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  889. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  890. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  891. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  892. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  893. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  894. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  895. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  896. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  897. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  898. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  899. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  900. package/day1/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  901. package/day1/backend-project/node_modules/named-placeholders/README.md +27 -0
  902. package/day1/backend-project/node_modules/named-placeholders/index.js +179 -0
  903. package/day1/backend-project/node_modules/named-placeholders/package.json +36 -0
  904. package/day1/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  905. package/day1/backend-project/node_modules/negotiator/LICENSE +24 -0
  906. package/day1/backend-project/node_modules/negotiator/README.md +212 -0
  907. package/day1/backend-project/node_modules/negotiator/index.js +83 -0
  908. package/day1/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  909. package/day1/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  910. package/day1/backend-project/node_modules/negotiator/lib/language.js +179 -0
  911. package/day1/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  912. package/day1/backend-project/node_modules/negotiator/package.json +43 -0
  913. package/day1/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  914. package/day1/backend-project/node_modules/nodemon/LICENSE +21 -0
  915. package/day1/backend-project/node_modules/nodemon/README.md +439 -0
  916. package/day1/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  917. package/day1/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  918. package/day1/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  919. package/day1/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  920. package/day1/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  921. package/day1/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  922. package/day1/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  923. package/day1/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  924. package/day1/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  925. package/day1/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  926. package/day1/backend-project/node_modules/nodemon/index.d.ts +124 -0
  927. package/day1/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  928. package/day1/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  929. package/day1/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  930. package/day1/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  931. package/day1/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  932. package/day1/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  933. package/day1/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  934. package/day1/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  935. package/day1/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  936. package/day1/backend-project/node_modules/nodemon/lib/index.js +1 -0
  937. package/day1/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  938. package/day1/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  939. package/day1/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  940. package/day1/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  941. package/day1/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  942. package/day1/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  943. package/day1/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  944. package/day1/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  945. package/day1/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  946. package/day1/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  947. package/day1/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  948. package/day1/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  949. package/day1/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  950. package/day1/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  951. package/day1/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  952. package/day1/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  953. package/day1/backend-project/node_modules/nodemon/lib/version.js +100 -0
  954. package/day1/backend-project/node_modules/nodemon/package.json +78 -0
  955. package/day1/backend-project/node_modules/normalize-path/LICENSE +21 -0
  956. package/day1/backend-project/node_modules/normalize-path/README.md +127 -0
  957. package/day1/backend-project/node_modules/normalize-path/index.js +35 -0
  958. package/day1/backend-project/node_modules/normalize-path/package.json +77 -0
  959. package/day1/backend-project/node_modules/object-assign/index.js +90 -0
  960. package/day1/backend-project/node_modules/object-assign/license +21 -0
  961. package/day1/backend-project/node_modules/object-assign/package.json +42 -0
  962. package/day1/backend-project/node_modules/object-assign/readme.md +61 -0
  963. package/day1/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  964. package/day1/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  965. package/day1/backend-project/node_modules/object-inspect/.nycrc +13 -0
  966. package/day1/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  967. package/day1/backend-project/node_modules/object-inspect/LICENSE +21 -0
  968. package/day1/backend-project/node_modules/object-inspect/example/all.js +23 -0
  969. package/day1/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  970. package/day1/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  971. package/day1/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  972. package/day1/backend-project/node_modules/object-inspect/index.js +544 -0
  973. package/day1/backend-project/node_modules/object-inspect/package-support.json +20 -0
  974. package/day1/backend-project/node_modules/object-inspect/package.json +105 -0
  975. package/day1/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  976. package/day1/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  977. package/day1/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  978. package/day1/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  979. package/day1/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  980. package/day1/backend-project/node_modules/object-inspect/test/element.js +53 -0
  981. package/day1/backend-project/node_modules/object-inspect/test/err.js +48 -0
  982. package/day1/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  983. package/day1/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  984. package/day1/backend-project/node_modules/object-inspect/test/global.js +17 -0
  985. package/day1/backend-project/node_modules/object-inspect/test/has.js +15 -0
  986. package/day1/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  987. package/day1/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  988. package/day1/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  989. package/day1/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  990. package/day1/backend-project/node_modules/object-inspect/test/number.js +58 -0
  991. package/day1/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  992. package/day1/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  993. package/day1/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  994. package/day1/backend-project/node_modules/object-inspect/test/values.js +261 -0
  995. package/day1/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  996. package/day1/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  997. package/day1/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  998. package/day1/backend-project/node_modules/on-finished/LICENSE +23 -0
  999. package/day1/backend-project/node_modules/on-finished/README.md +162 -0
  1000. package/day1/backend-project/node_modules/on-finished/index.js +234 -0
  1001. package/day1/backend-project/node_modules/on-finished/package.json +39 -0
  1002. package/day1/backend-project/node_modules/once/LICENSE +15 -0
  1003. package/day1/backend-project/node_modules/once/README.md +79 -0
  1004. package/day1/backend-project/node_modules/once/once.js +42 -0
  1005. package/day1/backend-project/node_modules/once/package.json +33 -0
  1006. package/day1/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  1007. package/day1/backend-project/node_modules/parseurl/LICENSE +24 -0
  1008. package/day1/backend-project/node_modules/parseurl/README.md +133 -0
  1009. package/day1/backend-project/node_modules/parseurl/index.js +158 -0
  1010. package/day1/backend-project/node_modules/parseurl/package.json +40 -0
  1011. package/day1/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  1012. package/day1/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  1013. package/day1/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  1014. package/day1/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  1015. package/day1/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  1016. package/day1/backend-project/node_modules/path-to-regexp/package.json +64 -0
  1017. package/day1/backend-project/node_modules/picomatch/LICENSE +21 -0
  1018. package/day1/backend-project/node_modules/picomatch/README.md +716 -0
  1019. package/day1/backend-project/node_modules/picomatch/index.js +3 -0
  1020. package/day1/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  1021. package/day1/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  1022. package/day1/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  1023. package/day1/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  1024. package/day1/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  1025. package/day1/backend-project/node_modules/picomatch/package.json +81 -0
  1026. package/day1/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  1027. package/day1/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  1028. package/day1/backend-project/node_modules/proxy-addr/README.md +139 -0
  1029. package/day1/backend-project/node_modules/proxy-addr/index.js +327 -0
  1030. package/day1/backend-project/node_modules/proxy-addr/package.json +47 -0
  1031. package/day1/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  1032. package/day1/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  1033. package/day1/backend-project/node_modules/pstree.remy/README.md +26 -0
  1034. package/day1/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  1035. package/day1/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  1036. package/day1/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  1037. package/day1/backend-project/node_modules/pstree.remy/package.json +33 -0
  1038. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  1039. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  1040. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  1041. package/day1/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  1042. package/day1/backend-project/node_modules/qs/.editorconfig +46 -0
  1043. package/day1/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  1044. package/day1/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  1045. package/day1/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  1046. package/day1/backend-project/node_modules/qs/.nycrc +13 -0
  1047. package/day1/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  1048. package/day1/backend-project/node_modules/qs/LICENSE.md +29 -0
  1049. package/day1/backend-project/node_modules/qs/README.md +758 -0
  1050. package/day1/backend-project/node_modules/qs/dist/qs.js +141 -0
  1051. package/day1/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  1052. package/day1/backend-project/node_modules/qs/lib/formats.js +23 -0
  1053. package/day1/backend-project/node_modules/qs/lib/index.js +11 -0
  1054. package/day1/backend-project/node_modules/qs/lib/parse.js +403 -0
  1055. package/day1/backend-project/node_modules/qs/lib/stringify.js +363 -0
  1056. package/day1/backend-project/node_modules/qs/lib/utils.js +342 -0
  1057. package/day1/backend-project/node_modules/qs/package.json +94 -0
  1058. package/day1/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  1059. package/day1/backend-project/node_modules/qs/test/parse.js +1703 -0
  1060. package/day1/backend-project/node_modules/qs/test/stringify.js +1448 -0
  1061. package/day1/backend-project/node_modules/qs/test/utils.js +432 -0
  1062. package/day1/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  1063. package/day1/backend-project/node_modules/range-parser/LICENSE +23 -0
  1064. package/day1/backend-project/node_modules/range-parser/README.md +84 -0
  1065. package/day1/backend-project/node_modules/range-parser/index.js +162 -0
  1066. package/day1/backend-project/node_modules/range-parser/package.json +44 -0
  1067. package/day1/backend-project/node_modules/raw-body/LICENSE +22 -0
  1068. package/day1/backend-project/node_modules/raw-body/README.md +223 -0
  1069. package/day1/backend-project/node_modules/raw-body/index.d.ts +85 -0
  1070. package/day1/backend-project/node_modules/raw-body/index.js +336 -0
  1071. package/day1/backend-project/node_modules/raw-body/package.json +46 -0
  1072. package/day1/backend-project/node_modules/readdirp/LICENSE +21 -0
  1073. package/day1/backend-project/node_modules/readdirp/README.md +122 -0
  1074. package/day1/backend-project/node_modules/readdirp/index.d.ts +43 -0
  1075. package/day1/backend-project/node_modules/readdirp/index.js +287 -0
  1076. package/day1/backend-project/node_modules/readdirp/package.json +122 -0
  1077. package/day1/backend-project/node_modules/router/HISTORY.md +228 -0
  1078. package/day1/backend-project/node_modules/router/LICENSE +23 -0
  1079. package/day1/backend-project/node_modules/router/README.md +416 -0
  1080. package/day1/backend-project/node_modules/router/index.js +748 -0
  1081. package/day1/backend-project/node_modules/router/lib/layer.js +247 -0
  1082. package/day1/backend-project/node_modules/router/lib/route.js +242 -0
  1083. package/day1/backend-project/node_modules/router/package.json +44 -0
  1084. package/day1/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  1085. package/day1/backend-project/node_modules/safe-buffer/README.md +584 -0
  1086. package/day1/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  1087. package/day1/backend-project/node_modules/safe-buffer/index.js +65 -0
  1088. package/day1/backend-project/node_modules/safe-buffer/package.json +51 -0
  1089. package/day1/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  1090. package/day1/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1091. package/day1/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  1092. package/day1/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  1093. package/day1/backend-project/node_modules/safer-buffer/package.json +34 -0
  1094. package/day1/backend-project/node_modules/safer-buffer/safer.js +77 -0
  1095. package/day1/backend-project/node_modules/safer-buffer/tests.js +406 -0
  1096. package/day1/backend-project/node_modules/semver/LICENSE +15 -0
  1097. package/day1/backend-project/node_modules/semver/README.md +680 -0
  1098. package/day1/backend-project/node_modules/semver/bin/semver.js +195 -0
  1099. package/day1/backend-project/node_modules/semver/classes/comparator.js +143 -0
  1100. package/day1/backend-project/node_modules/semver/classes/index.js +7 -0
  1101. package/day1/backend-project/node_modules/semver/classes/range.js +564 -0
  1102. package/day1/backend-project/node_modules/semver/classes/semver.js +333 -0
  1103. package/day1/backend-project/node_modules/semver/functions/clean.js +8 -0
  1104. package/day1/backend-project/node_modules/semver/functions/cmp.js +54 -0
  1105. package/day1/backend-project/node_modules/semver/functions/coerce.js +62 -0
  1106. package/day1/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  1107. package/day1/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  1108. package/day1/backend-project/node_modules/semver/functions/compare.js +7 -0
  1109. package/day1/backend-project/node_modules/semver/functions/diff.js +60 -0
  1110. package/day1/backend-project/node_modules/semver/functions/eq.js +5 -0
  1111. package/day1/backend-project/node_modules/semver/functions/gt.js +5 -0
  1112. package/day1/backend-project/node_modules/semver/functions/gte.js +5 -0
  1113. package/day1/backend-project/node_modules/semver/functions/inc.js +21 -0
  1114. package/day1/backend-project/node_modules/semver/functions/lt.js +5 -0
  1115. package/day1/backend-project/node_modules/semver/functions/lte.js +5 -0
  1116. package/day1/backend-project/node_modules/semver/functions/major.js +5 -0
  1117. package/day1/backend-project/node_modules/semver/functions/minor.js +5 -0
  1118. package/day1/backend-project/node_modules/semver/functions/neq.js +5 -0
  1119. package/day1/backend-project/node_modules/semver/functions/parse.js +18 -0
  1120. package/day1/backend-project/node_modules/semver/functions/patch.js +5 -0
  1121. package/day1/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  1122. package/day1/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  1123. package/day1/backend-project/node_modules/semver/functions/rsort.js +5 -0
  1124. package/day1/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  1125. package/day1/backend-project/node_modules/semver/functions/sort.js +5 -0
  1126. package/day1/backend-project/node_modules/semver/functions/truncate.js +48 -0
  1127. package/day1/backend-project/node_modules/semver/functions/valid.js +8 -0
  1128. package/day1/backend-project/node_modules/semver/index.js +93 -0
  1129. package/day1/backend-project/node_modules/semver/internal/constants.js +37 -0
  1130. package/day1/backend-project/node_modules/semver/internal/debug.js +11 -0
  1131. package/day1/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  1132. package/day1/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  1133. package/day1/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  1134. package/day1/backend-project/node_modules/semver/internal/re.js +223 -0
  1135. package/day1/backend-project/node_modules/semver/package.json +78 -0
  1136. package/day1/backend-project/node_modules/semver/preload.js +4 -0
  1137. package/day1/backend-project/node_modules/semver/range.bnf +17 -0
  1138. package/day1/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  1139. package/day1/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  1140. package/day1/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  1141. package/day1/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  1142. package/day1/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  1143. package/day1/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  1144. package/day1/backend-project/node_modules/semver/ranges/outside.js +82 -0
  1145. package/day1/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  1146. package/day1/backend-project/node_modules/semver/ranges/subset.js +249 -0
  1147. package/day1/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  1148. package/day1/backend-project/node_modules/semver/ranges/valid.js +13 -0
  1149. package/day1/backend-project/node_modules/send/LICENSE +23 -0
  1150. package/day1/backend-project/node_modules/send/README.md +317 -0
  1151. package/day1/backend-project/node_modules/send/index.js +997 -0
  1152. package/day1/backend-project/node_modules/send/package.json +63 -0
  1153. package/day1/backend-project/node_modules/serve-static/LICENSE +25 -0
  1154. package/day1/backend-project/node_modules/serve-static/README.md +253 -0
  1155. package/day1/backend-project/node_modules/serve-static/index.js +208 -0
  1156. package/day1/backend-project/node_modules/serve-static/package.json +44 -0
  1157. package/day1/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  1158. package/day1/backend-project/node_modules/setprototypeof/README.md +31 -0
  1159. package/day1/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  1160. package/day1/backend-project/node_modules/setprototypeof/index.js +17 -0
  1161. package/day1/backend-project/node_modules/setprototypeof/package.json +38 -0
  1162. package/day1/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  1163. package/day1/backend-project/node_modules/side-channel/.editorconfig +9 -0
  1164. package/day1/backend-project/node_modules/side-channel/.eslintrc +12 -0
  1165. package/day1/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  1166. package/day1/backend-project/node_modules/side-channel/.nycrc +13 -0
  1167. package/day1/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  1168. package/day1/backend-project/node_modules/side-channel/LICENSE +21 -0
  1169. package/day1/backend-project/node_modules/side-channel/README.md +61 -0
  1170. package/day1/backend-project/node_modules/side-channel/index.d.ts +14 -0
  1171. package/day1/backend-project/node_modules/side-channel/index.js +43 -0
  1172. package/day1/backend-project/node_modules/side-channel/package.json +85 -0
  1173. package/day1/backend-project/node_modules/side-channel/test/index.js +104 -0
  1174. package/day1/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  1175. package/day1/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  1176. package/day1/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  1177. package/day1/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  1178. package/day1/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  1179. package/day1/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  1180. package/day1/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  1181. package/day1/backend-project/node_modules/side-channel-list/README.md +62 -0
  1182. package/day1/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  1183. package/day1/backend-project/node_modules/side-channel-list/index.js +111 -0
  1184. package/day1/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  1185. package/day1/backend-project/node_modules/side-channel-list/package.json +77 -0
  1186. package/day1/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  1187. package/day1/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  1188. package/day1/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  1189. package/day1/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  1190. package/day1/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  1191. package/day1/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  1192. package/day1/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  1193. package/day1/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  1194. package/day1/backend-project/node_modules/side-channel-map/README.md +62 -0
  1195. package/day1/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  1196. package/day1/backend-project/node_modules/side-channel-map/index.js +68 -0
  1197. package/day1/backend-project/node_modules/side-channel-map/package.json +80 -0
  1198. package/day1/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  1199. package/day1/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  1200. package/day1/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  1201. package/day1/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  1202. package/day1/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  1203. package/day1/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  1204. package/day1/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  1205. package/day1/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  1206. package/day1/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  1207. package/day1/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  1208. package/day1/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  1209. package/day1/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  1210. package/day1/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  1211. package/day1/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  1212. package/day1/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  1213. package/day1/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  1214. package/day1/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  1215. package/day1/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  1216. package/day1/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  1217. package/day1/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  1218. package/day1/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  1219. package/day1/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  1220. package/day1/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  1221. package/day1/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  1222. package/day1/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  1223. package/day1/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  1224. package/day1/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  1225. package/day1/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  1226. package/day1/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  1227. package/day1/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  1228. package/day1/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  1229. package/day1/backend-project/node_modules/sql-escaper/README.md +424 -0
  1230. package/day1/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  1231. package/day1/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  1232. package/day1/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  1233. package/day1/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  1234. package/day1/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  1235. package/day1/backend-project/node_modules/sql-escaper/package.json +81 -0
  1236. package/day1/backend-project/node_modules/statuses/HISTORY.md +87 -0
  1237. package/day1/backend-project/node_modules/statuses/LICENSE +23 -0
  1238. package/day1/backend-project/node_modules/statuses/README.md +139 -0
  1239. package/day1/backend-project/node_modules/statuses/codes.json +65 -0
  1240. package/day1/backend-project/node_modules/statuses/index.js +146 -0
  1241. package/day1/backend-project/node_modules/statuses/package.json +49 -0
  1242. package/day1/backend-project/node_modules/supports-color/browser.js +5 -0
  1243. package/day1/backend-project/node_modules/supports-color/index.js +131 -0
  1244. package/day1/backend-project/node_modules/supports-color/license +9 -0
  1245. package/day1/backend-project/node_modules/supports-color/package.json +53 -0
  1246. package/day1/backend-project/node_modules/supports-color/readme.md +66 -0
  1247. package/day1/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  1248. package/day1/backend-project/node_modules/to-regex-range/README.md +305 -0
  1249. package/day1/backend-project/node_modules/to-regex-range/index.js +288 -0
  1250. package/day1/backend-project/node_modules/to-regex-range/package.json +88 -0
  1251. package/day1/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  1252. package/day1/backend-project/node_modules/toidentifier/LICENSE +21 -0
  1253. package/day1/backend-project/node_modules/toidentifier/README.md +61 -0
  1254. package/day1/backend-project/node_modules/toidentifier/index.js +32 -0
  1255. package/day1/backend-project/node_modules/toidentifier/package.json +38 -0
  1256. package/day1/backend-project/node_modules/touch/LICENSE +15 -0
  1257. package/day1/backend-project/node_modules/touch/README.md +52 -0
  1258. package/day1/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  1259. package/day1/backend-project/node_modules/touch/index.js +224 -0
  1260. package/day1/backend-project/node_modules/touch/package.json +25 -0
  1261. package/day1/backend-project/node_modules/type-is/HISTORY.md +292 -0
  1262. package/day1/backend-project/node_modules/type-is/LICENSE +23 -0
  1263. package/day1/backend-project/node_modules/type-is/README.md +198 -0
  1264. package/day1/backend-project/node_modules/type-is/index.js +240 -0
  1265. package/day1/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  1266. package/day1/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  1267. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  1268. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  1269. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  1270. package/day1/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  1271. package/day1/backend-project/node_modules/type-is/package.json +51 -0
  1272. package/day1/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  1273. package/day1/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  1274. package/day1/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  1275. package/day1/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  1276. package/day1/backend-project/node_modules/undefsafe/LICENSE +22 -0
  1277. package/day1/backend-project/node_modules/undefsafe/README.md +63 -0
  1278. package/day1/backend-project/node_modules/undefsafe/example.js +14 -0
  1279. package/day1/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  1280. package/day1/backend-project/node_modules/undefsafe/package.json +34 -0
  1281. package/day1/backend-project/node_modules/undici-types/LICENSE +21 -0
  1282. package/day1/backend-project/node_modules/undici-types/README.md +6 -0
  1283. package/day1/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  1284. package/day1/backend-project/node_modules/undici-types/api.d.ts +43 -0
  1285. package/day1/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  1286. package/day1/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  1287. package/day1/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  1288. package/day1/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  1289. package/day1/backend-project/node_modules/undici-types/client.d.ts +123 -0
  1290. package/day1/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  1291. package/day1/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  1292. package/day1/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  1293. package/day1/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  1294. package/day1/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  1295. package/day1/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  1296. package/day1/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  1297. package/day1/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  1298. package/day1/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  1299. package/day1/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  1300. package/day1/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  1301. package/day1/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  1302. package/day1/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  1303. package/day1/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  1304. package/day1/backend-project/node_modules/undici-types/header.d.ts +160 -0
  1305. package/day1/backend-project/node_modules/undici-types/index.d.ts +91 -0
  1306. package/day1/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  1307. package/day1/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  1308. package/day1/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  1309. package/day1/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  1310. package/day1/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  1311. package/day1/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  1312. package/day1/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  1313. package/day1/backend-project/node_modules/undici-types/package.json +55 -0
  1314. package/day1/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  1315. package/day1/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  1316. package/day1/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  1317. package/day1/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  1318. package/day1/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  1319. package/day1/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  1320. package/day1/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  1321. package/day1/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  1322. package/day1/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  1323. package/day1/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  1324. package/day1/backend-project/node_modules/undici-types/util.d.ts +18 -0
  1325. package/day1/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  1326. package/day1/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  1327. package/day1/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  1328. package/day1/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  1329. package/day1/backend-project/node_modules/unpipe/LICENSE +22 -0
  1330. package/day1/backend-project/node_modules/unpipe/README.md +43 -0
  1331. package/day1/backend-project/node_modules/unpipe/index.js +69 -0
  1332. package/day1/backend-project/node_modules/unpipe/package.json +27 -0
  1333. package/day1/backend-project/node_modules/vary/HISTORY.md +39 -0
  1334. package/day1/backend-project/node_modules/vary/LICENSE +22 -0
  1335. package/day1/backend-project/node_modules/vary/README.md +101 -0
  1336. package/day1/backend-project/node_modules/vary/index.js +149 -0
  1337. package/day1/backend-project/node_modules/vary/package.json +43 -0
  1338. package/day1/backend-project/node_modules/wrappy/LICENSE +15 -0
  1339. package/day1/backend-project/node_modules/wrappy/README.md +36 -0
  1340. package/day1/backend-project/node_modules/wrappy/package.json +29 -0
  1341. package/day1/backend-project/node_modules/wrappy/wrappy.js +33 -0
  1342. package/day1/backend-project/package-lock.json +1458 -0
  1343. package/day1/backend-project/package.json +23 -0
  1344. package/day1/backend-project/src/server.js +15 -0
  1345. package/day1/frontend-project/README.md +18 -0
  1346. package/day1/frontend-project/eslint.config.js +21 -0
  1347. package/day1/frontend-project/index.html +13 -0
  1348. package/day1/frontend-project/package-lock.json +3088 -0
  1349. package/day1/frontend-project/package.json +34 -0
  1350. package/day1/frontend-project/public/favicon.svg +1 -0
  1351. package/day1/frontend-project/public/icons.svg +24 -0
  1352. package/day1/frontend-project/src/App.css +184 -0
  1353. package/day1/frontend-project/src/App.jsx +50 -0
  1354. package/day1/frontend-project/src/assets/hero.png +0 -0
  1355. package/day1/frontend-project/src/assets/react.svg +1 -0
  1356. package/day1/frontend-project/src/assets/vite.svg +1 -0
  1357. package/day1/frontend-project/src/index.css +1 -0
  1358. package/day1/frontend-project/src/main.jsx +10 -0
  1359. package/day1/frontend-project/vite.config.js +12 -0
  1360. package/day2/backend-project/.env +0 -0
  1361. package/day2/backend-project/node_modules/.bin/bcrypt +16 -0
  1362. package/day2/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  1363. package/day2/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  1364. package/day2/backend-project/node_modules/.bin/nodemon +16 -0
  1365. package/day2/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  1366. package/day2/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  1367. package/day2/backend-project/node_modules/.bin/nodetouch +16 -0
  1368. package/day2/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  1369. package/day2/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  1370. package/day2/backend-project/node_modules/.bin/semver +16 -0
  1371. package/day2/backend-project/node_modules/.bin/semver.cmd +17 -0
  1372. package/day2/backend-project/node_modules/.bin/semver.ps1 +28 -0
  1373. package/day2/backend-project/node_modules/.package-lock.json +1430 -0
  1374. package/day2/backend-project/node_modules/@types/node/LICENSE +21 -0
  1375. package/day2/backend-project/node_modules/@types/node/README.md +15 -0
  1376. package/day2/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  1377. package/day2/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  1378. package/day2/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  1379. package/day2/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  1380. package/day2/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  1381. package/day2/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  1382. package/day2/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  1383. package/day2/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  1384. package/day2/backend-project/node_modules/@types/node/console.d.ts +93 -0
  1385. package/day2/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  1386. package/day2/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  1387. package/day2/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  1388. package/day2/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  1389. package/day2/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  1390. package/day2/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  1391. package/day2/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  1392. package/day2/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  1393. package/day2/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  1394. package/day2/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  1395. package/day2/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  1396. package/day2/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  1397. package/day2/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  1398. package/day2/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  1399. package/day2/backend-project/node_modules/@types/node/https.d.ts +400 -0
  1400. package/day2/backend-project/node_modules/@types/node/index.d.ts +117 -0
  1401. package/day2/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  1402. package/day2/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  1403. package/day2/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  1404. package/day2/backend-project/node_modules/@types/node/module.d.ts +755 -0
  1405. package/day2/backend-project/node_modules/@types/node/net.d.ts +970 -0
  1406. package/day2/backend-project/node_modules/@types/node/os.d.ts +498 -0
  1407. package/day2/backend-project/node_modules/@types/node/package.json +155 -0
  1408. package/day2/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  1409. package/day2/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  1410. package/day2/backend-project/node_modules/@types/node/path.d.ts +178 -0
  1411. package/day2/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  1412. package/day2/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  1413. package/day2/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  1414. package/day2/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  1415. package/day2/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  1416. package/day2/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  1417. package/day2/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  1418. package/day2/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  1419. package/day2/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  1420. package/day2/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  1421. package/day2/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  1422. package/day2/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  1423. package/day2/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  1424. package/day2/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  1425. package/day2/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  1426. package/day2/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  1427. package/day2/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  1428. package/day2/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  1429. package/day2/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  1430. package/day2/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  1431. package/day2/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  1432. package/day2/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  1433. package/day2/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  1434. package/day2/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  1435. package/day2/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  1436. package/day2/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  1437. package/day2/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  1438. package/day2/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  1439. package/day2/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  1440. package/day2/backend-project/node_modules/@types/node/url.d.ts +556 -0
  1441. package/day2/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  1442. package/day2/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  1443. package/day2/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  1444. package/day2/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  1445. package/day2/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  1446. package/day2/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  1447. package/day2/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  1448. package/day2/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  1449. package/day2/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  1450. package/day2/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  1451. package/day2/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  1452. package/day2/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  1453. package/day2/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  1454. package/day2/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  1455. package/day2/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  1456. package/day2/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  1457. package/day2/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  1458. package/day2/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  1459. package/day2/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  1460. package/day2/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  1461. package/day2/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  1462. package/day2/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  1463. package/day2/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  1464. package/day2/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  1465. package/day2/backend-project/node_modules/accepts/HISTORY.md +250 -0
  1466. package/day2/backend-project/node_modules/accepts/LICENSE +23 -0
  1467. package/day2/backend-project/node_modules/accepts/README.md +140 -0
  1468. package/day2/backend-project/node_modules/accepts/index.js +238 -0
  1469. package/day2/backend-project/node_modules/accepts/package.json +47 -0
  1470. package/day2/backend-project/node_modules/anymatch/LICENSE +15 -0
  1471. package/day2/backend-project/node_modules/anymatch/README.md +87 -0
  1472. package/day2/backend-project/node_modules/anymatch/index.d.ts +20 -0
  1473. package/day2/backend-project/node_modules/anymatch/index.js +104 -0
  1474. package/day2/backend-project/node_modules/anymatch/package.json +48 -0
  1475. package/day2/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  1476. package/day2/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  1477. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  1478. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  1479. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  1480. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  1481. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  1482. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  1483. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  1484. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  1485. package/day2/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  1486. package/day2/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  1487. package/day2/backend-project/node_modules/balanced-match/README.md +57 -0
  1488. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  1489. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  1490. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  1491. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  1492. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  1493. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  1494. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  1495. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  1496. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  1497. package/day2/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  1498. package/day2/backend-project/node_modules/balanced-match/package.json +68 -0
  1499. package/day2/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  1500. package/day2/backend-project/node_modules/bcryptjs/README.md +201 -0
  1501. package/day2/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  1502. package/day2/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  1503. package/day2/backend-project/node_modules/bcryptjs/index.js +1159 -0
  1504. package/day2/backend-project/node_modules/bcryptjs/package.json +76 -0
  1505. package/day2/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  1506. package/day2/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  1507. package/day2/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  1508. package/day2/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  1509. package/day2/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  1510. package/day2/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  1511. package/day2/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  1512. package/day2/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  1513. package/day2/backend-project/node_modules/binary-extensions/index.js +1 -0
  1514. package/day2/backend-project/node_modules/binary-extensions/license +10 -0
  1515. package/day2/backend-project/node_modules/binary-extensions/package.json +40 -0
  1516. package/day2/backend-project/node_modules/binary-extensions/readme.md +25 -0
  1517. package/day2/backend-project/node_modules/body-parser/LICENSE +23 -0
  1518. package/day2/backend-project/node_modules/body-parser/README.md +494 -0
  1519. package/day2/backend-project/node_modules/body-parser/index.js +71 -0
  1520. package/day2/backend-project/node_modules/body-parser/lib/read.js +247 -0
  1521. package/day2/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  1522. package/day2/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  1523. package/day2/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  1524. package/day2/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  1525. package/day2/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  1526. package/day2/backend-project/node_modules/body-parser/package.json +52 -0
  1527. package/day2/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  1528. package/day2/backend-project/node_modules/brace-expansion/README.md +94 -0
  1529. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  1530. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  1531. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  1532. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  1533. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  1534. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  1535. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  1536. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  1537. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  1538. package/day2/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  1539. package/day2/backend-project/node_modules/brace-expansion/package.json +64 -0
  1540. package/day2/backend-project/node_modules/braces/LICENSE +21 -0
  1541. package/day2/backend-project/node_modules/braces/README.md +586 -0
  1542. package/day2/backend-project/node_modules/braces/index.js +170 -0
  1543. package/day2/backend-project/node_modules/braces/lib/compile.js +60 -0
  1544. package/day2/backend-project/node_modules/braces/lib/constants.js +57 -0
  1545. package/day2/backend-project/node_modules/braces/lib/expand.js +113 -0
  1546. package/day2/backend-project/node_modules/braces/lib/parse.js +331 -0
  1547. package/day2/backend-project/node_modules/braces/lib/stringify.js +32 -0
  1548. package/day2/backend-project/node_modules/braces/lib/utils.js +122 -0
  1549. package/day2/backend-project/node_modules/braces/package.json +77 -0
  1550. package/day2/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  1551. package/day2/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  1552. package/day2/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  1553. package/day2/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  1554. package/day2/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  1555. package/day2/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  1556. package/day2/backend-project/node_modules/bytes/History.md +97 -0
  1557. package/day2/backend-project/node_modules/bytes/LICENSE +23 -0
  1558. package/day2/backend-project/node_modules/bytes/Readme.md +152 -0
  1559. package/day2/backend-project/node_modules/bytes/index.js +170 -0
  1560. package/day2/backend-project/node_modules/bytes/package.json +42 -0
  1561. package/day2/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  1562. package/day2/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  1563. package/day2/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  1564. package/day2/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  1565. package/day2/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  1566. package/day2/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  1567. package/day2/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  1568. package/day2/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  1569. package/day2/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  1570. package/day2/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  1571. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  1572. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  1573. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  1574. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  1575. package/day2/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  1576. package/day2/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  1577. package/day2/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  1578. package/day2/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  1579. package/day2/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  1580. package/day2/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  1581. package/day2/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  1582. package/day2/backend-project/node_modules/call-bound/.eslintrc +13 -0
  1583. package/day2/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  1584. package/day2/backend-project/node_modules/call-bound/.nycrc +9 -0
  1585. package/day2/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  1586. package/day2/backend-project/node_modules/call-bound/LICENSE +21 -0
  1587. package/day2/backend-project/node_modules/call-bound/README.md +53 -0
  1588. package/day2/backend-project/node_modules/call-bound/index.d.ts +94 -0
  1589. package/day2/backend-project/node_modules/call-bound/index.js +19 -0
  1590. package/day2/backend-project/node_modules/call-bound/package.json +99 -0
  1591. package/day2/backend-project/node_modules/call-bound/test/index.js +61 -0
  1592. package/day2/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  1593. package/day2/backend-project/node_modules/chokidar/LICENSE +21 -0
  1594. package/day2/backend-project/node_modules/chokidar/README.md +308 -0
  1595. package/day2/backend-project/node_modules/chokidar/index.js +973 -0
  1596. package/day2/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  1597. package/day2/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  1598. package/day2/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  1599. package/day2/backend-project/node_modules/chokidar/package.json +70 -0
  1600. package/day2/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  1601. package/day2/backend-project/node_modules/content-disposition/LICENSE +22 -0
  1602. package/day2/backend-project/node_modules/content-disposition/README.md +141 -0
  1603. package/day2/backend-project/node_modules/content-disposition/index.js +536 -0
  1604. package/day2/backend-project/node_modules/content-disposition/package.json +40 -0
  1605. package/day2/backend-project/node_modules/content-type/HISTORY.md +29 -0
  1606. package/day2/backend-project/node_modules/content-type/LICENSE +22 -0
  1607. package/day2/backend-project/node_modules/content-type/README.md +94 -0
  1608. package/day2/backend-project/node_modules/content-type/index.js +225 -0
  1609. package/day2/backend-project/node_modules/content-type/package.json +42 -0
  1610. package/day2/backend-project/node_modules/cookie/LICENSE +24 -0
  1611. package/day2/backend-project/node_modules/cookie/README.md +317 -0
  1612. package/day2/backend-project/node_modules/cookie/SECURITY.md +25 -0
  1613. package/day2/backend-project/node_modules/cookie/index.js +335 -0
  1614. package/day2/backend-project/node_modules/cookie/package.json +44 -0
  1615. package/day2/backend-project/node_modules/cookie-signature/History.md +70 -0
  1616. package/day2/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  1617. package/day2/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  1618. package/day2/backend-project/node_modules/cookie-signature/index.js +47 -0
  1619. package/day2/backend-project/node_modules/cookie-signature/package.json +24 -0
  1620. package/day2/backend-project/node_modules/cors/LICENSE +22 -0
  1621. package/day2/backend-project/node_modules/cors/README.md +277 -0
  1622. package/day2/backend-project/node_modules/cors/lib/index.js +238 -0
  1623. package/day2/backend-project/node_modules/cors/package.json +42 -0
  1624. package/day2/backend-project/node_modules/debug/LICENSE +20 -0
  1625. package/day2/backend-project/node_modules/debug/README.md +481 -0
  1626. package/day2/backend-project/node_modules/debug/package.json +64 -0
  1627. package/day2/backend-project/node_modules/debug/src/browser.js +272 -0
  1628. package/day2/backend-project/node_modules/debug/src/common.js +292 -0
  1629. package/day2/backend-project/node_modules/debug/src/index.js +10 -0
  1630. package/day2/backend-project/node_modules/debug/src/node.js +263 -0
  1631. package/day2/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  1632. package/day2/backend-project/node_modules/denque/LICENSE +201 -0
  1633. package/day2/backend-project/node_modules/denque/README.md +77 -0
  1634. package/day2/backend-project/node_modules/denque/index.d.ts +47 -0
  1635. package/day2/backend-project/node_modules/denque/index.js +481 -0
  1636. package/day2/backend-project/node_modules/denque/package.json +58 -0
  1637. package/day2/backend-project/node_modules/depd/History.md +103 -0
  1638. package/day2/backend-project/node_modules/depd/LICENSE +22 -0
  1639. package/day2/backend-project/node_modules/depd/Readme.md +280 -0
  1640. package/day2/backend-project/node_modules/depd/index.js +538 -0
  1641. package/day2/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  1642. package/day2/backend-project/node_modules/depd/package.json +45 -0
  1643. package/day2/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  1644. package/day2/backend-project/node_modules/dotenv/LICENSE +23 -0
  1645. package/day2/backend-project/node_modules/dotenv/README-es.md +757 -0
  1646. package/day2/backend-project/node_modules/dotenv/README.md +812 -0
  1647. package/day2/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  1648. package/day2/backend-project/node_modules/dotenv/config.d.ts +1 -0
  1649. package/day2/backend-project/node_modules/dotenv/config.js +9 -0
  1650. package/day2/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  1651. package/day2/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  1652. package/day2/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  1653. package/day2/backend-project/node_modules/dotenv/lib/main.js +423 -0
  1654. package/day2/backend-project/node_modules/dotenv/package.json +62 -0
  1655. package/day2/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  1656. package/day2/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  1657. package/day2/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  1658. package/day2/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  1659. package/day2/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  1660. package/day2/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  1661. package/day2/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  1662. package/day2/backend-project/node_modules/dunder-proto/README.md +54 -0
  1663. package/day2/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  1664. package/day2/backend-project/node_modules/dunder-proto/get.js +30 -0
  1665. package/day2/backend-project/node_modules/dunder-proto/package.json +76 -0
  1666. package/day2/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  1667. package/day2/backend-project/node_modules/dunder-proto/set.js +35 -0
  1668. package/day2/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  1669. package/day2/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  1670. package/day2/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  1671. package/day2/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  1672. package/day2/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  1673. package/day2/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  1674. package/day2/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  1675. package/day2/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  1676. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  1677. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  1678. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  1679. package/day2/backend-project/node_modules/ee-first/LICENSE +22 -0
  1680. package/day2/backend-project/node_modules/ee-first/README.md +80 -0
  1681. package/day2/backend-project/node_modules/ee-first/index.js +95 -0
  1682. package/day2/backend-project/node_modules/ee-first/package.json +29 -0
  1683. package/day2/backend-project/node_modules/encodeurl/LICENSE +22 -0
  1684. package/day2/backend-project/node_modules/encodeurl/README.md +109 -0
  1685. package/day2/backend-project/node_modules/encodeurl/index.js +60 -0
  1686. package/day2/backend-project/node_modules/encodeurl/package.json +40 -0
  1687. package/day2/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  1688. package/day2/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  1689. package/day2/backend-project/node_modules/es-define-property/.nycrc +9 -0
  1690. package/day2/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  1691. package/day2/backend-project/node_modules/es-define-property/LICENSE +21 -0
  1692. package/day2/backend-project/node_modules/es-define-property/README.md +49 -0
  1693. package/day2/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  1694. package/day2/backend-project/node_modules/es-define-property/index.js +14 -0
  1695. package/day2/backend-project/node_modules/es-define-property/package.json +81 -0
  1696. package/day2/backend-project/node_modules/es-define-property/test/index.js +56 -0
  1697. package/day2/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  1698. package/day2/backend-project/node_modules/es-errors/.eslintrc +5 -0
  1699. package/day2/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  1700. package/day2/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  1701. package/day2/backend-project/node_modules/es-errors/LICENSE +21 -0
  1702. package/day2/backend-project/node_modules/es-errors/README.md +55 -0
  1703. package/day2/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  1704. package/day2/backend-project/node_modules/es-errors/eval.js +4 -0
  1705. package/day2/backend-project/node_modules/es-errors/index.d.ts +3 -0
  1706. package/day2/backend-project/node_modules/es-errors/index.js +4 -0
  1707. package/day2/backend-project/node_modules/es-errors/package.json +80 -0
  1708. package/day2/backend-project/node_modules/es-errors/range.d.ts +3 -0
  1709. package/day2/backend-project/node_modules/es-errors/range.js +4 -0
  1710. package/day2/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  1711. package/day2/backend-project/node_modules/es-errors/ref.js +4 -0
  1712. package/day2/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  1713. package/day2/backend-project/node_modules/es-errors/syntax.js +4 -0
  1714. package/day2/backend-project/node_modules/es-errors/test/index.js +19 -0
  1715. package/day2/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  1716. package/day2/backend-project/node_modules/es-errors/type.d.ts +3 -0
  1717. package/day2/backend-project/node_modules/es-errors/type.js +4 -0
  1718. package/day2/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  1719. package/day2/backend-project/node_modules/es-errors/uri.js +4 -0
  1720. package/day2/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  1721. package/day2/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  1722. package/day2/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  1723. package/day2/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  1724. package/day2/backend-project/node_modules/es-object-atoms/README.md +63 -0
  1725. package/day2/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  1726. package/day2/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  1727. package/day2/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  1728. package/day2/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  1729. package/day2/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  1730. package/day2/backend-project/node_modules/es-object-atoms/index.js +4 -0
  1731. package/day2/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  1732. package/day2/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  1733. package/day2/backend-project/node_modules/es-object-atoms/package.json +79 -0
  1734. package/day2/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  1735. package/day2/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  1736. package/day2/backend-project/node_modules/escape-html/LICENSE +24 -0
  1737. package/day2/backend-project/node_modules/escape-html/Readme.md +43 -0
  1738. package/day2/backend-project/node_modules/escape-html/index.js +78 -0
  1739. package/day2/backend-project/node_modules/escape-html/package.json +24 -0
  1740. package/day2/backend-project/node_modules/etag/HISTORY.md +83 -0
  1741. package/day2/backend-project/node_modules/etag/LICENSE +22 -0
  1742. package/day2/backend-project/node_modules/etag/README.md +159 -0
  1743. package/day2/backend-project/node_modules/etag/index.js +131 -0
  1744. package/day2/backend-project/node_modules/etag/package.json +47 -0
  1745. package/day2/backend-project/node_modules/express/LICENSE +24 -0
  1746. package/day2/backend-project/node_modules/express/Readme.md +276 -0
  1747. package/day2/backend-project/node_modules/express/index.js +11 -0
  1748. package/day2/backend-project/node_modules/express/lib/application.js +631 -0
  1749. package/day2/backend-project/node_modules/express/lib/express.js +81 -0
  1750. package/day2/backend-project/node_modules/express/lib/request.js +514 -0
  1751. package/day2/backend-project/node_modules/express/lib/response.js +1053 -0
  1752. package/day2/backend-project/node_modules/express/lib/utils.js +271 -0
  1753. package/day2/backend-project/node_modules/express/lib/view.js +205 -0
  1754. package/day2/backend-project/node_modules/express/package.json +99 -0
  1755. package/day2/backend-project/node_modules/fill-range/LICENSE +21 -0
  1756. package/day2/backend-project/node_modules/fill-range/README.md +237 -0
  1757. package/day2/backend-project/node_modules/fill-range/index.js +248 -0
  1758. package/day2/backend-project/node_modules/fill-range/package.json +74 -0
  1759. package/day2/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  1760. package/day2/backend-project/node_modules/finalhandler/LICENSE +22 -0
  1761. package/day2/backend-project/node_modules/finalhandler/README.md +150 -0
  1762. package/day2/backend-project/node_modules/finalhandler/index.js +293 -0
  1763. package/day2/backend-project/node_modules/finalhandler/package.json +47 -0
  1764. package/day2/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  1765. package/day2/backend-project/node_modules/forwarded/LICENSE +22 -0
  1766. package/day2/backend-project/node_modules/forwarded/README.md +57 -0
  1767. package/day2/backend-project/node_modules/forwarded/index.js +90 -0
  1768. package/day2/backend-project/node_modules/forwarded/package.json +45 -0
  1769. package/day2/backend-project/node_modules/fresh/HISTORY.md +80 -0
  1770. package/day2/backend-project/node_modules/fresh/LICENSE +23 -0
  1771. package/day2/backend-project/node_modules/fresh/README.md +117 -0
  1772. package/day2/backend-project/node_modules/fresh/index.js +136 -0
  1773. package/day2/backend-project/node_modules/fresh/package.json +46 -0
  1774. package/day2/backend-project/node_modules/function-bind/.eslintrc +21 -0
  1775. package/day2/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  1776. package/day2/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  1777. package/day2/backend-project/node_modules/function-bind/.nycrc +13 -0
  1778. package/day2/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  1779. package/day2/backend-project/node_modules/function-bind/LICENSE +20 -0
  1780. package/day2/backend-project/node_modules/function-bind/README.md +46 -0
  1781. package/day2/backend-project/node_modules/function-bind/implementation.js +84 -0
  1782. package/day2/backend-project/node_modules/function-bind/index.js +5 -0
  1783. package/day2/backend-project/node_modules/function-bind/package.json +87 -0
  1784. package/day2/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  1785. package/day2/backend-project/node_modules/function-bind/test/index.js +252 -0
  1786. package/day2/backend-project/node_modules/generate-function/.travis.yml +3 -0
  1787. package/day2/backend-project/node_modules/generate-function/LICENSE +21 -0
  1788. package/day2/backend-project/node_modules/generate-function/README.md +89 -0
  1789. package/day2/backend-project/node_modules/generate-function/example.js +27 -0
  1790. package/day2/backend-project/node_modules/generate-function/index.js +181 -0
  1791. package/day2/backend-project/node_modules/generate-function/package.json +32 -0
  1792. package/day2/backend-project/node_modules/generate-function/test.js +49 -0
  1793. package/day2/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  1794. package/day2/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  1795. package/day2/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  1796. package/day2/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  1797. package/day2/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  1798. package/day2/backend-project/node_modules/get-intrinsic/README.md +71 -0
  1799. package/day2/backend-project/node_modules/get-intrinsic/index.js +378 -0
  1800. package/day2/backend-project/node_modules/get-intrinsic/package.json +97 -0
  1801. package/day2/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  1802. package/day2/backend-project/node_modules/get-proto/.eslintrc +10 -0
  1803. package/day2/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  1804. package/day2/backend-project/node_modules/get-proto/.nycrc +9 -0
  1805. package/day2/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  1806. package/day2/backend-project/node_modules/get-proto/LICENSE +21 -0
  1807. package/day2/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  1808. package/day2/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  1809. package/day2/backend-project/node_modules/get-proto/README.md +50 -0
  1810. package/day2/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  1811. package/day2/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  1812. package/day2/backend-project/node_modules/get-proto/index.d.ts +5 -0
  1813. package/day2/backend-project/node_modules/get-proto/index.js +27 -0
  1814. package/day2/backend-project/node_modules/get-proto/package.json +81 -0
  1815. package/day2/backend-project/node_modules/get-proto/test/index.js +68 -0
  1816. package/day2/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  1817. package/day2/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  1818. package/day2/backend-project/node_modules/glob-parent/LICENSE +15 -0
  1819. package/day2/backend-project/node_modules/glob-parent/README.md +137 -0
  1820. package/day2/backend-project/node_modules/glob-parent/index.js +42 -0
  1821. package/day2/backend-project/node_modules/glob-parent/package.json +48 -0
  1822. package/day2/backend-project/node_modules/gopd/.eslintrc +16 -0
  1823. package/day2/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  1824. package/day2/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  1825. package/day2/backend-project/node_modules/gopd/LICENSE +21 -0
  1826. package/day2/backend-project/node_modules/gopd/README.md +40 -0
  1827. package/day2/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  1828. package/day2/backend-project/node_modules/gopd/gOPD.js +4 -0
  1829. package/day2/backend-project/node_modules/gopd/index.d.ts +5 -0
  1830. package/day2/backend-project/node_modules/gopd/index.js +15 -0
  1831. package/day2/backend-project/node_modules/gopd/package.json +77 -0
  1832. package/day2/backend-project/node_modules/gopd/test/index.js +36 -0
  1833. package/day2/backend-project/node_modules/gopd/tsconfig.json +9 -0
  1834. package/day2/backend-project/node_modules/has-flag/index.js +8 -0
  1835. package/day2/backend-project/node_modules/has-flag/license +9 -0
  1836. package/day2/backend-project/node_modules/has-flag/package.json +44 -0
  1837. package/day2/backend-project/node_modules/has-flag/readme.md +70 -0
  1838. package/day2/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  1839. package/day2/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  1840. package/day2/backend-project/node_modules/has-symbols/.nycrc +9 -0
  1841. package/day2/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  1842. package/day2/backend-project/node_modules/has-symbols/LICENSE +21 -0
  1843. package/day2/backend-project/node_modules/has-symbols/README.md +46 -0
  1844. package/day2/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  1845. package/day2/backend-project/node_modules/has-symbols/index.js +14 -0
  1846. package/day2/backend-project/node_modules/has-symbols/package.json +111 -0
  1847. package/day2/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  1848. package/day2/backend-project/node_modules/has-symbols/shams.js +45 -0
  1849. package/day2/backend-project/node_modules/has-symbols/test/index.js +22 -0
  1850. package/day2/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  1851. package/day2/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  1852. package/day2/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  1853. package/day2/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  1854. package/day2/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  1855. package/day2/backend-project/node_modules/hasown/.nycrc +13 -0
  1856. package/day2/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  1857. package/day2/backend-project/node_modules/hasown/LICENSE +21 -0
  1858. package/day2/backend-project/node_modules/hasown/README.md +40 -0
  1859. package/day2/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  1860. package/day2/backend-project/node_modules/hasown/index.d.ts +3 -0
  1861. package/day2/backend-project/node_modules/hasown/index.js +8 -0
  1862. package/day2/backend-project/node_modules/hasown/package.json +91 -0
  1863. package/day2/backend-project/node_modules/hasown/tsconfig.json +6 -0
  1864. package/day2/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  1865. package/day2/backend-project/node_modules/http-errors/LICENSE +23 -0
  1866. package/day2/backend-project/node_modules/http-errors/README.md +169 -0
  1867. package/day2/backend-project/node_modules/http-errors/index.js +290 -0
  1868. package/day2/backend-project/node_modules/http-errors/package.json +54 -0
  1869. package/day2/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  1870. package/day2/backend-project/node_modules/iconv-lite/README.md +138 -0
  1871. package/day2/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  1872. package/day2/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  1873. package/day2/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  1874. package/day2/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  1875. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  1876. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1877. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  1878. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1879. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1880. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1881. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1882. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1883. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1884. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1885. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1886. package/day2/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  1887. package/day2/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  1888. package/day2/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  1889. package/day2/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  1890. package/day2/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  1891. package/day2/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  1892. package/day2/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  1893. package/day2/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  1894. package/day2/backend-project/node_modules/iconv-lite/package.json +70 -0
  1895. package/day2/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  1896. package/day2/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  1897. package/day2/backend-project/node_modules/ignore-by-default/README.md +26 -0
  1898. package/day2/backend-project/node_modules/ignore-by-default/index.js +12 -0
  1899. package/day2/backend-project/node_modules/ignore-by-default/package.json +34 -0
  1900. package/day2/backend-project/node_modules/inherits/LICENSE +16 -0
  1901. package/day2/backend-project/node_modules/inherits/README.md +42 -0
  1902. package/day2/backend-project/node_modules/inherits/inherits.js +9 -0
  1903. package/day2/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  1904. package/day2/backend-project/node_modules/inherits/package.json +29 -0
  1905. package/day2/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  1906. package/day2/backend-project/node_modules/ipaddr.js/README.md +233 -0
  1907. package/day2/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  1908. package/day2/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  1909. package/day2/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  1910. package/day2/backend-project/node_modules/ipaddr.js/package.json +35 -0
  1911. package/day2/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  1912. package/day2/backend-project/node_modules/is-binary-path/index.js +7 -0
  1913. package/day2/backend-project/node_modules/is-binary-path/license +9 -0
  1914. package/day2/backend-project/node_modules/is-binary-path/package.json +40 -0
  1915. package/day2/backend-project/node_modules/is-binary-path/readme.md +34 -0
  1916. package/day2/backend-project/node_modules/is-extglob/LICENSE +21 -0
  1917. package/day2/backend-project/node_modules/is-extglob/README.md +107 -0
  1918. package/day2/backend-project/node_modules/is-extglob/index.js +20 -0
  1919. package/day2/backend-project/node_modules/is-extglob/package.json +69 -0
  1920. package/day2/backend-project/node_modules/is-glob/LICENSE +21 -0
  1921. package/day2/backend-project/node_modules/is-glob/README.md +206 -0
  1922. package/day2/backend-project/node_modules/is-glob/index.js +150 -0
  1923. package/day2/backend-project/node_modules/is-glob/package.json +81 -0
  1924. package/day2/backend-project/node_modules/is-number/LICENSE +21 -0
  1925. package/day2/backend-project/node_modules/is-number/README.md +187 -0
  1926. package/day2/backend-project/node_modules/is-number/index.js +18 -0
  1927. package/day2/backend-project/node_modules/is-number/package.json +82 -0
  1928. package/day2/backend-project/node_modules/is-promise/LICENSE +19 -0
  1929. package/day2/backend-project/node_modules/is-promise/index.d.ts +2 -0
  1930. package/day2/backend-project/node_modules/is-promise/index.js +6 -0
  1931. package/day2/backend-project/node_modules/is-promise/index.mjs +3 -0
  1932. package/day2/backend-project/node_modules/is-promise/package.json +30 -0
  1933. package/day2/backend-project/node_modules/is-promise/readme.md +33 -0
  1934. package/day2/backend-project/node_modules/is-property/LICENSE +22 -0
  1935. package/day2/backend-project/node_modules/is-property/README.md +28 -0
  1936. package/day2/backend-project/node_modules/is-property/is-property.js +5 -0
  1937. package/day2/backend-project/node_modules/is-property/package.json +36 -0
  1938. package/day2/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  1939. package/day2/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  1940. package/day2/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  1941. package/day2/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  1942. package/day2/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  1943. package/day2/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  1944. package/day2/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  1945. package/day2/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  1946. package/day2/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  1947. package/day2/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  1948. package/day2/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  1949. package/day2/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  1950. package/day2/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  1951. package/day2/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  1952. package/day2/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  1953. package/day2/backend-project/node_modules/jwa/LICENSE +17 -0
  1954. package/day2/backend-project/node_modules/jwa/README.md +150 -0
  1955. package/day2/backend-project/node_modules/jwa/index.js +266 -0
  1956. package/day2/backend-project/node_modules/jwa/opslevel.yml +6 -0
  1957. package/day2/backend-project/node_modules/jwa/package.json +37 -0
  1958. package/day2/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  1959. package/day2/backend-project/node_modules/jws/LICENSE +17 -0
  1960. package/day2/backend-project/node_modules/jws/index.js +22 -0
  1961. package/day2/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  1962. package/day2/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  1963. package/day2/backend-project/node_modules/jws/lib/tostring.js +10 -0
  1964. package/day2/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  1965. package/day2/backend-project/node_modules/jws/opslevel.yml +6 -0
  1966. package/day2/backend-project/node_modules/jws/package.json +34 -0
  1967. package/day2/backend-project/node_modules/jws/readme.md +255 -0
  1968. package/day2/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  1969. package/day2/backend-project/node_modules/lodash.includes/README.md +18 -0
  1970. package/day2/backend-project/node_modules/lodash.includes/index.js +745 -0
  1971. package/day2/backend-project/node_modules/lodash.includes/package.json +17 -0
  1972. package/day2/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  1973. package/day2/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  1974. package/day2/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  1975. package/day2/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  1976. package/day2/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  1977. package/day2/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  1978. package/day2/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  1979. package/day2/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  1980. package/day2/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  1981. package/day2/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  1982. package/day2/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  1983. package/day2/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  1984. package/day2/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  1985. package/day2/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  1986. package/day2/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  1987. package/day2/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  1988. package/day2/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  1989. package/day2/backend-project/node_modules/lodash.isstring/README.md +18 -0
  1990. package/day2/backend-project/node_modules/lodash.isstring/index.js +95 -0
  1991. package/day2/backend-project/node_modules/lodash.isstring/package.json +17 -0
  1992. package/day2/backend-project/node_modules/lodash.once/LICENSE +47 -0
  1993. package/day2/backend-project/node_modules/lodash.once/README.md +18 -0
  1994. package/day2/backend-project/node_modules/lodash.once/index.js +294 -0
  1995. package/day2/backend-project/node_modules/lodash.once/package.json +17 -0
  1996. package/day2/backend-project/node_modules/long/LICENSE +202 -0
  1997. package/day2/backend-project/node_modules/long/README.md +286 -0
  1998. package/day2/backend-project/node_modules/long/index.d.ts +2 -0
  1999. package/day2/backend-project/node_modules/long/index.js +1581 -0
  2000. package/day2/backend-project/node_modules/long/package.json +58 -0
  2001. package/day2/backend-project/node_modules/long/types.d.ts +474 -0
  2002. package/day2/backend-project/node_modules/long/umd/index.d.ts +3 -0
  2003. package/day2/backend-project/node_modules/long/umd/index.js +1622 -0
  2004. package/day2/backend-project/node_modules/long/umd/package.json +3 -0
  2005. package/day2/backend-project/node_modules/long/umd/types.d.ts +474 -0
  2006. package/day2/backend-project/node_modules/lru.min/LICENSE +21 -0
  2007. package/day2/backend-project/node_modules/lru.min/README.md +392 -0
  2008. package/day2/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  2009. package/day2/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  2010. package/day2/backend-project/node_modules/lru.min/lib/index.js +248 -0
  2011. package/day2/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  2012. package/day2/backend-project/node_modules/lru.min/package.json +87 -0
  2013. package/day2/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  2014. package/day2/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  2015. package/day2/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  2016. package/day2/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  2017. package/day2/backend-project/node_modules/math-intrinsics/README.md +50 -0
  2018. package/day2/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  2019. package/day2/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  2020. package/day2/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  2021. package/day2/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  2022. package/day2/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  2023. package/day2/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  2024. package/day2/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  2025. package/day2/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  2026. package/day2/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  2027. package/day2/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  2028. package/day2/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  2029. package/day2/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  2030. package/day2/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  2031. package/day2/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  2032. package/day2/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  2033. package/day2/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  2034. package/day2/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  2035. package/day2/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  2036. package/day2/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  2037. package/day2/backend-project/node_modules/math-intrinsics/max.js +4 -0
  2038. package/day2/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  2039. package/day2/backend-project/node_modules/math-intrinsics/min.js +4 -0
  2040. package/day2/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  2041. package/day2/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  2042. package/day2/backend-project/node_modules/math-intrinsics/package.json +86 -0
  2043. package/day2/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  2044. package/day2/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  2045. package/day2/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  2046. package/day2/backend-project/node_modules/math-intrinsics/round.js +4 -0
  2047. package/day2/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  2048. package/day2/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  2049. package/day2/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  2050. package/day2/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  2051. package/day2/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  2052. package/day2/backend-project/node_modules/media-typer/LICENSE +22 -0
  2053. package/day2/backend-project/node_modules/media-typer/README.md +93 -0
  2054. package/day2/backend-project/node_modules/media-typer/index.js +143 -0
  2055. package/day2/backend-project/node_modules/media-typer/package.json +33 -0
  2056. package/day2/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  2057. package/day2/backend-project/node_modules/merge-descriptors/index.js +26 -0
  2058. package/day2/backend-project/node_modules/merge-descriptors/license +11 -0
  2059. package/day2/backend-project/node_modules/merge-descriptors/package.json +50 -0
  2060. package/day2/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  2061. package/day2/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  2062. package/day2/backend-project/node_modules/mime-db/LICENSE +23 -0
  2063. package/day2/backend-project/node_modules/mime-db/README.md +109 -0
  2064. package/day2/backend-project/node_modules/mime-db/db.json +9342 -0
  2065. package/day2/backend-project/node_modules/mime-db/index.js +12 -0
  2066. package/day2/backend-project/node_modules/mime-db/package.json +56 -0
  2067. package/day2/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  2068. package/day2/backend-project/node_modules/mime-types/LICENSE +23 -0
  2069. package/day2/backend-project/node_modules/mime-types/README.md +126 -0
  2070. package/day2/backend-project/node_modules/mime-types/index.js +211 -0
  2071. package/day2/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  2072. package/day2/backend-project/node_modules/mime-types/package.json +49 -0
  2073. package/day2/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  2074. package/day2/backend-project/node_modules/minimatch/README.md +528 -0
  2075. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  2076. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  2077. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  2078. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  2079. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  2080. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  2081. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  2082. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  2083. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  2084. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  2085. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  2086. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  2087. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  2088. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  2089. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  2090. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  2091. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  2092. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  2093. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  2094. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  2095. package/day2/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  2096. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  2097. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  2098. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  2099. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  2100. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  2101. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  2102. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  2103. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  2104. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  2105. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  2106. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  2107. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  2108. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  2109. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  2110. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  2111. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  2112. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  2113. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  2114. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  2115. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  2116. package/day2/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  2117. package/day2/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  2118. package/day2/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  2119. package/day2/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  2120. package/day2/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  2121. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  2122. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  2123. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  2124. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  2125. package/day2/backend-project/node_modules/minimatch/package.json +73 -0
  2126. package/day2/backend-project/node_modules/ms/index.js +162 -0
  2127. package/day2/backend-project/node_modules/ms/license.md +21 -0
  2128. package/day2/backend-project/node_modules/ms/package.json +38 -0
  2129. package/day2/backend-project/node_modules/ms/readme.md +59 -0
  2130. package/day2/backend-project/node_modules/mysql2/License +19 -0
  2131. package/day2/backend-project/node_modules/mysql2/README.md +114 -0
  2132. package/day2/backend-project/node_modules/mysql2/index.d.ts +1 -0
  2133. package/day2/backend-project/node_modules/mysql2/index.js +77 -0
  2134. package/day2/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  2135. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  2136. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  2137. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  2138. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  2139. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  2140. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  2141. package/day2/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  2142. package/day2/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  2143. package/day2/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  2144. package/day2/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  2145. package/day2/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  2146. package/day2/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  2147. package/day2/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  2148. package/day2/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  2149. package/day2/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  2150. package/day2/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  2151. package/day2/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  2152. package/day2/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  2153. package/day2/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  2154. package/day2/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  2155. package/day2/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  2156. package/day2/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  2157. package/day2/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  2158. package/day2/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  2159. package/day2/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  2160. package/day2/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  2161. package/day2/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  2162. package/day2/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  2163. package/day2/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  2164. package/day2/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  2165. package/day2/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  2166. package/day2/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  2167. package/day2/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  2168. package/day2/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  2169. package/day2/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  2170. package/day2/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  2171. package/day2/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  2172. package/day2/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  2173. package/day2/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  2174. package/day2/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  2175. package/day2/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  2176. package/day2/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  2177. package/day2/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  2178. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  2179. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  2180. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  2181. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  2182. package/day2/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  2183. package/day2/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  2184. package/day2/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  2185. package/day2/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  2186. package/day2/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  2187. package/day2/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  2188. package/day2/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  2189. package/day2/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  2190. package/day2/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  2191. package/day2/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  2192. package/day2/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  2193. package/day2/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  2194. package/day2/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  2195. package/day2/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  2196. package/day2/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  2197. package/day2/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  2198. package/day2/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  2199. package/day2/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  2200. package/day2/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  2201. package/day2/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  2202. package/day2/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  2203. package/day2/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  2204. package/day2/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  2205. package/day2/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  2206. package/day2/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  2207. package/day2/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  2208. package/day2/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  2209. package/day2/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  2210. package/day2/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  2211. package/day2/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  2212. package/day2/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  2213. package/day2/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  2214. package/day2/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  2215. package/day2/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  2216. package/day2/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  2217. package/day2/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  2218. package/day2/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  2219. package/day2/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  2220. package/day2/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  2221. package/day2/backend-project/node_modules/mysql2/lib/server.js +37 -0
  2222. package/day2/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  2223. package/day2/backend-project/node_modules/mysql2/package.json +95 -0
  2224. package/day2/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  2225. package/day2/backend-project/node_modules/mysql2/promise.js +209 -0
  2226. package/day2/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  2227. package/day2/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  2228. package/day2/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  2229. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  2230. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  2231. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  2232. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  2233. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  2234. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  2235. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  2236. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  2237. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  2238. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  2239. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  2240. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  2241. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  2242. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  2243. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  2244. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  2245. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  2246. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  2247. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  2248. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  2249. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  2250. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  2251. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  2252. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  2253. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  2254. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  2255. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  2256. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  2257. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  2258. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  2259. package/day2/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  2260. package/day2/backend-project/node_modules/named-placeholders/README.md +27 -0
  2261. package/day2/backend-project/node_modules/named-placeholders/index.js +179 -0
  2262. package/day2/backend-project/node_modules/named-placeholders/package.json +36 -0
  2263. package/day2/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  2264. package/day2/backend-project/node_modules/negotiator/LICENSE +24 -0
  2265. package/day2/backend-project/node_modules/negotiator/README.md +212 -0
  2266. package/day2/backend-project/node_modules/negotiator/index.js +83 -0
  2267. package/day2/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  2268. package/day2/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  2269. package/day2/backend-project/node_modules/negotiator/lib/language.js +179 -0
  2270. package/day2/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  2271. package/day2/backend-project/node_modules/negotiator/package.json +43 -0
  2272. package/day2/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  2273. package/day2/backend-project/node_modules/nodemon/LICENSE +21 -0
  2274. package/day2/backend-project/node_modules/nodemon/README.md +439 -0
  2275. package/day2/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  2276. package/day2/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  2277. package/day2/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  2278. package/day2/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  2279. package/day2/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  2280. package/day2/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  2281. package/day2/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  2282. package/day2/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  2283. package/day2/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  2284. package/day2/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  2285. package/day2/backend-project/node_modules/nodemon/index.d.ts +124 -0
  2286. package/day2/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  2287. package/day2/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  2288. package/day2/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  2289. package/day2/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  2290. package/day2/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  2291. package/day2/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  2292. package/day2/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  2293. package/day2/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  2294. package/day2/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  2295. package/day2/backend-project/node_modules/nodemon/lib/index.js +1 -0
  2296. package/day2/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  2297. package/day2/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  2298. package/day2/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  2299. package/day2/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  2300. package/day2/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  2301. package/day2/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  2302. package/day2/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  2303. package/day2/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  2304. package/day2/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  2305. package/day2/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  2306. package/day2/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  2307. package/day2/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  2308. package/day2/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  2309. package/day2/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  2310. package/day2/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  2311. package/day2/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  2312. package/day2/backend-project/node_modules/nodemon/lib/version.js +100 -0
  2313. package/day2/backend-project/node_modules/nodemon/package.json +78 -0
  2314. package/day2/backend-project/node_modules/normalize-path/LICENSE +21 -0
  2315. package/day2/backend-project/node_modules/normalize-path/README.md +127 -0
  2316. package/day2/backend-project/node_modules/normalize-path/index.js +35 -0
  2317. package/day2/backend-project/node_modules/normalize-path/package.json +77 -0
  2318. package/day2/backend-project/node_modules/object-assign/index.js +90 -0
  2319. package/day2/backend-project/node_modules/object-assign/license +21 -0
  2320. package/day2/backend-project/node_modules/object-assign/package.json +42 -0
  2321. package/day2/backend-project/node_modules/object-assign/readme.md +61 -0
  2322. package/day2/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  2323. package/day2/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  2324. package/day2/backend-project/node_modules/object-inspect/.nycrc +13 -0
  2325. package/day2/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  2326. package/day2/backend-project/node_modules/object-inspect/LICENSE +21 -0
  2327. package/day2/backend-project/node_modules/object-inspect/example/all.js +23 -0
  2328. package/day2/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  2329. package/day2/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  2330. package/day2/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  2331. package/day2/backend-project/node_modules/object-inspect/index.js +544 -0
  2332. package/day2/backend-project/node_modules/object-inspect/package-support.json +20 -0
  2333. package/day2/backend-project/node_modules/object-inspect/package.json +105 -0
  2334. package/day2/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  2335. package/day2/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  2336. package/day2/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  2337. package/day2/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  2338. package/day2/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  2339. package/day2/backend-project/node_modules/object-inspect/test/element.js +53 -0
  2340. package/day2/backend-project/node_modules/object-inspect/test/err.js +48 -0
  2341. package/day2/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  2342. package/day2/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  2343. package/day2/backend-project/node_modules/object-inspect/test/global.js +17 -0
  2344. package/day2/backend-project/node_modules/object-inspect/test/has.js +15 -0
  2345. package/day2/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  2346. package/day2/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  2347. package/day2/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  2348. package/day2/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  2349. package/day2/backend-project/node_modules/object-inspect/test/number.js +58 -0
  2350. package/day2/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  2351. package/day2/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  2352. package/day2/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  2353. package/day2/backend-project/node_modules/object-inspect/test/values.js +261 -0
  2354. package/day2/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  2355. package/day2/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  2356. package/day2/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  2357. package/day2/backend-project/node_modules/on-finished/LICENSE +23 -0
  2358. package/day2/backend-project/node_modules/on-finished/README.md +162 -0
  2359. package/day2/backend-project/node_modules/on-finished/index.js +234 -0
  2360. package/day2/backend-project/node_modules/on-finished/package.json +39 -0
  2361. package/day2/backend-project/node_modules/once/LICENSE +15 -0
  2362. package/day2/backend-project/node_modules/once/README.md +79 -0
  2363. package/day2/backend-project/node_modules/once/once.js +42 -0
  2364. package/day2/backend-project/node_modules/once/package.json +33 -0
  2365. package/day2/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  2366. package/day2/backend-project/node_modules/parseurl/LICENSE +24 -0
  2367. package/day2/backend-project/node_modules/parseurl/README.md +133 -0
  2368. package/day2/backend-project/node_modules/parseurl/index.js +158 -0
  2369. package/day2/backend-project/node_modules/parseurl/package.json +40 -0
  2370. package/day2/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  2371. package/day2/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  2372. package/day2/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  2373. package/day2/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  2374. package/day2/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  2375. package/day2/backend-project/node_modules/path-to-regexp/package.json +64 -0
  2376. package/day2/backend-project/node_modules/picomatch/LICENSE +21 -0
  2377. package/day2/backend-project/node_modules/picomatch/README.md +716 -0
  2378. package/day2/backend-project/node_modules/picomatch/index.js +3 -0
  2379. package/day2/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  2380. package/day2/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  2381. package/day2/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  2382. package/day2/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  2383. package/day2/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  2384. package/day2/backend-project/node_modules/picomatch/package.json +81 -0
  2385. package/day2/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  2386. package/day2/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  2387. package/day2/backend-project/node_modules/proxy-addr/README.md +139 -0
  2388. package/day2/backend-project/node_modules/proxy-addr/index.js +327 -0
  2389. package/day2/backend-project/node_modules/proxy-addr/package.json +47 -0
  2390. package/day2/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  2391. package/day2/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  2392. package/day2/backend-project/node_modules/pstree.remy/README.md +26 -0
  2393. package/day2/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  2394. package/day2/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  2395. package/day2/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  2396. package/day2/backend-project/node_modules/pstree.remy/package.json +33 -0
  2397. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  2398. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  2399. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  2400. package/day2/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  2401. package/day2/backend-project/node_modules/qs/.editorconfig +46 -0
  2402. package/day2/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  2403. package/day2/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  2404. package/day2/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  2405. package/day2/backend-project/node_modules/qs/.nycrc +13 -0
  2406. package/day2/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  2407. package/day2/backend-project/node_modules/qs/LICENSE.md +29 -0
  2408. package/day2/backend-project/node_modules/qs/README.md +758 -0
  2409. package/day2/backend-project/node_modules/qs/dist/qs.js +141 -0
  2410. package/day2/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  2411. package/day2/backend-project/node_modules/qs/lib/formats.js +23 -0
  2412. package/day2/backend-project/node_modules/qs/lib/index.js +11 -0
  2413. package/day2/backend-project/node_modules/qs/lib/parse.js +403 -0
  2414. package/day2/backend-project/node_modules/qs/lib/stringify.js +363 -0
  2415. package/day2/backend-project/node_modules/qs/lib/utils.js +342 -0
  2416. package/day2/backend-project/node_modules/qs/package.json +94 -0
  2417. package/day2/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  2418. package/day2/backend-project/node_modules/qs/test/parse.js +1703 -0
  2419. package/day2/backend-project/node_modules/qs/test/stringify.js +1448 -0
  2420. package/day2/backend-project/node_modules/qs/test/utils.js +432 -0
  2421. package/day2/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  2422. package/day2/backend-project/node_modules/range-parser/LICENSE +23 -0
  2423. package/day2/backend-project/node_modules/range-parser/README.md +84 -0
  2424. package/day2/backend-project/node_modules/range-parser/index.js +162 -0
  2425. package/day2/backend-project/node_modules/range-parser/package.json +44 -0
  2426. package/day2/backend-project/node_modules/raw-body/LICENSE +22 -0
  2427. package/day2/backend-project/node_modules/raw-body/README.md +223 -0
  2428. package/day2/backend-project/node_modules/raw-body/index.d.ts +85 -0
  2429. package/day2/backend-project/node_modules/raw-body/index.js +336 -0
  2430. package/day2/backend-project/node_modules/raw-body/package.json +46 -0
  2431. package/day2/backend-project/node_modules/readdirp/LICENSE +21 -0
  2432. package/day2/backend-project/node_modules/readdirp/README.md +122 -0
  2433. package/day2/backend-project/node_modules/readdirp/index.d.ts +43 -0
  2434. package/day2/backend-project/node_modules/readdirp/index.js +287 -0
  2435. package/day2/backend-project/node_modules/readdirp/package.json +122 -0
  2436. package/day2/backend-project/node_modules/router/HISTORY.md +228 -0
  2437. package/day2/backend-project/node_modules/router/LICENSE +23 -0
  2438. package/day2/backend-project/node_modules/router/README.md +416 -0
  2439. package/day2/backend-project/node_modules/router/index.js +748 -0
  2440. package/day2/backend-project/node_modules/router/lib/layer.js +247 -0
  2441. package/day2/backend-project/node_modules/router/lib/route.js +242 -0
  2442. package/day2/backend-project/node_modules/router/package.json +44 -0
  2443. package/day2/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  2444. package/day2/backend-project/node_modules/safe-buffer/README.md +584 -0
  2445. package/day2/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  2446. package/day2/backend-project/node_modules/safe-buffer/index.js +65 -0
  2447. package/day2/backend-project/node_modules/safe-buffer/package.json +51 -0
  2448. package/day2/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  2449. package/day2/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2450. package/day2/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  2451. package/day2/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  2452. package/day2/backend-project/node_modules/safer-buffer/package.json +34 -0
  2453. package/day2/backend-project/node_modules/safer-buffer/safer.js +77 -0
  2454. package/day2/backend-project/node_modules/safer-buffer/tests.js +406 -0
  2455. package/day2/backend-project/node_modules/semver/LICENSE +15 -0
  2456. package/day2/backend-project/node_modules/semver/README.md +680 -0
  2457. package/day2/backend-project/node_modules/semver/bin/semver.js +195 -0
  2458. package/day2/backend-project/node_modules/semver/classes/comparator.js +143 -0
  2459. package/day2/backend-project/node_modules/semver/classes/index.js +7 -0
  2460. package/day2/backend-project/node_modules/semver/classes/range.js +564 -0
  2461. package/day2/backend-project/node_modules/semver/classes/semver.js +333 -0
  2462. package/day2/backend-project/node_modules/semver/functions/clean.js +8 -0
  2463. package/day2/backend-project/node_modules/semver/functions/cmp.js +54 -0
  2464. package/day2/backend-project/node_modules/semver/functions/coerce.js +62 -0
  2465. package/day2/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  2466. package/day2/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  2467. package/day2/backend-project/node_modules/semver/functions/compare.js +7 -0
  2468. package/day2/backend-project/node_modules/semver/functions/diff.js +60 -0
  2469. package/day2/backend-project/node_modules/semver/functions/eq.js +5 -0
  2470. package/day2/backend-project/node_modules/semver/functions/gt.js +5 -0
  2471. package/day2/backend-project/node_modules/semver/functions/gte.js +5 -0
  2472. package/day2/backend-project/node_modules/semver/functions/inc.js +21 -0
  2473. package/day2/backend-project/node_modules/semver/functions/lt.js +5 -0
  2474. package/day2/backend-project/node_modules/semver/functions/lte.js +5 -0
  2475. package/day2/backend-project/node_modules/semver/functions/major.js +5 -0
  2476. package/day2/backend-project/node_modules/semver/functions/minor.js +5 -0
  2477. package/day2/backend-project/node_modules/semver/functions/neq.js +5 -0
  2478. package/day2/backend-project/node_modules/semver/functions/parse.js +18 -0
  2479. package/day2/backend-project/node_modules/semver/functions/patch.js +5 -0
  2480. package/day2/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  2481. package/day2/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  2482. package/day2/backend-project/node_modules/semver/functions/rsort.js +5 -0
  2483. package/day2/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  2484. package/day2/backend-project/node_modules/semver/functions/sort.js +5 -0
  2485. package/day2/backend-project/node_modules/semver/functions/truncate.js +48 -0
  2486. package/day2/backend-project/node_modules/semver/functions/valid.js +8 -0
  2487. package/day2/backend-project/node_modules/semver/index.js +93 -0
  2488. package/day2/backend-project/node_modules/semver/internal/constants.js +37 -0
  2489. package/day2/backend-project/node_modules/semver/internal/debug.js +11 -0
  2490. package/day2/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  2491. package/day2/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  2492. package/day2/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  2493. package/day2/backend-project/node_modules/semver/internal/re.js +223 -0
  2494. package/day2/backend-project/node_modules/semver/package.json +78 -0
  2495. package/day2/backend-project/node_modules/semver/preload.js +4 -0
  2496. package/day2/backend-project/node_modules/semver/range.bnf +17 -0
  2497. package/day2/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  2498. package/day2/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  2499. package/day2/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  2500. package/day2/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  2501. package/day2/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  2502. package/day2/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  2503. package/day2/backend-project/node_modules/semver/ranges/outside.js +82 -0
  2504. package/day2/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  2505. package/day2/backend-project/node_modules/semver/ranges/subset.js +249 -0
  2506. package/day2/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  2507. package/day2/backend-project/node_modules/semver/ranges/valid.js +13 -0
  2508. package/day2/backend-project/node_modules/send/LICENSE +23 -0
  2509. package/day2/backend-project/node_modules/send/README.md +317 -0
  2510. package/day2/backend-project/node_modules/send/index.js +997 -0
  2511. package/day2/backend-project/node_modules/send/package.json +63 -0
  2512. package/day2/backend-project/node_modules/serve-static/LICENSE +25 -0
  2513. package/day2/backend-project/node_modules/serve-static/README.md +253 -0
  2514. package/day2/backend-project/node_modules/serve-static/index.js +208 -0
  2515. package/day2/backend-project/node_modules/serve-static/package.json +44 -0
  2516. package/day2/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  2517. package/day2/backend-project/node_modules/setprototypeof/README.md +31 -0
  2518. package/day2/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  2519. package/day2/backend-project/node_modules/setprototypeof/index.js +17 -0
  2520. package/day2/backend-project/node_modules/setprototypeof/package.json +38 -0
  2521. package/day2/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  2522. package/day2/backend-project/node_modules/side-channel/.editorconfig +9 -0
  2523. package/day2/backend-project/node_modules/side-channel/.eslintrc +12 -0
  2524. package/day2/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  2525. package/day2/backend-project/node_modules/side-channel/.nycrc +13 -0
  2526. package/day2/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  2527. package/day2/backend-project/node_modules/side-channel/LICENSE +21 -0
  2528. package/day2/backend-project/node_modules/side-channel/README.md +61 -0
  2529. package/day2/backend-project/node_modules/side-channel/index.d.ts +14 -0
  2530. package/day2/backend-project/node_modules/side-channel/index.js +43 -0
  2531. package/day2/backend-project/node_modules/side-channel/package.json +85 -0
  2532. package/day2/backend-project/node_modules/side-channel/test/index.js +104 -0
  2533. package/day2/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  2534. package/day2/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  2535. package/day2/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  2536. package/day2/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  2537. package/day2/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  2538. package/day2/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  2539. package/day2/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  2540. package/day2/backend-project/node_modules/side-channel-list/README.md +62 -0
  2541. package/day2/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  2542. package/day2/backend-project/node_modules/side-channel-list/index.js +111 -0
  2543. package/day2/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  2544. package/day2/backend-project/node_modules/side-channel-list/package.json +77 -0
  2545. package/day2/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  2546. package/day2/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  2547. package/day2/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  2548. package/day2/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  2549. package/day2/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  2550. package/day2/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  2551. package/day2/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  2552. package/day2/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  2553. package/day2/backend-project/node_modules/side-channel-map/README.md +62 -0
  2554. package/day2/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  2555. package/day2/backend-project/node_modules/side-channel-map/index.js +68 -0
  2556. package/day2/backend-project/node_modules/side-channel-map/package.json +80 -0
  2557. package/day2/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  2558. package/day2/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  2559. package/day2/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  2560. package/day2/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  2561. package/day2/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  2562. package/day2/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  2563. package/day2/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  2564. package/day2/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  2565. package/day2/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  2566. package/day2/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  2567. package/day2/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  2568. package/day2/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  2569. package/day2/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  2570. package/day2/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  2571. package/day2/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  2572. package/day2/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  2573. package/day2/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  2574. package/day2/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  2575. package/day2/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  2576. package/day2/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  2577. package/day2/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  2578. package/day2/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  2579. package/day2/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  2580. package/day2/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  2581. package/day2/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  2582. package/day2/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  2583. package/day2/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  2584. package/day2/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  2585. package/day2/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  2586. package/day2/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  2587. package/day2/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  2588. package/day2/backend-project/node_modules/sql-escaper/README.md +424 -0
  2589. package/day2/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  2590. package/day2/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  2591. package/day2/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  2592. package/day2/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  2593. package/day2/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  2594. package/day2/backend-project/node_modules/sql-escaper/package.json +81 -0
  2595. package/day2/backend-project/node_modules/statuses/HISTORY.md +87 -0
  2596. package/day2/backend-project/node_modules/statuses/LICENSE +23 -0
  2597. package/day2/backend-project/node_modules/statuses/README.md +139 -0
  2598. package/day2/backend-project/node_modules/statuses/codes.json +65 -0
  2599. package/day2/backend-project/node_modules/statuses/index.js +146 -0
  2600. package/day2/backend-project/node_modules/statuses/package.json +49 -0
  2601. package/day2/backend-project/node_modules/supports-color/browser.js +5 -0
  2602. package/day2/backend-project/node_modules/supports-color/index.js +131 -0
  2603. package/day2/backend-project/node_modules/supports-color/license +9 -0
  2604. package/day2/backend-project/node_modules/supports-color/package.json +53 -0
  2605. package/day2/backend-project/node_modules/supports-color/readme.md +66 -0
  2606. package/day2/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  2607. package/day2/backend-project/node_modules/to-regex-range/README.md +305 -0
  2608. package/day2/backend-project/node_modules/to-regex-range/index.js +288 -0
  2609. package/day2/backend-project/node_modules/to-regex-range/package.json +88 -0
  2610. package/day2/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  2611. package/day2/backend-project/node_modules/toidentifier/LICENSE +21 -0
  2612. package/day2/backend-project/node_modules/toidentifier/README.md +61 -0
  2613. package/day2/backend-project/node_modules/toidentifier/index.js +32 -0
  2614. package/day2/backend-project/node_modules/toidentifier/package.json +38 -0
  2615. package/day2/backend-project/node_modules/touch/LICENSE +15 -0
  2616. package/day2/backend-project/node_modules/touch/README.md +52 -0
  2617. package/day2/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  2618. package/day2/backend-project/node_modules/touch/index.js +224 -0
  2619. package/day2/backend-project/node_modules/touch/package.json +25 -0
  2620. package/day2/backend-project/node_modules/type-is/HISTORY.md +292 -0
  2621. package/day2/backend-project/node_modules/type-is/LICENSE +23 -0
  2622. package/day2/backend-project/node_modules/type-is/README.md +198 -0
  2623. package/day2/backend-project/node_modules/type-is/index.js +240 -0
  2624. package/day2/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  2625. package/day2/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  2626. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  2627. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  2628. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  2629. package/day2/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  2630. package/day2/backend-project/node_modules/type-is/package.json +51 -0
  2631. package/day2/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  2632. package/day2/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  2633. package/day2/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  2634. package/day2/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  2635. package/day2/backend-project/node_modules/undefsafe/LICENSE +22 -0
  2636. package/day2/backend-project/node_modules/undefsafe/README.md +63 -0
  2637. package/day2/backend-project/node_modules/undefsafe/example.js +14 -0
  2638. package/day2/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  2639. package/day2/backend-project/node_modules/undefsafe/package.json +34 -0
  2640. package/day2/backend-project/node_modules/undici-types/LICENSE +21 -0
  2641. package/day2/backend-project/node_modules/undici-types/README.md +6 -0
  2642. package/day2/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  2643. package/day2/backend-project/node_modules/undici-types/api.d.ts +43 -0
  2644. package/day2/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  2645. package/day2/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  2646. package/day2/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  2647. package/day2/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  2648. package/day2/backend-project/node_modules/undici-types/client.d.ts +123 -0
  2649. package/day2/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  2650. package/day2/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  2651. package/day2/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  2652. package/day2/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  2653. package/day2/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  2654. package/day2/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  2655. package/day2/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  2656. package/day2/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  2657. package/day2/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  2658. package/day2/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  2659. package/day2/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  2660. package/day2/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  2661. package/day2/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  2662. package/day2/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  2663. package/day2/backend-project/node_modules/undici-types/header.d.ts +160 -0
  2664. package/day2/backend-project/node_modules/undici-types/index.d.ts +91 -0
  2665. package/day2/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  2666. package/day2/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  2667. package/day2/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  2668. package/day2/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  2669. package/day2/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  2670. package/day2/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  2671. package/day2/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  2672. package/day2/backend-project/node_modules/undici-types/package.json +55 -0
  2673. package/day2/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  2674. package/day2/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  2675. package/day2/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  2676. package/day2/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  2677. package/day2/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  2678. package/day2/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  2679. package/day2/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  2680. package/day2/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  2681. package/day2/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  2682. package/day2/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  2683. package/day2/backend-project/node_modules/undici-types/util.d.ts +18 -0
  2684. package/day2/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  2685. package/day2/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  2686. package/day2/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  2687. package/day2/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  2688. package/day2/backend-project/node_modules/unpipe/LICENSE +22 -0
  2689. package/day2/backend-project/node_modules/unpipe/README.md +43 -0
  2690. package/day2/backend-project/node_modules/unpipe/index.js +69 -0
  2691. package/day2/backend-project/node_modules/unpipe/package.json +27 -0
  2692. package/day2/backend-project/node_modules/vary/HISTORY.md +39 -0
  2693. package/day2/backend-project/node_modules/vary/LICENSE +22 -0
  2694. package/day2/backend-project/node_modules/vary/README.md +101 -0
  2695. package/day2/backend-project/node_modules/vary/index.js +149 -0
  2696. package/day2/backend-project/node_modules/vary/package.json +43 -0
  2697. package/day2/backend-project/node_modules/wrappy/LICENSE +15 -0
  2698. package/day2/backend-project/node_modules/wrappy/README.md +36 -0
  2699. package/day2/backend-project/node_modules/wrappy/package.json +29 -0
  2700. package/day2/backend-project/node_modules/wrappy/wrappy.js +33 -0
  2701. package/day2/backend-project/package-lock.json +1458 -0
  2702. package/day2/backend-project/package.json +23 -0
  2703. package/day2/backend-project/src/server.js +15 -0
  2704. package/day2/frontend-project/README.md +18 -0
  2705. package/day2/frontend-project/eslint.config.js +21 -0
  2706. package/day2/frontend-project/index.html +13 -0
  2707. package/day2/frontend-project/package-lock.json +2722 -0
  2708. package/day2/frontend-project/package.json +32 -0
  2709. package/day2/frontend-project/public/favicon.svg +1 -0
  2710. package/day2/frontend-project/public/icons.svg +24 -0
  2711. package/day2/frontend-project/src/App.css +184 -0
  2712. package/day2/frontend-project/src/App.jsx +50 -0
  2713. package/day2/frontend-project/src/assets/hero.png +0 -0
  2714. package/day2/frontend-project/src/assets/react.svg +1 -0
  2715. package/day2/frontend-project/src/assets/vite.svg +1 -0
  2716. package/day2/frontend-project/src/index.css +1 -0
  2717. package/day2/frontend-project/src/main.jsx +10 -0
  2718. package/day2/frontend-project/vite.config.js +12 -0
  2719. package/day3/backend-project/.env +0 -0
  2720. package/day3/backend-project/node_modules/.bin/bcrypt +16 -0
  2721. package/day3/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  2722. package/day3/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  2723. package/day3/backend-project/node_modules/.bin/nodemon +16 -0
  2724. package/day3/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  2725. package/day3/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  2726. package/day3/backend-project/node_modules/.bin/nodetouch +16 -0
  2727. package/day3/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  2728. package/day3/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  2729. package/day3/backend-project/node_modules/.bin/semver +16 -0
  2730. package/day3/backend-project/node_modules/.bin/semver.cmd +17 -0
  2731. package/day3/backend-project/node_modules/.bin/semver.ps1 +28 -0
  2732. package/day3/backend-project/node_modules/.package-lock.json +1430 -0
  2733. package/day3/backend-project/node_modules/@types/node/LICENSE +21 -0
  2734. package/day3/backend-project/node_modules/@types/node/README.md +15 -0
  2735. package/day3/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  2736. package/day3/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  2737. package/day3/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  2738. package/day3/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  2739. package/day3/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  2740. package/day3/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  2741. package/day3/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  2742. package/day3/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  2743. package/day3/backend-project/node_modules/@types/node/console.d.ts +93 -0
  2744. package/day3/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  2745. package/day3/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  2746. package/day3/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  2747. package/day3/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  2748. package/day3/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  2749. package/day3/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  2750. package/day3/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  2751. package/day3/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  2752. package/day3/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  2753. package/day3/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  2754. package/day3/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  2755. package/day3/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  2756. package/day3/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  2757. package/day3/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  2758. package/day3/backend-project/node_modules/@types/node/https.d.ts +400 -0
  2759. package/day3/backend-project/node_modules/@types/node/index.d.ts +117 -0
  2760. package/day3/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  2761. package/day3/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  2762. package/day3/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  2763. package/day3/backend-project/node_modules/@types/node/module.d.ts +755 -0
  2764. package/day3/backend-project/node_modules/@types/node/net.d.ts +970 -0
  2765. package/day3/backend-project/node_modules/@types/node/os.d.ts +498 -0
  2766. package/day3/backend-project/node_modules/@types/node/package.json +155 -0
  2767. package/day3/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  2768. package/day3/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  2769. package/day3/backend-project/node_modules/@types/node/path.d.ts +178 -0
  2770. package/day3/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  2771. package/day3/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  2772. package/day3/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  2773. package/day3/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  2774. package/day3/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  2775. package/day3/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  2776. package/day3/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  2777. package/day3/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  2778. package/day3/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  2779. package/day3/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  2780. package/day3/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  2781. package/day3/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  2782. package/day3/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  2783. package/day3/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  2784. package/day3/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  2785. package/day3/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  2786. package/day3/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  2787. package/day3/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  2788. package/day3/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  2789. package/day3/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  2790. package/day3/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  2791. package/day3/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  2792. package/day3/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  2793. package/day3/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  2794. package/day3/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  2795. package/day3/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  2796. package/day3/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  2797. package/day3/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  2798. package/day3/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  2799. package/day3/backend-project/node_modules/@types/node/url.d.ts +556 -0
  2800. package/day3/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  2801. package/day3/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  2802. package/day3/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  2803. package/day3/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  2804. package/day3/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  2805. package/day3/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  2806. package/day3/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  2807. package/day3/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  2808. package/day3/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  2809. package/day3/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  2810. package/day3/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  2811. package/day3/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  2812. package/day3/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  2813. package/day3/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  2814. package/day3/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  2815. package/day3/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  2816. package/day3/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  2817. package/day3/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  2818. package/day3/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  2819. package/day3/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  2820. package/day3/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  2821. package/day3/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  2822. package/day3/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  2823. package/day3/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  2824. package/day3/backend-project/node_modules/accepts/HISTORY.md +250 -0
  2825. package/day3/backend-project/node_modules/accepts/LICENSE +23 -0
  2826. package/day3/backend-project/node_modules/accepts/README.md +140 -0
  2827. package/day3/backend-project/node_modules/accepts/index.js +238 -0
  2828. package/day3/backend-project/node_modules/accepts/package.json +47 -0
  2829. package/day3/backend-project/node_modules/anymatch/LICENSE +15 -0
  2830. package/day3/backend-project/node_modules/anymatch/README.md +87 -0
  2831. package/day3/backend-project/node_modules/anymatch/index.d.ts +20 -0
  2832. package/day3/backend-project/node_modules/anymatch/index.js +104 -0
  2833. package/day3/backend-project/node_modules/anymatch/package.json +48 -0
  2834. package/day3/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  2835. package/day3/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  2836. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  2837. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  2838. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  2839. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  2840. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  2841. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  2842. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  2843. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  2844. package/day3/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  2845. package/day3/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  2846. package/day3/backend-project/node_modules/balanced-match/README.md +57 -0
  2847. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  2848. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  2849. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  2850. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  2851. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  2852. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  2853. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  2854. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  2855. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  2856. package/day3/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  2857. package/day3/backend-project/node_modules/balanced-match/package.json +68 -0
  2858. package/day3/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  2859. package/day3/backend-project/node_modules/bcryptjs/README.md +201 -0
  2860. package/day3/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  2861. package/day3/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  2862. package/day3/backend-project/node_modules/bcryptjs/index.js +1159 -0
  2863. package/day3/backend-project/node_modules/bcryptjs/package.json +76 -0
  2864. package/day3/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  2865. package/day3/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  2866. package/day3/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  2867. package/day3/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  2868. package/day3/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  2869. package/day3/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  2870. package/day3/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  2871. package/day3/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  2872. package/day3/backend-project/node_modules/binary-extensions/index.js +1 -0
  2873. package/day3/backend-project/node_modules/binary-extensions/license +10 -0
  2874. package/day3/backend-project/node_modules/binary-extensions/package.json +40 -0
  2875. package/day3/backend-project/node_modules/binary-extensions/readme.md +25 -0
  2876. package/day3/backend-project/node_modules/body-parser/LICENSE +23 -0
  2877. package/day3/backend-project/node_modules/body-parser/README.md +494 -0
  2878. package/day3/backend-project/node_modules/body-parser/index.js +71 -0
  2879. package/day3/backend-project/node_modules/body-parser/lib/read.js +247 -0
  2880. package/day3/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  2881. package/day3/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  2882. package/day3/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  2883. package/day3/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  2884. package/day3/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  2885. package/day3/backend-project/node_modules/body-parser/package.json +52 -0
  2886. package/day3/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  2887. package/day3/backend-project/node_modules/brace-expansion/README.md +94 -0
  2888. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  2889. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  2890. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  2891. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  2892. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  2893. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  2894. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  2895. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  2896. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  2897. package/day3/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  2898. package/day3/backend-project/node_modules/brace-expansion/package.json +64 -0
  2899. package/day3/backend-project/node_modules/braces/LICENSE +21 -0
  2900. package/day3/backend-project/node_modules/braces/README.md +586 -0
  2901. package/day3/backend-project/node_modules/braces/index.js +170 -0
  2902. package/day3/backend-project/node_modules/braces/lib/compile.js +60 -0
  2903. package/day3/backend-project/node_modules/braces/lib/constants.js +57 -0
  2904. package/day3/backend-project/node_modules/braces/lib/expand.js +113 -0
  2905. package/day3/backend-project/node_modules/braces/lib/parse.js +331 -0
  2906. package/day3/backend-project/node_modules/braces/lib/stringify.js +32 -0
  2907. package/day3/backend-project/node_modules/braces/lib/utils.js +122 -0
  2908. package/day3/backend-project/node_modules/braces/package.json +77 -0
  2909. package/day3/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  2910. package/day3/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  2911. package/day3/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  2912. package/day3/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  2913. package/day3/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  2914. package/day3/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  2915. package/day3/backend-project/node_modules/bytes/History.md +97 -0
  2916. package/day3/backend-project/node_modules/bytes/LICENSE +23 -0
  2917. package/day3/backend-project/node_modules/bytes/Readme.md +152 -0
  2918. package/day3/backend-project/node_modules/bytes/index.js +170 -0
  2919. package/day3/backend-project/node_modules/bytes/package.json +42 -0
  2920. package/day3/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  2921. package/day3/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  2922. package/day3/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  2923. package/day3/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  2924. package/day3/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  2925. package/day3/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  2926. package/day3/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  2927. package/day3/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  2928. package/day3/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  2929. package/day3/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  2930. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  2931. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  2932. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  2933. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  2934. package/day3/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  2935. package/day3/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  2936. package/day3/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  2937. package/day3/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  2938. package/day3/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  2939. package/day3/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  2940. package/day3/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  2941. package/day3/backend-project/node_modules/call-bound/.eslintrc +13 -0
  2942. package/day3/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  2943. package/day3/backend-project/node_modules/call-bound/.nycrc +9 -0
  2944. package/day3/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  2945. package/day3/backend-project/node_modules/call-bound/LICENSE +21 -0
  2946. package/day3/backend-project/node_modules/call-bound/README.md +53 -0
  2947. package/day3/backend-project/node_modules/call-bound/index.d.ts +94 -0
  2948. package/day3/backend-project/node_modules/call-bound/index.js +19 -0
  2949. package/day3/backend-project/node_modules/call-bound/package.json +99 -0
  2950. package/day3/backend-project/node_modules/call-bound/test/index.js +61 -0
  2951. package/day3/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  2952. package/day3/backend-project/node_modules/chokidar/LICENSE +21 -0
  2953. package/day3/backend-project/node_modules/chokidar/README.md +308 -0
  2954. package/day3/backend-project/node_modules/chokidar/index.js +973 -0
  2955. package/day3/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  2956. package/day3/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  2957. package/day3/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  2958. package/day3/backend-project/node_modules/chokidar/package.json +70 -0
  2959. package/day3/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  2960. package/day3/backend-project/node_modules/content-disposition/LICENSE +22 -0
  2961. package/day3/backend-project/node_modules/content-disposition/README.md +141 -0
  2962. package/day3/backend-project/node_modules/content-disposition/index.js +536 -0
  2963. package/day3/backend-project/node_modules/content-disposition/package.json +40 -0
  2964. package/day3/backend-project/node_modules/content-type/HISTORY.md +29 -0
  2965. package/day3/backend-project/node_modules/content-type/LICENSE +22 -0
  2966. package/day3/backend-project/node_modules/content-type/README.md +94 -0
  2967. package/day3/backend-project/node_modules/content-type/index.js +225 -0
  2968. package/day3/backend-project/node_modules/content-type/package.json +42 -0
  2969. package/day3/backend-project/node_modules/cookie/LICENSE +24 -0
  2970. package/day3/backend-project/node_modules/cookie/README.md +317 -0
  2971. package/day3/backend-project/node_modules/cookie/SECURITY.md +25 -0
  2972. package/day3/backend-project/node_modules/cookie/index.js +335 -0
  2973. package/day3/backend-project/node_modules/cookie/package.json +44 -0
  2974. package/day3/backend-project/node_modules/cookie-signature/History.md +70 -0
  2975. package/day3/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  2976. package/day3/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  2977. package/day3/backend-project/node_modules/cookie-signature/index.js +47 -0
  2978. package/day3/backend-project/node_modules/cookie-signature/package.json +24 -0
  2979. package/day3/backend-project/node_modules/cors/LICENSE +22 -0
  2980. package/day3/backend-project/node_modules/cors/README.md +277 -0
  2981. package/day3/backend-project/node_modules/cors/lib/index.js +238 -0
  2982. package/day3/backend-project/node_modules/cors/package.json +42 -0
  2983. package/day3/backend-project/node_modules/debug/LICENSE +20 -0
  2984. package/day3/backend-project/node_modules/debug/README.md +481 -0
  2985. package/day3/backend-project/node_modules/debug/package.json +64 -0
  2986. package/day3/backend-project/node_modules/debug/src/browser.js +272 -0
  2987. package/day3/backend-project/node_modules/debug/src/common.js +292 -0
  2988. package/day3/backend-project/node_modules/debug/src/index.js +10 -0
  2989. package/day3/backend-project/node_modules/debug/src/node.js +263 -0
  2990. package/day3/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  2991. package/day3/backend-project/node_modules/denque/LICENSE +201 -0
  2992. package/day3/backend-project/node_modules/denque/README.md +77 -0
  2993. package/day3/backend-project/node_modules/denque/index.d.ts +47 -0
  2994. package/day3/backend-project/node_modules/denque/index.js +481 -0
  2995. package/day3/backend-project/node_modules/denque/package.json +58 -0
  2996. package/day3/backend-project/node_modules/depd/History.md +103 -0
  2997. package/day3/backend-project/node_modules/depd/LICENSE +22 -0
  2998. package/day3/backend-project/node_modules/depd/Readme.md +280 -0
  2999. package/day3/backend-project/node_modules/depd/index.js +538 -0
  3000. package/day3/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  3001. package/day3/backend-project/node_modules/depd/package.json +45 -0
  3002. package/day3/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  3003. package/day3/backend-project/node_modules/dotenv/LICENSE +23 -0
  3004. package/day3/backend-project/node_modules/dotenv/README-es.md +757 -0
  3005. package/day3/backend-project/node_modules/dotenv/README.md +812 -0
  3006. package/day3/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  3007. package/day3/backend-project/node_modules/dotenv/config.d.ts +1 -0
  3008. package/day3/backend-project/node_modules/dotenv/config.js +9 -0
  3009. package/day3/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  3010. package/day3/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  3011. package/day3/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  3012. package/day3/backend-project/node_modules/dotenv/lib/main.js +423 -0
  3013. package/day3/backend-project/node_modules/dotenv/package.json +62 -0
  3014. package/day3/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  3015. package/day3/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  3016. package/day3/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  3017. package/day3/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  3018. package/day3/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  3019. package/day3/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  3020. package/day3/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  3021. package/day3/backend-project/node_modules/dunder-proto/README.md +54 -0
  3022. package/day3/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  3023. package/day3/backend-project/node_modules/dunder-proto/get.js +30 -0
  3024. package/day3/backend-project/node_modules/dunder-proto/package.json +76 -0
  3025. package/day3/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  3026. package/day3/backend-project/node_modules/dunder-proto/set.js +35 -0
  3027. package/day3/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  3028. package/day3/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  3029. package/day3/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  3030. package/day3/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  3031. package/day3/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  3032. package/day3/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  3033. package/day3/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  3034. package/day3/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  3035. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  3036. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  3037. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  3038. package/day3/backend-project/node_modules/ee-first/LICENSE +22 -0
  3039. package/day3/backend-project/node_modules/ee-first/README.md +80 -0
  3040. package/day3/backend-project/node_modules/ee-first/index.js +95 -0
  3041. package/day3/backend-project/node_modules/ee-first/package.json +29 -0
  3042. package/day3/backend-project/node_modules/encodeurl/LICENSE +22 -0
  3043. package/day3/backend-project/node_modules/encodeurl/README.md +109 -0
  3044. package/day3/backend-project/node_modules/encodeurl/index.js +60 -0
  3045. package/day3/backend-project/node_modules/encodeurl/package.json +40 -0
  3046. package/day3/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  3047. package/day3/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  3048. package/day3/backend-project/node_modules/es-define-property/.nycrc +9 -0
  3049. package/day3/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  3050. package/day3/backend-project/node_modules/es-define-property/LICENSE +21 -0
  3051. package/day3/backend-project/node_modules/es-define-property/README.md +49 -0
  3052. package/day3/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  3053. package/day3/backend-project/node_modules/es-define-property/index.js +14 -0
  3054. package/day3/backend-project/node_modules/es-define-property/package.json +81 -0
  3055. package/day3/backend-project/node_modules/es-define-property/test/index.js +56 -0
  3056. package/day3/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  3057. package/day3/backend-project/node_modules/es-errors/.eslintrc +5 -0
  3058. package/day3/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  3059. package/day3/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  3060. package/day3/backend-project/node_modules/es-errors/LICENSE +21 -0
  3061. package/day3/backend-project/node_modules/es-errors/README.md +55 -0
  3062. package/day3/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  3063. package/day3/backend-project/node_modules/es-errors/eval.js +4 -0
  3064. package/day3/backend-project/node_modules/es-errors/index.d.ts +3 -0
  3065. package/day3/backend-project/node_modules/es-errors/index.js +4 -0
  3066. package/day3/backend-project/node_modules/es-errors/package.json +80 -0
  3067. package/day3/backend-project/node_modules/es-errors/range.d.ts +3 -0
  3068. package/day3/backend-project/node_modules/es-errors/range.js +4 -0
  3069. package/day3/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  3070. package/day3/backend-project/node_modules/es-errors/ref.js +4 -0
  3071. package/day3/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  3072. package/day3/backend-project/node_modules/es-errors/syntax.js +4 -0
  3073. package/day3/backend-project/node_modules/es-errors/test/index.js +19 -0
  3074. package/day3/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  3075. package/day3/backend-project/node_modules/es-errors/type.d.ts +3 -0
  3076. package/day3/backend-project/node_modules/es-errors/type.js +4 -0
  3077. package/day3/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  3078. package/day3/backend-project/node_modules/es-errors/uri.js +4 -0
  3079. package/day3/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  3080. package/day3/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  3081. package/day3/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  3082. package/day3/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  3083. package/day3/backend-project/node_modules/es-object-atoms/README.md +63 -0
  3084. package/day3/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  3085. package/day3/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  3086. package/day3/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  3087. package/day3/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  3088. package/day3/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  3089. package/day3/backend-project/node_modules/es-object-atoms/index.js +4 -0
  3090. package/day3/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  3091. package/day3/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  3092. package/day3/backend-project/node_modules/es-object-atoms/package.json +79 -0
  3093. package/day3/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  3094. package/day3/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  3095. package/day3/backend-project/node_modules/escape-html/LICENSE +24 -0
  3096. package/day3/backend-project/node_modules/escape-html/Readme.md +43 -0
  3097. package/day3/backend-project/node_modules/escape-html/index.js +78 -0
  3098. package/day3/backend-project/node_modules/escape-html/package.json +24 -0
  3099. package/day3/backend-project/node_modules/etag/HISTORY.md +83 -0
  3100. package/day3/backend-project/node_modules/etag/LICENSE +22 -0
  3101. package/day3/backend-project/node_modules/etag/README.md +159 -0
  3102. package/day3/backend-project/node_modules/etag/index.js +131 -0
  3103. package/day3/backend-project/node_modules/etag/package.json +47 -0
  3104. package/day3/backend-project/node_modules/express/LICENSE +24 -0
  3105. package/day3/backend-project/node_modules/express/Readme.md +276 -0
  3106. package/day3/backend-project/node_modules/express/index.js +11 -0
  3107. package/day3/backend-project/node_modules/express/lib/application.js +631 -0
  3108. package/day3/backend-project/node_modules/express/lib/express.js +81 -0
  3109. package/day3/backend-project/node_modules/express/lib/request.js +514 -0
  3110. package/day3/backend-project/node_modules/express/lib/response.js +1053 -0
  3111. package/day3/backend-project/node_modules/express/lib/utils.js +271 -0
  3112. package/day3/backend-project/node_modules/express/lib/view.js +205 -0
  3113. package/day3/backend-project/node_modules/express/package.json +99 -0
  3114. package/day3/backend-project/node_modules/fill-range/LICENSE +21 -0
  3115. package/day3/backend-project/node_modules/fill-range/README.md +237 -0
  3116. package/day3/backend-project/node_modules/fill-range/index.js +248 -0
  3117. package/day3/backend-project/node_modules/fill-range/package.json +74 -0
  3118. package/day3/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  3119. package/day3/backend-project/node_modules/finalhandler/LICENSE +22 -0
  3120. package/day3/backend-project/node_modules/finalhandler/README.md +150 -0
  3121. package/day3/backend-project/node_modules/finalhandler/index.js +293 -0
  3122. package/day3/backend-project/node_modules/finalhandler/package.json +47 -0
  3123. package/day3/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  3124. package/day3/backend-project/node_modules/forwarded/LICENSE +22 -0
  3125. package/day3/backend-project/node_modules/forwarded/README.md +57 -0
  3126. package/day3/backend-project/node_modules/forwarded/index.js +90 -0
  3127. package/day3/backend-project/node_modules/forwarded/package.json +45 -0
  3128. package/day3/backend-project/node_modules/fresh/HISTORY.md +80 -0
  3129. package/day3/backend-project/node_modules/fresh/LICENSE +23 -0
  3130. package/day3/backend-project/node_modules/fresh/README.md +117 -0
  3131. package/day3/backend-project/node_modules/fresh/index.js +136 -0
  3132. package/day3/backend-project/node_modules/fresh/package.json +46 -0
  3133. package/day3/backend-project/node_modules/function-bind/.eslintrc +21 -0
  3134. package/day3/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  3135. package/day3/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  3136. package/day3/backend-project/node_modules/function-bind/.nycrc +13 -0
  3137. package/day3/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  3138. package/day3/backend-project/node_modules/function-bind/LICENSE +20 -0
  3139. package/day3/backend-project/node_modules/function-bind/README.md +46 -0
  3140. package/day3/backend-project/node_modules/function-bind/implementation.js +84 -0
  3141. package/day3/backend-project/node_modules/function-bind/index.js +5 -0
  3142. package/day3/backend-project/node_modules/function-bind/package.json +87 -0
  3143. package/day3/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  3144. package/day3/backend-project/node_modules/function-bind/test/index.js +252 -0
  3145. package/day3/backend-project/node_modules/generate-function/.travis.yml +3 -0
  3146. package/day3/backend-project/node_modules/generate-function/LICENSE +21 -0
  3147. package/day3/backend-project/node_modules/generate-function/README.md +89 -0
  3148. package/day3/backend-project/node_modules/generate-function/example.js +27 -0
  3149. package/day3/backend-project/node_modules/generate-function/index.js +181 -0
  3150. package/day3/backend-project/node_modules/generate-function/package.json +32 -0
  3151. package/day3/backend-project/node_modules/generate-function/test.js +49 -0
  3152. package/day3/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  3153. package/day3/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  3154. package/day3/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  3155. package/day3/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  3156. package/day3/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  3157. package/day3/backend-project/node_modules/get-intrinsic/README.md +71 -0
  3158. package/day3/backend-project/node_modules/get-intrinsic/index.js +378 -0
  3159. package/day3/backend-project/node_modules/get-intrinsic/package.json +97 -0
  3160. package/day3/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  3161. package/day3/backend-project/node_modules/get-proto/.eslintrc +10 -0
  3162. package/day3/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  3163. package/day3/backend-project/node_modules/get-proto/.nycrc +9 -0
  3164. package/day3/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  3165. package/day3/backend-project/node_modules/get-proto/LICENSE +21 -0
  3166. package/day3/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  3167. package/day3/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  3168. package/day3/backend-project/node_modules/get-proto/README.md +50 -0
  3169. package/day3/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  3170. package/day3/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  3171. package/day3/backend-project/node_modules/get-proto/index.d.ts +5 -0
  3172. package/day3/backend-project/node_modules/get-proto/index.js +27 -0
  3173. package/day3/backend-project/node_modules/get-proto/package.json +81 -0
  3174. package/day3/backend-project/node_modules/get-proto/test/index.js +68 -0
  3175. package/day3/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  3176. package/day3/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  3177. package/day3/backend-project/node_modules/glob-parent/LICENSE +15 -0
  3178. package/day3/backend-project/node_modules/glob-parent/README.md +137 -0
  3179. package/day3/backend-project/node_modules/glob-parent/index.js +42 -0
  3180. package/day3/backend-project/node_modules/glob-parent/package.json +48 -0
  3181. package/day3/backend-project/node_modules/gopd/.eslintrc +16 -0
  3182. package/day3/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  3183. package/day3/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  3184. package/day3/backend-project/node_modules/gopd/LICENSE +21 -0
  3185. package/day3/backend-project/node_modules/gopd/README.md +40 -0
  3186. package/day3/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  3187. package/day3/backend-project/node_modules/gopd/gOPD.js +4 -0
  3188. package/day3/backend-project/node_modules/gopd/index.d.ts +5 -0
  3189. package/day3/backend-project/node_modules/gopd/index.js +15 -0
  3190. package/day3/backend-project/node_modules/gopd/package.json +77 -0
  3191. package/day3/backend-project/node_modules/gopd/test/index.js +36 -0
  3192. package/day3/backend-project/node_modules/gopd/tsconfig.json +9 -0
  3193. package/day3/backend-project/node_modules/has-flag/index.js +8 -0
  3194. package/day3/backend-project/node_modules/has-flag/license +9 -0
  3195. package/day3/backend-project/node_modules/has-flag/package.json +44 -0
  3196. package/day3/backend-project/node_modules/has-flag/readme.md +70 -0
  3197. package/day3/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  3198. package/day3/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  3199. package/day3/backend-project/node_modules/has-symbols/.nycrc +9 -0
  3200. package/day3/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  3201. package/day3/backend-project/node_modules/has-symbols/LICENSE +21 -0
  3202. package/day3/backend-project/node_modules/has-symbols/README.md +46 -0
  3203. package/day3/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  3204. package/day3/backend-project/node_modules/has-symbols/index.js +14 -0
  3205. package/day3/backend-project/node_modules/has-symbols/package.json +111 -0
  3206. package/day3/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  3207. package/day3/backend-project/node_modules/has-symbols/shams.js +45 -0
  3208. package/day3/backend-project/node_modules/has-symbols/test/index.js +22 -0
  3209. package/day3/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  3210. package/day3/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  3211. package/day3/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  3212. package/day3/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  3213. package/day3/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  3214. package/day3/backend-project/node_modules/hasown/.nycrc +13 -0
  3215. package/day3/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  3216. package/day3/backend-project/node_modules/hasown/LICENSE +21 -0
  3217. package/day3/backend-project/node_modules/hasown/README.md +40 -0
  3218. package/day3/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  3219. package/day3/backend-project/node_modules/hasown/index.d.ts +3 -0
  3220. package/day3/backend-project/node_modules/hasown/index.js +8 -0
  3221. package/day3/backend-project/node_modules/hasown/package.json +91 -0
  3222. package/day3/backend-project/node_modules/hasown/tsconfig.json +6 -0
  3223. package/day3/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  3224. package/day3/backend-project/node_modules/http-errors/LICENSE +23 -0
  3225. package/day3/backend-project/node_modules/http-errors/README.md +169 -0
  3226. package/day3/backend-project/node_modules/http-errors/index.js +290 -0
  3227. package/day3/backend-project/node_modules/http-errors/package.json +54 -0
  3228. package/day3/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  3229. package/day3/backend-project/node_modules/iconv-lite/README.md +138 -0
  3230. package/day3/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  3231. package/day3/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  3232. package/day3/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  3233. package/day3/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  3234. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  3235. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  3236. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  3237. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  3238. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  3239. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  3240. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  3241. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  3242. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  3243. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  3244. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  3245. package/day3/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  3246. package/day3/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  3247. package/day3/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  3248. package/day3/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  3249. package/day3/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  3250. package/day3/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  3251. package/day3/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  3252. package/day3/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  3253. package/day3/backend-project/node_modules/iconv-lite/package.json +70 -0
  3254. package/day3/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  3255. package/day3/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  3256. package/day3/backend-project/node_modules/ignore-by-default/README.md +26 -0
  3257. package/day3/backend-project/node_modules/ignore-by-default/index.js +12 -0
  3258. package/day3/backend-project/node_modules/ignore-by-default/package.json +34 -0
  3259. package/day3/backend-project/node_modules/inherits/LICENSE +16 -0
  3260. package/day3/backend-project/node_modules/inherits/README.md +42 -0
  3261. package/day3/backend-project/node_modules/inherits/inherits.js +9 -0
  3262. package/day3/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  3263. package/day3/backend-project/node_modules/inherits/package.json +29 -0
  3264. package/day3/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  3265. package/day3/backend-project/node_modules/ipaddr.js/README.md +233 -0
  3266. package/day3/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  3267. package/day3/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  3268. package/day3/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  3269. package/day3/backend-project/node_modules/ipaddr.js/package.json +35 -0
  3270. package/day3/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  3271. package/day3/backend-project/node_modules/is-binary-path/index.js +7 -0
  3272. package/day3/backend-project/node_modules/is-binary-path/license +9 -0
  3273. package/day3/backend-project/node_modules/is-binary-path/package.json +40 -0
  3274. package/day3/backend-project/node_modules/is-binary-path/readme.md +34 -0
  3275. package/day3/backend-project/node_modules/is-extglob/LICENSE +21 -0
  3276. package/day3/backend-project/node_modules/is-extglob/README.md +107 -0
  3277. package/day3/backend-project/node_modules/is-extglob/index.js +20 -0
  3278. package/day3/backend-project/node_modules/is-extglob/package.json +69 -0
  3279. package/day3/backend-project/node_modules/is-glob/LICENSE +21 -0
  3280. package/day3/backend-project/node_modules/is-glob/README.md +206 -0
  3281. package/day3/backend-project/node_modules/is-glob/index.js +150 -0
  3282. package/day3/backend-project/node_modules/is-glob/package.json +81 -0
  3283. package/day3/backend-project/node_modules/is-number/LICENSE +21 -0
  3284. package/day3/backend-project/node_modules/is-number/README.md +187 -0
  3285. package/day3/backend-project/node_modules/is-number/index.js +18 -0
  3286. package/day3/backend-project/node_modules/is-number/package.json +82 -0
  3287. package/day3/backend-project/node_modules/is-promise/LICENSE +19 -0
  3288. package/day3/backend-project/node_modules/is-promise/index.d.ts +2 -0
  3289. package/day3/backend-project/node_modules/is-promise/index.js +6 -0
  3290. package/day3/backend-project/node_modules/is-promise/index.mjs +3 -0
  3291. package/day3/backend-project/node_modules/is-promise/package.json +30 -0
  3292. package/day3/backend-project/node_modules/is-promise/readme.md +33 -0
  3293. package/day3/backend-project/node_modules/is-property/LICENSE +22 -0
  3294. package/day3/backend-project/node_modules/is-property/README.md +28 -0
  3295. package/day3/backend-project/node_modules/is-property/is-property.js +5 -0
  3296. package/day3/backend-project/node_modules/is-property/package.json +36 -0
  3297. package/day3/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  3298. package/day3/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  3299. package/day3/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  3300. package/day3/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  3301. package/day3/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  3302. package/day3/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  3303. package/day3/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  3304. package/day3/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  3305. package/day3/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  3306. package/day3/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  3307. package/day3/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  3308. package/day3/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  3309. package/day3/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  3310. package/day3/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  3311. package/day3/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  3312. package/day3/backend-project/node_modules/jwa/LICENSE +17 -0
  3313. package/day3/backend-project/node_modules/jwa/README.md +150 -0
  3314. package/day3/backend-project/node_modules/jwa/index.js +266 -0
  3315. package/day3/backend-project/node_modules/jwa/opslevel.yml +6 -0
  3316. package/day3/backend-project/node_modules/jwa/package.json +37 -0
  3317. package/day3/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  3318. package/day3/backend-project/node_modules/jws/LICENSE +17 -0
  3319. package/day3/backend-project/node_modules/jws/index.js +22 -0
  3320. package/day3/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  3321. package/day3/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  3322. package/day3/backend-project/node_modules/jws/lib/tostring.js +10 -0
  3323. package/day3/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  3324. package/day3/backend-project/node_modules/jws/opslevel.yml +6 -0
  3325. package/day3/backend-project/node_modules/jws/package.json +34 -0
  3326. package/day3/backend-project/node_modules/jws/readme.md +255 -0
  3327. package/day3/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  3328. package/day3/backend-project/node_modules/lodash.includes/README.md +18 -0
  3329. package/day3/backend-project/node_modules/lodash.includes/index.js +745 -0
  3330. package/day3/backend-project/node_modules/lodash.includes/package.json +17 -0
  3331. package/day3/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  3332. package/day3/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  3333. package/day3/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  3334. package/day3/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  3335. package/day3/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  3336. package/day3/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  3337. package/day3/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  3338. package/day3/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  3339. package/day3/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  3340. package/day3/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  3341. package/day3/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  3342. package/day3/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  3343. package/day3/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  3344. package/day3/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  3345. package/day3/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  3346. package/day3/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  3347. package/day3/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  3348. package/day3/backend-project/node_modules/lodash.isstring/README.md +18 -0
  3349. package/day3/backend-project/node_modules/lodash.isstring/index.js +95 -0
  3350. package/day3/backend-project/node_modules/lodash.isstring/package.json +17 -0
  3351. package/day3/backend-project/node_modules/lodash.once/LICENSE +47 -0
  3352. package/day3/backend-project/node_modules/lodash.once/README.md +18 -0
  3353. package/day3/backend-project/node_modules/lodash.once/index.js +294 -0
  3354. package/day3/backend-project/node_modules/lodash.once/package.json +17 -0
  3355. package/day3/backend-project/node_modules/long/LICENSE +202 -0
  3356. package/day3/backend-project/node_modules/long/README.md +286 -0
  3357. package/day3/backend-project/node_modules/long/index.d.ts +2 -0
  3358. package/day3/backend-project/node_modules/long/index.js +1581 -0
  3359. package/day3/backend-project/node_modules/long/package.json +58 -0
  3360. package/day3/backend-project/node_modules/long/types.d.ts +474 -0
  3361. package/day3/backend-project/node_modules/long/umd/index.d.ts +3 -0
  3362. package/day3/backend-project/node_modules/long/umd/index.js +1622 -0
  3363. package/day3/backend-project/node_modules/long/umd/package.json +3 -0
  3364. package/day3/backend-project/node_modules/long/umd/types.d.ts +474 -0
  3365. package/day3/backend-project/node_modules/lru.min/LICENSE +21 -0
  3366. package/day3/backend-project/node_modules/lru.min/README.md +392 -0
  3367. package/day3/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  3368. package/day3/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  3369. package/day3/backend-project/node_modules/lru.min/lib/index.js +248 -0
  3370. package/day3/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  3371. package/day3/backend-project/node_modules/lru.min/package.json +87 -0
  3372. package/day3/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  3373. package/day3/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  3374. package/day3/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  3375. package/day3/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  3376. package/day3/backend-project/node_modules/math-intrinsics/README.md +50 -0
  3377. package/day3/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  3378. package/day3/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  3379. package/day3/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  3380. package/day3/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  3381. package/day3/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  3382. package/day3/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  3383. package/day3/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  3384. package/day3/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  3385. package/day3/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  3386. package/day3/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  3387. package/day3/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  3388. package/day3/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  3389. package/day3/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  3390. package/day3/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  3391. package/day3/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  3392. package/day3/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  3393. package/day3/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  3394. package/day3/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  3395. package/day3/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  3396. package/day3/backend-project/node_modules/math-intrinsics/max.js +4 -0
  3397. package/day3/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  3398. package/day3/backend-project/node_modules/math-intrinsics/min.js +4 -0
  3399. package/day3/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  3400. package/day3/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  3401. package/day3/backend-project/node_modules/math-intrinsics/package.json +86 -0
  3402. package/day3/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  3403. package/day3/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  3404. package/day3/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  3405. package/day3/backend-project/node_modules/math-intrinsics/round.js +4 -0
  3406. package/day3/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  3407. package/day3/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  3408. package/day3/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  3409. package/day3/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  3410. package/day3/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  3411. package/day3/backend-project/node_modules/media-typer/LICENSE +22 -0
  3412. package/day3/backend-project/node_modules/media-typer/README.md +93 -0
  3413. package/day3/backend-project/node_modules/media-typer/index.js +143 -0
  3414. package/day3/backend-project/node_modules/media-typer/package.json +33 -0
  3415. package/day3/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  3416. package/day3/backend-project/node_modules/merge-descriptors/index.js +26 -0
  3417. package/day3/backend-project/node_modules/merge-descriptors/license +11 -0
  3418. package/day3/backend-project/node_modules/merge-descriptors/package.json +50 -0
  3419. package/day3/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  3420. package/day3/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  3421. package/day3/backend-project/node_modules/mime-db/LICENSE +23 -0
  3422. package/day3/backend-project/node_modules/mime-db/README.md +109 -0
  3423. package/day3/backend-project/node_modules/mime-db/db.json +9342 -0
  3424. package/day3/backend-project/node_modules/mime-db/index.js +12 -0
  3425. package/day3/backend-project/node_modules/mime-db/package.json +56 -0
  3426. package/day3/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  3427. package/day3/backend-project/node_modules/mime-types/LICENSE +23 -0
  3428. package/day3/backend-project/node_modules/mime-types/README.md +126 -0
  3429. package/day3/backend-project/node_modules/mime-types/index.js +211 -0
  3430. package/day3/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  3431. package/day3/backend-project/node_modules/mime-types/package.json +49 -0
  3432. package/day3/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  3433. package/day3/backend-project/node_modules/minimatch/README.md +528 -0
  3434. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  3435. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  3436. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  3437. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  3438. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  3439. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  3440. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  3441. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  3442. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  3443. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  3444. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  3445. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  3446. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  3447. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  3448. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  3449. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  3450. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  3451. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  3452. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  3453. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  3454. package/day3/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  3455. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  3456. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  3457. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  3458. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  3459. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  3460. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  3461. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  3462. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  3463. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  3464. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  3465. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  3466. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  3467. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  3468. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  3469. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  3470. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  3471. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  3472. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  3473. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  3474. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  3475. package/day3/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  3476. package/day3/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  3477. package/day3/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  3478. package/day3/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  3479. package/day3/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  3480. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  3481. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  3482. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  3483. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  3484. package/day3/backend-project/node_modules/minimatch/package.json +73 -0
  3485. package/day3/backend-project/node_modules/ms/index.js +162 -0
  3486. package/day3/backend-project/node_modules/ms/license.md +21 -0
  3487. package/day3/backend-project/node_modules/ms/package.json +38 -0
  3488. package/day3/backend-project/node_modules/ms/readme.md +59 -0
  3489. package/day3/backend-project/node_modules/mysql2/License +19 -0
  3490. package/day3/backend-project/node_modules/mysql2/README.md +114 -0
  3491. package/day3/backend-project/node_modules/mysql2/index.d.ts +1 -0
  3492. package/day3/backend-project/node_modules/mysql2/index.js +77 -0
  3493. package/day3/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  3494. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  3495. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  3496. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  3497. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  3498. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  3499. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  3500. package/day3/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  3501. package/day3/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  3502. package/day3/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  3503. package/day3/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  3504. package/day3/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  3505. package/day3/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  3506. package/day3/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  3507. package/day3/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  3508. package/day3/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  3509. package/day3/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  3510. package/day3/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  3511. package/day3/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  3512. package/day3/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  3513. package/day3/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  3514. package/day3/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  3515. package/day3/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  3516. package/day3/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  3517. package/day3/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  3518. package/day3/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  3519. package/day3/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  3520. package/day3/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  3521. package/day3/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  3522. package/day3/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  3523. package/day3/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  3524. package/day3/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  3525. package/day3/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  3526. package/day3/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  3527. package/day3/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  3528. package/day3/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  3529. package/day3/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  3530. package/day3/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  3531. package/day3/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  3532. package/day3/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  3533. package/day3/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  3534. package/day3/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  3535. package/day3/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  3536. package/day3/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  3537. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  3538. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  3539. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  3540. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  3541. package/day3/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  3542. package/day3/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  3543. package/day3/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  3544. package/day3/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  3545. package/day3/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  3546. package/day3/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  3547. package/day3/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  3548. package/day3/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  3549. package/day3/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  3550. package/day3/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  3551. package/day3/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  3552. package/day3/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  3553. package/day3/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  3554. package/day3/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  3555. package/day3/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  3556. package/day3/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  3557. package/day3/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  3558. package/day3/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  3559. package/day3/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  3560. package/day3/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  3561. package/day3/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  3562. package/day3/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  3563. package/day3/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  3564. package/day3/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  3565. package/day3/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  3566. package/day3/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  3567. package/day3/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  3568. package/day3/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  3569. package/day3/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  3570. package/day3/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  3571. package/day3/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  3572. package/day3/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  3573. package/day3/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  3574. package/day3/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  3575. package/day3/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  3576. package/day3/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  3577. package/day3/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  3578. package/day3/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  3579. package/day3/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  3580. package/day3/backend-project/node_modules/mysql2/lib/server.js +37 -0
  3581. package/day3/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  3582. package/day3/backend-project/node_modules/mysql2/package.json +95 -0
  3583. package/day3/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  3584. package/day3/backend-project/node_modules/mysql2/promise.js +209 -0
  3585. package/day3/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  3586. package/day3/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  3587. package/day3/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  3588. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  3589. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  3590. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  3591. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  3592. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  3593. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  3594. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  3595. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  3596. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  3597. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  3598. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  3599. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  3600. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  3601. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  3602. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  3603. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  3604. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  3605. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  3606. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  3607. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  3608. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  3609. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  3610. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  3611. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  3612. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  3613. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  3614. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  3615. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  3616. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  3617. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  3618. package/day3/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  3619. package/day3/backend-project/node_modules/named-placeholders/README.md +27 -0
  3620. package/day3/backend-project/node_modules/named-placeholders/index.js +179 -0
  3621. package/day3/backend-project/node_modules/named-placeholders/package.json +36 -0
  3622. package/day3/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  3623. package/day3/backend-project/node_modules/negotiator/LICENSE +24 -0
  3624. package/day3/backend-project/node_modules/negotiator/README.md +212 -0
  3625. package/day3/backend-project/node_modules/negotiator/index.js +83 -0
  3626. package/day3/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  3627. package/day3/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  3628. package/day3/backend-project/node_modules/negotiator/lib/language.js +179 -0
  3629. package/day3/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  3630. package/day3/backend-project/node_modules/negotiator/package.json +43 -0
  3631. package/day3/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  3632. package/day3/backend-project/node_modules/nodemon/LICENSE +21 -0
  3633. package/day3/backend-project/node_modules/nodemon/README.md +439 -0
  3634. package/day3/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  3635. package/day3/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  3636. package/day3/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  3637. package/day3/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  3638. package/day3/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  3639. package/day3/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  3640. package/day3/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  3641. package/day3/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  3642. package/day3/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  3643. package/day3/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  3644. package/day3/backend-project/node_modules/nodemon/index.d.ts +124 -0
  3645. package/day3/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  3646. package/day3/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  3647. package/day3/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  3648. package/day3/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  3649. package/day3/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  3650. package/day3/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  3651. package/day3/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  3652. package/day3/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  3653. package/day3/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  3654. package/day3/backend-project/node_modules/nodemon/lib/index.js +1 -0
  3655. package/day3/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  3656. package/day3/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  3657. package/day3/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  3658. package/day3/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  3659. package/day3/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  3660. package/day3/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  3661. package/day3/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  3662. package/day3/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  3663. package/day3/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  3664. package/day3/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  3665. package/day3/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  3666. package/day3/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  3667. package/day3/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  3668. package/day3/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  3669. package/day3/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  3670. package/day3/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  3671. package/day3/backend-project/node_modules/nodemon/lib/version.js +100 -0
  3672. package/day3/backend-project/node_modules/nodemon/package.json +78 -0
  3673. package/day3/backend-project/node_modules/normalize-path/LICENSE +21 -0
  3674. package/day3/backend-project/node_modules/normalize-path/README.md +127 -0
  3675. package/day3/backend-project/node_modules/normalize-path/index.js +35 -0
  3676. package/day3/backend-project/node_modules/normalize-path/package.json +77 -0
  3677. package/day3/backend-project/node_modules/object-assign/index.js +90 -0
  3678. package/day3/backend-project/node_modules/object-assign/license +21 -0
  3679. package/day3/backend-project/node_modules/object-assign/package.json +42 -0
  3680. package/day3/backend-project/node_modules/object-assign/readme.md +61 -0
  3681. package/day3/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  3682. package/day3/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  3683. package/day3/backend-project/node_modules/object-inspect/.nycrc +13 -0
  3684. package/day3/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  3685. package/day3/backend-project/node_modules/object-inspect/LICENSE +21 -0
  3686. package/day3/backend-project/node_modules/object-inspect/example/all.js +23 -0
  3687. package/day3/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  3688. package/day3/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  3689. package/day3/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  3690. package/day3/backend-project/node_modules/object-inspect/index.js +544 -0
  3691. package/day3/backend-project/node_modules/object-inspect/package-support.json +20 -0
  3692. package/day3/backend-project/node_modules/object-inspect/package.json +105 -0
  3693. package/day3/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  3694. package/day3/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  3695. package/day3/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  3696. package/day3/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  3697. package/day3/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  3698. package/day3/backend-project/node_modules/object-inspect/test/element.js +53 -0
  3699. package/day3/backend-project/node_modules/object-inspect/test/err.js +48 -0
  3700. package/day3/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  3701. package/day3/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  3702. package/day3/backend-project/node_modules/object-inspect/test/global.js +17 -0
  3703. package/day3/backend-project/node_modules/object-inspect/test/has.js +15 -0
  3704. package/day3/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  3705. package/day3/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  3706. package/day3/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  3707. package/day3/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  3708. package/day3/backend-project/node_modules/object-inspect/test/number.js +58 -0
  3709. package/day3/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  3710. package/day3/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  3711. package/day3/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  3712. package/day3/backend-project/node_modules/object-inspect/test/values.js +261 -0
  3713. package/day3/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  3714. package/day3/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  3715. package/day3/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  3716. package/day3/backend-project/node_modules/on-finished/LICENSE +23 -0
  3717. package/day3/backend-project/node_modules/on-finished/README.md +162 -0
  3718. package/day3/backend-project/node_modules/on-finished/index.js +234 -0
  3719. package/day3/backend-project/node_modules/on-finished/package.json +39 -0
  3720. package/day3/backend-project/node_modules/once/LICENSE +15 -0
  3721. package/day3/backend-project/node_modules/once/README.md +79 -0
  3722. package/day3/backend-project/node_modules/once/once.js +42 -0
  3723. package/day3/backend-project/node_modules/once/package.json +33 -0
  3724. package/day3/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  3725. package/day3/backend-project/node_modules/parseurl/LICENSE +24 -0
  3726. package/day3/backend-project/node_modules/parseurl/README.md +133 -0
  3727. package/day3/backend-project/node_modules/parseurl/index.js +158 -0
  3728. package/day3/backend-project/node_modules/parseurl/package.json +40 -0
  3729. package/day3/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  3730. package/day3/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  3731. package/day3/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  3732. package/day3/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  3733. package/day3/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  3734. package/day3/backend-project/node_modules/path-to-regexp/package.json +64 -0
  3735. package/day3/backend-project/node_modules/picomatch/LICENSE +21 -0
  3736. package/day3/backend-project/node_modules/picomatch/README.md +716 -0
  3737. package/day3/backend-project/node_modules/picomatch/index.js +3 -0
  3738. package/day3/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  3739. package/day3/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  3740. package/day3/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  3741. package/day3/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  3742. package/day3/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  3743. package/day3/backend-project/node_modules/picomatch/package.json +81 -0
  3744. package/day3/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  3745. package/day3/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  3746. package/day3/backend-project/node_modules/proxy-addr/README.md +139 -0
  3747. package/day3/backend-project/node_modules/proxy-addr/index.js +327 -0
  3748. package/day3/backend-project/node_modules/proxy-addr/package.json +47 -0
  3749. package/day3/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  3750. package/day3/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  3751. package/day3/backend-project/node_modules/pstree.remy/README.md +26 -0
  3752. package/day3/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  3753. package/day3/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  3754. package/day3/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  3755. package/day3/backend-project/node_modules/pstree.remy/package.json +33 -0
  3756. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  3757. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  3758. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  3759. package/day3/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  3760. package/day3/backend-project/node_modules/qs/.editorconfig +46 -0
  3761. package/day3/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  3762. package/day3/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  3763. package/day3/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  3764. package/day3/backend-project/node_modules/qs/.nycrc +13 -0
  3765. package/day3/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  3766. package/day3/backend-project/node_modules/qs/LICENSE.md +29 -0
  3767. package/day3/backend-project/node_modules/qs/README.md +758 -0
  3768. package/day3/backend-project/node_modules/qs/dist/qs.js +141 -0
  3769. package/day3/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  3770. package/day3/backend-project/node_modules/qs/lib/formats.js +23 -0
  3771. package/day3/backend-project/node_modules/qs/lib/index.js +11 -0
  3772. package/day3/backend-project/node_modules/qs/lib/parse.js +403 -0
  3773. package/day3/backend-project/node_modules/qs/lib/stringify.js +363 -0
  3774. package/day3/backend-project/node_modules/qs/lib/utils.js +342 -0
  3775. package/day3/backend-project/node_modules/qs/package.json +94 -0
  3776. package/day3/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  3777. package/day3/backend-project/node_modules/qs/test/parse.js +1703 -0
  3778. package/day3/backend-project/node_modules/qs/test/stringify.js +1448 -0
  3779. package/day3/backend-project/node_modules/qs/test/utils.js +432 -0
  3780. package/day3/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  3781. package/day3/backend-project/node_modules/range-parser/LICENSE +23 -0
  3782. package/day3/backend-project/node_modules/range-parser/README.md +84 -0
  3783. package/day3/backend-project/node_modules/range-parser/index.js +162 -0
  3784. package/day3/backend-project/node_modules/range-parser/package.json +44 -0
  3785. package/day3/backend-project/node_modules/raw-body/LICENSE +22 -0
  3786. package/day3/backend-project/node_modules/raw-body/README.md +223 -0
  3787. package/day3/backend-project/node_modules/raw-body/index.d.ts +85 -0
  3788. package/day3/backend-project/node_modules/raw-body/index.js +336 -0
  3789. package/day3/backend-project/node_modules/raw-body/package.json +46 -0
  3790. package/day3/backend-project/node_modules/readdirp/LICENSE +21 -0
  3791. package/day3/backend-project/node_modules/readdirp/README.md +122 -0
  3792. package/day3/backend-project/node_modules/readdirp/index.d.ts +43 -0
  3793. package/day3/backend-project/node_modules/readdirp/index.js +287 -0
  3794. package/day3/backend-project/node_modules/readdirp/package.json +122 -0
  3795. package/day3/backend-project/node_modules/router/HISTORY.md +228 -0
  3796. package/day3/backend-project/node_modules/router/LICENSE +23 -0
  3797. package/day3/backend-project/node_modules/router/README.md +416 -0
  3798. package/day3/backend-project/node_modules/router/index.js +748 -0
  3799. package/day3/backend-project/node_modules/router/lib/layer.js +247 -0
  3800. package/day3/backend-project/node_modules/router/lib/route.js +242 -0
  3801. package/day3/backend-project/node_modules/router/package.json +44 -0
  3802. package/day3/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  3803. package/day3/backend-project/node_modules/safe-buffer/README.md +584 -0
  3804. package/day3/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  3805. package/day3/backend-project/node_modules/safe-buffer/index.js +65 -0
  3806. package/day3/backend-project/node_modules/safe-buffer/package.json +51 -0
  3807. package/day3/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  3808. package/day3/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  3809. package/day3/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  3810. package/day3/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  3811. package/day3/backend-project/node_modules/safer-buffer/package.json +34 -0
  3812. package/day3/backend-project/node_modules/safer-buffer/safer.js +77 -0
  3813. package/day3/backend-project/node_modules/safer-buffer/tests.js +406 -0
  3814. package/day3/backend-project/node_modules/semver/LICENSE +15 -0
  3815. package/day3/backend-project/node_modules/semver/README.md +680 -0
  3816. package/day3/backend-project/node_modules/semver/bin/semver.js +195 -0
  3817. package/day3/backend-project/node_modules/semver/classes/comparator.js +143 -0
  3818. package/day3/backend-project/node_modules/semver/classes/index.js +7 -0
  3819. package/day3/backend-project/node_modules/semver/classes/range.js +564 -0
  3820. package/day3/backend-project/node_modules/semver/classes/semver.js +333 -0
  3821. package/day3/backend-project/node_modules/semver/functions/clean.js +8 -0
  3822. package/day3/backend-project/node_modules/semver/functions/cmp.js +54 -0
  3823. package/day3/backend-project/node_modules/semver/functions/coerce.js +62 -0
  3824. package/day3/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  3825. package/day3/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  3826. package/day3/backend-project/node_modules/semver/functions/compare.js +7 -0
  3827. package/day3/backend-project/node_modules/semver/functions/diff.js +60 -0
  3828. package/day3/backend-project/node_modules/semver/functions/eq.js +5 -0
  3829. package/day3/backend-project/node_modules/semver/functions/gt.js +5 -0
  3830. package/day3/backend-project/node_modules/semver/functions/gte.js +5 -0
  3831. package/day3/backend-project/node_modules/semver/functions/inc.js +21 -0
  3832. package/day3/backend-project/node_modules/semver/functions/lt.js +5 -0
  3833. package/day3/backend-project/node_modules/semver/functions/lte.js +5 -0
  3834. package/day3/backend-project/node_modules/semver/functions/major.js +5 -0
  3835. package/day3/backend-project/node_modules/semver/functions/minor.js +5 -0
  3836. package/day3/backend-project/node_modules/semver/functions/neq.js +5 -0
  3837. package/day3/backend-project/node_modules/semver/functions/parse.js +18 -0
  3838. package/day3/backend-project/node_modules/semver/functions/patch.js +5 -0
  3839. package/day3/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  3840. package/day3/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  3841. package/day3/backend-project/node_modules/semver/functions/rsort.js +5 -0
  3842. package/day3/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  3843. package/day3/backend-project/node_modules/semver/functions/sort.js +5 -0
  3844. package/day3/backend-project/node_modules/semver/functions/truncate.js +48 -0
  3845. package/day3/backend-project/node_modules/semver/functions/valid.js +8 -0
  3846. package/day3/backend-project/node_modules/semver/index.js +93 -0
  3847. package/day3/backend-project/node_modules/semver/internal/constants.js +37 -0
  3848. package/day3/backend-project/node_modules/semver/internal/debug.js +11 -0
  3849. package/day3/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  3850. package/day3/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  3851. package/day3/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  3852. package/day3/backend-project/node_modules/semver/internal/re.js +223 -0
  3853. package/day3/backend-project/node_modules/semver/package.json +78 -0
  3854. package/day3/backend-project/node_modules/semver/preload.js +4 -0
  3855. package/day3/backend-project/node_modules/semver/range.bnf +17 -0
  3856. package/day3/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  3857. package/day3/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  3858. package/day3/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  3859. package/day3/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  3860. package/day3/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  3861. package/day3/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  3862. package/day3/backend-project/node_modules/semver/ranges/outside.js +82 -0
  3863. package/day3/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  3864. package/day3/backend-project/node_modules/semver/ranges/subset.js +249 -0
  3865. package/day3/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  3866. package/day3/backend-project/node_modules/semver/ranges/valid.js +13 -0
  3867. package/day3/backend-project/node_modules/send/LICENSE +23 -0
  3868. package/day3/backend-project/node_modules/send/README.md +317 -0
  3869. package/day3/backend-project/node_modules/send/index.js +997 -0
  3870. package/day3/backend-project/node_modules/send/package.json +63 -0
  3871. package/day3/backend-project/node_modules/serve-static/LICENSE +25 -0
  3872. package/day3/backend-project/node_modules/serve-static/README.md +253 -0
  3873. package/day3/backend-project/node_modules/serve-static/index.js +208 -0
  3874. package/day3/backend-project/node_modules/serve-static/package.json +44 -0
  3875. package/day3/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  3876. package/day3/backend-project/node_modules/setprototypeof/README.md +31 -0
  3877. package/day3/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  3878. package/day3/backend-project/node_modules/setprototypeof/index.js +17 -0
  3879. package/day3/backend-project/node_modules/setprototypeof/package.json +38 -0
  3880. package/day3/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  3881. package/day3/backend-project/node_modules/side-channel/.editorconfig +9 -0
  3882. package/day3/backend-project/node_modules/side-channel/.eslintrc +12 -0
  3883. package/day3/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  3884. package/day3/backend-project/node_modules/side-channel/.nycrc +13 -0
  3885. package/day3/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  3886. package/day3/backend-project/node_modules/side-channel/LICENSE +21 -0
  3887. package/day3/backend-project/node_modules/side-channel/README.md +61 -0
  3888. package/day3/backend-project/node_modules/side-channel/index.d.ts +14 -0
  3889. package/day3/backend-project/node_modules/side-channel/index.js +43 -0
  3890. package/day3/backend-project/node_modules/side-channel/package.json +85 -0
  3891. package/day3/backend-project/node_modules/side-channel/test/index.js +104 -0
  3892. package/day3/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  3893. package/day3/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  3894. package/day3/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  3895. package/day3/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  3896. package/day3/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  3897. package/day3/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  3898. package/day3/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  3899. package/day3/backend-project/node_modules/side-channel-list/README.md +62 -0
  3900. package/day3/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  3901. package/day3/backend-project/node_modules/side-channel-list/index.js +111 -0
  3902. package/day3/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  3903. package/day3/backend-project/node_modules/side-channel-list/package.json +77 -0
  3904. package/day3/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  3905. package/day3/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  3906. package/day3/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  3907. package/day3/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  3908. package/day3/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  3909. package/day3/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  3910. package/day3/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  3911. package/day3/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  3912. package/day3/backend-project/node_modules/side-channel-map/README.md +62 -0
  3913. package/day3/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  3914. package/day3/backend-project/node_modules/side-channel-map/index.js +68 -0
  3915. package/day3/backend-project/node_modules/side-channel-map/package.json +80 -0
  3916. package/day3/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  3917. package/day3/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  3918. package/day3/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  3919. package/day3/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  3920. package/day3/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  3921. package/day3/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  3922. package/day3/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  3923. package/day3/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  3924. package/day3/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  3925. package/day3/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  3926. package/day3/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  3927. package/day3/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  3928. package/day3/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  3929. package/day3/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  3930. package/day3/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  3931. package/day3/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  3932. package/day3/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  3933. package/day3/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  3934. package/day3/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  3935. package/day3/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  3936. package/day3/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  3937. package/day3/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  3938. package/day3/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  3939. package/day3/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  3940. package/day3/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  3941. package/day3/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  3942. package/day3/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  3943. package/day3/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  3944. package/day3/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  3945. package/day3/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  3946. package/day3/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  3947. package/day3/backend-project/node_modules/sql-escaper/README.md +424 -0
  3948. package/day3/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  3949. package/day3/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  3950. package/day3/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  3951. package/day3/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  3952. package/day3/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  3953. package/day3/backend-project/node_modules/sql-escaper/package.json +81 -0
  3954. package/day3/backend-project/node_modules/statuses/HISTORY.md +87 -0
  3955. package/day3/backend-project/node_modules/statuses/LICENSE +23 -0
  3956. package/day3/backend-project/node_modules/statuses/README.md +139 -0
  3957. package/day3/backend-project/node_modules/statuses/codes.json +65 -0
  3958. package/day3/backend-project/node_modules/statuses/index.js +146 -0
  3959. package/day3/backend-project/node_modules/statuses/package.json +49 -0
  3960. package/day3/backend-project/node_modules/supports-color/browser.js +5 -0
  3961. package/day3/backend-project/node_modules/supports-color/index.js +131 -0
  3962. package/day3/backend-project/node_modules/supports-color/license +9 -0
  3963. package/day3/backend-project/node_modules/supports-color/package.json +53 -0
  3964. package/day3/backend-project/node_modules/supports-color/readme.md +66 -0
  3965. package/day3/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  3966. package/day3/backend-project/node_modules/to-regex-range/README.md +305 -0
  3967. package/day3/backend-project/node_modules/to-regex-range/index.js +288 -0
  3968. package/day3/backend-project/node_modules/to-regex-range/package.json +88 -0
  3969. package/day3/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  3970. package/day3/backend-project/node_modules/toidentifier/LICENSE +21 -0
  3971. package/day3/backend-project/node_modules/toidentifier/README.md +61 -0
  3972. package/day3/backend-project/node_modules/toidentifier/index.js +32 -0
  3973. package/day3/backend-project/node_modules/toidentifier/package.json +38 -0
  3974. package/day3/backend-project/node_modules/touch/LICENSE +15 -0
  3975. package/day3/backend-project/node_modules/touch/README.md +52 -0
  3976. package/day3/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  3977. package/day3/backend-project/node_modules/touch/index.js +224 -0
  3978. package/day3/backend-project/node_modules/touch/package.json +25 -0
  3979. package/day3/backend-project/node_modules/type-is/HISTORY.md +292 -0
  3980. package/day3/backend-project/node_modules/type-is/LICENSE +23 -0
  3981. package/day3/backend-project/node_modules/type-is/README.md +198 -0
  3982. package/day3/backend-project/node_modules/type-is/index.js +240 -0
  3983. package/day3/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  3984. package/day3/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  3985. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  3986. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  3987. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  3988. package/day3/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  3989. package/day3/backend-project/node_modules/type-is/package.json +51 -0
  3990. package/day3/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  3991. package/day3/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  3992. package/day3/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  3993. package/day3/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  3994. package/day3/backend-project/node_modules/undefsafe/LICENSE +22 -0
  3995. package/day3/backend-project/node_modules/undefsafe/README.md +63 -0
  3996. package/day3/backend-project/node_modules/undefsafe/example.js +14 -0
  3997. package/day3/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  3998. package/day3/backend-project/node_modules/undefsafe/package.json +34 -0
  3999. package/day3/backend-project/node_modules/undici-types/LICENSE +21 -0
  4000. package/day3/backend-project/node_modules/undici-types/README.md +6 -0
  4001. package/day3/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  4002. package/day3/backend-project/node_modules/undici-types/api.d.ts +43 -0
  4003. package/day3/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  4004. package/day3/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  4005. package/day3/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  4006. package/day3/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  4007. package/day3/backend-project/node_modules/undici-types/client.d.ts +123 -0
  4008. package/day3/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  4009. package/day3/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  4010. package/day3/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  4011. package/day3/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  4012. package/day3/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  4013. package/day3/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  4014. package/day3/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  4015. package/day3/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  4016. package/day3/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  4017. package/day3/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  4018. package/day3/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  4019. package/day3/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  4020. package/day3/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  4021. package/day3/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  4022. package/day3/backend-project/node_modules/undici-types/header.d.ts +160 -0
  4023. package/day3/backend-project/node_modules/undici-types/index.d.ts +91 -0
  4024. package/day3/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  4025. package/day3/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  4026. package/day3/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  4027. package/day3/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  4028. package/day3/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  4029. package/day3/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  4030. package/day3/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  4031. package/day3/backend-project/node_modules/undici-types/package.json +55 -0
  4032. package/day3/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  4033. package/day3/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  4034. package/day3/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  4035. package/day3/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  4036. package/day3/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  4037. package/day3/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  4038. package/day3/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  4039. package/day3/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  4040. package/day3/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  4041. package/day3/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  4042. package/day3/backend-project/node_modules/undici-types/util.d.ts +18 -0
  4043. package/day3/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  4044. package/day3/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  4045. package/day3/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  4046. package/day3/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  4047. package/day3/backend-project/node_modules/unpipe/LICENSE +22 -0
  4048. package/day3/backend-project/node_modules/unpipe/README.md +43 -0
  4049. package/day3/backend-project/node_modules/unpipe/index.js +69 -0
  4050. package/day3/backend-project/node_modules/unpipe/package.json +27 -0
  4051. package/day3/backend-project/node_modules/vary/HISTORY.md +39 -0
  4052. package/day3/backend-project/node_modules/vary/LICENSE +22 -0
  4053. package/day3/backend-project/node_modules/vary/README.md +101 -0
  4054. package/day3/backend-project/node_modules/vary/index.js +149 -0
  4055. package/day3/backend-project/node_modules/vary/package.json +43 -0
  4056. package/day3/backend-project/node_modules/wrappy/LICENSE +15 -0
  4057. package/day3/backend-project/node_modules/wrappy/README.md +36 -0
  4058. package/day3/backend-project/node_modules/wrappy/package.json +29 -0
  4059. package/day3/backend-project/node_modules/wrappy/wrappy.js +33 -0
  4060. package/day3/backend-project/package-lock.json +1458 -0
  4061. package/day3/backend-project/package.json +23 -0
  4062. package/day3/backend-project/src/server.js +15 -0
  4063. package/day3/frontend-backend/README.md +18 -0
  4064. package/day3/frontend-backend/eslint.config.js +21 -0
  4065. package/day3/frontend-backend/index.html +13 -0
  4066. package/day3/frontend-backend/package-lock.json +2722 -0
  4067. package/day3/frontend-backend/package.json +32 -0
  4068. package/day3/frontend-backend/public/favicon.svg +1 -0
  4069. package/day3/frontend-backend/public/icons.svg +24 -0
  4070. package/day3/frontend-backend/src/App.css +184 -0
  4071. package/day3/frontend-backend/src/App.jsx +50 -0
  4072. package/day3/frontend-backend/src/assets/hero.png +0 -0
  4073. package/day3/frontend-backend/src/assets/react.svg +1 -0
  4074. package/day3/frontend-backend/src/assets/vite.svg +1 -0
  4075. package/day3/frontend-backend/src/index.css +1 -0
  4076. package/day3/frontend-backend/src/main.jsx +10 -0
  4077. package/day3/frontend-backend/vite.config.js +12 -0
  4078. package/package.json +13 -0
@@ -0,0 +1,1159 @@
1
+ /*
2
+ Copyright (c) 2012 Nevins Bartolomeo <nevins.bartolomeo@gmail.com>
3
+ Copyright (c) 2012 Shane Girish <shaneGirish@gmail.com>
4
+ Copyright (c) 2025 Daniel Wirtz <dcode@dcode.io>
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions
8
+ are met:
9
+ 1. Redistributions of source code must retain the above copyright
10
+ notice, this list of conditions and the following disclaimer.
11
+ 2. Redistributions in binary form must reproduce the above copyright
12
+ notice, this list of conditions and the following disclaimer in the
13
+ documentation and/or other materials provided with the distribution.
14
+ 3. The name of the author may not be used to endorse or promote products
15
+ derived from this software without specific prior written permission.
16
+
17
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ */
28
+
29
+ // The Node.js crypto module is used as a fallback for the Web Crypto API. When
30
+ // building for the browser, inclusion of the crypto module should be disabled,
31
+ // which the package hints at in its package.json for bundlers that support it.
32
+ import nodeCrypto from "crypto";
33
+
34
+ /**
35
+ * The random implementation to use as a fallback.
36
+ * @type {?function(number):!Array.<number>}
37
+ * @inner
38
+ */
39
+ var randomFallback = null;
40
+
41
+ /**
42
+ * Generates cryptographically secure random bytes.
43
+ * @function
44
+ * @param {number} len Bytes length
45
+ * @returns {!Array.<number>} Random bytes
46
+ * @throws {Error} If no random implementation is available
47
+ * @inner
48
+ */
49
+ function randomBytes(len) {
50
+ // Web Crypto API. Globally available in the browser and in Node.js >=23.
51
+ try {
52
+ return crypto.getRandomValues(new Uint8Array(len));
53
+ } catch {}
54
+ // Node.js crypto module for non-browser environments.
55
+ try {
56
+ return nodeCrypto.randomBytes(len);
57
+ } catch {}
58
+ // Custom fallback specified with `setRandomFallback`.
59
+ if (!randomFallback) {
60
+ throw Error(
61
+ "Neither WebCryptoAPI nor a crypto module is available. Use bcrypt.setRandomFallback to set an alternative",
62
+ );
63
+ }
64
+ return randomFallback(len);
65
+ }
66
+
67
+ /**
68
+ * Sets the pseudo random number generator to use as a fallback if neither node's `crypto` module nor the Web Crypto
69
+ * API is available. Please note: It is highly important that the PRNG used is cryptographically secure and that it
70
+ * is seeded properly!
71
+ * @param {?function(number):!Array.<number>} random Function taking the number of bytes to generate as its
72
+ * sole argument, returning the corresponding array of cryptographically secure random byte values.
73
+ * @see http://nodejs.org/api/crypto.html
74
+ * @see http://www.w3.org/TR/WebCryptoAPI/
75
+ */
76
+ export function setRandomFallback(random) {
77
+ randomFallback = random;
78
+ }
79
+
80
+ /**
81
+ * Synchronously generates a salt.
82
+ * @param {number=} rounds Number of rounds to use, defaults to 10 if omitted
83
+ * @param {number=} seed_length Not supported.
84
+ * @returns {string} Resulting salt
85
+ * @throws {Error} If a random fallback is required but not set
86
+ */
87
+ export function genSaltSync(rounds, seed_length) {
88
+ rounds = rounds || GENSALT_DEFAULT_LOG2_ROUNDS;
89
+ if (typeof rounds !== "number")
90
+ throw Error(
91
+ "Illegal arguments: " + typeof rounds + ", " + typeof seed_length,
92
+ );
93
+ if (rounds < 4) rounds = 4;
94
+ else if (rounds > 31) rounds = 31;
95
+ var salt = [];
96
+ salt.push("$2b$");
97
+ if (rounds < 10) salt.push("0");
98
+ salt.push(rounds.toString());
99
+ salt.push("$");
100
+ salt.push(base64_encode(randomBytes(BCRYPT_SALT_LEN), BCRYPT_SALT_LEN)); // May throw
101
+ return salt.join("");
102
+ }
103
+
104
+ /**
105
+ * Asynchronously generates a salt.
106
+ * @param {(number|function(Error, string=))=} rounds Number of rounds to use, defaults to 10 if omitted
107
+ * @param {(number|function(Error, string=))=} seed_length Not supported.
108
+ * @param {function(Error, string=)=} callback Callback receiving the error, if any, and the resulting salt
109
+ * @returns {!Promise} If `callback` has been omitted
110
+ * @throws {Error} If `callback` is present but not a function
111
+ */
112
+ export function genSalt(rounds, seed_length, callback) {
113
+ if (typeof seed_length === "function")
114
+ (callback = seed_length), (seed_length = undefined); // Not supported.
115
+ if (typeof rounds === "function") (callback = rounds), (rounds = undefined);
116
+ if (typeof rounds === "undefined") rounds = GENSALT_DEFAULT_LOG2_ROUNDS;
117
+ else if (typeof rounds !== "number")
118
+ throw Error("illegal arguments: " + typeof rounds);
119
+
120
+ function _async(callback) {
121
+ nextTick(function () {
122
+ // Pretty thin, but salting is fast enough
123
+ try {
124
+ callback(null, genSaltSync(rounds));
125
+ } catch (err) {
126
+ callback(err);
127
+ }
128
+ });
129
+ }
130
+
131
+ if (callback) {
132
+ if (typeof callback !== "function")
133
+ throw Error("Illegal callback: " + typeof callback);
134
+ _async(callback);
135
+ } else
136
+ return new Promise(function (resolve, reject) {
137
+ _async(function (err, res) {
138
+ if (err) {
139
+ reject(err);
140
+ return;
141
+ }
142
+ resolve(res);
143
+ });
144
+ });
145
+ }
146
+
147
+ /**
148
+ * Synchronously generates a hash for the given password.
149
+ * @param {string} password Password to hash
150
+ * @param {(number|string)=} salt Salt length to generate or salt to use, default to 10
151
+ * @returns {string} Resulting hash
152
+ */
153
+ export function hashSync(password, salt) {
154
+ if (typeof salt === "undefined") salt = GENSALT_DEFAULT_LOG2_ROUNDS;
155
+ if (typeof salt === "number") salt = genSaltSync(salt);
156
+ if (typeof password !== "string" || typeof salt !== "string")
157
+ throw Error("Illegal arguments: " + typeof password + ", " + typeof salt);
158
+ return _hash(password, salt);
159
+ }
160
+
161
+ /**
162
+ * Asynchronously generates a hash for the given password.
163
+ * @param {string} password Password to hash
164
+ * @param {number|string} salt Salt length to generate or salt to use
165
+ * @param {function(Error, string=)=} callback Callback receiving the error, if any, and the resulting hash
166
+ * @param {function(number)=} progressCallback Callback successively called with the percentage of rounds completed
167
+ * (0.0 - 1.0), maximally once per `MAX_EXECUTION_TIME = 100` ms.
168
+ * @returns {!Promise} If `callback` has been omitted
169
+ * @throws {Error} If `callback` is present but not a function
170
+ */
171
+ export function hash(password, salt, callback, progressCallback) {
172
+ function _async(callback) {
173
+ if (typeof password === "string" && typeof salt === "number")
174
+ genSalt(salt, function (err, salt) {
175
+ _hash(password, salt, callback, progressCallback);
176
+ });
177
+ else if (typeof password === "string" && typeof salt === "string")
178
+ _hash(password, salt, callback, progressCallback);
179
+ else
180
+ nextTick(
181
+ callback.bind(
182
+ this,
183
+ Error("Illegal arguments: " + typeof password + ", " + typeof salt),
184
+ ),
185
+ );
186
+ }
187
+
188
+ if (callback) {
189
+ if (typeof callback !== "function")
190
+ throw Error("Illegal callback: " + typeof callback);
191
+ _async(callback);
192
+ } else
193
+ return new Promise(function (resolve, reject) {
194
+ _async(function (err, res) {
195
+ if (err) {
196
+ reject(err);
197
+ return;
198
+ }
199
+ resolve(res);
200
+ });
201
+ });
202
+ }
203
+
204
+ /**
205
+ * Compares two strings of the same length in constant time.
206
+ * @param {string} known Must be of the correct length
207
+ * @param {string} unknown Must be the same length as `known`
208
+ * @returns {boolean}
209
+ * @inner
210
+ */
211
+ function safeStringCompare(known, unknown) {
212
+ var diff = known.length ^ unknown.length;
213
+ for (var i = 0; i < known.length; ++i) {
214
+ diff |= known.charCodeAt(i) ^ unknown.charCodeAt(i);
215
+ }
216
+ return diff === 0;
217
+ }
218
+
219
+ /**
220
+ * Synchronously tests a password against a hash.
221
+ * @param {string} password Password to compare
222
+ * @param {string} hash Hash to test against
223
+ * @returns {boolean} true if matching, otherwise false
224
+ * @throws {Error} If an argument is illegal
225
+ */
226
+ export function compareSync(password, hash) {
227
+ if (typeof password !== "string" || typeof hash !== "string")
228
+ throw Error("Illegal arguments: " + typeof password + ", " + typeof hash);
229
+ if (hash.length !== 60) return false;
230
+ return safeStringCompare(
231
+ hashSync(password, hash.substring(0, hash.length - 31)),
232
+ hash,
233
+ );
234
+ }
235
+
236
+ /**
237
+ * Asynchronously tests a password against a hash.
238
+ * @param {string} password Password to compare
239
+ * @param {string} hashValue Hash to test against
240
+ * @param {function(Error, boolean)=} callback Callback receiving the error, if any, otherwise the result
241
+ * @param {function(number)=} progressCallback Callback successively called with the percentage of rounds completed
242
+ * (0.0 - 1.0), maximally once per `MAX_EXECUTION_TIME = 100` ms.
243
+ * @returns {!Promise} If `callback` has been omitted
244
+ * @throws {Error} If `callback` is present but not a function
245
+ */
246
+ export function compare(password, hashValue, callback, progressCallback) {
247
+ function _async(callback) {
248
+ if (typeof password !== "string" || typeof hashValue !== "string") {
249
+ nextTick(
250
+ callback.bind(
251
+ this,
252
+ Error(
253
+ "Illegal arguments: " + typeof password + ", " + typeof hashValue,
254
+ ),
255
+ ),
256
+ );
257
+ return;
258
+ }
259
+ if (hashValue.length !== 60) {
260
+ nextTick(callback.bind(this, null, false));
261
+ return;
262
+ }
263
+ hash(
264
+ password,
265
+ hashValue.substring(0, 29),
266
+ function (err, comp) {
267
+ if (err) callback(err);
268
+ else callback(null, safeStringCompare(comp, hashValue));
269
+ },
270
+ progressCallback,
271
+ );
272
+ }
273
+
274
+ if (callback) {
275
+ if (typeof callback !== "function")
276
+ throw Error("Illegal callback: " + typeof callback);
277
+ _async(callback);
278
+ } else
279
+ return new Promise(function (resolve, reject) {
280
+ _async(function (err, res) {
281
+ if (err) {
282
+ reject(err);
283
+ return;
284
+ }
285
+ resolve(res);
286
+ });
287
+ });
288
+ }
289
+
290
+ /**
291
+ * Gets the number of rounds used to encrypt the specified hash.
292
+ * @param {string} hash Hash to extract the used number of rounds from
293
+ * @returns {number} Number of rounds used
294
+ * @throws {Error} If `hash` is not a string
295
+ */
296
+ export function getRounds(hash) {
297
+ if (typeof hash !== "string")
298
+ throw Error("Illegal arguments: " + typeof hash);
299
+ return parseInt(hash.split("$")[2], 10);
300
+ }
301
+
302
+ /**
303
+ * Gets the salt portion from a hash. Does not validate the hash.
304
+ * @param {string} hash Hash to extract the salt from
305
+ * @returns {string} Extracted salt part
306
+ * @throws {Error} If `hash` is not a string or otherwise invalid
307
+ */
308
+ export function getSalt(hash) {
309
+ if (typeof hash !== "string")
310
+ throw Error("Illegal arguments: " + typeof hash);
311
+ if (hash.length !== 60)
312
+ throw Error("Illegal hash length: " + hash.length + " != 60");
313
+ return hash.substring(0, 29);
314
+ }
315
+
316
+ /**
317
+ * Tests if a password will be truncated when hashed, that is its length is
318
+ * greater than 72 bytes when converted to UTF-8.
319
+ * @param {string} password The password to test
320
+ * @returns {boolean} `true` if truncated, otherwise `false`
321
+ */
322
+ export function truncates(password) {
323
+ if (typeof password !== "string")
324
+ throw Error("Illegal arguments: " + typeof password);
325
+ return utf8Length(password) > 72;
326
+ }
327
+
328
+ /**
329
+ * Continues with the callback after yielding to the event loop.
330
+ * @function
331
+ * @param {function(...[*])} callback Callback to execute
332
+ * @inner
333
+ */
334
+ var nextTick =
335
+ typeof setImmediate === "function"
336
+ ? setImmediate
337
+ : typeof scheduler === "object" && typeof scheduler.postTask === "function"
338
+ ? scheduler.postTask.bind(scheduler)
339
+ : setTimeout;
340
+
341
+ /** Calculates the byte length of a string encoded as UTF8. */
342
+ function utf8Length(string) {
343
+ var len = 0,
344
+ c = 0;
345
+ for (var i = 0; i < string.length; ++i) {
346
+ c = string.charCodeAt(i);
347
+ if (c < 128) len += 1;
348
+ else if (c < 2048) len += 2;
349
+ else if (
350
+ (c & 0xfc00) === 0xd800 &&
351
+ (string.charCodeAt(i + 1) & 0xfc00) === 0xdc00
352
+ ) {
353
+ ++i;
354
+ len += 4;
355
+ } else len += 3;
356
+ }
357
+ return len;
358
+ }
359
+
360
+ /** Converts a string to an array of UTF8 bytes. */
361
+ function utf8Array(string) {
362
+ var offset = 0,
363
+ c1,
364
+ c2;
365
+ var buffer = new Array(utf8Length(string));
366
+ for (var i = 0, k = string.length; i < k; ++i) {
367
+ c1 = string.charCodeAt(i);
368
+ if (c1 < 128) {
369
+ buffer[offset++] = c1;
370
+ } else if (c1 < 2048) {
371
+ buffer[offset++] = (c1 >> 6) | 192;
372
+ buffer[offset++] = (c1 & 63) | 128;
373
+ } else if (
374
+ (c1 & 0xfc00) === 0xd800 &&
375
+ ((c2 = string.charCodeAt(i + 1)) & 0xfc00) === 0xdc00
376
+ ) {
377
+ c1 = 0x10000 + ((c1 & 0x03ff) << 10) + (c2 & 0x03ff);
378
+ ++i;
379
+ buffer[offset++] = (c1 >> 18) | 240;
380
+ buffer[offset++] = ((c1 >> 12) & 63) | 128;
381
+ buffer[offset++] = ((c1 >> 6) & 63) | 128;
382
+ buffer[offset++] = (c1 & 63) | 128;
383
+ } else {
384
+ buffer[offset++] = (c1 >> 12) | 224;
385
+ buffer[offset++] = ((c1 >> 6) & 63) | 128;
386
+ buffer[offset++] = (c1 & 63) | 128;
387
+ }
388
+ }
389
+ return buffer;
390
+ }
391
+
392
+ // A base64 implementation for the bcrypt algorithm. This is partly non-standard.
393
+
394
+ /**
395
+ * bcrypt's own non-standard base64 dictionary.
396
+ * @type {!Array.<string>}
397
+ * @const
398
+ * @inner
399
+ **/
400
+ var BASE64_CODE =
401
+ "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split("");
402
+
403
+ /**
404
+ * @type {!Array.<number>}
405
+ * @const
406
+ * @inner
407
+ **/
408
+ var BASE64_INDEX = [
409
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
410
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
411
+ -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
412
+ -1, -1, -1, -1, -1, -1, -1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
413
+ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, 28,
414
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
415
+ 48, 49, 50, 51, 52, 53, -1, -1, -1, -1, -1,
416
+ ];
417
+
418
+ /**
419
+ * Encodes a byte array to base64 with up to len bytes of input.
420
+ * @param {!Array.<number>} b Byte array
421
+ * @param {number} len Maximum input length
422
+ * @returns {string}
423
+ * @inner
424
+ */
425
+ function base64_encode(b, len) {
426
+ var off = 0,
427
+ rs = [],
428
+ c1,
429
+ c2;
430
+ if (len <= 0 || len > b.length) throw Error("Illegal len: " + len);
431
+ while (off < len) {
432
+ c1 = b[off++] & 0xff;
433
+ rs.push(BASE64_CODE[(c1 >> 2) & 0x3f]);
434
+ c1 = (c1 & 0x03) << 4;
435
+ if (off >= len) {
436
+ rs.push(BASE64_CODE[c1 & 0x3f]);
437
+ break;
438
+ }
439
+ c2 = b[off++] & 0xff;
440
+ c1 |= (c2 >> 4) & 0x0f;
441
+ rs.push(BASE64_CODE[c1 & 0x3f]);
442
+ c1 = (c2 & 0x0f) << 2;
443
+ if (off >= len) {
444
+ rs.push(BASE64_CODE[c1 & 0x3f]);
445
+ break;
446
+ }
447
+ c2 = b[off++] & 0xff;
448
+ c1 |= (c2 >> 6) & 0x03;
449
+ rs.push(BASE64_CODE[c1 & 0x3f]);
450
+ rs.push(BASE64_CODE[c2 & 0x3f]);
451
+ }
452
+ return rs.join("");
453
+ }
454
+
455
+ /**
456
+ * Decodes a base64 encoded string to up to len bytes of output.
457
+ * @param {string} s String to decode
458
+ * @param {number} len Maximum output length
459
+ * @returns {!Array.<number>}
460
+ * @inner
461
+ */
462
+ function base64_decode(s, len) {
463
+ var off = 0,
464
+ slen = s.length,
465
+ olen = 0,
466
+ rs = [],
467
+ c1,
468
+ c2,
469
+ c3,
470
+ c4,
471
+ o,
472
+ code;
473
+ if (len <= 0) throw Error("Illegal len: " + len);
474
+ while (off < slen - 1 && olen < len) {
475
+ code = s.charCodeAt(off++);
476
+ c1 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1;
477
+ code = s.charCodeAt(off++);
478
+ c2 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1;
479
+ if (c1 == -1 || c2 == -1) break;
480
+ o = (c1 << 2) >>> 0;
481
+ o |= (c2 & 0x30) >> 4;
482
+ rs.push(String.fromCharCode(o));
483
+ if (++olen >= len || off >= slen) break;
484
+ code = s.charCodeAt(off++);
485
+ c3 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1;
486
+ if (c3 == -1) break;
487
+ o = ((c2 & 0x0f) << 4) >>> 0;
488
+ o |= (c3 & 0x3c) >> 2;
489
+ rs.push(String.fromCharCode(o));
490
+ if (++olen >= len || off >= slen) break;
491
+ code = s.charCodeAt(off++);
492
+ c4 = code < BASE64_INDEX.length ? BASE64_INDEX[code] : -1;
493
+ o = ((c3 & 0x03) << 6) >>> 0;
494
+ o |= c4;
495
+ rs.push(String.fromCharCode(o));
496
+ ++olen;
497
+ }
498
+ var res = [];
499
+ for (off = 0; off < olen; off++) res.push(rs[off].charCodeAt(0));
500
+ return res;
501
+ }
502
+
503
+ /**
504
+ * @type {number}
505
+ * @const
506
+ * @inner
507
+ */
508
+ var BCRYPT_SALT_LEN = 16;
509
+
510
+ /**
511
+ * @type {number}
512
+ * @const
513
+ * @inner
514
+ */
515
+ var GENSALT_DEFAULT_LOG2_ROUNDS = 10;
516
+
517
+ /**
518
+ * @type {number}
519
+ * @const
520
+ * @inner
521
+ */
522
+ var BLOWFISH_NUM_ROUNDS = 16;
523
+
524
+ /**
525
+ * @type {number}
526
+ * @const
527
+ * @inner
528
+ */
529
+ var MAX_EXECUTION_TIME = 100;
530
+
531
+ /**
532
+ * @type {Array.<number>}
533
+ * @const
534
+ * @inner
535
+ */
536
+ var P_ORIG = [
537
+ 0x243f6a88, 0x85a308d3, 0x13198a2e, 0x03707344, 0xa4093822, 0x299f31d0,
538
+ 0x082efa98, 0xec4e6c89, 0x452821e6, 0x38d01377, 0xbe5466cf, 0x34e90c6c,
539
+ 0xc0ac29b7, 0xc97c50dd, 0x3f84d5b5, 0xb5470917, 0x9216d5d9, 0x8979fb1b,
540
+ ];
541
+
542
+ /**
543
+ * @type {Array.<number>}
544
+ * @const
545
+ * @inner
546
+ */
547
+ var S_ORIG = [
548
+ 0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e96,
549
+ 0xba7c9045, 0xf12c7f99, 0x24a19947, 0xb3916cf7, 0x0801f2e2, 0x858efc16,
550
+ 0x636920d8, 0x71574e69, 0xa458fea3, 0xf4933d7e, 0x0d95748f, 0x728eb658,
551
+ 0x718bcd58, 0x82154aee, 0x7b54a41d, 0xc25a59b5, 0x9c30d539, 0x2af26013,
552
+ 0xc5d1b023, 0x286085f0, 0xca417918, 0xb8db38ef, 0x8e79dcb0, 0x603a180e,
553
+ 0x6c9e0e8b, 0xb01e8a3e, 0xd71577c1, 0xbd314b27, 0x78af2fda, 0x55605c60,
554
+ 0xe65525f3, 0xaa55ab94, 0x57489862, 0x63e81440, 0x55ca396a, 0x2aab10b6,
555
+ 0xb4cc5c34, 0x1141e8ce, 0xa15486af, 0x7c72e993, 0xb3ee1411, 0x636fbc2a,
556
+ 0x2ba9c55d, 0x741831f6, 0xce5c3e16, 0x9b87931e, 0xafd6ba33, 0x6c24cf5c,
557
+ 0x7a325381, 0x28958677, 0x3b8f4898, 0x6b4bb9af, 0xc4bfe81b, 0x66282193,
558
+ 0x61d809cc, 0xfb21a991, 0x487cac60, 0x5dec8032, 0xef845d5d, 0xe98575b1,
559
+ 0xdc262302, 0xeb651b88, 0x23893e81, 0xd396acc5, 0x0f6d6ff3, 0x83f44239,
560
+ 0x2e0b4482, 0xa4842004, 0x69c8f04a, 0x9e1f9b5e, 0x21c66842, 0xf6e96c9a,
561
+ 0x670c9c61, 0xabd388f0, 0x6a51a0d2, 0xd8542f68, 0x960fa728, 0xab5133a3,
562
+ 0x6eef0b6c, 0x137a3be4, 0xba3bf050, 0x7efb2a98, 0xa1f1651d, 0x39af0176,
563
+ 0x66ca593e, 0x82430e88, 0x8cee8619, 0x456f9fb4, 0x7d84a5c3, 0x3b8b5ebe,
564
+ 0xe06f75d8, 0x85c12073, 0x401a449f, 0x56c16aa6, 0x4ed3aa62, 0x363f7706,
565
+ 0x1bfedf72, 0x429b023d, 0x37d0d724, 0xd00a1248, 0xdb0fead3, 0x49f1c09b,
566
+ 0x075372c9, 0x80991b7b, 0x25d479d8, 0xf6e8def7, 0xe3fe501a, 0xb6794c3b,
567
+ 0x976ce0bd, 0x04c006ba, 0xc1a94fb6, 0x409f60c4, 0x5e5c9ec2, 0x196a2463,
568
+ 0x68fb6faf, 0x3e6c53b5, 0x1339b2eb, 0x3b52ec6f, 0x6dfc511f, 0x9b30952c,
569
+ 0xcc814544, 0xaf5ebd09, 0xbee3d004, 0xde334afd, 0x660f2807, 0x192e4bb3,
570
+ 0xc0cba857, 0x45c8740f, 0xd20b5f39, 0xb9d3fbdb, 0x5579c0bd, 0x1a60320a,
571
+ 0xd6a100c6, 0x402c7279, 0x679f25fe, 0xfb1fa3cc, 0x8ea5e9f8, 0xdb3222f8,
572
+ 0x3c7516df, 0xfd616b15, 0x2f501ec8, 0xad0552ab, 0x323db5fa, 0xfd238760,
573
+ 0x53317b48, 0x3e00df82, 0x9e5c57bb, 0xca6f8ca0, 0x1a87562e, 0xdf1769db,
574
+ 0xd542a8f6, 0x287effc3, 0xac6732c6, 0x8c4f5573, 0x695b27b0, 0xbbca58c8,
575
+ 0xe1ffa35d, 0xb8f011a0, 0x10fa3d98, 0xfd2183b8, 0x4afcb56c, 0x2dd1d35b,
576
+ 0x9a53e479, 0xb6f84565, 0xd28e49bc, 0x4bfb9790, 0xe1ddf2da, 0xa4cb7e33,
577
+ 0x62fb1341, 0xcee4c6e8, 0xef20cada, 0x36774c01, 0xd07e9efe, 0x2bf11fb4,
578
+ 0x95dbda4d, 0xae909198, 0xeaad8e71, 0x6b93d5a0, 0xd08ed1d0, 0xafc725e0,
579
+ 0x8e3c5b2f, 0x8e7594b7, 0x8ff6e2fb, 0xf2122b64, 0x8888b812, 0x900df01c,
580
+ 0x4fad5ea0, 0x688fc31c, 0xd1cff191, 0xb3a8c1ad, 0x2f2f2218, 0xbe0e1777,
581
+ 0xea752dfe, 0x8b021fa1, 0xe5a0cc0f, 0xb56f74e8, 0x18acf3d6, 0xce89e299,
582
+ 0xb4a84fe0, 0xfd13e0b7, 0x7cc43b81, 0xd2ada8d9, 0x165fa266, 0x80957705,
583
+ 0x93cc7314, 0x211a1477, 0xe6ad2065, 0x77b5fa86, 0xc75442f5, 0xfb9d35cf,
584
+ 0xebcdaf0c, 0x7b3e89a0, 0xd6411bd3, 0xae1e7e49, 0x00250e2d, 0x2071b35e,
585
+ 0x226800bb, 0x57b8e0af, 0x2464369b, 0xf009b91e, 0x5563911d, 0x59dfa6aa,
586
+ 0x78c14389, 0xd95a537f, 0x207d5ba2, 0x02e5b9c5, 0x83260376, 0x6295cfa9,
587
+ 0x11c81968, 0x4e734a41, 0xb3472dca, 0x7b14a94a, 0x1b510052, 0x9a532915,
588
+ 0xd60f573f, 0xbc9bc6e4, 0x2b60a476, 0x81e67400, 0x08ba6fb5, 0x571be91f,
589
+ 0xf296ec6b, 0x2a0dd915, 0xb6636521, 0xe7b9f9b6, 0xff34052e, 0xc5855664,
590
+ 0x53b02d5d, 0xa99f8fa1, 0x08ba4799, 0x6e85076a, 0x4b7a70e9, 0xb5b32944,
591
+ 0xdb75092e, 0xc4192623, 0xad6ea6b0, 0x49a7df7d, 0x9cee60b8, 0x8fedb266,
592
+ 0xecaa8c71, 0x699a17ff, 0x5664526c, 0xc2b19ee1, 0x193602a5, 0x75094c29,
593
+ 0xa0591340, 0xe4183a3e, 0x3f54989a, 0x5b429d65, 0x6b8fe4d6, 0x99f73fd6,
594
+ 0xa1d29c07, 0xefe830f5, 0x4d2d38e6, 0xf0255dc1, 0x4cdd2086, 0x8470eb26,
595
+ 0x6382e9c6, 0x021ecc5e, 0x09686b3f, 0x3ebaefc9, 0x3c971814, 0x6b6a70a1,
596
+ 0x687f3584, 0x52a0e286, 0xb79c5305, 0xaa500737, 0x3e07841c, 0x7fdeae5c,
597
+ 0x8e7d44ec, 0x5716f2b8, 0xb03ada37, 0xf0500c0d, 0xf01c1f04, 0x0200b3ff,
598
+ 0xae0cf51a, 0x3cb574b2, 0x25837a58, 0xdc0921bd, 0xd19113f9, 0x7ca92ff6,
599
+ 0x94324773, 0x22f54701, 0x3ae5e581, 0x37c2dadc, 0xc8b57634, 0x9af3dda7,
600
+ 0xa9446146, 0x0fd0030e, 0xecc8c73e, 0xa4751e41, 0xe238cd99, 0x3bea0e2f,
601
+ 0x3280bba1, 0x183eb331, 0x4e548b38, 0x4f6db908, 0x6f420d03, 0xf60a04bf,
602
+ 0x2cb81290, 0x24977c79, 0x5679b072, 0xbcaf89af, 0xde9a771f, 0xd9930810,
603
+ 0xb38bae12, 0xdccf3f2e, 0x5512721f, 0x2e6b7124, 0x501adde6, 0x9f84cd87,
604
+ 0x7a584718, 0x7408da17, 0xbc9f9abc, 0xe94b7d8c, 0xec7aec3a, 0xdb851dfa,
605
+ 0x63094366, 0xc464c3d2, 0xef1c1847, 0x3215d908, 0xdd433b37, 0x24c2ba16,
606
+ 0x12a14d43, 0x2a65c451, 0x50940002, 0x133ae4dd, 0x71dff89e, 0x10314e55,
607
+ 0x81ac77d6, 0x5f11199b, 0x043556f1, 0xd7a3c76b, 0x3c11183b, 0x5924a509,
608
+ 0xf28fe6ed, 0x97f1fbfa, 0x9ebabf2c, 0x1e153c6e, 0x86e34570, 0xeae96fb1,
609
+ 0x860e5e0a, 0x5a3e2ab3, 0x771fe71c, 0x4e3d06fa, 0x2965dcb9, 0x99e71d0f,
610
+ 0x803e89d6, 0x5266c825, 0x2e4cc978, 0x9c10b36a, 0xc6150eba, 0x94e2ea78,
611
+ 0xa5fc3c53, 0x1e0a2df4, 0xf2f74ea7, 0x361d2b3d, 0x1939260f, 0x19c27960,
612
+ 0x5223a708, 0xf71312b6, 0xebadfe6e, 0xeac31f66, 0xe3bc4595, 0xa67bc883,
613
+ 0xb17f37d1, 0x018cff28, 0xc332ddef, 0xbe6c5aa5, 0x65582185, 0x68ab9802,
614
+ 0xeecea50f, 0xdb2f953b, 0x2aef7dad, 0x5b6e2f84, 0x1521b628, 0x29076170,
615
+ 0xecdd4775, 0x619f1510, 0x13cca830, 0xeb61bd96, 0x0334fe1e, 0xaa0363cf,
616
+ 0xb5735c90, 0x4c70a239, 0xd59e9e0b, 0xcbaade14, 0xeecc86bc, 0x60622ca7,
617
+ 0x9cab5cab, 0xb2f3846e, 0x648b1eaf, 0x19bdf0ca, 0xa02369b9, 0x655abb50,
618
+ 0x40685a32, 0x3c2ab4b3, 0x319ee9d5, 0xc021b8f7, 0x9b540b19, 0x875fa099,
619
+ 0x95f7997e, 0x623d7da8, 0xf837889a, 0x97e32d77, 0x11ed935f, 0x16681281,
620
+ 0x0e358829, 0xc7e61fd6, 0x96dedfa1, 0x7858ba99, 0x57f584a5, 0x1b227263,
621
+ 0x9b83c3ff, 0x1ac24696, 0xcdb30aeb, 0x532e3054, 0x8fd948e4, 0x6dbc3128,
622
+ 0x58ebf2ef, 0x34c6ffea, 0xfe28ed61, 0xee7c3c73, 0x5d4a14d9, 0xe864b7e3,
623
+ 0x42105d14, 0x203e13e0, 0x45eee2b6, 0xa3aaabea, 0xdb6c4f15, 0xfacb4fd0,
624
+ 0xc742f442, 0xef6abbb5, 0x654f3b1d, 0x41cd2105, 0xd81e799e, 0x86854dc7,
625
+ 0xe44b476a, 0x3d816250, 0xcf62a1f2, 0x5b8d2646, 0xfc8883a0, 0xc1c7b6a3,
626
+ 0x7f1524c3, 0x69cb7492, 0x47848a0b, 0x5692b285, 0x095bbf00, 0xad19489d,
627
+ 0x1462b174, 0x23820e00, 0x58428d2a, 0x0c55f5ea, 0x1dadf43e, 0x233f7061,
628
+ 0x3372f092, 0x8d937e41, 0xd65fecf1, 0x6c223bdb, 0x7cde3759, 0xcbee7460,
629
+ 0x4085f2a7, 0xce77326e, 0xa6078084, 0x19f8509e, 0xe8efd855, 0x61d99735,
630
+ 0xa969a7aa, 0xc50c06c2, 0x5a04abfc, 0x800bcadc, 0x9e447a2e, 0xc3453484,
631
+ 0xfdd56705, 0x0e1e9ec9, 0xdb73dbd3, 0x105588cd, 0x675fda79, 0xe3674340,
632
+ 0xc5c43465, 0x713e38d8, 0x3d28f89e, 0xf16dff20, 0x153e21e7, 0x8fb03d4a,
633
+ 0xe6e39f2b, 0xdb83adf7, 0xe93d5a68, 0x948140f7, 0xf64c261c, 0x94692934,
634
+ 0x411520f7, 0x7602d4f7, 0xbcf46b2e, 0xd4a20068, 0xd4082471, 0x3320f46a,
635
+ 0x43b7d4b7, 0x500061af, 0x1e39f62e, 0x97244546, 0x14214f74, 0xbf8b8840,
636
+ 0x4d95fc1d, 0x96b591af, 0x70f4ddd3, 0x66a02f45, 0xbfbc09ec, 0x03bd9785,
637
+ 0x7fac6dd0, 0x31cb8504, 0x96eb27b3, 0x55fd3941, 0xda2547e6, 0xabca0a9a,
638
+ 0x28507825, 0x530429f4, 0x0a2c86da, 0xe9b66dfb, 0x68dc1462, 0xd7486900,
639
+ 0x680ec0a4, 0x27a18dee, 0x4f3ffea2, 0xe887ad8c, 0xb58ce006, 0x7af4d6b6,
640
+ 0xaace1e7c, 0xd3375fec, 0xce78a399, 0x406b2a42, 0x20fe9e35, 0xd9f385b9,
641
+ 0xee39d7ab, 0x3b124e8b, 0x1dc9faf7, 0x4b6d1856, 0x26a36631, 0xeae397b2,
642
+ 0x3a6efa74, 0xdd5b4332, 0x6841e7f7, 0xca7820fb, 0xfb0af54e, 0xd8feb397,
643
+ 0x454056ac, 0xba489527, 0x55533a3a, 0x20838d87, 0xfe6ba9b7, 0xd096954b,
644
+ 0x55a867bc, 0xa1159a58, 0xcca92963, 0x99e1db33, 0xa62a4a56, 0x3f3125f9,
645
+ 0x5ef47e1c, 0x9029317c, 0xfdf8e802, 0x04272f70, 0x80bb155c, 0x05282ce3,
646
+ 0x95c11548, 0xe4c66d22, 0x48c1133f, 0xc70f86dc, 0x07f9c9ee, 0x41041f0f,
647
+ 0x404779a4, 0x5d886e17, 0x325f51eb, 0xd59bc0d1, 0xf2bcc18f, 0x41113564,
648
+ 0x257b7834, 0x602a9c60, 0xdff8e8a3, 0x1f636c1b, 0x0e12b4c2, 0x02e1329e,
649
+ 0xaf664fd1, 0xcad18115, 0x6b2395e0, 0x333e92e1, 0x3b240b62, 0xeebeb922,
650
+ 0x85b2a20e, 0xe6ba0d99, 0xde720c8c, 0x2da2f728, 0xd0127845, 0x95b794fd,
651
+ 0x647d0862, 0xe7ccf5f0, 0x5449a36f, 0x877d48fa, 0xc39dfd27, 0xf33e8d1e,
652
+ 0x0a476341, 0x992eff74, 0x3a6f6eab, 0xf4f8fd37, 0xa812dc60, 0xa1ebddf8,
653
+ 0x991be14c, 0xdb6e6b0d, 0xc67b5510, 0x6d672c37, 0x2765d43b, 0xdcd0e804,
654
+ 0xf1290dc7, 0xcc00ffa3, 0xb5390f92, 0x690fed0b, 0x667b9ffb, 0xcedb7d9c,
655
+ 0xa091cf0b, 0xd9155ea3, 0xbb132f88, 0x515bad24, 0x7b9479bf, 0x763bd6eb,
656
+ 0x37392eb3, 0xcc115979, 0x8026e297, 0xf42e312d, 0x6842ada7, 0xc66a2b3b,
657
+ 0x12754ccc, 0x782ef11c, 0x6a124237, 0xb79251e7, 0x06a1bbe6, 0x4bfb6350,
658
+ 0x1a6b1018, 0x11caedfa, 0x3d25bdd8, 0xe2e1c3c9, 0x44421659, 0x0a121386,
659
+ 0xd90cec6e, 0xd5abea2a, 0x64af674e, 0xda86a85f, 0xbebfe988, 0x64e4c3fe,
660
+ 0x9dbc8057, 0xf0f7c086, 0x60787bf8, 0x6003604d, 0xd1fd8346, 0xf6381fb0,
661
+ 0x7745ae04, 0xd736fccc, 0x83426b33, 0xf01eab71, 0xb0804187, 0x3c005e5f,
662
+ 0x77a057be, 0xbde8ae24, 0x55464299, 0xbf582e61, 0x4e58f48f, 0xf2ddfda2,
663
+ 0xf474ef38, 0x8789bdc2, 0x5366f9c3, 0xc8b38e74, 0xb475f255, 0x46fcd9b9,
664
+ 0x7aeb2661, 0x8b1ddf84, 0x846a0e79, 0x915f95e2, 0x466e598e, 0x20b45770,
665
+ 0x8cd55591, 0xc902de4c, 0xb90bace1, 0xbb8205d0, 0x11a86248, 0x7574a99e,
666
+ 0xb77f19b6, 0xe0a9dc09, 0x662d09a1, 0xc4324633, 0xe85a1f02, 0x09f0be8c,
667
+ 0x4a99a025, 0x1d6efe10, 0x1ab93d1d, 0x0ba5a4df, 0xa186f20f, 0x2868f169,
668
+ 0xdcb7da83, 0x573906fe, 0xa1e2ce9b, 0x4fcd7f52, 0x50115e01, 0xa70683fa,
669
+ 0xa002b5c4, 0x0de6d027, 0x9af88c27, 0x773f8641, 0xc3604c06, 0x61a806b5,
670
+ 0xf0177a28, 0xc0f586e0, 0x006058aa, 0x30dc7d62, 0x11e69ed7, 0x2338ea63,
671
+ 0x53c2dd94, 0xc2c21634, 0xbbcbee56, 0x90bcb6de, 0xebfc7da1, 0xce591d76,
672
+ 0x6f05e409, 0x4b7c0188, 0x39720a3d, 0x7c927c24, 0x86e3725f, 0x724d9db9,
673
+ 0x1ac15bb4, 0xd39eb8fc, 0xed545578, 0x08fca5b5, 0xd83d7cd3, 0x4dad0fc4,
674
+ 0x1e50ef5e, 0xb161e6f8, 0xa28514d9, 0x6c51133c, 0x6fd5c7e7, 0x56e14ec4,
675
+ 0x362abfce, 0xddc6c837, 0xd79a3234, 0x92638212, 0x670efa8e, 0x406000e0,
676
+ 0x3a39ce37, 0xd3faf5cf, 0xabc27737, 0x5ac52d1b, 0x5cb0679e, 0x4fa33742,
677
+ 0xd3822740, 0x99bc9bbe, 0xd5118e9d, 0xbf0f7315, 0xd62d1c7e, 0xc700c47b,
678
+ 0xb78c1b6b, 0x21a19045, 0xb26eb1be, 0x6a366eb4, 0x5748ab2f, 0xbc946e79,
679
+ 0xc6a376d2, 0x6549c2c8, 0x530ff8ee, 0x468dde7d, 0xd5730a1d, 0x4cd04dc6,
680
+ 0x2939bbdb, 0xa9ba4650, 0xac9526e8, 0xbe5ee304, 0xa1fad5f0, 0x6a2d519a,
681
+ 0x63ef8ce2, 0x9a86ee22, 0xc089c2b8, 0x43242ef6, 0xa51e03aa, 0x9cf2d0a4,
682
+ 0x83c061ba, 0x9be96a4d, 0x8fe51550, 0xba645bd6, 0x2826a2f9, 0xa73a3ae1,
683
+ 0x4ba99586, 0xef5562e9, 0xc72fefd3, 0xf752f7da, 0x3f046f69, 0x77fa0a59,
684
+ 0x80e4a915, 0x87b08601, 0x9b09e6ad, 0x3b3ee593, 0xe990fd5a, 0x9e34d797,
685
+ 0x2cf0b7d9, 0x022b8b51, 0x96d5ac3a, 0x017da67d, 0xd1cf3ed6, 0x7c7d2d28,
686
+ 0x1f9f25cf, 0xadf2b89b, 0x5ad6b472, 0x5a88f54c, 0xe029ac71, 0xe019a5e6,
687
+ 0x47b0acfd, 0xed93fa9b, 0xe8d3c48d, 0x283b57cc, 0xf8d56629, 0x79132e28,
688
+ 0x785f0191, 0xed756055, 0xf7960e44, 0xe3d35e8c, 0x15056dd4, 0x88f46dba,
689
+ 0x03a16125, 0x0564f0bd, 0xc3eb9e15, 0x3c9057a2, 0x97271aec, 0xa93a072a,
690
+ 0x1b3f6d9b, 0x1e6321f5, 0xf59c66fb, 0x26dcf319, 0x7533d928, 0xb155fdf5,
691
+ 0x03563482, 0x8aba3cbb, 0x28517711, 0xc20ad9f8, 0xabcc5167, 0xccad925f,
692
+ 0x4de81751, 0x3830dc8e, 0x379d5862, 0x9320f991, 0xea7a90c2, 0xfb3e7bce,
693
+ 0x5121ce64, 0x774fbe32, 0xa8b6e37e, 0xc3293d46, 0x48de5369, 0x6413e680,
694
+ 0xa2ae0810, 0xdd6db224, 0x69852dfd, 0x09072166, 0xb39a460a, 0x6445c0dd,
695
+ 0x586cdecf, 0x1c20c8ae, 0x5bbef7dd, 0x1b588d40, 0xccd2017f, 0x6bb4e3bb,
696
+ 0xdda26a7e, 0x3a59ff45, 0x3e350a44, 0xbcb4cdd5, 0x72eacea8, 0xfa6484bb,
697
+ 0x8d6612ae, 0xbf3c6f47, 0xd29be463, 0x542f5d9e, 0xaec2771b, 0xf64e6370,
698
+ 0x740e0d8d, 0xe75b1357, 0xf8721671, 0xaf537d5d, 0x4040cb08, 0x4eb4e2cc,
699
+ 0x34d2466a, 0x0115af84, 0xe1b00428, 0x95983a1d, 0x06b89fb4, 0xce6ea048,
700
+ 0x6f3f3b82, 0x3520ab82, 0x011a1d4b, 0x277227f8, 0x611560b1, 0xe7933fdc,
701
+ 0xbb3a792b, 0x344525bd, 0xa08839e1, 0x51ce794b, 0x2f32c9b7, 0xa01fbac9,
702
+ 0xe01cc87e, 0xbcc7d1f6, 0xcf0111c3, 0xa1e8aac7, 0x1a908749, 0xd44fbd9a,
703
+ 0xd0dadecb, 0xd50ada38, 0x0339c32a, 0xc6913667, 0x8df9317c, 0xe0b12b4f,
704
+ 0xf79e59b7, 0x43f5bb3a, 0xf2d519ff, 0x27d9459c, 0xbf97222c, 0x15e6fc2a,
705
+ 0x0f91fc71, 0x9b941525, 0xfae59361, 0xceb69ceb, 0xc2a86459, 0x12baa8d1,
706
+ 0xb6c1075e, 0xe3056a0c, 0x10d25065, 0xcb03a442, 0xe0ec6e0e, 0x1698db3b,
707
+ 0x4c98a0be, 0x3278e964, 0x9f1f9532, 0xe0d392df, 0xd3a0342b, 0x8971f21e,
708
+ 0x1b0a7441, 0x4ba3348c, 0xc5be7120, 0xc37632d8, 0xdf359f8d, 0x9b992f2e,
709
+ 0xe60b6f47, 0x0fe3f11d, 0xe54cda54, 0x1edad891, 0xce6279cf, 0xcd3e7e6f,
710
+ 0x1618b166, 0xfd2c1d05, 0x848fd2c5, 0xf6fb2299, 0xf523f357, 0xa6327623,
711
+ 0x93a83531, 0x56cccd02, 0xacf08162, 0x5a75ebb5, 0x6e163697, 0x88d273cc,
712
+ 0xde966292, 0x81b949d0, 0x4c50901b, 0x71c65614, 0xe6c6c7bd, 0x327a140a,
713
+ 0x45e1d006, 0xc3f27b9a, 0xc9aa53fd, 0x62a80f00, 0xbb25bfe2, 0x35bdd2f6,
714
+ 0x71126905, 0xb2040222, 0xb6cbcf7c, 0xcd769c2b, 0x53113ec0, 0x1640e3d3,
715
+ 0x38abbd60, 0x2547adf0, 0xba38209c, 0xf746ce76, 0x77afa1c5, 0x20756060,
716
+ 0x85cbfe4e, 0x8ae88dd8, 0x7aaaf9b0, 0x4cf9aa7e, 0x1948c25c, 0x02fb8a8c,
717
+ 0x01c36ae4, 0xd6ebe1f9, 0x90d4f869, 0xa65cdea0, 0x3f09252d, 0xc208e69f,
718
+ 0xb74e6132, 0xce77e25b, 0x578fdfe3, 0x3ac372e6,
719
+ ];
720
+
721
+ /**
722
+ * @type {Array.<number>}
723
+ * @const
724
+ * @inner
725
+ */
726
+ var C_ORIG = [
727
+ 0x4f727068, 0x65616e42, 0x65686f6c, 0x64657253, 0x63727944, 0x6f756274,
728
+ ];
729
+
730
+ /**
731
+ * @param {Array.<number>} lr
732
+ * @param {number} off
733
+ * @param {Array.<number>} P
734
+ * @param {Array.<number>} S
735
+ * @returns {Array.<number>}
736
+ * @inner
737
+ */
738
+ function _encipher(lr, off, P, S) {
739
+ // This is our bottleneck: 1714/1905 ticks / 90% - see profile.txt
740
+ var n,
741
+ l = lr[off],
742
+ r = lr[off + 1];
743
+
744
+ l ^= P[0];
745
+
746
+ /*
747
+ for (var i=0, k=BLOWFISH_NUM_ROUNDS-2; i<=k;)
748
+ // Feistel substitution on left word
749
+ n = S[l >>> 24],
750
+ n += S[0x100 | ((l >> 16) & 0xff)],
751
+ n ^= S[0x200 | ((l >> 8) & 0xff)],
752
+ n += S[0x300 | (l & 0xff)],
753
+ r ^= n ^ P[++i],
754
+ // Feistel substitution on right word
755
+ n = S[r >>> 24],
756
+ n += S[0x100 | ((r >> 16) & 0xff)],
757
+ n ^= S[0x200 | ((r >> 8) & 0xff)],
758
+ n += S[0x300 | (r & 0xff)],
759
+ l ^= n ^ P[++i];
760
+ */
761
+
762
+ //The following is an unrolled version of the above loop.
763
+ //Iteration 0
764
+ n = S[l >>> 24];
765
+ n += S[0x100 | ((l >> 16) & 0xff)];
766
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
767
+ n += S[0x300 | (l & 0xff)];
768
+ r ^= n ^ P[1];
769
+ n = S[r >>> 24];
770
+ n += S[0x100 | ((r >> 16) & 0xff)];
771
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
772
+ n += S[0x300 | (r & 0xff)];
773
+ l ^= n ^ P[2];
774
+ //Iteration 1
775
+ n = S[l >>> 24];
776
+ n += S[0x100 | ((l >> 16) & 0xff)];
777
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
778
+ n += S[0x300 | (l & 0xff)];
779
+ r ^= n ^ P[3];
780
+ n = S[r >>> 24];
781
+ n += S[0x100 | ((r >> 16) & 0xff)];
782
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
783
+ n += S[0x300 | (r & 0xff)];
784
+ l ^= n ^ P[4];
785
+ //Iteration 2
786
+ n = S[l >>> 24];
787
+ n += S[0x100 | ((l >> 16) & 0xff)];
788
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
789
+ n += S[0x300 | (l & 0xff)];
790
+ r ^= n ^ P[5];
791
+ n = S[r >>> 24];
792
+ n += S[0x100 | ((r >> 16) & 0xff)];
793
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
794
+ n += S[0x300 | (r & 0xff)];
795
+ l ^= n ^ P[6];
796
+ //Iteration 3
797
+ n = S[l >>> 24];
798
+ n += S[0x100 | ((l >> 16) & 0xff)];
799
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
800
+ n += S[0x300 | (l & 0xff)];
801
+ r ^= n ^ P[7];
802
+ n = S[r >>> 24];
803
+ n += S[0x100 | ((r >> 16) & 0xff)];
804
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
805
+ n += S[0x300 | (r & 0xff)];
806
+ l ^= n ^ P[8];
807
+ //Iteration 4
808
+ n = S[l >>> 24];
809
+ n += S[0x100 | ((l >> 16) & 0xff)];
810
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
811
+ n += S[0x300 | (l & 0xff)];
812
+ r ^= n ^ P[9];
813
+ n = S[r >>> 24];
814
+ n += S[0x100 | ((r >> 16) & 0xff)];
815
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
816
+ n += S[0x300 | (r & 0xff)];
817
+ l ^= n ^ P[10];
818
+ //Iteration 5
819
+ n = S[l >>> 24];
820
+ n += S[0x100 | ((l >> 16) & 0xff)];
821
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
822
+ n += S[0x300 | (l & 0xff)];
823
+ r ^= n ^ P[11];
824
+ n = S[r >>> 24];
825
+ n += S[0x100 | ((r >> 16) & 0xff)];
826
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
827
+ n += S[0x300 | (r & 0xff)];
828
+ l ^= n ^ P[12];
829
+ //Iteration 6
830
+ n = S[l >>> 24];
831
+ n += S[0x100 | ((l >> 16) & 0xff)];
832
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
833
+ n += S[0x300 | (l & 0xff)];
834
+ r ^= n ^ P[13];
835
+ n = S[r >>> 24];
836
+ n += S[0x100 | ((r >> 16) & 0xff)];
837
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
838
+ n += S[0x300 | (r & 0xff)];
839
+ l ^= n ^ P[14];
840
+ //Iteration 7
841
+ n = S[l >>> 24];
842
+ n += S[0x100 | ((l >> 16) & 0xff)];
843
+ n ^= S[0x200 | ((l >> 8) & 0xff)];
844
+ n += S[0x300 | (l & 0xff)];
845
+ r ^= n ^ P[15];
846
+ n = S[r >>> 24];
847
+ n += S[0x100 | ((r >> 16) & 0xff)];
848
+ n ^= S[0x200 | ((r >> 8) & 0xff)];
849
+ n += S[0x300 | (r & 0xff)];
850
+ l ^= n ^ P[16];
851
+
852
+ lr[off] = r ^ P[BLOWFISH_NUM_ROUNDS + 1];
853
+ lr[off + 1] = l;
854
+ return lr;
855
+ }
856
+
857
+ /**
858
+ * @param {Array.<number>} data
859
+ * @param {number} offp
860
+ * @returns {{key: number, offp: number}}
861
+ * @inner
862
+ */
863
+ function _streamtoword(data, offp) {
864
+ for (var i = 0, word = 0; i < 4; ++i)
865
+ (word = (word << 8) | (data[offp] & 0xff)),
866
+ (offp = (offp + 1) % data.length);
867
+ return { key: word, offp: offp };
868
+ }
869
+
870
+ /**
871
+ * @param {Array.<number>} key
872
+ * @param {Array.<number>} P
873
+ * @param {Array.<number>} S
874
+ * @inner
875
+ */
876
+ function _key(key, P, S) {
877
+ var offset = 0,
878
+ lr = [0, 0],
879
+ plen = P.length,
880
+ slen = S.length,
881
+ sw;
882
+ for (var i = 0; i < plen; i++)
883
+ (sw = _streamtoword(key, offset)),
884
+ (offset = sw.offp),
885
+ (P[i] = P[i] ^ sw.key);
886
+ for (i = 0; i < plen; i += 2)
887
+ (lr = _encipher(lr, 0, P, S)), (P[i] = lr[0]), (P[i + 1] = lr[1]);
888
+ for (i = 0; i < slen; i += 2)
889
+ (lr = _encipher(lr, 0, P, S)), (S[i] = lr[0]), (S[i + 1] = lr[1]);
890
+ }
891
+
892
+ /**
893
+ * Expensive key schedule Blowfish.
894
+ * @param {Array.<number>} data
895
+ * @param {Array.<number>} key
896
+ * @param {Array.<number>} P
897
+ * @param {Array.<number>} S
898
+ * @inner
899
+ */
900
+ function _ekskey(data, key, P, S) {
901
+ var offp = 0,
902
+ lr = [0, 0],
903
+ plen = P.length,
904
+ slen = S.length,
905
+ sw;
906
+ for (var i = 0; i < plen; i++)
907
+ (sw = _streamtoword(key, offp)), (offp = sw.offp), (P[i] = P[i] ^ sw.key);
908
+ offp = 0;
909
+ for (i = 0; i < plen; i += 2)
910
+ (sw = _streamtoword(data, offp)),
911
+ (offp = sw.offp),
912
+ (lr[0] ^= sw.key),
913
+ (sw = _streamtoword(data, offp)),
914
+ (offp = sw.offp),
915
+ (lr[1] ^= sw.key),
916
+ (lr = _encipher(lr, 0, P, S)),
917
+ (P[i] = lr[0]),
918
+ (P[i + 1] = lr[1]);
919
+ for (i = 0; i < slen; i += 2)
920
+ (sw = _streamtoword(data, offp)),
921
+ (offp = sw.offp),
922
+ (lr[0] ^= sw.key),
923
+ (sw = _streamtoword(data, offp)),
924
+ (offp = sw.offp),
925
+ (lr[1] ^= sw.key),
926
+ (lr = _encipher(lr, 0, P, S)),
927
+ (S[i] = lr[0]),
928
+ (S[i + 1] = lr[1]);
929
+ }
930
+
931
+ /**
932
+ * Internaly crypts a string.
933
+ * @param {Array.<number>} b Bytes to crypt
934
+ * @param {Array.<number>} salt Salt bytes to use
935
+ * @param {number} rounds Number of rounds
936
+ * @param {function(Error, Array.<number>=)=} callback Callback receiving the error, if any, and the resulting bytes. If
937
+ * omitted, the operation will be performed synchronously.
938
+ * @param {function(number)=} progressCallback Callback called with the current progress
939
+ * @returns {!Array.<number>|undefined} Resulting bytes if callback has been omitted, otherwise `undefined`
940
+ * @inner
941
+ */
942
+ function _crypt(b, salt, rounds, callback, progressCallback) {
943
+ var cdata = C_ORIG.slice(),
944
+ clen = cdata.length,
945
+ err;
946
+
947
+ // Validate
948
+ if (rounds < 4 || rounds > 31) {
949
+ err = Error("Illegal number of rounds (4-31): " + rounds);
950
+ if (callback) {
951
+ nextTick(callback.bind(this, err));
952
+ return;
953
+ } else throw err;
954
+ }
955
+ if (salt.length !== BCRYPT_SALT_LEN) {
956
+ err = Error(
957
+ "Illegal salt length: " + salt.length + " != " + BCRYPT_SALT_LEN,
958
+ );
959
+ if (callback) {
960
+ nextTick(callback.bind(this, err));
961
+ return;
962
+ } else throw err;
963
+ }
964
+ rounds = (1 << rounds) >>> 0;
965
+
966
+ var P,
967
+ S,
968
+ i = 0,
969
+ j;
970
+
971
+ //Use typed arrays when available - huge speedup!
972
+ if (typeof Int32Array === "function") {
973
+ P = new Int32Array(P_ORIG);
974
+ S = new Int32Array(S_ORIG);
975
+ } else {
976
+ P = P_ORIG.slice();
977
+ S = S_ORIG.slice();
978
+ }
979
+
980
+ _ekskey(salt, b, P, S);
981
+
982
+ /**
983
+ * Calcualtes the next round.
984
+ * @returns {Array.<number>|undefined} Resulting array if callback has been omitted, otherwise `undefined`
985
+ * @inner
986
+ */
987
+ function next() {
988
+ if (progressCallback) progressCallback(i / rounds);
989
+ if (i < rounds) {
990
+ var start = Date.now();
991
+ for (; i < rounds; ) {
992
+ i = i + 1;
993
+ _key(b, P, S);
994
+ _key(salt, P, S);
995
+ if (Date.now() - start > MAX_EXECUTION_TIME) break;
996
+ }
997
+ } else {
998
+ for (i = 0; i < 64; i++)
999
+ for (j = 0; j < clen >> 1; j++) _encipher(cdata, j << 1, P, S);
1000
+ var ret = [];
1001
+ for (i = 0; i < clen; i++)
1002
+ ret.push(((cdata[i] >> 24) & 0xff) >>> 0),
1003
+ ret.push(((cdata[i] >> 16) & 0xff) >>> 0),
1004
+ ret.push(((cdata[i] >> 8) & 0xff) >>> 0),
1005
+ ret.push((cdata[i] & 0xff) >>> 0);
1006
+ if (callback) {
1007
+ callback(null, ret);
1008
+ return;
1009
+ } else return ret;
1010
+ }
1011
+ if (callback) nextTick(next);
1012
+ }
1013
+
1014
+ // Async
1015
+ if (typeof callback !== "undefined") {
1016
+ next();
1017
+
1018
+ // Sync
1019
+ } else {
1020
+ var res;
1021
+ while (true) if (typeof (res = next()) !== "undefined") return res || [];
1022
+ }
1023
+ }
1024
+
1025
+ /**
1026
+ * Internally hashes a password.
1027
+ * @param {string} password Password to hash
1028
+ * @param {?string} salt Salt to use, actually never null
1029
+ * @param {function(Error, string=)=} callback Callback receiving the error, if any, and the resulting hash. If omitted,
1030
+ * hashing is performed synchronously.
1031
+ * @param {function(number)=} progressCallback Callback called with the current progress
1032
+ * @returns {string|undefined} Resulting hash if callback has been omitted, otherwise `undefined`
1033
+ * @inner
1034
+ */
1035
+ function _hash(password, salt, callback, progressCallback) {
1036
+ var err;
1037
+ if (typeof password !== "string" || typeof salt !== "string") {
1038
+ err = Error("Invalid string / salt: Not a string");
1039
+ if (callback) {
1040
+ nextTick(callback.bind(this, err));
1041
+ return;
1042
+ } else throw err;
1043
+ }
1044
+
1045
+ // Validate the salt
1046
+ var minor, offset;
1047
+ if (salt.charAt(0) !== "$" || salt.charAt(1) !== "2") {
1048
+ err = Error("Invalid salt version: " + salt.substring(0, 2));
1049
+ if (callback) {
1050
+ nextTick(callback.bind(this, err));
1051
+ return;
1052
+ } else throw err;
1053
+ }
1054
+ if (salt.charAt(2) === "$") (minor = String.fromCharCode(0)), (offset = 3);
1055
+ else {
1056
+ minor = salt.charAt(2);
1057
+ if (
1058
+ (minor !== "a" && minor !== "b" && minor !== "y") ||
1059
+ salt.charAt(3) !== "$"
1060
+ ) {
1061
+ err = Error("Invalid salt revision: " + salt.substring(2, 4));
1062
+ if (callback) {
1063
+ nextTick(callback.bind(this, err));
1064
+ return;
1065
+ } else throw err;
1066
+ }
1067
+ offset = 4;
1068
+ }
1069
+
1070
+ // Extract number of rounds
1071
+ if (salt.charAt(offset + 2) > "$") {
1072
+ err = Error("Missing salt rounds");
1073
+ if (callback) {
1074
+ nextTick(callback.bind(this, err));
1075
+ return;
1076
+ } else throw err;
1077
+ }
1078
+ var r1 = parseInt(salt.substring(offset, offset + 1), 10) * 10,
1079
+ r2 = parseInt(salt.substring(offset + 1, offset + 2), 10),
1080
+ rounds = r1 + r2,
1081
+ real_salt = salt.substring(offset + 3, offset + 25);
1082
+ password += minor >= "a" ? "\x00" : "";
1083
+
1084
+ var passwordb = utf8Array(password),
1085
+ saltb = base64_decode(real_salt, BCRYPT_SALT_LEN);
1086
+
1087
+ /**
1088
+ * Finishes hashing.
1089
+ * @param {Array.<number>} bytes Byte array
1090
+ * @returns {string}
1091
+ * @inner
1092
+ */
1093
+ function finish(bytes) {
1094
+ var res = [];
1095
+ res.push("$2");
1096
+ if (minor >= "a") res.push(minor);
1097
+ res.push("$");
1098
+ if (rounds < 10) res.push("0");
1099
+ res.push(rounds.toString());
1100
+ res.push("$");
1101
+ res.push(base64_encode(saltb, saltb.length));
1102
+ res.push(base64_encode(bytes, C_ORIG.length * 4 - 1));
1103
+ return res.join("");
1104
+ }
1105
+
1106
+ // Sync
1107
+ if (typeof callback == "undefined")
1108
+ return finish(_crypt(passwordb, saltb, rounds));
1109
+ // Async
1110
+ else {
1111
+ _crypt(
1112
+ passwordb,
1113
+ saltb,
1114
+ rounds,
1115
+ function (err, bytes) {
1116
+ if (err) callback(err, null);
1117
+ else callback(null, finish(bytes));
1118
+ },
1119
+ progressCallback,
1120
+ );
1121
+ }
1122
+ }
1123
+
1124
+ /**
1125
+ * Encodes a byte array to base64 with up to len bytes of input, using the custom bcrypt alphabet.
1126
+ * @function
1127
+ * @param {!Array.<number>} bytes Byte array
1128
+ * @param {number} length Maximum input length
1129
+ * @returns {string}
1130
+ */
1131
+ export function encodeBase64(bytes, length) {
1132
+ return base64_encode(bytes, length);
1133
+ }
1134
+
1135
+ /**
1136
+ * Decodes a base64 encoded string to up to len bytes of output, using the custom bcrypt alphabet.
1137
+ * @function
1138
+ * @param {string} string String to decode
1139
+ * @param {number} length Maximum output length
1140
+ * @returns {!Array.<number>}
1141
+ */
1142
+ export function decodeBase64(string, length) {
1143
+ return base64_decode(string, length);
1144
+ }
1145
+
1146
+ export default {
1147
+ setRandomFallback,
1148
+ genSaltSync,
1149
+ genSalt,
1150
+ hashSync,
1151
+ hash,
1152
+ compareSync,
1153
+ compare,
1154
+ getRounds,
1155
+ getSalt,
1156
+ truncates,
1157
+ encodeBase64,
1158
+ decodeBase64,
1159
+ };