hydra-crawler 1.4.5 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (305) hide show
  1. package/dist/apis/autocomplete.api.d.ts +7 -0
  2. package/dist/apis/autocomplete.api.js +15 -9
  3. package/dist/apis/autocomplete.api.js.map +1 -0
  4. package/dist/apis/bugs.api.d.ts +7 -0
  5. package/dist/apis/bugs.api.js +21 -15
  6. package/dist/apis/bugs.api.js.map +1 -0
  7. package/dist/apis/crawl.api.d.ts +7 -0
  8. package/dist/apis/crawl.api.js +15 -9
  9. package/dist/apis/crawl.api.js.map +1 -0
  10. package/dist/apis/domains.api.d.ts +7 -0
  11. package/dist/apis/domains.api.js +24 -19
  12. package/dist/apis/domains.api.js.map +1 -0
  13. package/dist/apis/images.api.d.ts +7 -0
  14. package/dist/apis/images.api.js +20 -14
  15. package/dist/apis/images.api.js.map +1 -0
  16. package/dist/apis/statistics.api.d.ts +8 -0
  17. package/dist/apis/statistics.api.js +27 -20
  18. package/dist/apis/statistics.api.js.map +1 -0
  19. package/dist/apis/test.api.d.ts +5 -0
  20. package/dist/apis/test.api.js +15 -9
  21. package/dist/apis/test.api.js.map +1 -0
  22. package/dist/apis/urls.api.d.ts +7 -0
  23. package/dist/apis/urls.api.js +21 -15
  24. package/dist/apis/urls.api.js.map +1 -0
  25. package/dist/apps/cleanup.app.d.ts +19 -0
  26. package/dist/apps/cleanup.app.js +118 -100
  27. package/dist/apps/cleanup.app.js.map +1 -0
  28. package/dist/apps/cross-populate-export.app.d.ts +12 -0
  29. package/dist/apps/cross-populate-export.app.js +60 -47
  30. package/dist/apps/cross-populate-export.app.js.map +1 -0
  31. package/dist/apps/cross-populate-import.app.d.ts +12 -0
  32. package/dist/apps/cross-populate-import.app.js +64 -51
  33. package/dist/apps/cross-populate-import.app.js.map +1 -0
  34. package/dist/apps/denylist.app.d.ts +17 -0
  35. package/dist/apps/denylist.app.js +115 -98
  36. package/dist/apps/denylist.app.js.map +1 -0
  37. package/dist/apps/expire.app.d.ts +19 -0
  38. package/dist/apps/expire.app.js +44 -31
  39. package/dist/apps/expire.app.js.map +1 -0
  40. package/dist/apps/extract-text.app.d.ts +8 -0
  41. package/dist/apps/extract-text.app.js +43 -35
  42. package/dist/apps/extract-text.app.js.map +1 -0
  43. package/dist/apps/hydra.app.d.ts +34 -0
  44. package/dist/apps/hydra.app.js +150 -137
  45. package/dist/apps/hydra.app.js.map +1 -0
  46. package/dist/apps/import.app.d.ts +11 -0
  47. package/dist/apps/import.app.js +44 -32
  48. package/dist/apps/import.app.js.map +1 -0
  49. package/dist/apps/internal-hydra-common.app.d.ts +28 -0
  50. package/dist/apps/internal-hydra-common.app.js +5 -11
  51. package/dist/apps/internal-hydra-common.app.js.map +1 -0
  52. package/dist/apps/query.app.d.ts +20 -0
  53. package/dist/apps/query.app.js +63 -49
  54. package/dist/apps/query.app.js.map +1 -0
  55. package/dist/apps/reattempt.app.d.ts +17 -0
  56. package/dist/apps/reattempt.app.js +66 -53
  57. package/dist/apps/reattempt.app.js.map +1 -0
  58. package/dist/apps/requeue-domain.app.d.ts +13 -0
  59. package/dist/apps/requeue-domain.app.js +50 -37
  60. package/dist/apps/requeue-domain.app.js.map +1 -0
  61. package/dist/apps/seed.app.d.ts +15 -0
  62. package/dist/apps/seed.app.js +53 -40
  63. package/dist/apps/seed.app.js.map +1 -0
  64. package/dist/apps/startup.app.d.ts +11 -0
  65. package/dist/apps/startup.app.js +51 -38
  66. package/dist/apps/startup.app.js.map +1 -0
  67. package/dist/apps/unarchive.app.d.ts +15 -0
  68. package/dist/apps/unarchive.app.js +67 -54
  69. package/dist/apps/unarchive.app.js.map +1 -0
  70. package/dist/classes/cleaner.d.ts +12 -0
  71. package/dist/classes/cleaner.js +227 -207
  72. package/dist/classes/cleaner.js.map +1 -0
  73. package/dist/classes/crawler.d.ts +34 -0
  74. package/dist/classes/crawler.js +248 -241
  75. package/dist/classes/crawler.js.map +1 -0
  76. package/dist/classes/dns.d.ts +3 -0
  77. package/dist/classes/dns.js +10 -13
  78. package/dist/classes/dns.js.map +1 -0
  79. package/dist/classes/expirer.d.ts +10 -0
  80. package/dist/classes/expirer.js +107 -94
  81. package/dist/classes/expirer.js.map +1 -0
  82. package/dist/classes/expiry.d.ts +8 -0
  83. package/dist/classes/expiry.js +16 -19
  84. package/dist/classes/expiry.js.map +1 -0
  85. package/dist/classes/lists.d.ts +9 -0
  86. package/dist/classes/lists.js +13 -18
  87. package/dist/classes/lists.js.map +1 -0
  88. package/dist/classes/robot.d.ts +15 -0
  89. package/dist/classes/robot.js +40 -30
  90. package/dist/classes/robot.js.map +1 -0
  91. package/dist/classes/tracker.d.ts +25 -0
  92. package/dist/classes/tracker.js +82 -64
  93. package/dist/classes/tracker.js.map +1 -0
  94. package/dist/cli.d.ts +1 -0
  95. package/dist/cli.js +72 -65
  96. package/dist/cli.js.map +1 -0
  97. package/dist/enums/eavailable-strategy.d.ts +4 -0
  98. package/dist/enums/eavailable-strategy.js +3 -5
  99. package/dist/enums/eavailable-strategy.js.map +1 -0
  100. package/dist/enums/elist.d.ts +7 -0
  101. package/dist/enums/elist.js +7 -11
  102. package/dist/enums/elist.js.map +1 -0
  103. package/dist/enums/eserver.d.ts +8 -0
  104. package/dist/enums/eserver.js +3 -5
  105. package/dist/enums/eserver.js.map +1 -0
  106. package/dist/enums/ex-powered-by.d.ts +6 -0
  107. package/dist/enums/ex-powered-by.js +3 -5
  108. package/dist/enums/ex-powered-by.js.map +1 -0
  109. package/dist/helpers/matcher.d.ts +5 -0
  110. package/dist/helpers/matcher.js +2 -5
  111. package/dist/helpers/matcher.js.map +1 -0
  112. package/dist/helpers/random.d.ts +4 -0
  113. package/dist/helpers/random.js +2 -5
  114. package/dist/helpers/random.js.map +1 -0
  115. package/dist/helpers/utf-decoder.d.ts +4 -0
  116. package/dist/helpers/utf-decoder.js +3 -6
  117. package/dist/helpers/utf-decoder.js.map +1 -0
  118. package/dist/interfaces/iexpiry.d.ts +7 -0
  119. package/dist/interfaces/iexpiry.js +9 -13
  120. package/dist/interfaces/iexpiry.js.map +1 -0
  121. package/dist/interfaces/imatch.d.ts +6 -0
  122. package/dist/interfaces/imatch.js +6 -9
  123. package/dist/interfaces/imatch.js.map +1 -0
  124. package/dist/interfaces/iparser-config.d.ts +4 -0
  125. package/dist/interfaces/iparser-config.js +4 -7
  126. package/dist/interfaces/iparser-config.js.map +1 -0
  127. package/dist/interfaces/iparser.d.ts +8 -0
  128. package/dist/interfaces/iparser.js +2 -2
  129. package/dist/interfaces/iparser.js.map +1 -0
  130. package/dist/interfaces/irequest-outcome.d.ts +11 -0
  131. package/dist/interfaces/irequest-outcome.js +2 -2
  132. package/dist/interfaces/irequest-outcome.js.map +1 -0
  133. package/dist/interfaces/iserver.d.ts +4 -0
  134. package/dist/interfaces/iserver.js +2 -2
  135. package/dist/interfaces/iserver.js.map +1 -0
  136. package/dist/parsers/accessibility-metrics.parser.d.ts +11 -0
  137. package/dist/parsers/accessibility-metrics.parser.js +34 -26
  138. package/dist/parsers/accessibility-metrics.parser.js.map +1 -0
  139. package/dist/parsers/asp-error.parser.d.ts +12 -0
  140. package/dist/parsers/asp-error.parser.js +36 -28
  141. package/dist/parsers/asp-error.parser.js.map +1 -0
  142. package/dist/parsers/bad-words.parser.d.ts +10 -0
  143. package/dist/parsers/bad-words.parser.js +21 -13
  144. package/dist/parsers/bad-words.parser.js.map +1 -0
  145. package/dist/parsers/complex-english.parser.d.ts +15 -0
  146. package/dist/parsers/complex-english.parser.js +33 -25
  147. package/dist/parsers/complex-english.parser.js.map +1 -0
  148. package/dist/parsers/data.parser.d.ts +14 -0
  149. package/dist/parsers/data.parser.js +12 -16
  150. package/dist/parsers/data.parser.js.map +1 -0
  151. package/dist/parsers/dictionary.parser.d.ts +19 -0
  152. package/dist/parsers/dictionary.parser.js +47 -39
  153. package/dist/parsers/dictionary.parser.js.map +1 -0
  154. package/dist/parsers/html.parser.d.ts +13 -0
  155. package/dist/parsers/html.parser.js +4 -8
  156. package/dist/parsers/html.parser.js.map +1 -0
  157. package/dist/parsers/hyperlinks.parser.d.ts +20 -0
  158. package/dist/parsers/hyperlinks.parser.js +82 -77
  159. package/dist/parsers/hyperlinks.parser.js.map +1 -0
  160. package/dist/parsers/image-tags.parser.d.ts +20 -0
  161. package/dist/parsers/image-tags.parser.js +38 -34
  162. package/dist/parsers/image-tags.parser.js.map +1 -0
  163. package/dist/parsers/jpeg.parser.d.ts +11 -0
  164. package/dist/parsers/jpeg.parser.js +28 -20
  165. package/dist/parsers/jpeg.parser.js.map +1 -0
  166. package/dist/parsers/paragraphs.parser.d.ts +13 -0
  167. package/dist/parsers/paragraphs.parser.js +33 -40
  168. package/dist/parsers/paragraphs.parser.js.map +1 -0
  169. package/dist/parsers/parser.d.ts +19 -0
  170. package/dist/parsers/parser.js +30 -17
  171. package/dist/parsers/parser.js.map +1 -0
  172. package/dist/parsers/php-error.parser.d.ts +12 -0
  173. package/dist/parsers/php-error.parser.js +42 -34
  174. package/dist/parsers/php-error.parser.js.map +1 -0
  175. package/dist/parsers/phrase.parser.d.ts +8 -0
  176. package/dist/parsers/phrase.parser.js +16 -11
  177. package/dist/parsers/phrase.parser.js.map +1 -0
  178. package/dist/parsers/regex.parser.d.ts +10 -0
  179. package/dist/parsers/regex.parser.js +30 -22
  180. package/dist/parsers/regex.parser.js.map +1 -0
  181. package/dist/parsers/server.parser.d.ts +12 -0
  182. package/dist/parsers/server.parser.js +66 -56
  183. package/dist/parsers/server.parser.js.map +1 -0
  184. package/dist/parsers/spelling.parser.d.ts +10 -0
  185. package/dist/parsers/spelling.parser.js +21 -13
  186. package/dist/parsers/spelling.parser.js.map +1 -0
  187. package/dist/parsers/string.parser.d.ts +8 -0
  188. package/dist/parsers/string.parser.js +5 -8
  189. package/dist/parsers/string.parser.js.map +1 -0
  190. package/dist/parsers/text.parser.d.ts +8 -0
  191. package/dist/parsers/text.parser.js +24 -18
  192. package/dist/parsers/text.parser.js.map +1 -0
  193. package/dist/parsers/words.parser.d.ts +11 -0
  194. package/dist/parsers/words.parser.js +32 -28
  195. package/dist/parsers/words.parser.js.map +1 -0
  196. package/dist/queries/complex-english.query.d.ts +2 -0
  197. package/dist/queries/complex-english.query.js +37 -38
  198. package/dist/queries/complex-english.query.js.map +1 -0
  199. package/dist/queries/flash-content.query.d.ts +2 -0
  200. package/dist/queries/flash-content.query.js +45 -32
  201. package/dist/queries/flash-content.query.js.map +1 -0
  202. package/dist/queries/linking-to-domains.query.d.ts +2 -0
  203. package/dist/queries/linking-to-domains.query.js +35 -27
  204. package/dist/queries/linking-to-domains.query.js.map +1 -0
  205. package/dist/queries/readability-score.query.d.ts +2 -0
  206. package/dist/queries/readability-score.query.js +21 -13
  207. package/dist/queries/readability-score.query.js.map +1 -0
  208. package/dist/servers/crawl.server.d.ts +35 -0
  209. package/dist/servers/crawl.server.js +133 -121
  210. package/dist/servers/crawl.server.js.map +1 -0
  211. package/dist/servers/express.server.d.ts +8 -0
  212. package/dist/servers/express.server.js +7 -10
  213. package/dist/servers/express.server.js.map +1 -0
  214. package/dist/servers/maintenance.server.d.ts +22 -0
  215. package/dist/servers/maintenance.server.js +42 -36
  216. package/dist/servers/maintenance.server.js.map +1 -0
  217. package/dist/servers/rest.server.d.ts +7 -0
  218. package/dist/servers/rest.server.js +40 -51
  219. package/dist/servers/rest.server.js.map +1 -0
  220. package/dist/servers/socket-io.server.d.ts +12 -0
  221. package/dist/servers/socket-io.server.js +48 -15
  222. package/dist/servers/socket-io.server.js.map +1 -0
  223. package/dist/services/database.service.d.ts +68 -0
  224. package/dist/services/database.service.js +527 -462
  225. package/dist/services/database.service.js.map +1 -0
  226. package/dist/types/tcrawl-config.d.ts +14 -0
  227. package/dist/types/tcrawl-config.js +14 -17
  228. package/dist/types/tcrawl-config.js.map +1 -0
  229. package/dist/types/thydra-config.d.ts +4 -0
  230. package/dist/types/thydra-config.js +4 -7
  231. package/dist/types/thydra-config.js.map +1 -0
  232. package/dist/types/tparser-ctor.d.ts +7 -0
  233. package/dist/types/tparser-ctor.js +2 -2
  234. package/dist/types/tparser-ctor.js.map +1 -0
  235. package/dist/types/tquery.d.ts +7 -0
  236. package/dist/types/tquery.js +2 -2
  237. package/dist/types/tquery.js.map +1 -0
  238. package/dist/types/trobots-config.d.ts +4 -0
  239. package/dist/types/trobots-config.js +4 -7
  240. package/dist/types/trobots-config.js.map +1 -0
  241. package/package.json +41 -29
  242. package/angular/10-es2015.bacd4ae5dd7913ce55f0.js +0 -1
  243. package/angular/10-es5.bacd4ae5dd7913ce55f0.js +0 -1
  244. package/angular/11-es2015.0f031dcf752d1e8eda6b.js +0 -1
  245. package/angular/11-es5.0f031dcf752d1e8eda6b.js +0 -1
  246. package/angular/3rdpartylicenses.txt +0 -1127
  247. package/angular/5-es2015.951498ca9c1bc74e57bf.js +0 -1
  248. package/angular/5-es5.951498ca9c1bc74e57bf.js +0 -1
  249. package/angular/6-es2015.65f680261a3506b88381.js +0 -1
  250. package/angular/6-es5.65f680261a3506b88381.js +0 -1
  251. package/angular/7-es2015.625197f3af1dbf3e805d.js +0 -1
  252. package/angular/7-es5.625197f3af1dbf3e805d.js +0 -1
  253. package/angular/8-es2015.55518901987a5b834309.js +0 -1
  254. package/angular/8-es5.55518901987a5b834309.js +0 -1
  255. package/angular/9-es2015.6cc9bde262564e7836f2.js +0 -1
  256. package/angular/9-es5.6cc9bde262564e7836f2.js +0 -1
  257. package/angular/Roboto-Black.41ed1105a6ebb8ffe34e.woff2 +0 -0
  258. package/angular/Roboto-Black.937491dfcbe64ca9a9f1.woff +0 -0
  259. package/angular/Roboto-BlackItalic.2e1ee657996854c6f427.woff +0 -0
  260. package/angular/Roboto-BlackItalic.50ca4c51ebc27e7e7d2f.woff2 +0 -0
  261. package/angular/Roboto-Bold.73288d91c325e82a5b92.woff +0 -0
  262. package/angular/Roboto-Bold.92fbd4e93cf0a5dbebaa.woff2 +0 -0
  263. package/angular/Roboto-BoldItalic.5f600d98a73d800ae575.woff2 +0 -0
  264. package/angular/Roboto-BoldItalic.6d89acbd21d7e3fbecb2.woff +0 -0
  265. package/angular/Roboto-Light.c27d89ac77468ae18f28.woff2 +0 -0
  266. package/angular/Roboto-Light.d923dfafc0c5183b59aa.woff +0 -0
  267. package/angular/Roboto-LightItalic.506274c7228cf81cae4d.woff2 +0 -0
  268. package/angular/Roboto-LightItalic.d4b8c137518d9d92bb28.woff +0 -0
  269. package/angular/Roboto-Medium.092c6130df8fd2199888.woff +0 -0
  270. package/angular/Roboto-Medium.1d3bced88509b0838984.woff2 +0 -0
  271. package/angular/Roboto-MediumItalic.18ff1628c628080166c1.woff +0 -0
  272. package/angular/Roboto-MediumItalic.d620b8f53f75966fe42e.woff2 +0 -0
  273. package/angular/Roboto-Regular.64cfb66c866ea50cad47.woff2 +0 -0
  274. package/angular/Roboto-Regular.e02e9d6ff5547f7e9962.woff +0 -0
  275. package/angular/Roboto-RegularItalic.4dd2af1e8df532f41db8.woff2 +0 -0
  276. package/angular/Roboto-RegularItalic.5ea38fff9eebef99c5df.woff +0 -0
  277. package/angular/Roboto-Thin.dbd56bd3357dc3617fe5.woff2 +0 -0
  278. package/angular/Roboto-Thin.e7f7c82374bd0ebef14b.woff +0 -0
  279. package/angular/Roboto-ThinItalic.5dd9349c940073834e9a.woff +0 -0
  280. package/angular/Roboto-ThinItalic.a8cef84f735ef887abdc.woff2 +0 -0
  281. package/angular/assets/config/app-config.json +0 -16
  282. package/angular/assets/images/splashbg.jpg +0 -0
  283. package/angular/assets/web-app-commons/fonts/material-icons/MaterialDesignIcons-Community-2.7.94.woff +0 -0
  284. package/angular/assets/web-app-commons/fonts/material-icons/MaterialDesignIcons-Community-2.7.94.woff2 +0 -0
  285. package/angular/assets/web-app-commons/fonts/material-icons/material-design-icons-community.css +0 -11293
  286. package/angular/favicon.ico +0 -0
  287. package/angular/flUhRq6tzZclQEJ-Vdg-IuiaDsNa.f2a0933406f783065152.woff +0 -0
  288. package/angular/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.6467d9a24f234e8e8e07.woff2 +0 -0
  289. package/angular/index.html +0 -16
  290. package/angular/main-es2015.3a582572476c7f292e52.js +0 -1
  291. package/angular/main-es5.3a582572476c7f292e52.js +0 -1
  292. package/angular/polyfills-es2015.7df68534018bc2f6cb09.js +0 -1
  293. package/angular/polyfills-es5.e79468f406fae2989221.js +0 -1
  294. package/angular/runtime-es2015.6d2cff76cdb2790d3308.js +0 -1
  295. package/angular/runtime-es5.6d2cff76cdb2790d3308.js +0 -1
  296. package/angular/styles.c5c6c2534225b85c4ff0.css +0 -1
  297. package/config/bad-words.json +0 -1
  298. package/config/complex-english.json +0 -400
  299. package/config/hydra-auth.json +0 -8
  300. package/config/hydra-crawler.json +0 -84
  301. package/config/list-allow.json +0 -171
  302. package/config/list-deny.json +0 -248
  303. package/config/list-expiry.json +0 -7
  304. package/config/schedule.json +0 -25
  305. package/config/spelling.json +0 -1
@@ -1,1127 +0,0 @@
1
- @angular-devkit/build-angular
2
- MIT
3
- The MIT License
4
-
5
- Copyright (c) 2017 Google, Inc.
6
-
7
- Permission is hereby granted, free of charge, to any person obtaining a copy
8
- of this software and associated documentation files (the "Software"), to deal
9
- in the Software without restriction, including without limitation the rights
10
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
- copies of the Software, and to permit persons to whom the Software is
12
- furnished to do so, subject to the following conditions:
13
-
14
- The above copyright notice and this permission notice shall be included in all
15
- copies or substantial portions of the Software.
16
-
17
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
- SOFTWARE.
24
-
25
-
26
- @angular/animations
27
- MIT
28
-
29
- @angular/common
30
- MIT
31
-
32
- @angular/core
33
- MIT
34
-
35
- @angular/forms
36
- MIT
37
-
38
- @angular/platform-browser
39
- MIT
40
-
41
- @angular/router
42
- MIT
43
-
44
- after
45
- MIT
46
- Copyright (c) 2011 Raynos.
47
-
48
- Permission is hereby granted, free of charge, to any person obtaining a copy
49
- of this software and associated documentation files (the "Software"), to deal
50
- in the Software without restriction, including without limitation the rights
51
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
52
- copies of the Software, and to permit persons to whom the Software is
53
- furnished to do so, subject to the following conditions:
54
-
55
- The above copyright notice and this permission notice shall be included in
56
- all copies or substantial portions of the Software.
57
-
58
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
59
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
61
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
62
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
63
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
64
- THE SOFTWARE.
65
-
66
- arraybuffer.slice
67
- MIT
68
- Copyright (C) 2013 Rase-
69
-
70
- Permission is hereby granted, free of charge, to any person obtaining a copy of
71
- this software and associated documentation files (the "Software"), to deal in
72
- the Software without restriction, including without limitation the rights to
73
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
74
- of the Software, and to permit persons to whom the Software is furnished to do
75
- so, subject to the following conditions:
76
-
77
- The above copyright notice and this permission notice shall be included in all
78
- copies or substantial portions of the Software.
79
-
80
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
82
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
83
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
84
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
85
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
86
-
87
-
88
- backo2
89
- MIT
90
-
91
- base64-arraybuffer
92
- MIT
93
- Copyright (c) 2012 Niklas von Hertzen
94
-
95
- Permission is hereby granted, free of charge, to any person
96
- obtaining a copy of this software and associated documentation
97
- files (the "Software"), to deal in the Software without
98
- restriction, including without limitation the rights to use,
99
- copy, modify, merge, publish, distribute, sublicense, and/or sell
100
- copies of the Software, and to permit persons to whom the
101
- Software is furnished to do so, subject to the following
102
- conditions:
103
-
104
- The above copyright notice and this permission notice shall be
105
- included in all copies or substantial portions of the Software.
106
-
107
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
108
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
109
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
110
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
111
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
112
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
113
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
114
- OTHER DEALINGS IN THE SOFTWARE.
115
-
116
-
117
- blob
118
- MIT
119
- MIT License
120
-
121
- Copyright (C) 2014 Rase-
122
-
123
- Permission is hereby granted, free of charge, to any person obtaining a copy of
124
- this software and associated documentation files (the "Software"), to deal in
125
- the Software without restriction, including without limitation the rights to
126
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
127
- the Software, and to permit persons to whom the Software is furnished to do so,
128
- subject to the following conditions:
129
-
130
- The above copyright notice and this permission notice shall be included in all
131
- copies or substantial portions of the Software.
132
-
133
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
134
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
135
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
136
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
137
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
139
- SOFTWARE.
140
-
141
-
142
- component-bind
143
-
144
- component-emitter
145
- MIT
146
- (The MIT License)
147
-
148
- Copyright (c) 2014 Component contributors <dev@component.io>
149
-
150
- Permission is hereby granted, free of charge, to any person
151
- obtaining a copy of this software and associated documentation
152
- files (the "Software"), to deal in the Software without
153
- restriction, including without limitation the rights to use,
154
- copy, modify, merge, publish, distribute, sublicense, and/or sell
155
- copies of the Software, and to permit persons to whom the
156
- Software is furnished to do so, subject to the following
157
- conditions:
158
-
159
- The above copyright notice and this permission notice shall be
160
- included in all copies or substantial portions of the Software.
161
-
162
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
163
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
164
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
165
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
166
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
167
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
168
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
169
- OTHER DEALINGS IN THE SOFTWARE.
170
-
171
-
172
- component-inherit
173
-
174
- core-js
175
- MIT
176
- Copyright (c) 2014-2020 Denis Pushkarev
177
-
178
- Permission is hereby granted, free of charge, to any person obtaining a copy
179
- of this software and associated documentation files (the "Software"), to deal
180
- in the Software without restriction, including without limitation the rights
181
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
182
- copies of the Software, and to permit persons to whom the Software is
183
- furnished to do so, subject to the following conditions:
184
-
185
- The above copyright notice and this permission notice shall be included in
186
- all copies or substantial portions of the Software.
187
-
188
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
189
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
190
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
191
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
192
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
193
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
194
- THE SOFTWARE.
195
-
196
-
197
- css-loader
198
- MIT
199
- Copyright JS Foundation and other contributors
200
-
201
- Permission is hereby granted, free of charge, to any person obtaining
202
- a copy of this software and associated documentation files (the
203
- 'Software'), to deal in the Software without restriction, including
204
- without limitation the rights to use, copy, modify, merge, publish,
205
- distribute, sublicense, and/or sell copies of the Software, and to
206
- permit persons to whom the Software is furnished to do so, subject to
207
- the following conditions:
208
-
209
- The above copyright notice and this permission notice shall be
210
- included in all copies or substantial portions of the Software.
211
-
212
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
213
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
214
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
215
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
216
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
217
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
218
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
219
-
220
-
221
- debug
222
- MIT
223
- (The MIT License)
224
-
225
- Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
226
-
227
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software
228
- and associated documentation files (the 'Software'), to deal in the Software without restriction,
229
- including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
230
- and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
231
- subject to the following conditions:
232
-
233
- The above copyright notice and this permission notice shall be included in all copies or substantial
234
- portions of the Software.
235
-
236
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
237
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
238
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
239
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
240
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
241
-
242
-
243
-
244
- engine.io-client
245
- MIT
246
- (The MIT License)
247
-
248
- Copyright (c) 2014-2015 Automattic <dev@cloudup.com>
249
-
250
- Permission is hereby granted, free of charge, to any person obtaining
251
- a copy of this software and associated documentation files (the
252
- 'Software'), to deal in the Software without restriction, including
253
- without limitation the rights to use, copy, modify, merge, publish,
254
- distribute, sublicense, and/or sell copies of the Software, and to
255
- permit persons to whom the Software is furnished to do so, subject to
256
- the following conditions:
257
-
258
- The above copyright notice and this permission notice shall be
259
- included in all copies or substantial portions of the Software.
260
-
261
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
262
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
263
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
264
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
265
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
266
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
267
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
268
-
269
-
270
- engine.io-parser
271
- MIT
272
- (The MIT License)
273
-
274
- Copyright (c) 2016 Guillermo Rauch (@rauchg)
275
-
276
- Permission is hereby granted, free of charge, to any person obtaining
277
- a copy of this software and associated documentation files (the
278
- 'Software'), to deal in the Software without restriction, including
279
- without limitation the rights to use, copy, modify, merge, publish,
280
- distribute, sublicense, and/or sell copies of the Software, and to
281
- permit persons to whom the Software is furnished to do so, subject to
282
- the following conditions:
283
-
284
- The above copyright notice and this permission notice shall be
285
- included in all copies or substantial portions of the Software.
286
-
287
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
288
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
289
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
290
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
291
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
292
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
293
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
294
-
295
- hammerjs
296
- MIT
297
- The MIT License (MIT)
298
-
299
- Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
300
-
301
- Permission is hereby granted, free of charge, to any person obtaining a copy
302
- of this software and associated documentation files (the "Software"), to deal
303
- in the Software without restriction, including without limitation the rights
304
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
305
- copies of the Software, and to permit persons to whom the Software is
306
- furnished to do so, subject to the following conditions:
307
-
308
- The above copyright notice and this permission notice shall be included in
309
- all copies or substantial portions of the Software.
310
-
311
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
312
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
313
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
314
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
315
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
316
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
317
- THE SOFTWARE.
318
-
319
-
320
- has-binary2
321
- MIT
322
- The MIT License (MIT)
323
-
324
- Copyright (c) 2014 Kevin Roark
325
-
326
- Permission is hereby granted, free of charge, to any person obtaining a copy of
327
- this software and associated documentation files (the "Software"), to deal in
328
- the Software without restriction, including without limitation the rights to
329
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
330
- the Software, and to permit persons to whom the Software is furnished to do so,
331
- subject to the following conditions:
332
-
333
- The above copyright notice and this permission notice shall be included in all
334
- copies or substantial portions of the Software.
335
-
336
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
337
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
338
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
339
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
340
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
341
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
342
-
343
-
344
- has-cors
345
- MIT
346
-
347
- hydra-crawler-ts-assets
348
- ISC
349
-
350
- indexof
351
-
352
- isarray
353
- MIT
354
-
355
- material-icons-fontface
356
- SEE LICENSE IN https://github.com/google/material-design-icons/blob/master/LICENSE
357
-
358
- ms
359
- MIT
360
- The MIT License (MIT)
361
-
362
- Copyright (c) 2016 Zeit, Inc.
363
-
364
- Permission is hereby granted, free of charge, to any person obtaining a copy
365
- of this software and associated documentation files (the "Software"), to deal
366
- in the Software without restriction, including without limitation the rights
367
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
368
- copies of the Software, and to permit persons to whom the Software is
369
- furnished to do so, subject to the following conditions:
370
-
371
- The above copyright notice and this permission notice shall be included in all
372
- copies or substantial portions of the Software.
373
-
374
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
375
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
376
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
377
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
378
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
379
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
380
- SOFTWARE.
381
-
382
-
383
- ngx-angularcommons-app
384
- ISC
385
-
386
- ngx-angularcommons-core
387
- ISC
388
-
389
- ngx-angularcommons-pipe
390
- ISC
391
-
392
- ngx-graphicscommons-chart
393
- ISC
394
-
395
- ngx-graphicscommons-core
396
- ISC
397
-
398
- ngx-graphicscommons-widget
399
- ISC
400
-
401
- ngx-httpcommons-rest
402
- ISC
403
-
404
- ngx-httpcommons-socket-io
405
- ISC
406
-
407
- ngx-webappcommons-app
408
- ISC
409
-
410
- ngx-webappcommons-core
411
- ISC
412
-
413
- ngx-webappcommons-form
414
- ISC
415
-
416
- ngx-webappcommons-graphics
417
- ISC
418
-
419
- ngx-webappcommons-mobile
420
- ISC
421
-
422
- ngx-webappcommons-stock
423
- ISC
424
-
425
- parseqs
426
- MIT
427
- The MIT License (MIT)
428
-
429
- Copyright (c) 2015 Gal Koren
430
-
431
- Permission is hereby granted, free of charge, to any person obtaining a copy
432
- of this software and associated documentation files (the "Software"), to deal
433
- in the Software without restriction, including without limitation the rights
434
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
435
- copies of the Software, and to permit persons to whom the Software is
436
- furnished to do so, subject to the following conditions:
437
-
438
- The above copyright notice and this permission notice shall be included in
439
- all copies or substantial portions of the Software.
440
-
441
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
442
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
443
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
444
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
445
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
446
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
447
- THE SOFTWARE.
448
-
449
-
450
- parseuri
451
- MIT
452
- The MIT License (MIT)
453
-
454
- Copyright (c) 2014 Gal Koren
455
-
456
- Permission is hereby granted, free of charge, to any person obtaining a copy
457
- of this software and associated documentation files (the "Software"), to deal
458
- in the Software without restriction, including without limitation the rights
459
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
460
- copies of the Software, and to permit persons to whom the Software is
461
- furnished to do so, subject to the following conditions:
462
-
463
- The above copyright notice and this permission notice shall be included in
464
- all copies or substantial portions of the Software.
465
-
466
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
467
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
468
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
469
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
470
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
471
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
472
- THE SOFTWARE.
473
-
474
-
475
- regenerator-runtime
476
- MIT
477
- MIT License
478
-
479
- Copyright (c) 2014-present, Facebook, Inc.
480
-
481
- Permission is hereby granted, free of charge, to any person obtaining a copy
482
- of this software and associated documentation files (the "Software"), to deal
483
- in the Software without restriction, including without limitation the rights
484
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
485
- copies of the Software, and to permit persons to whom the Software is
486
- furnished to do so, subject to the following conditions:
487
-
488
- The above copyright notice and this permission notice shall be included in all
489
- copies or substantial portions of the Software.
490
-
491
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
492
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
493
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
494
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
495
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
496
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
497
- SOFTWARE.
498
-
499
-
500
- roboto-fontface
501
- Apache-2.0
502
- Apache License
503
- Version 2.0, January 2004
504
- http://www.apache.org/licenses/
505
-
506
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
507
-
508
- 1. Definitions.
509
-
510
- "License" shall mean the terms and conditions for use, reproduction,
511
- and distribution as defined by Sections 1 through 9 of this document.
512
-
513
- "Licensor" shall mean the copyright owner or entity authorized by
514
- the copyright owner that is granting the License.
515
-
516
- "Legal Entity" shall mean the union of the acting entity and all
517
- other entities that control, are controlled by, or are under common
518
- control with that entity. For the purposes of this definition,
519
- "control" means (i) the power, direct or indirect, to cause the
520
- direction or management of such entity, whether by contract or
521
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
522
- outstanding shares, or (iii) beneficial ownership of such entity.
523
-
524
- "You" (or "Your") shall mean an individual or Legal Entity
525
- exercising permissions granted by this License.
526
-
527
- "Source" form shall mean the preferred form for making modifications,
528
- including but not limited to software source code, documentation
529
- source, and configuration files.
530
-
531
- "Object" form shall mean any form resulting from mechanical
532
- transformation or translation of a Source form, including but
533
- not limited to compiled object code, generated documentation,
534
- and conversions to other media types.
535
-
536
- "Work" shall mean the work of authorship, whether in Source or
537
- Object form, made available under the License, as indicated by a
538
- copyright notice that is included in or attached to the work
539
- (an example is provided in the Appendix below).
540
-
541
- "Derivative Works" shall mean any work, whether in Source or Object
542
- form, that is based on (or derived from) the Work and for which the
543
- editorial revisions, annotations, elaborations, or other modifications
544
- represent, as a whole, an original work of authorship. For the purposes
545
- of this License, Derivative Works shall not include works that remain
546
- separable from, or merely link (or bind by name) to the interfaces of,
547
- the Work and Derivative Works thereof.
548
-
549
- "Contribution" shall mean any work of authorship, including
550
- the original version of the Work and any modifications or additions
551
- to that Work or Derivative Works thereof, that is intentionally
552
- submitted to Licensor for inclusion in the Work by the copyright owner
553
- or by an individual or Legal Entity authorized to submit on behalf of
554
- the copyright owner. For the purposes of this definition, "submitted"
555
- means any form of electronic, verbal, or written communication sent
556
- to the Licensor or its representatives, including but not limited to
557
- communication on electronic mailing lists, source code control systems,
558
- and issue tracking systems that are managed by, or on behalf of, the
559
- Licensor for the purpose of discussing and improving the Work, but
560
- excluding communication that is conspicuously marked or otherwise
561
- designated in writing by the copyright owner as "Not a Contribution."
562
-
563
- "Contributor" shall mean Licensor and any individual or Legal Entity
564
- on behalf of whom a Contribution has been received by Licensor and
565
- subsequently incorporated within the Work.
566
-
567
- 2. Grant of Copyright License. Subject to the terms and conditions of
568
- this License, each Contributor hereby grants to You a perpetual,
569
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
570
- copyright license to reproduce, prepare Derivative Works of,
571
- publicly display, publicly perform, sublicense, and distribute the
572
- Work and such Derivative Works in Source or Object form.
573
-
574
- 3. Grant of Patent License. Subject to the terms and conditions of
575
- this License, each Contributor hereby grants to You a perpetual,
576
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
577
- (except as stated in this section) patent license to make, have made,
578
- use, offer to sell, sell, import, and otherwise transfer the Work,
579
- where such license applies only to those patent claims licensable
580
- by such Contributor that are necessarily infringed by their
581
- Contribution(s) alone or by combination of their Contribution(s)
582
- with the Work to which such Contribution(s) was submitted. If You
583
- institute patent litigation against any entity (including a
584
- cross-claim or counterclaim in a lawsuit) alleging that the Work
585
- or a Contribution incorporated within the Work constitutes direct
586
- or contributory patent infringement, then any patent licenses
587
- granted to You under this License for that Work shall terminate
588
- as of the date such litigation is filed.
589
-
590
- 4. Redistribution. You may reproduce and distribute copies of the
591
- Work or Derivative Works thereof in any medium, with or without
592
- modifications, and in Source or Object form, provided that You
593
- meet the following conditions:
594
-
595
- (a) You must give any other recipients of the Work or
596
- Derivative Works a copy of this License; and
597
-
598
- (b) You must cause any modified files to carry prominent notices
599
- stating that You changed the files; and
600
-
601
- (c) You must retain, in the Source form of any Derivative Works
602
- that You distribute, all copyright, patent, trademark, and
603
- attribution notices from the Source form of the Work,
604
- excluding those notices that do not pertain to any part of
605
- the Derivative Works; and
606
-
607
- (d) If the Work includes a "NOTICE" text file as part of its
608
- distribution, then any Derivative Works that You distribute must
609
- include a readable copy of the attribution notices contained
610
- within such NOTICE file, excluding those notices that do not
611
- pertain to any part of the Derivative Works, in at least one
612
- of the following places: within a NOTICE text file distributed
613
- as part of the Derivative Works; within the Source form or
614
- documentation, if provided along with the Derivative Works; or,
615
- within a display generated by the Derivative Works, if and
616
- wherever such third-party notices normally appear. The contents
617
- of the NOTICE file are for informational purposes only and
618
- do not modify the License. You may add Your own attribution
619
- notices within Derivative Works that You distribute, alongside
620
- or as an addendum to the NOTICE text from the Work, provided
621
- that such additional attribution notices cannot be construed
622
- as modifying the License.
623
-
624
- You may add Your own copyright statement to Your modifications and
625
- may provide additional or different license terms and conditions
626
- for use, reproduction, or distribution of Your modifications, or
627
- for any such Derivative Works as a whole, provided Your use,
628
- reproduction, and distribution of the Work otherwise complies with
629
- the conditions stated in this License.
630
-
631
- 5. Submission of Contributions. Unless You explicitly state otherwise,
632
- any Contribution intentionally submitted for inclusion in the Work
633
- by You to the Licensor shall be under the terms and conditions of
634
- this License, without any additional terms or conditions.
635
- Notwithstanding the above, nothing herein shall supersede or modify
636
- the terms of any separate license agreement you may have executed
637
- with Licensor regarding such Contributions.
638
-
639
- 6. Trademarks. This License does not grant permission to use the trade
640
- names, trademarks, service marks, or product names of the Licensor,
641
- except as required for reasonable and customary use in describing the
642
- origin of the Work and reproducing the content of the NOTICE file.
643
-
644
- 7. Disclaimer of Warranty. Unless required by applicable law or
645
- agreed to in writing, Licensor provides the Work (and each
646
- Contributor provides its Contributions) on an "AS IS" BASIS,
647
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
648
- implied, including, without limitation, any warranties or conditions
649
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
650
- PARTICULAR PURPOSE. You are solely responsible for determining the
651
- appropriateness of using or redistributing the Work and assume any
652
- risks associated with Your exercise of permissions under this License.
653
-
654
- 8. Limitation of Liability. In no event and under no legal theory,
655
- whether in tort (including negligence), contract, or otherwise,
656
- unless required by applicable law (such as deliberate and grossly
657
- negligent acts) or agreed to in writing, shall any Contributor be
658
- liable to You for damages, including any direct, indirect, special,
659
- incidental, or consequential damages of any character arising as a
660
- result of this License or out of the use or inability to use the
661
- Work (including but not limited to damages for loss of goodwill,
662
- work stoppage, computer failure or malfunction, or any and all
663
- other commercial damages or losses), even if such Contributor
664
- has been advised of the possibility of such damages.
665
-
666
- 9. Accepting Warranty or Additional Liability. While redistributing
667
- the Work or Derivative Works thereof, You may choose to offer,
668
- and charge a fee for, acceptance of support, warranty, indemnity,
669
- or other liability obligations and/or rights consistent with this
670
- License. However, in accepting such obligations, You may act only
671
- on Your own behalf and on Your sole responsibility, not on behalf
672
- of any other Contributor, and only if You agree to indemnify,
673
- defend, and hold each Contributor harmless for any liability
674
- incurred by, or claims asserted against, such Contributor by reason
675
- of your accepting any such warranty or additional liability.
676
-
677
- END OF TERMS AND CONDITIONS
678
-
679
- APPENDIX: How to apply the Apache License to your work.
680
-
681
- To apply the Apache License to your work, attach the following
682
- boilerplate notice, with the fields enclosed by brackets "[]"
683
- replaced with your own identifying information. (Don't include
684
- the brackets!) The text should be enclosed in the appropriate
685
- comment syntax for the file format. We also recommend that a
686
- file or class name and description of purpose be included on the
687
- same "printed page" as the copyright notice for easier
688
- identification within third-party archives.
689
-
690
- Copyright 2013 Christian Hoffmeister
691
-
692
- Licensed under the Apache License, Version 2.0 (the "License");
693
- you may not use this file except in compliance with the License.
694
- You may obtain a copy of the License at
695
-
696
- http://www.apache.org/licenses/LICENSE-2.0
697
-
698
- Unless required by applicable law or agreed to in writing, software
699
- distributed under the License is distributed on an "AS IS" BASIS,
700
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
701
- See the License for the specific language governing permissions and
702
- limitations under the License.
703
-
704
-
705
- rxjs
706
- Apache-2.0
707
- Apache License
708
- Version 2.0, January 2004
709
- http://www.apache.org/licenses/
710
-
711
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
712
-
713
- 1. Definitions.
714
-
715
- "License" shall mean the terms and conditions for use, reproduction,
716
- and distribution as defined by Sections 1 through 9 of this document.
717
-
718
- "Licensor" shall mean the copyright owner or entity authorized by
719
- the copyright owner that is granting the License.
720
-
721
- "Legal Entity" shall mean the union of the acting entity and all
722
- other entities that control, are controlled by, or are under common
723
- control with that entity. For the purposes of this definition,
724
- "control" means (i) the power, direct or indirect, to cause the
725
- direction or management of such entity, whether by contract or
726
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
727
- outstanding shares, or (iii) beneficial ownership of such entity.
728
-
729
- "You" (or "Your") shall mean an individual or Legal Entity
730
- exercising permissions granted by this License.
731
-
732
- "Source" form shall mean the preferred form for making modifications,
733
- including but not limited to software source code, documentation
734
- source, and configuration files.
735
-
736
- "Object" form shall mean any form resulting from mechanical
737
- transformation or translation of a Source form, including but
738
- not limited to compiled object code, generated documentation,
739
- and conversions to other media types.
740
-
741
- "Work" shall mean the work of authorship, whether in Source or
742
- Object form, made available under the License, as indicated by a
743
- copyright notice that is included in or attached to the work
744
- (an example is provided in the Appendix below).
745
-
746
- "Derivative Works" shall mean any work, whether in Source or Object
747
- form, that is based on (or derived from) the Work and for which the
748
- editorial revisions, annotations, elaborations, or other modifications
749
- represent, as a whole, an original work of authorship. For the purposes
750
- of this License, Derivative Works shall not include works that remain
751
- separable from, or merely link (or bind by name) to the interfaces of,
752
- the Work and Derivative Works thereof.
753
-
754
- "Contribution" shall mean any work of authorship, including
755
- the original version of the Work and any modifications or additions
756
- to that Work or Derivative Works thereof, that is intentionally
757
- submitted to Licensor for inclusion in the Work by the copyright owner
758
- or by an individual or Legal Entity authorized to submit on behalf of
759
- the copyright owner. For the purposes of this definition, "submitted"
760
- means any form of electronic, verbal, or written communication sent
761
- to the Licensor or its representatives, including but not limited to
762
- communication on electronic mailing lists, source code control systems,
763
- and issue tracking systems that are managed by, or on behalf of, the
764
- Licensor for the purpose of discussing and improving the Work, but
765
- excluding communication that is conspicuously marked or otherwise
766
- designated in writing by the copyright owner as "Not a Contribution."
767
-
768
- "Contributor" shall mean Licensor and any individual or Legal Entity
769
- on behalf of whom a Contribution has been received by Licensor and
770
- subsequently incorporated within the Work.
771
-
772
- 2. Grant of Copyright License. Subject to the terms and conditions of
773
- this License, each Contributor hereby grants to You a perpetual,
774
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
775
- copyright license to reproduce, prepare Derivative Works of,
776
- publicly display, publicly perform, sublicense, and distribute the
777
- Work and such Derivative Works in Source or Object form.
778
-
779
- 3. Grant of Patent License. Subject to the terms and conditions of
780
- this License, each Contributor hereby grants to You a perpetual,
781
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
782
- (except as stated in this section) patent license to make, have made,
783
- use, offer to sell, sell, import, and otherwise transfer the Work,
784
- where such license applies only to those patent claims licensable
785
- by such Contributor that are necessarily infringed by their
786
- Contribution(s) alone or by combination of their Contribution(s)
787
- with the Work to which such Contribution(s) was submitted. If You
788
- institute patent litigation against any entity (including a
789
- cross-claim or counterclaim in a lawsuit) alleging that the Work
790
- or a Contribution incorporated within the Work constitutes direct
791
- or contributory patent infringement, then any patent licenses
792
- granted to You under this License for that Work shall terminate
793
- as of the date such litigation is filed.
794
-
795
- 4. Redistribution. You may reproduce and distribute copies of the
796
- Work or Derivative Works thereof in any medium, with or without
797
- modifications, and in Source or Object form, provided that You
798
- meet the following conditions:
799
-
800
- (a) You must give any other recipients of the Work or
801
- Derivative Works a copy of this License; and
802
-
803
- (b) You must cause any modified files to carry prominent notices
804
- stating that You changed the files; and
805
-
806
- (c) You must retain, in the Source form of any Derivative Works
807
- that You distribute, all copyright, patent, trademark, and
808
- attribution notices from the Source form of the Work,
809
- excluding those notices that do not pertain to any part of
810
- the Derivative Works; and
811
-
812
- (d) If the Work includes a "NOTICE" text file as part of its
813
- distribution, then any Derivative Works that You distribute must
814
- include a readable copy of the attribution notices contained
815
- within such NOTICE file, excluding those notices that do not
816
- pertain to any part of the Derivative Works, in at least one
817
- of the following places: within a NOTICE text file distributed
818
- as part of the Derivative Works; within the Source form or
819
- documentation, if provided along with the Derivative Works; or,
820
- within a display generated by the Derivative Works, if and
821
- wherever such third-party notices normally appear. The contents
822
- of the NOTICE file are for informational purposes only and
823
- do not modify the License. You may add Your own attribution
824
- notices within Derivative Works that You distribute, alongside
825
- or as an addendum to the NOTICE text from the Work, provided
826
- that such additional attribution notices cannot be construed
827
- as modifying the License.
828
-
829
- You may add Your own copyright statement to Your modifications and
830
- may provide additional or different license terms and conditions
831
- for use, reproduction, or distribution of Your modifications, or
832
- for any such Derivative Works as a whole, provided Your use,
833
- reproduction, and distribution of the Work otherwise complies with
834
- the conditions stated in this License.
835
-
836
- 5. Submission of Contributions. Unless You explicitly state otherwise,
837
- any Contribution intentionally submitted for inclusion in the Work
838
- by You to the Licensor shall be under the terms and conditions of
839
- this License, without any additional terms or conditions.
840
- Notwithstanding the above, nothing herein shall supersede or modify
841
- the terms of any separate license agreement you may have executed
842
- with Licensor regarding such Contributions.
843
-
844
- 6. Trademarks. This License does not grant permission to use the trade
845
- names, trademarks, service marks, or product names of the Licensor,
846
- except as required for reasonable and customary use in describing the
847
- origin of the Work and reproducing the content of the NOTICE file.
848
-
849
- 7. Disclaimer of Warranty. Unless required by applicable law or
850
- agreed to in writing, Licensor provides the Work (and each
851
- Contributor provides its Contributions) on an "AS IS" BASIS,
852
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
853
- implied, including, without limitation, any warranties or conditions
854
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
855
- PARTICULAR PURPOSE. You are solely responsible for determining the
856
- appropriateness of using or redistributing the Work and assume any
857
- risks associated with Your exercise of permissions under this License.
858
-
859
- 8. Limitation of Liability. In no event and under no legal theory,
860
- whether in tort (including negligence), contract, or otherwise,
861
- unless required by applicable law (such as deliberate and grossly
862
- negligent acts) or agreed to in writing, shall any Contributor be
863
- liable to You for damages, including any direct, indirect, special,
864
- incidental, or consequential damages of any character arising as a
865
- result of this License or out of the use or inability to use the
866
- Work (including but not limited to damages for loss of goodwill,
867
- work stoppage, computer failure or malfunction, or any and all
868
- other commercial damages or losses), even if such Contributor
869
- has been advised of the possibility of such damages.
870
-
871
- 9. Accepting Warranty or Additional Liability. While redistributing
872
- the Work or Derivative Works thereof, You may choose to offer,
873
- and charge a fee for, acceptance of support, warranty, indemnity,
874
- or other liability obligations and/or rights consistent with this
875
- License. However, in accepting such obligations, You may act only
876
- on Your own behalf and on Your sole responsibility, not on behalf
877
- of any other Contributor, and only if You agree to indemnify,
878
- defend, and hold each Contributor harmless for any liability
879
- incurred by, or claims asserted against, such Contributor by reason
880
- of your accepting any such warranty or additional liability.
881
-
882
- END OF TERMS AND CONDITIONS
883
-
884
- APPENDIX: How to apply the Apache License to your work.
885
-
886
- To apply the Apache License to your work, attach the following
887
- boilerplate notice, with the fields enclosed by brackets "[]"
888
- replaced with your own identifying information. (Don't include
889
- the brackets!) The text should be enclosed in the appropriate
890
- comment syntax for the file format. We also recommend that a
891
- file or class name and description of purpose be included on the
892
- same "printed page" as the copyright notice for easier
893
- identification within third-party archives.
894
-
895
- Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
896
-
897
- Licensed under the Apache License, Version 2.0 (the "License");
898
- you may not use this file except in compliance with the License.
899
- You may obtain a copy of the License at
900
-
901
- http://www.apache.org/licenses/LICENSE-2.0
902
-
903
- Unless required by applicable law or agreed to in writing, software
904
- distributed under the License is distributed on an "AS IS" BASIS,
905
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
906
- See the License for the specific language governing permissions and
907
- limitations under the License.
908
-
909
-
910
-
911
- simplify-js
912
- BSD-2-Clause
913
- Copyright (c) 2017, Vladimir Agafonkin
914
- All rights reserved.
915
-
916
- Redistribution and use in source and binary forms, with or without modification, are
917
- permitted provided that the following conditions are met:
918
-
919
- 1. Redistributions of source code must retain the above copyright notice, this list of
920
- conditions and the following disclaimer.
921
-
922
- 2. Redistributions in binary form must reproduce the above copyright notice, this list
923
- of conditions and the following disclaimer in the documentation and/or other materials
924
- provided with the distribution.
925
-
926
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
927
- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
928
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
929
- COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
930
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
931
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
932
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
933
- TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
934
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
935
-
936
-
937
- socket.io-client
938
- MIT
939
- The MIT License (MIT)
940
-
941
- Copyright (c) 2014 Guillermo Rauch
942
-
943
-
944
- Permission is hereby granted, free of charge, to any person obtaining a copy
945
- of this software and associated documentation files (the "Software"), to deal
946
- in the Software without restriction, including without limitation the rights
947
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
948
- copies of the Software, and to permit persons to whom the Software is
949
- furnished to do so, subject to the following conditions:
950
-
951
- The above copyright notice and this permission notice shall be included in
952
- all copies or substantial portions of the Software.
953
-
954
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
955
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
956
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
957
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
958
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
959
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
960
- THE SOFTWARE.
961
-
962
- socket.io-parser
963
- MIT
964
- (The MIT License)
965
-
966
- Copyright (c) 2014 Guillermo Rauch <guillermo@learnboost.com>
967
-
968
- Permission is hereby granted, free of charge, to any person obtaining a copy of
969
- this software and associated documentation files (the 'Software'), to deal in
970
- the Software without restriction, including without limitation the rights to
971
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
972
- the Software, and to permit persons to whom the Software is furnished to do so,
973
- subject to the following conditions:
974
-
975
- The above copyright notice and this permission notice shall be included in all
976
- copies or substantial portions of the Software.
977
-
978
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
979
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
980
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
981
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
982
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
983
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
984
-
985
-
986
- svg-catmull-rom-spline
987
- ISC
988
-
989
- to-array
990
- MIT
991
- Copyright (c) 2012 Raynos.
992
-
993
- Permission is hereby granted, free of charge, to any person obtaining a copy
994
- of this software and associated documentation files (the "Software"), to deal
995
- in the Software without restriction, including without limitation the rights
996
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
997
- copies of the Software, and to permit persons to whom the Software is
998
- furnished to do so, subject to the following conditions:
999
-
1000
- The above copyright notice and this permission notice shall be included in
1001
- all copies or substantial portions of the Software.
1002
-
1003
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1004
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1005
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1006
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1007
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1008
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1009
- THE SOFTWARE.
1010
-
1011
- tscommons-async
1012
- ISC
1013
-
1014
- tscommons-core
1015
- ISC
1016
-
1017
- tscommons-graphics
1018
- ISC
1019
-
1020
- tslib
1021
- Apache-2.0
1022
- Apache License
1023
-
1024
- Version 2.0, January 2004
1025
-
1026
- http://www.apache.org/licenses/
1027
-
1028
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1029
-
1030
- 1. Definitions.
1031
-
1032
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
1033
-
1034
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
1035
-
1036
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
1037
-
1038
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
1039
-
1040
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
1041
-
1042
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
1043
-
1044
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
1045
-
1046
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
1047
-
1048
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
1049
-
1050
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
1051
-
1052
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
1053
-
1054
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
1055
-
1056
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
1057
-
1058
- You must give any other recipients of the Work or Derivative Works a copy of this License; and
1059
-
1060
- You must cause any modified files to carry prominent notices stating that You changed the files; and
1061
-
1062
- You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
1063
-
1064
- If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
1065
-
1066
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
1067
-
1068
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
1069
-
1070
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
1071
-
1072
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
1073
-
1074
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
1075
-
1076
- END OF TERMS AND CONDITIONS
1077
-
1078
-
1079
- yeast
1080
- MIT
1081
- The MIT License (MIT)
1082
-
1083
- Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.
1084
-
1085
- Permission is hereby granted, free of charge, to any person obtaining a copy
1086
- of this software and associated documentation files (the "Software"), to deal
1087
- in the Software without restriction, including without limitation the rights
1088
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1089
- copies of the Software, and to permit persons to whom the Software is
1090
- furnished to do so, subject to the following conditions:
1091
-
1092
- The above copyright notice and this permission notice shall be included in all
1093
- copies or substantial portions of the Software.
1094
-
1095
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1096
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1097
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1098
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1099
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1100
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1101
- SOFTWARE.
1102
-
1103
-
1104
-
1105
- zone.js
1106
- MIT
1107
- The MIT License
1108
-
1109
- Copyright (c) 2010-2020 Google LLC. http://angular.io/license
1110
-
1111
- Permission is hereby granted, free of charge, to any person obtaining a copy
1112
- of this software and associated documentation files (the "Software"), to deal
1113
- in the Software without restriction, including without limitation the rights
1114
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1115
- copies of the Software, and to permit persons to whom the Software is
1116
- furnished to do so, subject to the following conditions:
1117
-
1118
- The above copyright notice and this permission notice shall be included in
1119
- all copies or substantial portions of the Software.
1120
-
1121
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1122
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1123
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1124
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1125
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1126
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1127
- THE SOFTWARE.