@sync-in/server 1.3.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 (1811) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/LICENSE +660 -0
  3. package/README.md +106 -0
  4. package/environment/environment.dist.min.yaml +11 -0
  5. package/environment/environment.dist.yaml +95 -0
  6. package/migrations/0000_init.sql +324 -0
  7. package/migrations/meta/0000_snapshot.json +2417 -0
  8. package/migrations/meta/_journal.json +13 -0
  9. package/package.json +80 -0
  10. package/server/app.bootstrap.js +103 -0
  11. package/server/app.bootstrap.js.map +1 -0
  12. package/server/app.constants.js +58 -0
  13. package/server/app.constants.js.map +1 -0
  14. package/server/app.e2e-spec.js +34 -0
  15. package/server/app.e2e-spec.js.map +1 -0
  16. package/server/app.module.js +72 -0
  17. package/server/app.module.js.map +1 -0
  18. package/server/app.service.js +72 -0
  19. package/server/app.service.js.map +1 -0
  20. package/server/app.service.spec.js +94 -0
  21. package/server/app.service.spec.js.map +1 -0
  22. package/server/applications/admin/admin.module.js +31 -0
  23. package/server/applications/admin/admin.module.js.map +1 -0
  24. package/server/applications/admin/constants/routes.js +19 -0
  25. package/server/applications/admin/constants/routes.js.map +1 -0
  26. package/server/applications/applications.config.js +50 -0
  27. package/server/applications/applications.config.js.map +1 -0
  28. package/server/applications/applications.constants.js +69 -0
  29. package/server/applications/applications.constants.js.map +1 -0
  30. package/server/applications/applications.module.js +59 -0
  31. package/server/applications/applications.module.js.map +1 -0
  32. package/server/applications/comments/comments.controller.js +133 -0
  33. package/server/applications/comments/comments.controller.js.map +1 -0
  34. package/server/applications/comments/comments.controller.spec.js +63 -0
  35. package/server/applications/comments/comments.controller.spec.js.map +1 -0
  36. package/server/applications/comments/comments.module.js +39 -0
  37. package/server/applications/comments/comments.module.js.map +1 -0
  38. package/server/applications/comments/constants/routes.js +35 -0
  39. package/server/applications/comments/constants/routes.js.map +1 -0
  40. package/server/applications/comments/dto/comment.dto.js +62 -0
  41. package/server/applications/comments/dto/comment.dto.js.map +1 -0
  42. package/server/applications/comments/interfaces/comment-recent.interface.js +10 -0
  43. package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -0
  44. package/server/applications/comments/schemas/comment.interface.js +18 -0
  45. package/server/applications/comments/schemas/comment.interface.js.map +1 -0
  46. package/server/applications/comments/schemas/comments.schema.js +57 -0
  47. package/server/applications/comments/schemas/comments.schema.js.map +1 -0
  48. package/server/applications/comments/services/comments-manager.service.js +137 -0
  49. package/server/applications/comments/services/comments-manager.service.js.map +1 -0
  50. package/server/applications/comments/services/comments-manager.service.spec.js +51 -0
  51. package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -0
  52. package/server/applications/comments/services/comments-queries.service.js +185 -0
  53. package/server/applications/comments/services/comments-queries.service.js.map +1 -0
  54. package/server/applications/files/adapters/files-indexer-mysql.service.js +174 -0
  55. package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -0
  56. package/server/applications/files/assets/samples/sample.docx +0 -0
  57. package/server/applications/files/assets/samples/sample.odp +0 -0
  58. package/server/applications/files/assets/samples/sample.ods +0 -0
  59. package/server/applications/files/assets/samples/sample.odt +0 -0
  60. package/server/applications/files/assets/samples/sample.pptx +0 -0
  61. package/server/applications/files/assets/samples/sample.rtf +194 -0
  62. package/server/applications/files/assets/samples/sample.xlsx +0 -0
  63. package/server/applications/files/constants/cache.js +36 -0
  64. package/server/applications/files/constants/cache.js.map +1 -0
  65. package/server/applications/files/constants/compress.js +26 -0
  66. package/server/applications/files/constants/compress.js.map +1 -0
  67. package/server/applications/files/constants/files.js +103 -0
  68. package/server/applications/files/constants/files.js.map +1 -0
  69. package/server/applications/files/constants/indexing.js +49 -0
  70. package/server/applications/files/constants/indexing.js.map +1 -0
  71. package/server/applications/files/constants/only-office.js +536 -0
  72. package/server/applications/files/constants/only-office.js.map +1 -0
  73. package/server/applications/files/constants/operations.js +29 -0
  74. package/server/applications/files/constants/operations.js.map +1 -0
  75. package/server/applications/files/constants/routes.js +100 -0
  76. package/server/applications/files/constants/routes.js.map +1 -0
  77. package/server/applications/files/constants/samples.js +35 -0
  78. package/server/applications/files/constants/samples.js.map +1 -0
  79. package/server/applications/files/decorators/only-office-environment.decorator.js +32 -0
  80. package/server/applications/files/decorators/only-office-environment.decorator.js.map +1 -0
  81. package/server/applications/files/dto/file-operations.dto.js +145 -0
  82. package/server/applications/files/dto/file-operations.dto.js.map +1 -0
  83. package/server/applications/files/events/file-task-event.js +23 -0
  84. package/server/applications/files/events/file-task-event.js.map +1 -0
  85. package/server/applications/files/files-only-office.controller.js +111 -0
  86. package/server/applications/files/files-only-office.controller.js.map +1 -0
  87. package/server/applications/files/files-only-office.controller.spec.js +47 -0
  88. package/server/applications/files/files-only-office.controller.spec.js.map +1 -0
  89. package/server/applications/files/files-tasks.controller.js +97 -0
  90. package/server/applications/files/files-tasks.controller.js.map +1 -0
  91. package/server/applications/files/files-tasks.controller.spec.js +40 -0
  92. package/server/applications/files/files-tasks.controller.spec.js.map +1 -0
  93. package/server/applications/files/files.config.js +96 -0
  94. package/server/applications/files/files.config.js.map +1 -0
  95. package/server/applications/files/files.controller.js +319 -0
  96. package/server/applications/files/files.controller.js.map +1 -0
  97. package/server/applications/files/files.controller.spec.js +84 -0
  98. package/server/applications/files/files.controller.spec.js.map +1 -0
  99. package/server/applications/files/files.module.js +78 -0
  100. package/server/applications/files/files.module.js.map +1 -0
  101. package/server/applications/files/guards/files-only-office.guard.js +48 -0
  102. package/server/applications/files/guards/files-only-office.guard.js.map +1 -0
  103. package/server/applications/files/guards/files-only-office.guard.spec.js +16 -0
  104. package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -0
  105. package/server/applications/files/guards/files-only-office.strategy.js +60 -0
  106. package/server/applications/files/guards/files-only-office.strategy.js.map +1 -0
  107. package/server/applications/files/interfaces/file-db-props.interface.js +10 -0
  108. package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -0
  109. package/server/applications/files/interfaces/file-lock.interface.js +10 -0
  110. package/server/applications/files/interfaces/file-lock.interface.js.map +1 -0
  111. package/server/applications/files/interfaces/file-parse-index.js +10 -0
  112. package/server/applications/files/interfaces/file-parse-index.js.map +1 -0
  113. package/server/applications/files/interfaces/file-props.interface.js +10 -0
  114. package/server/applications/files/interfaces/file-props.interface.js.map +1 -0
  115. package/server/applications/files/interfaces/file-recent-location.interface.js +10 -0
  116. package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -0
  117. package/server/applications/files/interfaces/file-space.interface.js +18 -0
  118. package/server/applications/files/interfaces/file-space.interface.js.map +1 -0
  119. package/server/applications/files/interfaces/file-tree.interface.js +10 -0
  120. package/server/applications/files/interfaces/file-tree.interface.js.map +1 -0
  121. package/server/applications/files/interfaces/only-office-config.interface.js +10 -0
  122. package/server/applications/files/interfaces/only-office-config.interface.js.map +1 -0
  123. package/server/applications/files/models/file-error.js +23 -0
  124. package/server/applications/files/models/file-error.js.map +1 -0
  125. package/server/applications/files/models/file-lock-error.js +23 -0
  126. package/server/applications/files/models/file-lock-error.js.map +1 -0
  127. package/server/applications/files/models/file-task.js +52 -0
  128. package/server/applications/files/models/file-task.js.map +1 -0
  129. package/server/applications/files/models/files-indexer.js +18 -0
  130. package/server/applications/files/models/files-indexer.js.map +1 -0
  131. package/server/applications/files/schemas/file-content.interface.js +10 -0
  132. package/server/applications/files/schemas/file-content.interface.js.map +1 -0
  133. package/server/applications/files/schemas/file-recent.interface.js +18 -0
  134. package/server/applications/files/schemas/file-recent.interface.js.map +1 -0
  135. package/server/applications/files/schemas/file.interface.js +18 -0
  136. package/server/applications/files/schemas/file.interface.js.map +1 -0
  137. package/server/applications/files/schemas/files-content.schema.js +41 -0
  138. package/server/applications/files/schemas/files-content.schema.js.map +1 -0
  139. package/server/applications/files/schemas/files-recents.schema.js +63 -0
  140. package/server/applications/files/schemas/files-recents.schema.js.map +1 -0
  141. package/server/applications/files/schemas/files.schema.js +100 -0
  142. package/server/applications/files/schemas/files.schema.js.map +1 -0
  143. package/server/applications/files/services/files-content-manager.service.js +204 -0
  144. package/server/applications/files/services/files-content-manager.service.js.map +1 -0
  145. package/server/applications/files/services/files-lock-manager.service.js +285 -0
  146. package/server/applications/files/services/files-lock-manager.service.js.map +1 -0
  147. package/server/applications/files/services/files-lock-manager.service.spec.js +40 -0
  148. package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -0
  149. package/server/applications/files/services/files-manager.service.js +565 -0
  150. package/server/applications/files/services/files-manager.service.js.map +1 -0
  151. package/server/applications/files/services/files-manager.service.spec.js +43 -0
  152. package/server/applications/files/services/files-manager.service.spec.js.map +1 -0
  153. package/server/applications/files/services/files-methods.service.js +180 -0
  154. package/server/applications/files/services/files-methods.service.js.map +1 -0
  155. package/server/applications/files/services/files-methods.service.spec.js +135 -0
  156. package/server/applications/files/services/files-methods.service.spec.js.map +1 -0
  157. package/server/applications/files/services/files-only-office-manager.service.js +395 -0
  158. package/server/applications/files/services/files-only-office-manager.service.js.map +1 -0
  159. package/server/applications/files/services/files-only-office-manager.service.spec.js +58 -0
  160. package/server/applications/files/services/files-only-office-manager.service.spec.js.map +1 -0
  161. package/server/applications/files/services/files-parser.service.js +189 -0
  162. package/server/applications/files/services/files-parser.service.js.map +1 -0
  163. package/server/applications/files/services/files-parser.service.spec.js +31 -0
  164. package/server/applications/files/services/files-parser.service.spec.js.map +1 -0
  165. package/server/applications/files/services/files-queries.service.js +314 -0
  166. package/server/applications/files/services/files-queries.service.js.map +1 -0
  167. package/server/applications/files/services/files-recents.service.js +97 -0
  168. package/server/applications/files/services/files-recents.service.js.map +1 -0
  169. package/server/applications/files/services/files-recents.service.spec.js +41 -0
  170. package/server/applications/files/services/files-recents.service.spec.js.map +1 -0
  171. package/server/applications/files/services/files-scheduler.service.js +179 -0
  172. package/server/applications/files/services/files-scheduler.service.js.map +1 -0
  173. package/server/applications/files/services/files-search-manager.service.js +146 -0
  174. package/server/applications/files/services/files-search-manager.service.js.map +1 -0
  175. package/server/applications/files/services/files-search-manager.service.spec.js +46 -0
  176. package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -0
  177. package/server/applications/files/services/files-tasks-manager.service.js +253 -0
  178. package/server/applications/files/services/files-tasks-manager.service.js.map +1 -0
  179. package/server/applications/files/services/files-tasks-manager.service.spec.js +46 -0
  180. package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -0
  181. package/server/applications/files/utils/doc-textify/adapters/excel.js +91 -0
  182. package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -0
  183. package/server/applications/files/utils/doc-textify/adapters/html.js +33 -0
  184. package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -0
  185. package/server/applications/files/utils/doc-textify/adapters/open-office.js +110 -0
  186. package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -0
  187. package/server/applications/files/utils/doc-textify/adapters/pdf.js +67 -0
  188. package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -0
  189. package/server/applications/files/utils/doc-textify/adapters/power-point.js +111 -0
  190. package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -0
  191. package/server/applications/files/utils/doc-textify/adapters/text.js +27 -0
  192. package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -0
  193. package/server/applications/files/utils/doc-textify/adapters/word.js +101 -0
  194. package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -0
  195. package/server/applications/files/utils/doc-textify/doc-textify.js +75 -0
  196. package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -0
  197. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +10 -0
  198. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -0
  199. package/server/applications/files/utils/doc-textify/utils/clean.js +34 -0
  200. package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -0
  201. package/server/applications/files/utils/files-search.js +144 -0
  202. package/server/applications/files/utils/files-search.js.map +1 -0
  203. package/server/applications/files/utils/files-tree.js +86 -0
  204. package/server/applications/files/utils/files-tree.js.map +1 -0
  205. package/server/applications/files/utils/files.js +386 -0
  206. package/server/applications/files/utils/files.js.map +1 -0
  207. package/server/applications/files/utils/send-file.js +70 -0
  208. package/server/applications/files/utils/send-file.js.map +1 -0
  209. package/server/applications/files/utils/unzip-file.js +60 -0
  210. package/server/applications/files/utils/unzip-file.js.map +1 -0
  211. package/server/applications/files/utils/url-file.js +39 -0
  212. package/server/applications/files/utils/url-file.js.map +1 -0
  213. package/server/applications/links/constants/cache.js +28 -0
  214. package/server/applications/links/constants/cache.js.map +1 -0
  215. package/server/applications/links/constants/links.js +36 -0
  216. package/server/applications/links/constants/links.js.map +1 -0
  217. package/server/applications/links/constants/routes.js +41 -0
  218. package/server/applications/links/constants/routes.js.map +1 -0
  219. package/server/applications/links/dto/create-or-update-link.dto.js +95 -0
  220. package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -0
  221. package/server/applications/links/interfaces/link-guest.interface.js +10 -0
  222. package/server/applications/links/interfaces/link-guest.interface.js.map +1 -0
  223. package/server/applications/links/interfaces/link-space.interface.js +10 -0
  224. package/server/applications/links/interfaces/link-space.interface.js.map +1 -0
  225. package/server/applications/links/links.controller.js +107 -0
  226. package/server/applications/links/links.controller.js.map +1 -0
  227. package/server/applications/links/links.controller.spec.js +88 -0
  228. package/server/applications/links/links.controller.spec.js.map +1 -0
  229. package/server/applications/links/schemas/link.interface.js +18 -0
  230. package/server/applications/links/schemas/link.interface.js.map +1 -0
  231. package/server/applications/links/schemas/links.schema.js +56 -0
  232. package/server/applications/links/schemas/links.schema.js.map +1 -0
  233. package/server/applications/links/services/links-manager.service.js +158 -0
  234. package/server/applications/links/services/links-manager.service.js.map +1 -0
  235. package/server/applications/links/services/links-manager.service.spec.js +84 -0
  236. package/server/applications/links/services/links-manager.service.spec.js.map +1 -0
  237. package/server/applications/links/services/links-queries.service.js +181 -0
  238. package/server/applications/links/services/links-queries.service.js.map +1 -0
  239. package/server/applications/notifications/constants/notifications.js +62 -0
  240. package/server/applications/notifications/constants/notifications.js.map +1 -0
  241. package/server/applications/notifications/constants/routes.js +30 -0
  242. package/server/applications/notifications/constants/routes.js.map +1 -0
  243. package/server/applications/notifications/constants/websocket.js +22 -0
  244. package/server/applications/notifications/constants/websocket.js.map +1 -0
  245. package/server/applications/notifications/i18n/fr.js +43 -0
  246. package/server/applications/notifications/i18n/fr.js.map +1 -0
  247. package/server/applications/notifications/i18n/index.js +37 -0
  248. package/server/applications/notifications/i18n/index.js.map +1 -0
  249. package/server/applications/notifications/interfaces/notification-properties.interface.js +10 -0
  250. package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -0
  251. package/server/applications/notifications/interfaces/user-mail-notification.js +10 -0
  252. package/server/applications/notifications/interfaces/user-mail-notification.js.map +1 -0
  253. package/server/applications/notifications/mails/models.js +133 -0
  254. package/server/applications/notifications/mails/models.js.map +1 -0
  255. package/server/applications/notifications/mails/templates.js +51 -0
  256. package/server/applications/notifications/mails/templates.js.map +1 -0
  257. package/server/applications/notifications/mails/urls.js +51 -0
  258. package/server/applications/notifications/mails/urls.js.map +1 -0
  259. package/server/applications/notifications/notifications.controller.js +110 -0
  260. package/server/applications/notifications/notifications.controller.js.map +1 -0
  261. package/server/applications/notifications/notifications.controller.spec.js +33 -0
  262. package/server/applications/notifications/notifications.controller.spec.js.map +1 -0
  263. package/server/applications/notifications/notifications.gateway.js +45 -0
  264. package/server/applications/notifications/notifications.gateway.js.map +1 -0
  265. package/server/applications/notifications/notifications.module.js +44 -0
  266. package/server/applications/notifications/notifications.module.js.map +1 -0
  267. package/server/applications/notifications/schemas/notification.interface.js +18 -0
  268. package/server/applications/notifications/schemas/notification.interface.js.map +1 -0
  269. package/server/applications/notifications/schemas/notifications.schema.js +45 -0
  270. package/server/applications/notifications/schemas/notifications.schema.js.map +1 -0
  271. package/server/applications/notifications/services/notifications-manager.service.js +143 -0
  272. package/server/applications/notifications/services/notifications-manager.service.js.map +1 -0
  273. package/server/applications/notifications/services/notifications-manager.service.spec.js +46 -0
  274. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -0
  275. package/server/applications/notifications/services/notifications-queries.service.js +100 -0
  276. package/server/applications/notifications/services/notifications-queries.service.js.map +1 -0
  277. package/server/applications/shares/constants/routes.js +46 -0
  278. package/server/applications/shares/constants/routes.js.map +1 -0
  279. package/server/applications/shares/constants/shares.js +31 -0
  280. package/server/applications/shares/constants/shares.js.map +1 -0
  281. package/server/applications/shares/dto/create-or-update-share.dto.js +232 -0
  282. package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -0
  283. package/server/applications/shares/interfaces/share-child.interface.js +10 -0
  284. package/server/applications/shares/interfaces/share-child.interface.js.map +1 -0
  285. package/server/applications/shares/interfaces/share-env.interface.js +10 -0
  286. package/server/applications/shares/interfaces/share-env.interface.js.map +1 -0
  287. package/server/applications/shares/interfaces/share-file.interface.js +21 -0
  288. package/server/applications/shares/interfaces/share-file.interface.js.map +1 -0
  289. package/server/applications/shares/interfaces/share-link.interface.js +10 -0
  290. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -0
  291. package/server/applications/shares/interfaces/share-props.interface.js +22 -0
  292. package/server/applications/shares/interfaces/share-props.interface.js.map +1 -0
  293. package/server/applications/shares/models/share-child.model.js +30 -0
  294. package/server/applications/shares/models/share-child.model.js.map +1 -0
  295. package/server/applications/shares/schemas/share-members.interface.js +18 -0
  296. package/server/applications/shares/schemas/share-members.interface.js.map +1 -0
  297. package/server/applications/shares/schemas/share.interface.js +18 -0
  298. package/server/applications/shares/schemas/share.interface.js.map +1 -0
  299. package/server/applications/shares/schemas/shares-members.schema.js +69 -0
  300. package/server/applications/shares/schemas/shares-members.schema.js.map +1 -0
  301. package/server/applications/shares/schemas/shares.schema.js +91 -0
  302. package/server/applications/shares/schemas/shares.schema.js.map +1 -0
  303. package/server/applications/shares/services/shares-manager.service.js +1010 -0
  304. package/server/applications/shares/services/shares-manager.service.js.map +1 -0
  305. package/server/applications/shares/services/shares-manager.service.spec.js +56 -0
  306. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -0
  307. package/server/applications/shares/services/shares-queries.service.js +892 -0
  308. package/server/applications/shares/services/shares-queries.service.js.map +1 -0
  309. package/server/applications/shares/shares.controller.js +293 -0
  310. package/server/applications/shares/shares.controller.js.map +1 -0
  311. package/server/applications/shares/shares.controller.spec.js +60 -0
  312. package/server/applications/shares/shares.controller.spec.js.map +1 -0
  313. package/server/applications/shares/shares.module.js +49 -0
  314. package/server/applications/shares/shares.module.js.map +1 -0
  315. package/server/applications/spaces/constants/cache.js +32 -0
  316. package/server/applications/spaces/constants/cache.js.map +1 -0
  317. package/server/applications/spaces/constants/routes.js +58 -0
  318. package/server/applications/spaces/constants/routes.js.map +1 -0
  319. package/server/applications/spaces/constants/spaces.js +104 -0
  320. package/server/applications/spaces/constants/spaces.js.map +1 -0
  321. package/server/applications/spaces/decorators/space-skip-guard.decorator.js +27 -0
  322. package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -0
  323. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +27 -0
  324. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -0
  325. package/server/applications/spaces/decorators/space.decorator.js +20 -0
  326. package/server/applications/spaces/decorators/space.decorator.js.map +1 -0
  327. package/server/applications/spaces/dto/create-or-update-space.dto.js +164 -0
  328. package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -0
  329. package/server/applications/spaces/dto/delete-space.dto.js +33 -0
  330. package/server/applications/spaces/dto/delete-space.dto.js.map +1 -0
  331. package/server/applications/spaces/dto/search-space.dto.js +47 -0
  332. package/server/applications/spaces/dto/search-space.dto.js.map +1 -0
  333. package/server/applications/spaces/dto/space-roots.dto.js +117 -0
  334. package/server/applications/spaces/dto/space-roots.dto.js.map +1 -0
  335. package/server/applications/spaces/guards/space.guard.js +151 -0
  336. package/server/applications/spaces/guards/space.guard.js.map +1 -0
  337. package/server/applications/spaces/guards/space.guard.spec.js +457 -0
  338. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -0
  339. package/server/applications/spaces/interfaces/space-diff.interface.js +10 -0
  340. package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -0
  341. package/server/applications/spaces/interfaces/space-files.interface.js +10 -0
  342. package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -0
  343. package/server/applications/spaces/interfaces/space-quota.interface.js +10 -0
  344. package/server/applications/spaces/interfaces/space-quota.interface.js.map +1 -0
  345. package/server/applications/spaces/interfaces/space-request.interface.js +10 -0
  346. package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -0
  347. package/server/applications/spaces/interfaces/space-trash.interface.js +10 -0
  348. package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -0
  349. package/server/applications/spaces/models/space-env.model.js +112 -0
  350. package/server/applications/spaces/models/space-env.model.js.map +1 -0
  351. package/server/applications/spaces/models/space-props.model.js +60 -0
  352. package/server/applications/spaces/models/space-props.model.js.map +1 -0
  353. package/server/applications/spaces/models/space-root-props.model.js +18 -0
  354. package/server/applications/spaces/models/space-root-props.model.js.map +1 -0
  355. package/server/applications/spaces/models/space.model.js +64 -0
  356. package/server/applications/spaces/models/space.model.js.map +1 -0
  357. package/server/applications/spaces/schemas/space-members.interface.js +18 -0
  358. package/server/applications/spaces/schemas/space-members.interface.js.map +1 -0
  359. package/server/applications/spaces/schemas/space-root.interface.js +18 -0
  360. package/server/applications/spaces/schemas/space-root.interface.js.map +1 -0
  361. package/server/applications/spaces/schemas/space.interface.js +18 -0
  362. package/server/applications/spaces/schemas/space.interface.js.map +1 -0
  363. package/server/applications/spaces/schemas/spaces-members.schema.js +73 -0
  364. package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -0
  365. package/server/applications/spaces/schemas/spaces-roots.schema.js +61 -0
  366. package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -0
  367. package/server/applications/spaces/schemas/spaces.schema.js +63 -0
  368. package/server/applications/spaces/schemas/spaces.schema.js.map +1 -0
  369. package/server/applications/spaces/services/spaces-browser.service.js +308 -0
  370. package/server/applications/spaces/services/spaces-browser.service.js.map +1 -0
  371. package/server/applications/spaces/services/spaces-browser.service.spec.js +74 -0
  372. package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -0
  373. package/server/applications/spaces/services/spaces-manager.service.js +818 -0
  374. package/server/applications/spaces/services/spaces-manager.service.js.map +1 -0
  375. package/server/applications/spaces/services/spaces-manager.service.spec.js +269 -0
  376. package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -0
  377. package/server/applications/spaces/services/spaces-queries.service.js +763 -0
  378. package/server/applications/spaces/services/spaces-queries.service.js.map +1 -0
  379. package/server/applications/spaces/services/spaces-scheduler.service.js +88 -0
  380. package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -0
  381. package/server/applications/spaces/spaces.controller.js +386 -0
  382. package/server/applications/spaces/spaces.controller.js.map +1 -0
  383. package/server/applications/spaces/spaces.controller.spec.js +65 -0
  384. package/server/applications/spaces/spaces.controller.spec.js.map +1 -0
  385. package/server/applications/spaces/spaces.module.js +51 -0
  386. package/server/applications/spaces/spaces.module.js.map +1 -0
  387. package/server/applications/spaces/utils/paths.js +241 -0
  388. package/server/applications/spaces/utils/paths.js.map +1 -0
  389. package/server/applications/spaces/utils/permissions.js +88 -0
  390. package/server/applications/spaces/utils/permissions.js.map +1 -0
  391. package/server/applications/spaces/utils/routes.js +20 -0
  392. package/server/applications/spaces/utils/routes.js.map +1 -0
  393. package/server/applications/sync/constants/auth.js +38 -0
  394. package/server/applications/sync/constants/auth.js.map +1 -0
  395. package/server/applications/sync/constants/routes.js +47 -0
  396. package/server/applications/sync/constants/routes.js.map +1 -0
  397. package/server/applications/sync/constants/store.js +48 -0
  398. package/server/applications/sync/constants/store.js.map +1 -0
  399. package/server/applications/sync/constants/sync.js +128 -0
  400. package/server/applications/sync/constants/sync.js.map +1 -0
  401. package/server/applications/sync/decorators/sync-context.decorator.js +27 -0
  402. package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -0
  403. package/server/applications/sync/decorators/sync-environment.decorator.js +25 -0
  404. package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -0
  405. package/server/applications/sync/dtos/sync-client-auth.dto.js +47 -0
  406. package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -0
  407. package/server/applications/sync/dtos/sync-client-registration.dto.js +51 -0
  408. package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -0
  409. package/server/applications/sync/dtos/sync-operations.dto.js +104 -0
  410. package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -0
  411. package/server/applications/sync/dtos/sync-path.dto.js +130 -0
  412. package/server/applications/sync/dtos/sync-path.dto.js.map +1 -0
  413. package/server/applications/sync/dtos/sync-upload.dto.js +49 -0
  414. package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -0
  415. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +55 -0
  416. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -0
  417. package/server/applications/sync/interfaces/store-manifest.interface.js +10 -0
  418. package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -0
  419. package/server/applications/sync/interfaces/sync-client-auth.interface.js +30 -0
  420. package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -0
  421. package/server/applications/sync/interfaces/sync-client-paths.interface.js +10 -0
  422. package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -0
  423. package/server/applications/sync/interfaces/sync-client.interface.js +10 -0
  424. package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -0
  425. package/server/applications/sync/interfaces/sync-diff.interface.js +11 -0
  426. package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -0
  427. package/server/applications/sync/interfaces/sync-path.interface.js +10 -0
  428. package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -0
  429. package/server/applications/sync/schemas/sync-client.interface.js +18 -0
  430. package/server/applications/sync/schemas/sync-client.interface.js.map +1 -0
  431. package/server/applications/sync/schemas/sync-clients.schema.js +57 -0
  432. package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -0
  433. package/server/applications/sync/schemas/sync-path.interface.js +18 -0
  434. package/server/applications/sync/schemas/sync-path.interface.js.map +1 -0
  435. package/server/applications/sync/schemas/sync-paths.schema.js +76 -0
  436. package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -0
  437. package/server/applications/sync/services/sync-clients-manager.service.js +218 -0
  438. package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -0
  439. package/server/applications/sync/services/sync-clients-manager.service.spec.js +56 -0
  440. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -0
  441. package/server/applications/sync/services/sync-manager.service.js +299 -0
  442. package/server/applications/sync/services/sync-manager.service.js.map +1 -0
  443. package/server/applications/sync/services/sync-manager.service.spec.js +41 -0
  444. package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -0
  445. package/server/applications/sync/services/sync-paths-manager.service.js +290 -0
  446. package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -0
  447. package/server/applications/sync/services/sync-paths-manager.service.spec.js +56 -0
  448. package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -0
  449. package/server/applications/sync/services/sync-queries.service.js +238 -0
  450. package/server/applications/sync/services/sync-queries.service.js.map +1 -0
  451. package/server/applications/sync/sync.config.js +36 -0
  452. package/server/applications/sync/sync.config.js.map +1 -0
  453. package/server/applications/sync/sync.controller.js +407 -0
  454. package/server/applications/sync/sync.controller.js.map +1 -0
  455. package/server/applications/sync/sync.controller.spec.js +53 -0
  456. package/server/applications/sync/sync.controller.spec.js.map +1 -0
  457. package/server/applications/sync/sync.module.js +45 -0
  458. package/server/applications/sync/sync.module.js.map +1 -0
  459. package/server/applications/sync/utils/functions.js +26 -0
  460. package/server/applications/sync/utils/functions.js.map +1 -0
  461. package/server/applications/sync/utils/normalizedMap.js +52 -0
  462. package/server/applications/sync/utils/normalizedMap.js.map +1 -0
  463. package/server/applications/sync/utils/routes.js +27 -0
  464. package/server/applications/sync/utils/routes.js.map +1 -0
  465. package/server/applications/users/admin-users.controller.js +350 -0
  466. package/server/applications/users/admin-users.controller.js.map +1 -0
  467. package/server/applications/users/admin-users.controller.spec.js +60 -0
  468. package/server/applications/users/admin-users.controller.spec.js.map +1 -0
  469. package/server/applications/users/constants/group.js +35 -0
  470. package/server/applications/users/constants/group.js.map +1 -0
  471. package/server/applications/users/constants/member.js +39 -0
  472. package/server/applications/users/constants/member.js.map +1 -0
  473. package/server/applications/users/constants/routes.js +134 -0
  474. package/server/applications/users/constants/routes.js.map +1 -0
  475. package/server/applications/users/constants/user.js +118 -0
  476. package/server/applications/users/constants/user.js.map +1 -0
  477. package/server/applications/users/constants/websocket.js +33 -0
  478. package/server/applications/users/constants/websocket.js.map +1 -0
  479. package/server/applications/users/decorators/permissions.decorator.js +18 -0
  480. package/server/applications/users/decorators/permissions.decorator.js.map +1 -0
  481. package/server/applications/users/decorators/roles.decorator.js +18 -0
  482. package/server/applications/users/decorators/roles.decorator.js.map +1 -0
  483. package/server/applications/users/decorators/user.decorator.js +20 -0
  484. package/server/applications/users/decorators/user.decorator.js.map +1 -0
  485. package/server/applications/users/dto/create-or-update-group.dto.js +66 -0
  486. package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -0
  487. package/server/applications/users/dto/create-or-update-user.dto.js +167 -0
  488. package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -0
  489. package/server/applications/users/dto/delete-user.dto.js +54 -0
  490. package/server/applications/users/dto/delete-user.dto.js.map +1 -0
  491. package/server/applications/users/dto/search-members.dto.js +79 -0
  492. package/server/applications/users/dto/search-members.dto.js.map +1 -0
  493. package/server/applications/users/dto/user-password.dto.js +35 -0
  494. package/server/applications/users/dto/user-password.dto.js.map +1 -0
  495. package/server/applications/users/dto/user-properties.dto.js +64 -0
  496. package/server/applications/users/dto/user-properties.dto.js.map +1 -0
  497. package/server/applications/users/guards/permissions.guard.js +71 -0
  498. package/server/applications/users/guards/permissions.guard.js.map +1 -0
  499. package/server/applications/users/guards/permissions.guard.spec.js +103 -0
  500. package/server/applications/users/guards/permissions.guard.spec.js.map +1 -0
  501. package/server/applications/users/guards/roles.guard.js +62 -0
  502. package/server/applications/users/guards/roles.guard.js.map +1 -0
  503. package/server/applications/users/guards/roles.guard.spec.js +90 -0
  504. package/server/applications/users/guards/roles.guard.spec.js.map +1 -0
  505. package/server/applications/users/interfaces/admin-group.interface.js +10 -0
  506. package/server/applications/users/interfaces/admin-group.interface.js.map +1 -0
  507. package/server/applications/users/interfaces/admin-user.interface.js +10 -0
  508. package/server/applications/users/interfaces/admin-user.interface.js.map +1 -0
  509. package/server/applications/users/interfaces/group-browse.interface.js +10 -0
  510. package/server/applications/users/interfaces/group-browse.interface.js.map +1 -0
  511. package/server/applications/users/interfaces/group-member.js +10 -0
  512. package/server/applications/users/interfaces/group-member.js.map +1 -0
  513. package/server/applications/users/interfaces/guest-user.interface.js +10 -0
  514. package/server/applications/users/interfaces/guest-user.interface.js.map +1 -0
  515. package/server/applications/users/interfaces/member.interface.js +10 -0
  516. package/server/applications/users/interfaces/member.interface.js.map +1 -0
  517. package/server/applications/users/interfaces/owner.interface.js +10 -0
  518. package/server/applications/users/interfaces/owner.interface.js.map +1 -0
  519. package/server/applications/users/interfaces/websocket.interface.js +10 -0
  520. package/server/applications/users/interfaces/websocket.interface.js.map +1 -0
  521. package/server/applications/users/models/user.model.js +226 -0
  522. package/server/applications/users/models/user.model.js.map +1 -0
  523. package/server/applications/users/schemas/group.interface.js +18 -0
  524. package/server/applications/users/schemas/group.interface.js.map +1 -0
  525. package/server/applications/users/schemas/groups.schema.js +56 -0
  526. package/server/applications/users/schemas/groups.schema.js.map +1 -0
  527. package/server/applications/users/schemas/user-group.interface.js +18 -0
  528. package/server/applications/users/schemas/user-group.interface.js.map +1 -0
  529. package/server/applications/users/schemas/user.interface.js +18 -0
  530. package/server/applications/users/schemas/user.interface.js.map +1 -0
  531. package/server/applications/users/schemas/users-groups.schema.js +49 -0
  532. package/server/applications/users/schemas/users-groups.schema.js.map +1 -0
  533. package/server/applications/users/schemas/users-guests.schema.js +46 -0
  534. package/server/applications/users/schemas/users-guests.schema.js.map +1 -0
  535. package/server/applications/users/schemas/users.schema.js +94 -0
  536. package/server/applications/users/schemas/users.schema.js.map +1 -0
  537. package/server/applications/users/services/admin-users-manager.service.js +385 -0
  538. package/server/applications/users/services/admin-users-manager.service.js.map +1 -0
  539. package/server/applications/users/services/admin-users-manager.service.spec.js +50 -0
  540. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -0
  541. package/server/applications/users/services/admin-users-queries.service.js +315 -0
  542. package/server/applications/users/services/admin-users-queries.service.js.map +1 -0
  543. package/server/applications/users/services/users-manager.service.js +424 -0
  544. package/server/applications/users/services/users-manager.service.js.map +1 -0
  545. package/server/applications/users/services/users-manager.service.spec.js +151 -0
  546. package/server/applications/users/services/users-manager.service.spec.js.map +1 -0
  547. package/server/applications/users/services/users-queries.service.js +570 -0
  548. package/server/applications/users/services/users-queries.service.js.map +1 -0
  549. package/server/applications/users/users.controller.js +371 -0
  550. package/server/applications/users/users.controller.js.map +1 -0
  551. package/server/applications/users/users.controller.spec.js +86 -0
  552. package/server/applications/users/users.controller.spec.js.map +1 -0
  553. package/server/applications/users/users.e2e-spec.js +97 -0
  554. package/server/applications/users/users.e2e-spec.js.map +1 -0
  555. package/server/applications/users/users.gateway.js +182 -0
  556. package/server/applications/users/users.gateway.js.map +1 -0
  557. package/server/applications/users/users.gateway.spec.js +36 -0
  558. package/server/applications/users/users.gateway.spec.js.map +1 -0
  559. package/server/applications/users/users.module.js +57 -0
  560. package/server/applications/users/users.module.js.map +1 -0
  561. package/server/applications/users/utils/test.js +34 -0
  562. package/server/applications/users/utils/test.js.map +1 -0
  563. package/server/applications/webdav/constants/routes.js +73 -0
  564. package/server/applications/webdav/constants/routes.js.map +1 -0
  565. package/server/applications/webdav/constants/webdav.js +168 -0
  566. package/server/applications/webdav/constants/webdav.js.map +1 -0
  567. package/server/applications/webdav/decorators/if-header.decorator.js +27 -0
  568. package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -0
  569. package/server/applications/webdav/decorators/webdav-context.decorator.js +36 -0
  570. package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -0
  571. package/server/applications/webdav/filters/webdav.filter.js +45 -0
  572. package/server/applications/webdav/filters/webdav.filter.js.map +1 -0
  573. package/server/applications/webdav/guards/webdav-protocol.guard.js +262 -0
  574. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -0
  575. package/server/applications/webdav/interfaces/if-header.interface.js +10 -0
  576. package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -0
  577. package/server/applications/webdav/interfaces/webdav.interface.js +10 -0
  578. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -0
  579. package/server/applications/webdav/models/webdav-file.model.js +74 -0
  580. package/server/applications/webdav/models/webdav-file.model.js.map +1 -0
  581. package/server/applications/webdav/services/webdav-methods.service.js +520 -0
  582. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -0
  583. package/server/applications/webdav/services/webdav-methods.service.spec.js +41 -0
  584. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -0
  585. package/server/applications/webdav/services/webdav-spaces.service.js +169 -0
  586. package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -0
  587. package/server/applications/webdav/services/webdav-spaces.service.spec.js +36 -0
  588. package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -0
  589. package/server/applications/webdav/utils/if-header.js +89 -0
  590. package/server/applications/webdav/utils/if-header.js.map +1 -0
  591. package/server/applications/webdav/utils/routes.js +30 -0
  592. package/server/applications/webdav/utils/routes.js.map +1 -0
  593. package/server/applications/webdav/utils/webdav.js +167 -0
  594. package/server/applications/webdav/utils/webdav.js.map +1 -0
  595. package/server/applications/webdav/utils/xml.js +72 -0
  596. package/server/applications/webdav/utils/xml.js.map +1 -0
  597. package/server/applications/webdav/webdav.controller.js +173 -0
  598. package/server/applications/webdav/webdav.controller.js.map +1 -0
  599. package/server/applications/webdav/webdav.controller.spec.js +41 -0
  600. package/server/applications/webdav/webdav.controller.spec.js.map +1 -0
  601. package/server/applications/webdav/webdav.e2e-spec.js +69 -0
  602. package/server/applications/webdav/webdav.e2e-spec.js.map +1 -0
  603. package/server/applications/webdav/webdav.module.js +41 -0
  604. package/server/applications/webdav/webdav.module.js.map +1 -0
  605. package/server/authentication/auth.config.js +223 -0
  606. package/server/authentication/auth.config.js.map +1 -0
  607. package/server/authentication/auth.controller.js +126 -0
  608. package/server/authentication/auth.controller.js.map +1 -0
  609. package/server/authentication/auth.controller.spec.js +132 -0
  610. package/server/authentication/auth.controller.spec.js.map +1 -0
  611. package/server/authentication/auth.e2e-spec.js +340 -0
  612. package/server/authentication/auth.e2e-spec.js.map +1 -0
  613. package/server/authentication/auth.module.js +84 -0
  614. package/server/authentication/auth.module.js.map +1 -0
  615. package/server/authentication/constants/auth.js +54 -0
  616. package/server/authentication/constants/auth.js.map +1 -0
  617. package/server/authentication/constants/routes.js +55 -0
  618. package/server/authentication/constants/routes.js.map +1 -0
  619. package/server/authentication/decorators/auth-token-optional.decorator.js +26 -0
  620. package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -0
  621. package/server/authentication/decorators/auth-token-skip.decorator.js +27 -0
  622. package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -0
  623. package/server/authentication/dto/login-response.dto.js +23 -0
  624. package/server/authentication/dto/login-response.dto.js.map +1 -0
  625. package/server/authentication/dto/token-response.dto.js +44 -0
  626. package/server/authentication/dto/token-response.dto.js.map +1 -0
  627. package/server/authentication/guards/auth-anonymous.guard.js +37 -0
  628. package/server/authentication/guards/auth-anonymous.guard.js.map +1 -0
  629. package/server/authentication/guards/auth-anonymous.guard.spec.js +65 -0
  630. package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -0
  631. package/server/authentication/guards/auth-anonymous.strategy.js +44 -0
  632. package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -0
  633. package/server/authentication/guards/auth-basic.guard.js +54 -0
  634. package/server/authentication/guards/auth-basic.guard.js.map +1 -0
  635. package/server/authentication/guards/auth-basic.guard.spec.js +148 -0
  636. package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -0
  637. package/server/authentication/guards/auth-basic.strategy.js +79 -0
  638. package/server/authentication/guards/auth-basic.strategy.js.map +1 -0
  639. package/server/authentication/guards/auth-digest.guard.js +24 -0
  640. package/server/authentication/guards/auth-digest.guard.js.map +1 -0
  641. package/server/authentication/guards/auth-digest.strategy.js +28 -0
  642. package/server/authentication/guards/auth-digest.strategy.js.map +1 -0
  643. package/server/authentication/guards/auth-local.guard.js +40 -0
  644. package/server/authentication/guards/auth-local.guard.js.map +1 -0
  645. package/server/authentication/guards/auth-local.guard.spec.js +87 -0
  646. package/server/authentication/guards/auth-local.guard.spec.js.map +1 -0
  647. package/server/authentication/guards/auth-local.strategy.js +59 -0
  648. package/server/authentication/guards/auth-local.strategy.js.map +1 -0
  649. package/server/authentication/guards/auth-token-access.guard.js +66 -0
  650. package/server/authentication/guards/auth-token-access.guard.js.map +1 -0
  651. package/server/authentication/guards/auth-token-access.guard.spec.js +262 -0
  652. package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -0
  653. package/server/authentication/guards/auth-token-access.strategy.js +68 -0
  654. package/server/authentication/guards/auth-token-access.strategy.js.map +1 -0
  655. package/server/authentication/guards/auth-token-refresh.guard.js +40 -0
  656. package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -0
  657. package/server/authentication/guards/auth-token-refresh.guard.spec.js +189 -0
  658. package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -0
  659. package/server/authentication/guards/auth-token-refresh.strategy.js +72 -0
  660. package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -0
  661. package/server/authentication/interfaces/auth-request.interface.js +10 -0
  662. package/server/authentication/interfaces/auth-request.interface.js.map +1 -0
  663. package/server/authentication/interfaces/jwt-payload.interface.js +28 -0
  664. package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -0
  665. package/server/authentication/interfaces/token.interface.js +23 -0
  666. package/server/authentication/interfaces/token.interface.js.map +1 -0
  667. package/server/authentication/models/auth-method.js +18 -0
  668. package/server/authentication/models/auth-method.js.map +1 -0
  669. package/server/authentication/services/auth-manager.service.js +174 -0
  670. package/server/authentication/services/auth-manager.service.js.map +1 -0
  671. package/server/authentication/services/auth-manager.service.spec.js +41 -0
  672. package/server/authentication/services/auth-manager.service.spec.js.map +1 -0
  673. package/server/authentication/services/auth-methods/auth-method-database.service.js +55 -0
  674. package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -0
  675. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +88 -0
  676. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -0
  677. package/server/authentication/services/auth-methods/auth-method-ldap.service.js +185 -0
  678. package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -0
  679. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +36 -0
  680. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -0
  681. package/server/common/constants.js +23 -0
  682. package/server/common/constants.js.map +1 -0
  683. package/server/common/decorators.js +35 -0
  684. package/server/common/decorators.js.map +1 -0
  685. package/server/common/fonts/avatar.ttf +0 -0
  686. package/server/common/functions.js +292 -0
  687. package/server/common/functions.js.map +1 -0
  688. package/server/common/image.js +113 -0
  689. package/server/common/image.js.map +1 -0
  690. package/server/common/interfaces.js +10 -0
  691. package/server/common/interfaces.js.map +1 -0
  692. package/server/common/shared.js +105 -0
  693. package/server/common/shared.js.map +1 -0
  694. package/server/configuration/config.constants.js +65 -0
  695. package/server/configuration/config.constants.js.map +1 -0
  696. package/server/configuration/config.environment.js +57 -0
  697. package/server/configuration/config.environment.js.map +1 -0
  698. package/server/configuration/config.loader.js +195 -0
  699. package/server/configuration/config.loader.js.map +1 -0
  700. package/server/configuration/config.logger.js +69 -0
  701. package/server/configuration/config.logger.js.map +1 -0
  702. package/server/configuration/config.validation.js +175 -0
  703. package/server/configuration/config.validation.js.map +1 -0
  704. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +169 -0
  705. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -0
  706. package/server/infrastructure/cache/adapters/redis-cache.adapter.js +129 -0
  707. package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -0
  708. package/server/infrastructure/cache/cache.config.js +53 -0
  709. package/server/infrastructure/cache/cache.config.js.map +1 -0
  710. package/server/infrastructure/cache/cache.decorator.js +53 -0
  711. package/server/infrastructure/cache/cache.decorator.js.map +1 -0
  712. package/server/infrastructure/cache/cache.e2e-spec.js +111 -0
  713. package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -0
  714. package/server/infrastructure/cache/cache.module.js +58 -0
  715. package/server/infrastructure/cache/cache.module.js.map +1 -0
  716. package/server/infrastructure/cache/schemas/mysql-cache.interface.js +18 -0
  717. package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -0
  718. package/server/infrastructure/cache/schemas/mysql-cache.schema.js +26 -0
  719. package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -0
  720. package/server/infrastructure/cache/services/cache.service.js +18 -0
  721. package/server/infrastructure/cache/services/cache.service.js.map +1 -0
  722. package/server/infrastructure/context/context.module.js +40 -0
  723. package/server/infrastructure/context/context.module.js.map +1 -0
  724. package/server/infrastructure/context/interceptors/context.interceptor.js +45 -0
  725. package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -0
  726. package/server/infrastructure/context/interfaces/context-store.interface.js +10 -0
  727. package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -0
  728. package/server/infrastructure/context/services/context-manager.service.js +43 -0
  729. package/server/infrastructure/context/services/context-manager.service.js.map +1 -0
  730. package/server/infrastructure/database/configuration.js +29 -0
  731. package/server/infrastructure/database/configuration.js.map +1 -0
  732. package/server/infrastructure/database/constants.js +41 -0
  733. package/server/infrastructure/database/constants.js.map +1 -0
  734. package/server/infrastructure/database/database.config.js +44 -0
  735. package/server/infrastructure/database/database.config.js.map +1 -0
  736. package/server/infrastructure/database/database.logger.js +22 -0
  737. package/server/infrastructure/database/database.logger.js.map +1 -0
  738. package/server/infrastructure/database/database.module.js +94 -0
  739. package/server/infrastructure/database/database.module.js.map +1 -0
  740. package/server/infrastructure/database/interfaces/database.interface.js +10 -0
  741. package/server/infrastructure/database/interfaces/database.interface.js.map +1 -0
  742. package/server/infrastructure/database/schema.js +40 -0
  743. package/server/infrastructure/database/schema.js.map +1 -0
  744. package/server/infrastructure/database/scripts/create-user.js +97 -0
  745. package/server/infrastructure/database/scripts/create-user.js.map +1 -0
  746. package/server/infrastructure/database/scripts/db.js +68 -0
  747. package/server/infrastructure/database/scripts/db.js.map +1 -0
  748. package/server/infrastructure/database/scripts/seed/main.js +18 -0
  749. package/server/infrastructure/database/scripts/seed/main.js.map +1 -0
  750. package/server/infrastructure/database/scripts/seed/usersgroups.js +92 -0
  751. package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -0
  752. package/server/infrastructure/database/utils.js +117 -0
  753. package/server/infrastructure/database/utils.js.map +1 -0
  754. package/server/infrastructure/mailer/interfaces/mail.interface.js +10 -0
  755. package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -0
  756. package/server/infrastructure/mailer/mailer.config.js +94 -0
  757. package/server/infrastructure/mailer/mailer.config.js.map +1 -0
  758. package/server/infrastructure/mailer/mailer.module.js +37 -0
  759. package/server/infrastructure/mailer/mailer.module.js.map +1 -0
  760. package/server/infrastructure/mailer/mailer.service.js +93 -0
  761. package/server/infrastructure/mailer/mailer.service.js.map +1 -0
  762. package/server/infrastructure/scheduler/scheduler.constants.js +30 -0
  763. package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -0
  764. package/server/infrastructure/scheduler/scheduler.module.js +52 -0
  765. package/server/infrastructure/scheduler/scheduler.module.js.map +1 -0
  766. package/server/infrastructure/websocket/adapters/cluster.adapter.js +40 -0
  767. package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -0
  768. package/server/infrastructure/websocket/adapters/redis.adapter.js +61 -0
  769. package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -0
  770. package/server/infrastructure/websocket/adapters/web-socket.adapter.js +127 -0
  771. package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -0
  772. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +20 -0
  773. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -0
  774. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +10 -0
  775. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -0
  776. package/server/infrastructure/websocket/utils.js +23 -0
  777. package/server/infrastructure/websocket/utils.js.map +1 -0
  778. package/server/infrastructure/websocket/web-socket.config.js +54 -0
  779. package/server/infrastructure/websocket/web-socket.config.js.map +1 -0
  780. package/server/main.js +27 -0
  781. package/server/main.js.map +1 -0
  782. package/static/3rdpartylicenses.txt +1522 -0
  783. package/static/assets/avatar.svg +7 -0
  784. package/static/assets/codemirror/mode/apl/apl.js +174 -0
  785. package/static/assets/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
  786. package/static/assets/codemirror/mode/asn.1/asn.1.js +204 -0
  787. package/static/assets/codemirror/mode/asterisk/asterisk.js +220 -0
  788. package/static/assets/codemirror/mode/brainfuck/brainfuck.js +85 -0
  789. package/static/assets/codemirror/mode/clike/clike.js +942 -0
  790. package/static/assets/codemirror/mode/clojure/clojure.js +293 -0
  791. package/static/assets/codemirror/mode/cmake/cmake.js +97 -0
  792. package/static/assets/codemirror/mode/cobol/cobol.js +255 -0
  793. package/static/assets/codemirror/mode/coffeescript/coffeescript.js +359 -0
  794. package/static/assets/codemirror/mode/commonlisp/commonlisp.js +125 -0
  795. package/static/assets/codemirror/mode/crystal/crystal.js +433 -0
  796. package/static/assets/codemirror/mode/css/css.js +862 -0
  797. package/static/assets/codemirror/mode/cypher/cypher.js +152 -0
  798. package/static/assets/codemirror/mode/d/d.js +223 -0
  799. package/static/assets/codemirror/mode/dart/dart.js +168 -0
  800. package/static/assets/codemirror/mode/diff/diff.js +47 -0
  801. package/static/assets/codemirror/mode/django/django.js +356 -0
  802. package/static/assets/codemirror/mode/dockerfile/dockerfile.js +211 -0
  803. package/static/assets/codemirror/mode/dtd/dtd.js +142 -0
  804. package/static/assets/codemirror/mode/dylan/dylan.js +352 -0
  805. package/static/assets/codemirror/mode/ebnf/ebnf.js +195 -0
  806. package/static/assets/codemirror/mode/ecl/ecl.js +206 -0
  807. package/static/assets/codemirror/mode/eiffel/eiffel.js +160 -0
  808. package/static/assets/codemirror/mode/elm/elm.js +245 -0
  809. package/static/assets/codemirror/mode/erlang/erlang.js +619 -0
  810. package/static/assets/codemirror/mode/factor/factor.js +85 -0
  811. package/static/assets/codemirror/mode/fcl/fcl.js +173 -0
  812. package/static/assets/codemirror/mode/forth/forth.js +180 -0
  813. package/static/assets/codemirror/mode/fortran/fortran.js +188 -0
  814. package/static/assets/codemirror/mode/gas/gas.js +353 -0
  815. package/static/assets/codemirror/mode/gfm/gfm.js +129 -0
  816. package/static/assets/codemirror/mode/gherkin/gherkin.js +194 -0
  817. package/static/assets/codemirror/mode/go/go.js +187 -0
  818. package/static/assets/codemirror/mode/groovy/groovy.js +245 -0
  819. package/static/assets/codemirror/mode/haml/haml.js +161 -0
  820. package/static/assets/codemirror/mode/handlebars/handlebars.js +70 -0
  821. package/static/assets/codemirror/mode/haskell/haskell.js +268 -0
  822. package/static/assets/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
  823. package/static/assets/codemirror/mode/haxe/haxe.js +515 -0
  824. package/static/assets/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
  825. package/static/assets/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
  826. package/static/assets/codemirror/mode/http/http.js +113 -0
  827. package/static/assets/codemirror/mode/idl/idl.js +290 -0
  828. package/static/assets/codemirror/mode/javascript/javascript.js +960 -0
  829. package/static/assets/codemirror/mode/jinja2/jinja2.js +193 -0
  830. package/static/assets/codemirror/mode/jsx/jsx.js +149 -0
  831. package/static/assets/codemirror/mode/julia/julia.js +390 -0
  832. package/static/assets/codemirror/mode/livescript/livescript.js +280 -0
  833. package/static/assets/codemirror/mode/lua/lua.js +160 -0
  834. package/static/assets/codemirror/mode/markdown/markdown.js +886 -0
  835. package/static/assets/codemirror/mode/mathematica/mathematica.js +176 -0
  836. package/static/assets/codemirror/mode/mbox/mbox.js +129 -0
  837. package/static/assets/codemirror/mode/meta.js +221 -0
  838. package/static/assets/codemirror/mode/mirc/mirc.js +193 -0
  839. package/static/assets/codemirror/mode/mllike/mllike.js +359 -0
  840. package/static/assets/codemirror/mode/modelica/modelica.js +245 -0
  841. package/static/assets/codemirror/mode/mscgen/mscgen.js +175 -0
  842. package/static/assets/codemirror/mode/mumps/mumps.js +148 -0
  843. package/static/assets/codemirror/mode/nginx/nginx.js +178 -0
  844. package/static/assets/codemirror/mode/nsis/nsis.js +95 -0
  845. package/static/assets/codemirror/mode/ntriples/ntriples.js +195 -0
  846. package/static/assets/codemirror/mode/octave/octave.js +139 -0
  847. package/static/assets/codemirror/mode/oz/oz.js +252 -0
  848. package/static/assets/codemirror/mode/pascal/pascal.js +136 -0
  849. package/static/assets/codemirror/mode/pegjs/pegjs.js +111 -0
  850. package/static/assets/codemirror/mode/perl/perl.js +836 -0
  851. package/static/assets/codemirror/mode/php/php.js +234 -0
  852. package/static/assets/codemirror/mode/pig/pig.js +178 -0
  853. package/static/assets/codemirror/mode/powershell/powershell.js +398 -0
  854. package/static/assets/codemirror/mode/properties/properties.js +78 -0
  855. package/static/assets/codemirror/mode/protobuf/protobuf.js +72 -0
  856. package/static/assets/codemirror/mode/pug/pug.js +591 -0
  857. package/static/assets/codemirror/mode/puppet/puppet.js +220 -0
  858. package/static/assets/codemirror/mode/python/python.js +402 -0
  859. package/static/assets/codemirror/mode/q/q.js +139 -0
  860. package/static/assets/codemirror/mode/r/r.js +190 -0
  861. package/static/assets/codemirror/mode/rpm/changes/index.html +66 -0
  862. package/static/assets/codemirror/mode/rpm/rpm.js +109 -0
  863. package/static/assets/codemirror/mode/rst/rst.js +557 -0
  864. package/static/assets/codemirror/mode/ruby/ruby.js +303 -0
  865. package/static/assets/codemirror/mode/rust/rust.js +72 -0
  866. package/static/assets/codemirror/mode/sas/sas.js +303 -0
  867. package/static/assets/codemirror/mode/sass/sass.js +459 -0
  868. package/static/assets/codemirror/mode/scheme/scheme.js +284 -0
  869. package/static/assets/codemirror/mode/shell/shell.js +168 -0
  870. package/static/assets/codemirror/mode/sieve/sieve.js +193 -0
  871. package/static/assets/codemirror/mode/slim/slim.js +575 -0
  872. package/static/assets/codemirror/mode/smalltalk/smalltalk.js +168 -0
  873. package/static/assets/codemirror/mode/smarty/smarty.js +225 -0
  874. package/static/assets/codemirror/mode/solr/solr.js +104 -0
  875. package/static/assets/codemirror/mode/soy/soy.js +665 -0
  876. package/static/assets/codemirror/mode/sparql/sparql.js +184 -0
  877. package/static/assets/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
  878. package/static/assets/codemirror/mode/sql/sql.js +529 -0
  879. package/static/assets/codemirror/mode/stex/stex.js +264 -0
  880. package/static/assets/codemirror/mode/stylus/stylus.js +775 -0
  881. package/static/assets/codemirror/mode/swift/swift.js +221 -0
  882. package/static/assets/codemirror/mode/tcl/tcl.js +140 -0
  883. package/static/assets/codemirror/mode/textile/textile.js +469 -0
  884. package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  885. package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
  886. package/static/assets/codemirror/mode/tiki/tiki.css +26 -0
  887. package/static/assets/codemirror/mode/tiki/tiki.js +312 -0
  888. package/static/assets/codemirror/mode/toml/toml.js +88 -0
  889. package/static/assets/codemirror/mode/tornado/tornado.js +68 -0
  890. package/static/assets/codemirror/mode/troff/troff.js +84 -0
  891. package/static/assets/codemirror/mode/ttcn/ttcn.js +283 -0
  892. package/static/assets/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
  893. package/static/assets/codemirror/mode/turtle/turtle.js +162 -0
  894. package/static/assets/codemirror/mode/twig/twig.js +141 -0
  895. package/static/assets/codemirror/mode/vb/vb.js +275 -0
  896. package/static/assets/codemirror/mode/vbscript/vbscript.js +350 -0
  897. package/static/assets/codemirror/mode/velocity/velocity.js +202 -0
  898. package/static/assets/codemirror/mode/verilog/verilog.js +781 -0
  899. package/static/assets/codemirror/mode/vhdl/vhdl.js +189 -0
  900. package/static/assets/codemirror/mode/vue/vue.js +77 -0
  901. package/static/assets/codemirror/mode/wast/wast.js +132 -0
  902. package/static/assets/codemirror/mode/webidl/webidl.js +195 -0
  903. package/static/assets/codemirror/mode/xml/xml.js +417 -0
  904. package/static/assets/codemirror/mode/xquery/xquery.js +448 -0
  905. package/static/assets/codemirror/mode/yacas/yacas.js +204 -0
  906. package/static/assets/codemirror/mode/yaml/yaml.js +120 -0
  907. package/static/assets/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +72 -0
  908. package/static/assets/codemirror/mode/z80/z80.js +116 -0
  909. package/static/assets/favicon.svg +25 -0
  910. package/static/assets/logo-dark.svg +32 -0
  911. package/static/assets/logo.svg +32 -0
  912. package/static/assets/mimes/7zip.svg +14 -0
  913. package/static/assets/mimes/application-7zip.svg +14 -0
  914. package/static/assets/mimes/application-atom+xml.svg +15 -0
  915. package/static/assets/mimes/application-atom.svg +15 -0
  916. package/static/assets/mimes/application-certificate.svg +28 -0
  917. package/static/assets/mimes/application-epub+zip.svg +10 -0
  918. package/static/assets/mimes/application-gzip.svg +16 -0
  919. package/static/assets/mimes/application-javascript.svg +6 -0
  920. package/static/assets/mimes/application-json.svg +11 -0
  921. package/static/assets/mimes/application-mathml+xml.svg +188 -0
  922. package/static/assets/mimes/application-mp4.svg +18 -0
  923. package/static/assets/mimes/application-msexcel.svg +1 -0
  924. package/static/assets/mimes/application-msword-template.svg +1 -0
  925. package/static/assets/mimes/application-msword.svg +1 -0
  926. package/static/assets/mimes/application-octet-stream.svg +273 -0
  927. package/static/assets/mimes/application-pdf.svg +13 -0
  928. package/static/assets/mimes/application-pgp-encrypted.svg +16 -0
  929. package/static/assets/mimes/application-pgp-keys.svg +16 -0
  930. package/static/assets/mimes/application-pgp-signature.svg +16 -0
  931. package/static/assets/mimes/application-pgp.svg +16 -0
  932. package/static/assets/mimes/application-postscript.svg +57 -0
  933. package/static/assets/mimes/application-powerpoint.svg +1 -0
  934. package/static/assets/mimes/application-rdf+xml.svg +14 -0
  935. package/static/assets/mimes/application-rss+xml.svg +15 -0
  936. package/static/assets/mimes/application-rtf.svg +14 -0
  937. package/static/assets/mimes/application-script-blank.svg +15 -0
  938. package/static/assets/mimes/application-sql.svg +1 -0
  939. package/static/assets/mimes/application-text.svg +14 -0
  940. package/static/assets/mimes/application-vnd.android.package-archive.svg +16 -0
  941. package/static/assets/mimes/application-vnd.apple.keynote.svg +16 -0
  942. package/static/assets/mimes/application-vnd.apple.numbers.svg +16 -0
  943. package/static/assets/mimes/application-vnd.apple.pages.svg +16 -0
  944. package/static/assets/mimes/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg +1 -0
  945. package/static/assets/mimes/application-vnd.ms-excel.sheet.macroenabled.12.svg +1 -0
  946. package/static/assets/mimes/application-vnd.ms-excel.svg +1 -0
  947. package/static/assets/mimes/application-vnd.ms-excel.template.macroenabled.12.svg +1 -0
  948. package/static/assets/mimes/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg +1 -0
  949. package/static/assets/mimes/application-vnd.ms-powerpoint.svg +1 -0
  950. package/static/assets/mimes/application-vnd.ms-powerpoint.template.macroenabled.12.svg +1 -0
  951. package/static/assets/mimes/application-vnd.ms-word.document.macroenabled.12.svg +1 -0
  952. package/static/assets/mimes/application-vnd.ms-word.svg +1 -0
  953. package/static/assets/mimes/application-vnd.ms-word.template.macroenabled.12.svg +1 -0
  954. package/static/assets/mimes/application-vnd.mspowerpoint.svg +1 -0
  955. package/static/assets/mimes/application-vnd.oasis.opendocument.chart.svg +1 -0
  956. package/static/assets/mimes/application-vnd.oasis.opendocument.database.svg +155 -0
  957. package/static/assets/mimes/application-vnd.oasis.opendocument.formula-template.svg +263 -0
  958. package/static/assets/mimes/application-vnd.oasis.opendocument.formula.svg +188 -0
  959. package/static/assets/mimes/application-vnd.oasis.opendocument.graphics-template.svg +530 -0
  960. package/static/assets/mimes/application-vnd.oasis.opendocument.graphics.svg +89 -0
  961. package/static/assets/mimes/application-vnd.oasis.opendocument.presentation-template.svg +197 -0
  962. package/static/assets/mimes/application-vnd.oasis.opendocument.presentation.svg +122 -0
  963. package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet-template.svg +452 -0
  964. package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet.svg +266 -0
  965. package/static/assets/mimes/application-vnd.oasis.opendocument.text-master.svg +92 -0
  966. package/static/assets/mimes/application-vnd.oasis.opendocument.text-template.svg +90 -0
  967. package/static/assets/mimes/application-vnd.oasis.opendocument.text-web.svg +18 -0
  968. package/static/assets/mimes/application-vnd.oasis.opendocument.text.svg +92 -0
  969. package/static/assets/mimes/application-vnd.openofficeorg.extension.svg +59 -0
  970. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
  971. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
  972. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
  973. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +1 -0
  974. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
  975. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +1 -0
  976. package/static/assets/mimes/application-vnd.rn-realmedia.svg +18 -0
  977. package/static/assets/mimes/application-vnd.sun.xml.calc.svg +1 -0
  978. package/static/assets/mimes/application-vnd.sun.xml.writer-global.svg +1 -0
  979. package/static/assets/mimes/application-vnd.sun.xml.writer-template.svg +1 -0
  980. package/static/assets/mimes/application-vnd.sun.xml.writer.svg +1 -0
  981. package/static/assets/mimes/application-vnd.sun.xml.writer.template.svg +14 -0
  982. package/static/assets/mimes/application-vnd.visio.svg +26 -0
  983. package/static/assets/mimes/application-wps-office.doc.svg +1 -0
  984. package/static/assets/mimes/application-wps-office.docx.svg +1 -0
  985. package/static/assets/mimes/application-wps-office.ppt.svg +1 -0
  986. package/static/assets/mimes/application-wps-office.pptx.svg +1 -0
  987. package/static/assets/mimes/application-wps-office.xls.svg +1 -0
  988. package/static/assets/mimes/application-wps-office.xlsx.svg +1 -0
  989. package/static/assets/mimes/application-x-7z-compressed.svg +14 -0
  990. package/static/assets/mimes/application-x-7zip.svg +14 -0
  991. package/static/assets/mimes/application-x-ace.svg +14 -0
  992. package/static/assets/mimes/application-x-addon.svg +59 -0
  993. package/static/assets/mimes/application-x-apple-diskimage.svg +1 -0
  994. package/static/assets/mimes/application-x-ar.svg +16 -0
  995. package/static/assets/mimes/application-x-arc.svg +14 -0
  996. package/static/assets/mimes/application-x-archive.svg +16 -0
  997. package/static/assets/mimes/application-x-arj.svg +14 -0
  998. package/static/assets/mimes/application-x-audacity-project.svg +24 -0
  999. package/static/assets/mimes/application-x-bittorrent.svg +53 -0
  1000. package/static/assets/mimes/application-x-blender.svg +353 -0
  1001. package/static/assets/mimes/application-x-bzdvi.svg +14 -0
  1002. package/static/assets/mimes/application-x-bzip-compressed-tar.svg +14 -0
  1003. package/static/assets/mimes/application-x-bzip.svg +16 -0
  1004. package/static/assets/mimes/application-x-cd-image.svg +292 -0
  1005. package/static/assets/mimes/application-x-cda.svg +358 -0
  1006. package/static/assets/mimes/application-x-class-file.svg +37 -0
  1007. package/static/assets/mimes/application-x-compress-tar.svg +16 -0
  1008. package/static/assets/mimes/application-x-compress.svg +16 -0
  1009. package/static/assets/mimes/application-x-compressed-tar.svg +14 -0
  1010. package/static/assets/mimes/application-x-core.svg +20 -0
  1011. package/static/assets/mimes/application-x-cpio.svg +16 -0
  1012. package/static/assets/mimes/application-x-deb.svg +14 -0
  1013. package/static/assets/mimes/application-x-designer.svg +48 -0
  1014. package/static/assets/mimes/application-x-egon.svg +12 -0
  1015. package/static/assets/mimes/application-x-executable.svg +40 -0
  1016. package/static/assets/mimes/application-x-extension-html.svg +18 -0
  1017. package/static/assets/mimes/application-x-font-afm.svg +14 -0
  1018. package/static/assets/mimes/application-x-font-snf.svg +14 -0
  1019. package/static/assets/mimes/application-x-font-speedo.svg +14 -0
  1020. package/static/assets/mimes/application-x-font-type1.svg +14 -0
  1021. package/static/assets/mimes/application-x-gettext-translation.svg +14 -0
  1022. package/static/assets/mimes/application-x-glade.svg +48 -0
  1023. package/static/assets/mimes/application-x-gnome-theme-package.svg +109 -0
  1024. package/static/assets/mimes/application-x-gzdvi.svg +16 -0
  1025. package/static/assets/mimes/application-x-gzip.svg +16 -0
  1026. package/static/assets/mimes/application-x-httpd-php.svg +18 -0
  1027. package/static/assets/mimes/application-x-iso9660-image.svg +292 -0
  1028. package/static/assets/mimes/application-x-java-archive.svg +16 -0
  1029. package/static/assets/mimes/application-x-java.svg +37 -0
  1030. package/static/assets/mimes/application-x-jokosher.svg +24 -0
  1031. package/static/assets/mimes/application-x-kcachegrind.svg +273 -0
  1032. package/static/assets/mimes/application-x-kcsrc.svg +109 -0
  1033. package/static/assets/mimes/application-x-keepass.svg +2 -0
  1034. package/static/assets/mimes/application-x-keepass2.svg +2 -0
  1035. package/static/assets/mimes/application-x-kgetlist.svg +53 -0
  1036. package/static/assets/mimes/application-x-lha.svg +14 -0
  1037. package/static/assets/mimes/application-x-lzma-compressed-tar.svg +16 -0
  1038. package/static/assets/mimes/application-x-lzop.svg +16 -0
  1039. package/static/assets/mimes/application-x-m4.svg +14 -0
  1040. package/static/assets/mimes/application-x-matroska.svg +18 -0
  1041. package/static/assets/mimes/application-x-mplayer2.svg +18 -0
  1042. package/static/assets/mimes/application-x-ms-application.svg +306 -0
  1043. package/static/assets/mimes/application-x-ms-dos-executable.svg +306 -0
  1044. package/static/assets/mimes/application-x-msdos-program.svg +306 -0
  1045. package/static/assets/mimes/application-x-msdownload.svg +306 -0
  1046. package/static/assets/mimes/application-x-msi.svg +306 -0
  1047. package/static/assets/mimes/application-x-mswinurl.svg +18 -0
  1048. package/static/assets/mimes/application-x-mswrite.svg +1 -0
  1049. package/static/assets/mimes/application-x-nzb.svg +15 -0
  1050. package/static/assets/mimes/application-x-object.svg +273 -0
  1051. package/static/assets/mimes/application-x-ole-storage.svg +273 -0
  1052. package/static/assets/mimes/application-x-pak.svg +16 -0
  1053. package/static/assets/mimes/application-x-perl.svg +15 -0
  1054. package/static/assets/mimes/application-x-php.svg +18 -0
  1055. package/static/assets/mimes/application-x-plasma.svg +20 -0
  1056. package/static/assets/mimes/application-x-python-bytecode.svg +16 -0
  1057. package/static/assets/mimes/application-x-rar.svg +14 -0
  1058. package/static/assets/mimes/application-x-rpm.svg +14 -0
  1059. package/static/assets/mimes/application-x-ruby.svg +22 -0
  1060. package/static/assets/mimes/application-x-sh.svg +17 -0
  1061. package/static/assets/mimes/application-x-shared-library-la.svg +62 -0
  1062. package/static/assets/mimes/application-x-sharedlib.svg +62 -0
  1063. package/static/assets/mimes/application-x-shellscript.svg +17 -0
  1064. package/static/assets/mimes/application-x-shockwave-flash.svg +18 -0
  1065. package/static/assets/mimes/application-x-srt.svg +210 -0
  1066. package/static/assets/mimes/application-x-subrip.svg +210 -0
  1067. package/static/assets/mimes/application-x-tar.svg +16 -0
  1068. package/static/assets/mimes/application-x-tarz.svg +14 -0
  1069. package/static/assets/mimes/application-x-tex.svg +79 -0
  1070. package/static/assets/mimes/application-x-theme.svg +109 -0
  1071. package/static/assets/mimes/application-x-trash.svg +14 -0
  1072. package/static/assets/mimes/application-x-tzo.svg +14 -0
  1073. package/static/assets/mimes/application-x-wine-extension-pdd.svg +14 -0
  1074. package/static/assets/mimes/application-x-zip.svg +14 -0
  1075. package/static/assets/mimes/application-x-zoo.svg +14 -0
  1076. package/static/assets/mimes/application-xhtml+xml.svg +18 -0
  1077. package/static/assets/mimes/application-xhtml.svg +18 -0
  1078. package/static/assets/mimes/application-xml.svg +18 -0
  1079. package/static/assets/mimes/application-xsd.svg +18 -0
  1080. package/static/assets/mimes/application-xslt+xml.svg +18 -0
  1081. package/static/assets/mimes/application-zip.svg +14 -0
  1082. package/static/assets/mimes/applications-java.svg +14 -0
  1083. package/static/assets/mimes/archive.svg +16 -0
  1084. package/static/assets/mimes/ascii.svg +14 -0
  1085. package/static/assets/mimes/audio-ac3.svg +24 -0
  1086. package/static/assets/mimes/audio-flac.svg +24 -0
  1087. package/static/assets/mimes/audio-mpeg.svg +24 -0
  1088. package/static/assets/mimes/audio-vn.rn-realmedia.svg +18 -0
  1089. package/static/assets/mimes/audio-vnd.rn-realvideo.svg +18 -0
  1090. package/static/assets/mimes/audio-x-adpcm.svg +24 -0
  1091. package/static/assets/mimes/audio-x-aiff.svg +24 -0
  1092. package/static/assets/mimes/audio-x-flac+ogg.svg +24 -0
  1093. package/static/assets/mimes/audio-x-flac.svg +24 -0
  1094. package/static/assets/mimes/audio-x-generic.svg +24 -0
  1095. package/static/assets/mimes/audio-x-it.svg +24 -0
  1096. package/static/assets/mimes/audio-x-monkey.svg +24 -0
  1097. package/static/assets/mimes/audio-x-mpegurl.svg +24 -0
  1098. package/static/assets/mimes/audio-x-wav.svg +24 -0
  1099. package/static/assets/mimes/audio-x-xi.svg +24 -0
  1100. package/static/assets/mimes/audio-x-xm.svg +24 -0
  1101. package/static/assets/mimes/binary.svg +40 -0
  1102. package/static/assets/mimes/deb.svg +14 -0
  1103. package/static/assets/mimes/directory.svg +9 -0
  1104. package/static/assets/mimes/directory_disabled.svg +9 -0
  1105. package/static/assets/mimes/directory_error.svg +9 -0
  1106. package/static/assets/mimes/directory_share.svg +9 -0
  1107. package/static/assets/mimes/directory_sync.svg +9 -0
  1108. package/static/assets/mimes/divx.svg +18 -0
  1109. package/static/assets/mimes/document.svg +14 -0
  1110. package/static/assets/mimes/emblem-package.svg +16 -0
  1111. package/static/assets/mimes/eps.svg +24 -0
  1112. package/static/assets/mimes/exec.svg +40 -0
  1113. package/static/assets/mimes/extension.svg +59 -0
  1114. package/static/assets/mimes/file.svg +12 -0
  1115. package/static/assets/mimes/folder-tar.svg +16 -0
  1116. package/static/assets/mimes/folder_tar.svg +16 -0
  1117. package/static/assets/mimes/font-otf.svg +14 -0
  1118. package/static/assets/mimes/font-x-generic.svg +14 -0
  1119. package/static/assets/mimes/font.svg +14 -0
  1120. package/static/assets/mimes/font_bitmap.svg +14 -0
  1121. package/static/assets/mimes/font_truetype.svg +14 -0
  1122. package/static/assets/mimes/font_type1.svg +14 -0
  1123. package/static/assets/mimes/fonts-package.svg +16 -0
  1124. package/static/assets/mimes/gedit-plugin.svg +59 -0
  1125. package/static/assets/mimes/gnome-exe-thumbnailer-generic-x.svg +306 -0
  1126. package/static/assets/mimes/gnome-exe-thumbnailer-generic.svg +306 -0
  1127. package/static/assets/mimes/gnome-exe-thumbnailer-template.svg +306 -0
  1128. package/static/assets/mimes/gnome-fs-executable.svg +40 -0
  1129. package/static/assets/mimes/gnome-mime-application-atom+xml.svg +15 -0
  1130. package/static/assets/mimes/gnome-mime-application-msexcel.svg +1 -0
  1131. package/static/assets/mimes/gnome-mime-application-msword.svg +1 -0
  1132. package/static/assets/mimes/gnome-mime-application-ogg.svg +24 -0
  1133. package/static/assets/mimes/gnome-mime-application-pdf.svg +13 -0
  1134. package/static/assets/mimes/gnome-mime-application-postscript.svg +14 -0
  1135. package/static/assets/mimes/gnome-mime-application-powerpoint.svg +1 -0
  1136. package/static/assets/mimes/gnome-mime-application-rss+xml.svg +15 -0
  1137. package/static/assets/mimes/gnome-mime-application-rtf.svg +14 -0
  1138. package/static/assets/mimes/gnome-mime-application-vnd.ms-excel.svg +1 -0
  1139. package/static/assets/mimes/gnome-mime-application-vnd.ms-powerpoint.svg +1 -0
  1140. package/static/assets/mimes/gnome-mime-application-vnd.ms-word.svg +1 -0
  1141. package/static/assets/mimes/gnome-mime-application-vnd.mspowerpoint.svg +1 -0
  1142. package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.formula.svg +188 -0
  1143. package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +18 -0
  1144. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
  1145. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
  1146. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
  1147. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
  1148. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-secure.svg +18 -0
  1149. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-vbr.svg +18 -0
  1150. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia.svg +18 -0
  1151. package/static/assets/mimes/gnome-mime-application-wps-office.doc.svg +1 -0
  1152. package/static/assets/mimes/gnome-mime-application-wps-office.docx.svg +1 -0
  1153. package/static/assets/mimes/gnome-mime-application-wps-office.ppt.svg +1 -0
  1154. package/static/assets/mimes/gnome-mime-application-wps-office.pptx.svg +1 -0
  1155. package/static/assets/mimes/gnome-mime-application-wps-office.xls.svg +1 -0
  1156. package/static/assets/mimes/gnome-mime-application-wps-office.xlsx.svg +1 -0
  1157. package/static/assets/mimes/gnome-mime-application-x-7z-compressed.svg +14 -0
  1158. package/static/assets/mimes/gnome-mime-application-x-7zip.svg +14 -0
  1159. package/static/assets/mimes/gnome-mime-application-x-archive.svg +16 -0
  1160. package/static/assets/mimes/gnome-mime-application-x-arj.svg +16 -0
  1161. package/static/assets/mimes/gnome-mime-application-x-bittorrent.svg +53 -0
  1162. package/static/assets/mimes/gnome-mime-application-x-bzip-compressed-tar.svg +16 -0
  1163. package/static/assets/mimes/gnome-mime-application-x-bzip-compressed.svg +16 -0
  1164. package/static/assets/mimes/gnome-mime-application-x-bzip.svg +16 -0
  1165. package/static/assets/mimes/gnome-mime-application-x-class-file.svg +14 -0
  1166. package/static/assets/mimes/gnome-mime-application-x-compress.svg +16 -0
  1167. package/static/assets/mimes/gnome-mime-application-x-compressed-tar.svg +16 -0
  1168. package/static/assets/mimes/gnome-mime-application-x-cpio-compressed.svg +16 -0
  1169. package/static/assets/mimes/gnome-mime-application-x-cpio.svg +16 -0
  1170. package/static/assets/mimes/gnome-mime-application-x-deb.svg +14 -0
  1171. package/static/assets/mimes/gnome-mime-application-x-designer.svg +48 -0
  1172. package/static/assets/mimes/gnome-mime-application-x-executable.svg +40 -0
  1173. package/static/assets/mimes/gnome-mime-application-x-font-afm.svg +14 -0
  1174. package/static/assets/mimes/gnome-mime-application-x-font-bdf.svg +14 -0
  1175. package/static/assets/mimes/gnome-mime-application-x-font-linux-psf.svg +14 -0
  1176. package/static/assets/mimes/gnome-mime-application-x-font-pcf.svg +14 -0
  1177. package/static/assets/mimes/gnome-mime-application-x-font-sunos-news.svg +14 -0
  1178. package/static/assets/mimes/gnome-mime-application-x-font-ttf.svg +14 -0
  1179. package/static/assets/mimes/gnome-mime-application-x-glade.svg +48 -0
  1180. package/static/assets/mimes/gnome-mime-application-x-gnome-app-info.svg +109 -0
  1181. package/static/assets/mimes/gnome-mime-application-x-gnome-theme-package.svg +109 -0
  1182. package/static/assets/mimes/gnome-mime-application-x-gzip.svg +16 -0
  1183. package/static/assets/mimes/gnome-mime-application-x-gzpostscript.svg +14 -0
  1184. package/static/assets/mimes/gnome-mime-application-x-jar.svg +16 -0
  1185. package/static/assets/mimes/gnome-mime-application-x-java.svg +14 -0
  1186. package/static/assets/mimes/gnome-mime-application-x-killustrator.svg +12 -0
  1187. package/static/assets/mimes/gnome-mime-application-x-lha.svg +16 -0
  1188. package/static/assets/mimes/gnome-mime-application-x-lhz.svg +16 -0
  1189. package/static/assets/mimes/gnome-mime-application-x-lzma-compressed-tar.svg +16 -0
  1190. package/static/assets/mimes/gnome-mime-application-x-lzma.svg +16 -0
  1191. package/static/assets/mimes/gnome-mime-application-x-ms-dos-executable.svg +306 -0
  1192. package/static/assets/mimes/gnome-mime-application-x-perl.svg +15 -0
  1193. package/static/assets/mimes/gnome-mime-application-x-php.svg +18 -0
  1194. package/static/assets/mimes/gnome-mime-application-x-python-bytecode.svg +16 -0
  1195. package/static/assets/mimes/gnome-mime-application-x-rar.svg +14 -0
  1196. package/static/assets/mimes/gnome-mime-application-x-rpm.svg +14 -0
  1197. package/static/assets/mimes/gnome-mime-application-x-ruby.svg +22 -0
  1198. package/static/assets/mimes/gnome-mime-application-x-shellscript.svg +17 -0
  1199. package/static/assets/mimes/gnome-mime-application-x-shockwave-flash.svg +18 -0
  1200. package/static/assets/mimes/gnome-mime-application-x-stuffit.svg +16 -0
  1201. package/static/assets/mimes/gnome-mime-application-x-tar.svg +16 -0
  1202. package/static/assets/mimes/gnome-mime-application-x-tarz.svg +16 -0
  1203. package/static/assets/mimes/gnome-mime-application-x-tex.svg +79 -0
  1204. package/static/assets/mimes/gnome-mime-application-x-theme.svg +109 -0
  1205. package/static/assets/mimes/gnome-mime-application-x-zip.svg +14 -0
  1206. package/static/assets/mimes/gnome-mime-application-xhtml+xml.svg +18 -0
  1207. package/static/assets/mimes/gnome-mime-application-xml.svg +18 -0
  1208. package/static/assets/mimes/gnome-mime-application-zip.svg +14 -0
  1209. package/static/assets/mimes/gnome-mime-application.svg +40 -0
  1210. package/static/assets/mimes/gnome-mime-audio.svg +24 -0
  1211. package/static/assets/mimes/gnome-mime-image-vnd.adobe.photoshop.svg +14 -0
  1212. package/static/assets/mimes/gnome-mime-image-x-cmu-raster.svg +12 -0
  1213. package/static/assets/mimes/gnome-mime-image-x-killustrator.svg +12 -0
  1214. package/static/assets/mimes/gnome-mime-image-x-psd.svg +14 -0
  1215. package/static/assets/mimes/gnome-mime-image-x-xpixmap.svg +12 -0
  1216. package/static/assets/mimes/gnome-mime-image.svg +12 -0
  1217. package/static/assets/mimes/gnome-mime-text-html.svg +18 -0
  1218. package/static/assets/mimes/gnome-mime-text-install.svg +20 -0
  1219. package/static/assets/mimes/gnome-mime-text-plain.svg +14 -0
  1220. package/static/assets/mimes/gnome-mime-text-vnd.wap.wml.svg +18 -0
  1221. package/static/assets/mimes/gnome-mime-text-x-changelog.svg +208 -0
  1222. package/static/assets/mimes/gnome-mime-text-x-copying.svg +17 -0
  1223. package/static/assets/mimes/gnome-mime-text-x-csh.svg +17 -0
  1224. package/static/assets/mimes/gnome-mime-text-x-gtkrc.svg +109 -0
  1225. package/static/assets/mimes/gnome-mime-text-x-install.svg +17 -0
  1226. package/static/assets/mimes/gnome-mime-text-x-java-source.svg +14 -0
  1227. package/static/assets/mimes/gnome-mime-text-x-java.svg +14 -0
  1228. package/static/assets/mimes/gnome-mime-text-x-makefile.svg +176 -0
  1229. package/static/assets/mimes/gnome-mime-text-x-opml+xml.svg +15 -0
  1230. package/static/assets/mimes/gnome-mime-text-x-opml.svg +15 -0
  1231. package/static/assets/mimes/gnome-mime-text-x-python.svg +16 -0
  1232. package/static/assets/mimes/gnome-mime-text-x-readme.svg +15 -0
  1233. package/static/assets/mimes/gnome-mime-text-x-sh.svg +17 -0
  1234. package/static/assets/mimes/gnome-mime-text-x-zsh.svg +17 -0
  1235. package/static/assets/mimes/gnome-mime-text.svg +14 -0
  1236. package/static/assets/mimes/gnome-mime-video-x-ms-asf.svg +18 -0
  1237. package/static/assets/mimes/gnome-mime-video-x-ms-wmv.svg +18 -0
  1238. package/static/assets/mimes/gnome-mime-video.svg +18 -0
  1239. package/static/assets/mimes/gnome-mime-x-font-afm.svg +14 -0
  1240. package/static/assets/mimes/gnome-mime-x-install.svg +20 -0
  1241. package/static/assets/mimes/gnome-package.svg +16 -0
  1242. package/static/assets/mimes/html.svg +18 -0
  1243. package/static/assets/mimes/image-gif.svg +12 -0
  1244. package/static/assets/mimes/image-jpeg.svg +12 -0
  1245. package/static/assets/mimes/image-png.svg +12 -0
  1246. package/static/assets/mimes/image-svg+xml-compressed.svg +12 -0
  1247. package/static/assets/mimes/image-svg+xml.svg +12 -0
  1248. package/static/assets/mimes/image-svg.svg +12 -0
  1249. package/static/assets/mimes/image-vnd.adobe.photoshop.svg +14 -0
  1250. package/static/assets/mimes/image-vnd.microsoft.icon.svg +12 -0
  1251. package/static/assets/mimes/image-x-eps.svg +24 -0
  1252. package/static/assets/mimes/image-x-generic.svg +12 -0
  1253. package/static/assets/mimes/image-x-psd.svg +14 -0
  1254. package/static/assets/mimes/image-x-psdimage-x-psd.svg +14 -0
  1255. package/static/assets/mimes/image-x-xcf.svg +21 -0
  1256. package/static/assets/mimes/image-x-xfig.svg +12 -0
  1257. package/static/assets/mimes/image.svg +12 -0
  1258. package/static/assets/mimes/internet-feed.svg +15 -0
  1259. package/static/assets/mimes/libpeas-plugin.svg +59 -0
  1260. package/static/assets/mimes/libreoffice-database.svg +155 -0
  1261. package/static/assets/mimes/libreoffice-extension.svg +59 -0
  1262. package/static/assets/mimes/libreoffice-extensionn.svg +59 -0
  1263. package/static/assets/mimes/libreoffice-formula.svg +188 -0
  1264. package/static/assets/mimes/libreoffice-oasis-formula.svg +188 -0
  1265. package/static/assets/mimes/libreoffice34-extension.svg +59 -0
  1266. package/static/assets/mimes/media-audio.svg +24 -0
  1267. package/static/assets/mimes/media-video.svg +18 -0
  1268. package/static/assets/mimes/mime-ascii.svg +14 -0
  1269. package/static/assets/mimes/mime_ascii.svg +14 -0
  1270. package/static/assets/mimes/misc.svg +14 -0
  1271. package/static/assets/mimes/multipart-encrypted.svg +273 -0
  1272. package/static/assets/mimes/music.svg +24 -0
  1273. package/static/assets/mimes/none.svg +110 -0
  1274. package/static/assets/mimes/old-file.svg +22 -0
  1275. package/static/assets/mimes/openofficeorg3-extension.svg +59 -0
  1276. package/static/assets/mimes/package-x-generic.svg +16 -0
  1277. package/static/assets/mimes/package.svg +16 -0
  1278. package/static/assets/mimes/package_editors.svg +14 -0
  1279. package/static/assets/mimes/packages-gdebi.svg +14 -0
  1280. package/static/assets/mimes/pdf.svg +13 -0
  1281. package/static/assets/mimes/preferences-certificate.svg +28 -0
  1282. package/static/assets/mimes/preferences-plugin.svg +59 -0
  1283. package/static/assets/mimes/rar.svg +14 -0
  1284. package/static/assets/mimes/raw.svg +12 -0
  1285. package/static/assets/mimes/rpm.svg +14 -0
  1286. package/static/assets/mimes/scii.svg +14 -0
  1287. package/static/assets/mimes/shellscript.svg +17 -0
  1288. package/static/assets/mimes/sound.svg +24 -0
  1289. package/static/assets/mimes/stock_certificate.svg +28 -0
  1290. package/static/assets/mimes/stock_new-formula.svg +188 -0
  1291. package/static/assets/mimes/stock_new-html.svg +18 -0
  1292. package/static/assets/mimes/stock_script.svg +17 -0
  1293. package/static/assets/mimes/stock_scripts.svg +17 -0
  1294. package/static/assets/mimes/tar.svg +16 -0
  1295. package/static/assets/mimes/text-css.svg +18 -0
  1296. package/static/assets/mimes/text-enriched.svg +14 -0
  1297. package/static/assets/mimes/text-html.svg +18 -0
  1298. package/static/assets/mimes/text-htmlh.svg +18 -0
  1299. package/static/assets/mimes/text-javascript.svg +6 -0
  1300. package/static/assets/mimes/text-markdown.svg +26 -0
  1301. package/static/assets/mimes/text-mht.svg +18 -0
  1302. package/static/assets/mimes/text-plain.svg +14 -0
  1303. package/static/assets/mimes/text-richtext.svg +14 -0
  1304. package/static/assets/mimes/text-typescript.svg +1 -0
  1305. package/static/assets/mimes/text-x-bak.svg +14 -0
  1306. package/static/assets/mimes/text-x-bibtex.svg +79 -0
  1307. package/static/assets/mimes/text-x-changelog.svg +208 -0
  1308. package/static/assets/mimes/text-x-copying.svg +17 -0
  1309. package/static/assets/mimes/text-x-generic.svg +14 -0
  1310. package/static/assets/mimes/text-x-gtkrc.svg +109 -0
  1311. package/static/assets/mimes/text-x-install.svg +20 -0
  1312. package/static/assets/mimes/text-x-java-source.svg +14 -0
  1313. package/static/assets/mimes/text-x-java.svg +14 -0
  1314. package/static/assets/mimes/text-x-log.svg +1135 -0
  1315. package/static/assets/mimes/text-x-lua.svg +14 -0
  1316. package/static/assets/mimes/text-x-makefile.svg +176 -0
  1317. package/static/assets/mimes/text-x-microdvd.svg +210 -0
  1318. package/static/assets/mimes/text-x-nfo.svg +14 -0
  1319. package/static/assets/mimes/text-x-opml+xml.svg +15 -0
  1320. package/static/assets/mimes/text-x-opml.svg +15 -0
  1321. package/static/assets/mimes/text-x-patch.svg +19 -0
  1322. package/static/assets/mimes/text-x-perl.svg +15 -0
  1323. package/static/assets/mimes/text-x-python.svg +16 -0
  1324. package/static/assets/mimes/text-x-readme.svg +15 -0
  1325. package/static/assets/mimes/text-x-ruby.svg +22 -0
  1326. package/static/assets/mimes/text-x-script.svg +17 -0
  1327. package/static/assets/mimes/text-x-tex.svg +79 -0
  1328. package/static/assets/mimes/text-x-vala.svg +14 -0
  1329. package/static/assets/mimes/text-x.svg +14 -0
  1330. package/static/assets/mimes/text-xmcd.svg +358 -0
  1331. package/static/assets/mimes/text-xml.svg +18 -0
  1332. package/static/assets/mimes/text-yaml.svg +1 -0
  1333. package/static/assets/mimes/text.svg +14 -0
  1334. package/static/assets/mimes/text2.svg +14 -0
  1335. package/static/assets/mimes/tgz.svg +16 -0
  1336. package/static/assets/mimes/txt.svg +14 -0
  1337. package/static/assets/mimes/txt2.svg +14 -0
  1338. package/static/assets/mimes/unknown.svg +110 -0
  1339. package/static/assets/mimes/uri-mms.svg +18 -0
  1340. package/static/assets/mimes/uri-mmst.svg +18 -0
  1341. package/static/assets/mimes/uri-mmsu.svg +18 -0
  1342. package/static/assets/mimes/uri-pnm.svg +18 -0
  1343. package/static/assets/mimes/uri-rtspt.svg +18 -0
  1344. package/static/assets/mimes/uri-rtspu.svg +18 -0
  1345. package/static/assets/mimes/video-quicktime.svg +18 -0
  1346. package/static/assets/mimes/video-vivo.svg +18 -0
  1347. package/static/assets/mimes/video-wavelet.svg +18 -0
  1348. package/static/assets/mimes/video-webm.svg +18 -0
  1349. package/static/assets/mimes/video-x-anim.svg +18 -0
  1350. package/static/assets/mimes/video-x-flic.svg +18 -0
  1351. package/static/assets/mimes/video-x-generic.svg +18 -0
  1352. package/static/assets/mimes/video-x-google-vlc-plugin.svg +18 -0
  1353. package/static/assets/mimes/video-x-javafx.svg +18 -0
  1354. package/static/assets/mimes/video-x-matroska.svg +18 -0
  1355. package/static/assets/mimes/video-x-mng.svg +18 -0
  1356. package/static/assets/mimes/video-x-ms-asf-plugin.svg +18 -0
  1357. package/static/assets/mimes/video-x-ms-asf.svg +18 -0
  1358. package/static/assets/mimes/video-x-ms-wmp.svg +18 -0
  1359. package/static/assets/mimes/video-x-ms-wmv.svg +18 -0
  1360. package/static/assets/mimes/video-x-nsv.svg +18 -0
  1361. package/static/assets/mimes/video-x-sgi-movie.svg +18 -0
  1362. package/static/assets/mimes/video-x-theora+ogg.svg +18 -0
  1363. package/static/assets/mimes/video-x-wmv.svg +18 -0
  1364. package/static/assets/mimes/video.svg +18 -0
  1365. package/static/assets/mimes/www.svg +18 -0
  1366. package/static/assets/mimes/x-kde-nsplugin-generated.svg +59 -0
  1367. package/static/assets/mimes/zip.svg +14 -0
  1368. package/static/assets/pdfjs/LICENSE +177 -0
  1369. package/static/assets/pdfjs/build/pdf.mjs +23371 -0
  1370. package/static/assets/pdfjs/build/pdf.mjs.map +1 -0
  1371. package/static/assets/pdfjs/build/pdf.sandbox.mjs +218 -0
  1372. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -0
  1373. package/static/assets/pdfjs/build/pdf.worker.mjs +58148 -0
  1374. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -0
  1375. package/static/assets/pdfjs/version +1 -0
  1376. package/static/assets/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
  1377. package/static/assets/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
  1378. package/static/assets/pdfjs/web/cmaps/78-H.bcmap +0 -0
  1379. package/static/assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
  1380. package/static/assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
  1381. package/static/assets/pdfjs/web/cmaps/78-V.bcmap +0 -0
  1382. package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
  1383. package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
  1384. package/static/assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
  1385. package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
  1386. package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
  1387. package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
  1388. package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
  1389. package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
  1390. package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
  1391. package/static/assets/pdfjs/web/cmaps/Add-H.bcmap +0 -0
  1392. package/static/assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
  1393. package/static/assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
  1394. package/static/assets/pdfjs/web/cmaps/Add-V.bcmap +0 -0
  1395. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
  1396. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
  1397. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
  1398. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
  1399. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
  1400. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
  1401. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
  1402. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
  1403. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
  1404. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
  1405. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
  1406. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
  1407. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
  1408. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
  1409. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
  1410. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
  1411. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
  1412. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
  1413. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
  1414. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
  1415. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
  1416. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
  1417. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
  1418. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
  1419. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
  1420. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
  1421. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
  1422. package/static/assets/pdfjs/web/cmaps/B5-H.bcmap +0 -0
  1423. package/static/assets/pdfjs/web/cmaps/B5-V.bcmap +0 -0
  1424. package/static/assets/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
  1425. package/static/assets/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
  1426. package/static/assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
  1427. package/static/assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
  1428. package/static/assets/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
  1429. package/static/assets/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
  1430. package/static/assets/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
  1431. package/static/assets/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
  1432. package/static/assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
  1433. package/static/assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
  1434. package/static/assets/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
  1435. package/static/assets/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
  1436. package/static/assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
  1437. package/static/assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
  1438. package/static/assets/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
  1439. package/static/assets/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
  1440. package/static/assets/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
  1441. package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
  1442. package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
  1443. package/static/assets/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
  1444. package/static/assets/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
  1445. package/static/assets/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
  1446. package/static/assets/pdfjs/web/cmaps/GB-H.bcmap +4 -0
  1447. package/static/assets/pdfjs/web/cmaps/GB-V.bcmap +0 -0
  1448. package/static/assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
  1449. package/static/assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
  1450. package/static/assets/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
  1451. package/static/assets/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
  1452. package/static/assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
  1453. package/static/assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
  1454. package/static/assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
  1455. package/static/assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
  1456. package/static/assets/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
  1457. package/static/assets/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
  1458. package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
  1459. package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
  1460. package/static/assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
  1461. package/static/assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
  1462. package/static/assets/pdfjs/web/cmaps/H.bcmap +0 -0
  1463. package/static/assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
  1464. package/static/assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
  1465. package/static/assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
  1466. package/static/assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
  1467. package/static/assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
  1468. package/static/assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
  1469. package/static/assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
  1470. package/static/assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
  1471. package/static/assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
  1472. package/static/assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
  1473. package/static/assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
  1474. package/static/assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
  1475. package/static/assets/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
  1476. package/static/assets/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
  1477. package/static/assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
  1478. package/static/assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
  1479. package/static/assets/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
  1480. package/static/assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
  1481. package/static/assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
  1482. package/static/assets/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
  1483. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
  1484. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
  1485. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
  1486. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
  1487. package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
  1488. package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
  1489. package/static/assets/pdfjs/web/cmaps/Katakana.bcmap +0 -0
  1490. package/static/assets/pdfjs/web/cmaps/LICENSE +36 -0
  1491. package/static/assets/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
  1492. package/static/assets/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
  1493. package/static/assets/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
  1494. package/static/assets/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
  1495. package/static/assets/pdfjs/web/cmaps/Roman.bcmap +0 -0
  1496. package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
  1497. package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
  1498. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
  1499. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
  1500. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
  1501. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
  1502. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
  1503. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
  1504. package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
  1505. package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
  1506. package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
  1507. package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
  1508. package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
  1509. package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
  1510. package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
  1511. package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
  1512. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
  1513. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
  1514. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
  1515. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
  1516. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
  1517. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
  1518. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
  1519. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
  1520. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
  1521. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
  1522. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
  1523. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
  1524. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
  1525. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
  1526. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
  1527. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
  1528. package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
  1529. package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
  1530. package/static/assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
  1531. package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
  1532. package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
  1533. package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
  1534. package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
  1535. package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
  1536. package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
  1537. package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
  1538. package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
  1539. package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
  1540. package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
  1541. package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
  1542. package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
  1543. package/static/assets/pdfjs/web/cmaps/V.bcmap +0 -0
  1544. package/static/assets/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
  1545. package/static/assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
  1546. package/static/assets/pdfjs/web/debugger.css +114 -0
  1547. package/static/assets/pdfjs/web/debugger.mjs +627 -0
  1548. package/static/assets/pdfjs/web/iccs/CGATS001Compat-v2-micro.icc +0 -0
  1549. package/static/assets/pdfjs/web/iccs/LICENSE +116 -0
  1550. package/static/assets/pdfjs/web/images/altText_add.svg +3 -0
  1551. package/static/assets/pdfjs/web/images/altText_disclaimer.svg +3 -0
  1552. package/static/assets/pdfjs/web/images/altText_done.svg +3 -0
  1553. package/static/assets/pdfjs/web/images/altText_spinner.svg +30 -0
  1554. package/static/assets/pdfjs/web/images/altText_warning.svg +3 -0
  1555. package/static/assets/pdfjs/web/images/annotation-check.svg +11 -0
  1556. package/static/assets/pdfjs/web/images/annotation-comment.svg +16 -0
  1557. package/static/assets/pdfjs/web/images/annotation-help.svg +26 -0
  1558. package/static/assets/pdfjs/web/images/annotation-insert.svg +10 -0
  1559. package/static/assets/pdfjs/web/images/annotation-key.svg +11 -0
  1560. package/static/assets/pdfjs/web/images/annotation-newparagraph.svg +11 -0
  1561. package/static/assets/pdfjs/web/images/annotation-noicon.svg +7 -0
  1562. package/static/assets/pdfjs/web/images/annotation-note.svg +42 -0
  1563. package/static/assets/pdfjs/web/images/annotation-paperclip.svg +6 -0
  1564. package/static/assets/pdfjs/web/images/annotation-paragraph.svg +16 -0
  1565. package/static/assets/pdfjs/web/images/annotation-pushpin.svg +7 -0
  1566. package/static/assets/pdfjs/web/images/comment-actionsButton.svg +3 -0
  1567. package/static/assets/pdfjs/web/images/comment-closeButton.svg +3 -0
  1568. package/static/assets/pdfjs/web/images/comment-editButton.svg +3 -0
  1569. package/static/assets/pdfjs/web/images/cursor-editorFreeHighlight.svg +6 -0
  1570. package/static/assets/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
  1571. package/static/assets/pdfjs/web/images/cursor-editorInk.svg +4 -0
  1572. package/static/assets/pdfjs/web/images/cursor-editorTextHighlight.svg +8 -0
  1573. package/static/assets/pdfjs/web/images/editor-toolbar-delete.svg +5 -0
  1574. package/static/assets/pdfjs/web/images/editor-toolbar-edit.svg +3 -0
  1575. package/static/assets/pdfjs/web/images/findbarButton-next.svg +3 -0
  1576. package/static/assets/pdfjs/web/images/findbarButton-previous.svg +3 -0
  1577. package/static/assets/pdfjs/web/images/gv-toolbarButton-download.svg +3 -0
  1578. package/static/assets/pdfjs/web/images/loading-icon.gif +0 -0
  1579. package/static/assets/pdfjs/web/images/loading.svg +1 -0
  1580. package/static/assets/pdfjs/web/images/messageBar_closingButton.svg +3 -0
  1581. package/static/assets/pdfjs/web/images/messageBar_info.svg +3 -0
  1582. package/static/assets/pdfjs/web/images/messageBar_warning.svg +3 -0
  1583. package/static/assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
  1584. package/static/assets/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
  1585. package/static/assets/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
  1586. package/static/assets/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
  1587. package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
  1588. package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
  1589. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
  1590. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
  1591. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
  1592. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
  1593. package/static/assets/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
  1594. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
  1595. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
  1596. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
  1597. package/static/assets/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
  1598. package/static/assets/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
  1599. package/static/assets/pdfjs/web/images/toolbarButton-download.svg +4 -0
  1600. package/static/assets/pdfjs/web/images/toolbarButton-editorFreeText.svg +5 -0
  1601. package/static/assets/pdfjs/web/images/toolbarButton-editorHighlight.svg +6 -0
  1602. package/static/assets/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
  1603. package/static/assets/pdfjs/web/images/toolbarButton-editorSignature.svg +6 -0
  1604. package/static/assets/pdfjs/web/images/toolbarButton-editorStamp.svg +8 -0
  1605. package/static/assets/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
  1606. package/static/assets/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
  1607. package/static/assets/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
  1608. package/static/assets/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
  1609. package/static/assets/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
  1610. package/static/assets/pdfjs/web/images/toolbarButton-print.svg +3 -0
  1611. package/static/assets/pdfjs/web/images/toolbarButton-search.svg +3 -0
  1612. package/static/assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
  1613. package/static/assets/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
  1614. package/static/assets/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
  1615. package/static/assets/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
  1616. package/static/assets/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
  1617. package/static/assets/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
  1618. package/static/assets/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
  1619. package/static/assets/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
  1620. package/static/assets/pdfjs/web/images/treeitem-collapsed.svg +1 -0
  1621. package/static/assets/pdfjs/web/images/treeitem-expanded.svg +1 -0
  1622. package/static/assets/pdfjs/web/locale/ach/viewer.ftl +275 -0
  1623. package/static/assets/pdfjs/web/locale/af/viewer.ftl +262 -0
  1624. package/static/assets/pdfjs/web/locale/an/viewer.ftl +307 -0
  1625. package/static/assets/pdfjs/web/locale/ar/viewer.ftl +627 -0
  1626. package/static/assets/pdfjs/web/locale/ast/viewer.ftl +251 -0
  1627. package/static/assets/pdfjs/web/locale/az/viewer.ftl +307 -0
  1628. package/static/assets/pdfjs/web/locale/be/viewer.ftl +618 -0
  1629. package/static/assets/pdfjs/web/locale/bg/viewer.ftl +451 -0
  1630. package/static/assets/pdfjs/web/locale/bn/viewer.ftl +297 -0
  1631. package/static/assets/pdfjs/web/locale/bo/viewer.ftl +297 -0
  1632. package/static/assets/pdfjs/web/locale/br/viewer.ftl +382 -0
  1633. package/static/assets/pdfjs/web/locale/brx/viewer.ftl +268 -0
  1634. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +618 -0
  1635. package/static/assets/pdfjs/web/locale/ca/viewer.ftl +343 -0
  1636. package/static/assets/pdfjs/web/locale/cak/viewer.ftl +341 -0
  1637. package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +292 -0
  1638. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +621 -0
  1639. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +627 -0
  1640. package/static/assets/pdfjs/web/locale/da/viewer.ftl +615 -0
  1641. package/static/assets/pdfjs/web/locale/de/viewer.ftl +615 -0
  1642. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +621 -0
  1643. package/static/assets/pdfjs/web/locale/el/viewer.ftl +615 -0
  1644. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +615 -0
  1645. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +615 -0
  1646. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +667 -0
  1647. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +615 -0
  1648. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +615 -0
  1649. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +615 -0
  1650. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +615 -0
  1651. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +580 -0
  1652. package/static/assets/pdfjs/web/locale/et/viewer.ftl +319 -0
  1653. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +619 -0
  1654. package/static/assets/pdfjs/web/locale/fa/viewer.ftl +378 -0
  1655. package/static/assets/pdfjs/web/locale/ff/viewer.ftl +297 -0
  1656. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +615 -0
  1657. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +611 -0
  1658. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +615 -0
  1659. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +615 -0
  1660. package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +263 -0
  1661. package/static/assets/pdfjs/web/locale/gd/viewer.ftl +343 -0
  1662. package/static/assets/pdfjs/web/locale/gl/viewer.ftl +615 -0
  1663. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +614 -0
  1664. package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +297 -0
  1665. package/static/assets/pdfjs/web/locale/he/viewer.ftl +615 -0
  1666. package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +297 -0
  1667. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +618 -0
  1668. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +621 -0
  1669. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +615 -0
  1670. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +314 -0
  1671. package/static/assets/pdfjs/web/locale/hye/viewer.ftl +318 -0
  1672. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +615 -0
  1673. package/static/assets/pdfjs/web/locale/id/viewer.ftl +603 -0
  1674. package/static/assets/pdfjs/web/locale/is/viewer.ftl +600 -0
  1675. package/static/assets/pdfjs/web/locale/it/viewer.ftl +623 -0
  1676. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +603 -0
  1677. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +615 -0
  1678. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +595 -0
  1679. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +603 -0
  1680. package/static/assets/pdfjs/web/locale/km/viewer.ftl +273 -0
  1681. package/static/assets/pdfjs/web/locale/kn/viewer.ftl +263 -0
  1682. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +603 -0
  1683. package/static/assets/pdfjs/web/locale/lij/viewer.ftl +297 -0
  1684. package/static/assets/pdfjs/web/locale/lo/viewer.ftl +343 -0
  1685. package/static/assets/pdfjs/web/locale/locale.json +1 -0
  1686. package/static/assets/pdfjs/web/locale/lt/viewer.ftl +318 -0
  1687. package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +296 -0
  1688. package/static/assets/pdfjs/web/locale/lv/viewer.ftl +297 -0
  1689. package/static/assets/pdfjs/web/locale/meh/viewer.ftl +137 -0
  1690. package/static/assets/pdfjs/web/locale/mk/viewer.ftl +265 -0
  1691. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +524 -0
  1692. package/static/assets/pdfjs/web/locale/mr/viewer.ftl +289 -0
  1693. package/static/assets/pdfjs/web/locale/ms/viewer.ftl +297 -0
  1694. package/static/assets/pdfjs/web/locale/my/viewer.ftl +256 -0
  1695. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +615 -0
  1696. package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +284 -0
  1697. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +615 -0
  1698. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +609 -0
  1699. package/static/assets/pdfjs/web/locale/oc/viewer.ftl +436 -0
  1700. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +615 -0
  1701. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +618 -0
  1702. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +615 -0
  1703. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +615 -0
  1704. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +615 -0
  1705. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +302 -0
  1706. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +618 -0
  1707. package/static/assets/pdfjs/web/locale/sat/viewer.ftl +355 -0
  1708. package/static/assets/pdfjs/web/locale/sc/viewer.ftl +394 -0
  1709. package/static/assets/pdfjs/web/locale/scn/viewer.ftl +124 -0
  1710. package/static/assets/pdfjs/web/locale/sco/viewer.ftl +314 -0
  1711. package/static/assets/pdfjs/web/locale/si/viewer.ftl +301 -0
  1712. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +621 -0
  1713. package/static/assets/pdfjs/web/locale/skr/viewer.ftl +524 -0
  1714. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +621 -0
  1715. package/static/assets/pdfjs/web/locale/son/viewer.ftl +256 -0
  1716. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +606 -0
  1717. package/static/assets/pdfjs/web/locale/sr/viewer.ftl +451 -0
  1718. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +615 -0
  1719. package/static/assets/pdfjs/web/locale/szl/viewer.ftl +307 -0
  1720. package/static/assets/pdfjs/web/locale/ta/viewer.ftl +273 -0
  1721. package/static/assets/pdfjs/web/locale/te/viewer.ftl +289 -0
  1722. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +615 -0
  1723. package/static/assets/pdfjs/web/locale/th/viewer.ftl +603 -0
  1724. package/static/assets/pdfjs/web/locale/tl/viewer.ftl +307 -0
  1725. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +615 -0
  1726. package/static/assets/pdfjs/web/locale/trs/viewer.ftl +247 -0
  1727. package/static/assets/pdfjs/web/locale/uk/viewer.ftl +618 -0
  1728. package/static/assets/pdfjs/web/locale/ur/viewer.ftl +298 -0
  1729. package/static/assets/pdfjs/web/locale/uz/viewer.ftl +237 -0
  1730. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +603 -0
  1731. package/static/assets/pdfjs/web/locale/wo/viewer.ftl +177 -0
  1732. package/static/assets/pdfjs/web/locale/xh/viewer.ftl +262 -0
  1733. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +603 -0
  1734. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +603 -0
  1735. package/static/assets/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
  1736. package/static/assets/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
  1737. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
  1738. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
  1739. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
  1740. package/static/assets/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
  1741. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
  1742. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
  1743. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
  1744. package/static/assets/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
  1745. package/static/assets/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
  1746. package/static/assets/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
  1747. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
  1748. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
  1749. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
  1750. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
  1751. package/static/assets/pdfjs/web/viewer.css +6766 -0
  1752. package/static/assets/pdfjs/web/viewer.html +768 -0
  1753. package/static/assets/pdfjs/web/viewer.mjs +17445 -0
  1754. package/static/assets/pdfjs/web/viewer.mjs.map +1 -0
  1755. package/static/assets/pdfjs/web/wasm/LICENSE_OPENJPEG +39 -0
  1756. package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_OPENJPEG +22 -0
  1757. package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_QCMS +22 -0
  1758. package/static/assets/pdfjs/web/wasm/LICENSE_QCMS +21 -0
  1759. package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
  1760. package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +29 -0
  1761. package/static/assets/pdfjs/web/wasm/qcms_bg.wasm +0 -0
  1762. package/static/assets/protected.png +0 -0
  1763. package/static/chunk-2EBPSJJT.js +1 -0
  1764. package/static/chunk-3V7XYPSJ.js +4 -0
  1765. package/static/chunk-4IYQWOGR.js +1 -0
  1766. package/static/chunk-5RFOYHL3.js +1 -0
  1767. package/static/chunk-7PCJMNDR.js +1 -0
  1768. package/static/chunk-7WRQICEB.js +1 -0
  1769. package/static/chunk-AKM2LQUU.js +1 -0
  1770. package/static/chunk-ATFX6EIO.js +1 -0
  1771. package/static/chunk-ATLT5DK5.js +1 -0
  1772. package/static/chunk-DVHXFWN7.js +1 -0
  1773. package/static/chunk-E27KCFP6.js +24 -0
  1774. package/static/chunk-FPEGN42P.js +564 -0
  1775. package/static/chunk-GAL4ENT6.js +1 -0
  1776. package/static/chunk-GWUCWOVK.js +1 -0
  1777. package/static/chunk-I644MKAO.js +1 -0
  1778. package/static/chunk-IFJD2ISM.js +1 -0
  1779. package/static/chunk-IUUTIYHF.js +1 -0
  1780. package/static/chunk-JXZCNFW7.js +1 -0
  1781. package/static/chunk-MEKYVWV4.js +1 -0
  1782. package/static/chunk-MQZEETHL.js +7 -0
  1783. package/static/chunk-NPLV4M2H.js +1 -0
  1784. package/static/chunk-NU3TPXFY.js +4 -0
  1785. package/static/chunk-O4CXCITB.js +1 -0
  1786. package/static/chunk-OWGR4BYT.js +1 -0
  1787. package/static/chunk-QFRQQ4K3.js +1 -0
  1788. package/static/chunk-RAVRSB6R.js +1 -0
  1789. package/static/chunk-RUNMEQOV.js +1 -0
  1790. package/static/chunk-UGSGMP2I.js +1 -0
  1791. package/static/chunk-UV4UIX6J.js +1 -0
  1792. package/static/chunk-VBD7QTEP.js +1 -0
  1793. package/static/chunk-VBWPPICY.js +1 -0
  1794. package/static/chunk-VQRN7HFP.js +1 -0
  1795. package/static/chunk-WTPZUBNX.js +24 -0
  1796. package/static/chunk-XI72YZ2M.js +1 -0
  1797. package/static/chunk-Z6IHRUVL.js +1 -0
  1798. package/static/chunk-ZVPX26RB.js +1 -0
  1799. package/static/chunk-ZZ3LHYOY.js +1 -0
  1800. package/static/favicon.ico +0 -0
  1801. package/static/index.html +19 -0
  1802. package/static/main-ILCPT3IK.js +10 -0
  1803. package/static/media/videogular-54D7AHHD.woff +0 -0
  1804. package/static/media/videogular-H7MSXT3I.eot +0 -0
  1805. package/static/media/videogular-ULU7CHZC.ttf +0 -0
  1806. package/static/media/videogular-WX5DESMV.svg +29 -0
  1807. package/static/polyfills-GNKGQMRJ.js +2 -0
  1808. package/static/prerendered-routes.json +3 -0
  1809. package/static/scripts-MQMRSPYD.js +30 -0
  1810. package/static/styles-TJJDSCD4.css +1 -0
  1811. package/sync-in-server.js +309 -0
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill-opacity=".078" transform="matrix(1.067648, 0, 0, 1, -17.323257, 0.00148)">
4
+ <path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
5
+ <path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
6
+ <path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
7
+ </g>
8
+ <path d="M 62.09 10.501 C 57.946 10.501 54.615 13.62 54.615 17.501 L 54.615 494.501 C 54.615 498.382 57.946 501.501 62.09 501.501 L 449.91 501.501 C 454.055 501.501 457.385 498.382 457.385 494.501 L 457.385 149.781 L 308.715 10.501 L 62.09 10.501" fill="#6ea6c1"/>
9
+ <path d="M 95.846 131.911 L 95.846 158.071 L 97.985 158.071 L 97.985 160.071 L 100.087 160.071 L 100.087 162.04 L 102.22 162.04 L 102.22 164.04 L 104.357 164.04 L 104.357 166.04 L 106.459 166.04 L 106.459 168.009 L 108.592 168.009 L 108.592 170.009 L 110.729 170.009 L 110.729 172.009 L 112.832 172.009 L 112.832 173.978 L 114.965 173.978 L 114.965 175.978 L 117.102 175.978 L 117.102 177.978 L 119.204 177.978 L 119.204 179.947 L 121.338 179.947 L 121.338 181.947 L 123.474 181.947 L 123.474 183.947 L 125.609 183.947 L 125.609 185.947 L 127.711 185.947 L 127.711 187.416 L 95.847 187.416 L 95.847 213.576 L 97.986 213.576 L 97.986 215.576 L 100.088 215.576 L 100.088 217.545 L 102.221 217.545 L 102.221 219.545 L 104.358 219.545 L 104.358 221.545 L 106.46 221.545 L 106.46 223.514 L 108.593 223.514 L 108.593 225.514 L 110.73 225.514 L 110.73 227.514 L 112.833 227.514 L 112.833 229.483 L 114.966 229.483 L 114.966 231.483 L 117.103 231.483 L 117.103 233.483 L 119.205 233.483 L 119.205 235.452 L 121.339 235.452 L 121.339 237.452 L 123.475 237.452 L 123.475 239.452 L 125.61 239.452 L 125.61 241.452 L 127.712 241.452 L 127.712 242.921 L 95.848 242.921 L 95.848 269.111 L 97.987 269.111 L 97.987 271.111 L 100.089 271.111 L 100.089 273.08 L 102.222 273.08 L 102.222 275.08 L 104.359 275.08 L 104.359 277.08 L 106.461 277.08 L 106.461 279.049 L 108.594 279.049 L 108.594 281.049 L 110.731 281.049 L 110.731 283.049 L 112.834 283.049 L 112.834 285.018 L 114.967 285.018 L 114.967 287.018 L 117.104 287.018 L 117.104 289.018 L 119.206 289.018 L 119.206 290.987 L 121.34 290.987 L 121.34 292.987 L 123.476 292.987 L 123.476 294.987 L 125.611 294.987 L 125.611 296.987 L 127.713 296.987 L 127.713 298.456 L 95.849 298.456 L 95.849 324.616 L 97.988 324.616 L 97.988 326.616 L 100.09 326.616 L 100.09 328.585 L 102.223 328.585 L 102.223 330.585 L 104.36 330.585 L 104.36 332.585 L 106.462 332.585 L 106.462 334.554 L 108.595 334.554 L 108.595 336.554 L 110.732 336.554 L 110.732 338.554 L 112.835 338.554 L 112.835 340.523 L 114.968 340.523 L 114.968 342.523 L 117.105 342.523 L 117.105 344.523 L 119.208 344.523 L 119.208 346.492 L 121.341 346.492 L 121.341 348.492 L 123.477 348.492 L 123.477 350.492 L 125.612 350.492 L 125.612 352.492 L 127.714 352.492 L 127.714 353.961 L 95.85 353.961 L 95.85 380.121 L 97.989 380.121 L 97.989 382.121 L 100.091 382.121 L 100.091 384.09 L 102.224 384.09 L 102.224 386.09 L 104.361 386.09 L 104.361 388.09 L 106.463 388.09 L 106.463 390.059 L 108.596 390.059 L 108.596 392.059 L 110.733 392.059 L 110.733 394.059 L 112.836 394.059 L 112.836 396.028 L 114.969 396.028 L 114.969 398.028 L 117.106 398.028 L 117.106 400.028 L 119.209 400.028 L 119.209 401.997 L 121.342 401.997 L 121.342 403.997 L 123.478 403.997 L 123.478 405.997 L 125.613 405.997 L 125.613 407.997 L 127.715 407.997 L 127.715 409.966 L 129.851 409.966 L 129.851 411.966 L 131.985 411.966 L 131.985 413.966 L 134.087 413.966 L 134.087 415.935 L 136.224 415.935 L 136.224 417.935 L 138.357 417.935 L 138.357 419.935 L 140.461 419.935 L 140.461 421.904 L 142.597 421.904 L 142.597 423.904 L 144.73 423.904 L 144.73 425.904 L 146.832 425.904 L 146.832 427.873 L 148.969 427.873 L 148.969 429.873 L 151.102 429.873 L 151.102 431.873 L 153.205 431.873 L 153.205 433.842 L 155.343 433.842 L 155.343 435.842 L 157.477 435.842 L 157.477 437.842 L 159.581 437.842 L 159.581 439.811 L 161.716 439.811 L 161.716 441.811 L 163.851 441.811 L 163.851 443.811 L 165.953 443.811 L 165.953 445.78 L 168.087 445.78 L 168.087 447.78 L 170.225 447.78 L 170.225 449.78 L 172.358 449.78 L 172.358 451.78 L 174.46 451.78 L 174.46 453.749 L 176.597 453.749 L 176.597 455.749 L 178.73 455.749 L 178.73 457.749 L 180.833 457.749 L 180.833 459.718 L 182.97 459.718 L 182.97 461.718 L 185.103 461.718 L 185.103 463.718 L 187.205 463.718 L 187.205 465.687 L 189.342 465.687 L 189.342 467.687 L 191.476 467.687 L 191.476 469.687 L 193.578 469.687 L 193.578 471.656 L 195.715 471.656 L 195.715 473.656 L 197.849 473.656 L 197.849 475.656 L 199.951 475.656 L 199.951 477.625 L 202.087 477.625 L 202.087 479.625 L 204.221 479.625 L 204.221 481.625 L 206.323 481.625 L 206.323 483.594 L 208.461 483.594 L 208.461 485.594 L 210.594 485.594 L 210.594 487.594 L 212.696 487.594 L 212.696 489.563 L 214.833 489.563 L 214.833 491.563 L 216.966 491.563 L 216.966 493.563 L 219.103 493.563 L 219.103 495.563 L 221.205 495.563 L 221.205 497.532 L 223.339 497.532 L 223.339 499.532 L 225.477 499.532 L 225.477 501.532 L 449.916 501.532 C 454.059 501.532 457.39 498.413 457.39 494.532 L 457.39 149.812 L 316.195 149.812 C 315.805 149.812 315.432 149.771 315.06 149.718 C 314.932 149.7 314.817 149.68 314.69 149.655 C 314.467 149.613 314.239 149.559 314.025 149.499 C 313.769 149.427 313.534 149.345 313.289 149.249 C 313.142 149.19 312.998 149.129 312.856 149.061 C 312.587 148.936 312.338 148.808 312.089 148.655 C 312.643 149.444 313.349 150.135 314.19 150.655 C 314.746 151.444 315.484 152.104 316.327 152.624 C 316.884 153.414 317.617 154.103 318.461 154.624 C 319.024 155.424 319.738 156.132 320.598 156.655 C 321.146 157.426 321.843 158.079 322.665 158.593 C 323.224 159.397 323.98 160.065 324.833 160.593 C 325.396 161.393 326.112 162.101 326.97 162.624 C 327.518 163.395 328.216 164.048 329.037 164.562 C 329.596 165.366 330.352 166.034 331.206 166.562 C 331.77 167.362 332.486 168.07 333.343 168.593 C 333.891 169.364 334.59 170.018 335.41 170.531 C 335.97 171.335 336.725 172.003 337.578 172.531 C 338.143 173.331 338.858 174.039 339.716 174.562 C 340.263 175.333 340.961 175.986 341.782 176.5 C 342.343 177.304 343.098 177.972 343.952 178.5 C 344.516 179.3 345.23 180.008 346.088 180.531 C 346.637 181.303 347.334 181.955 348.157 182.469 C 348.716 183.273 349.471 183.941 350.325 184.469 C 350.881 185.259 351.617 185.948 352.46 186.469 C 352.706 186.82 352.986 187.135 353.294 187.438 L 343.218 187.438 L 343.218 185.657 L 341.116 185.657 L 341.116 183.688 L 338.979 183.688 L 338.979 181.688 L 336.845 181.688 L 336.845 179.688 L 334.743 179.688 L 334.743 177.719 L 332.607 177.719 L 332.607 175.719 L 330.474 175.719 L 330.474 173.719 L 328.372 173.719 L 328.372 171.75 L 326.234 171.75 L 326.234 169.75 L 324.1 169.75 L 324.1 167.75 L 321.998 167.75 L 321.998 165.781 L 319.861 165.781 L 319.861 163.781 L 317.728 163.781 L 317.728 161.781 L 315.626 161.781 L 315.626 159.812 L 313.489 159.812 L 313.489 157.812 L 311.355 157.812 L 311.355 155.812 L 309.218 155.812 L 309.218 153.812 L 307.116 153.812 L 307.116 151.843 L 304.982 151.843 L 304.982 149.843 L 302.847 149.843 L 302.847 147.843 L 300.745 147.843 L 300.745 145.874 L 298.61 145.874 L 298.61 143.874 L 296.473 143.874 L 296.473 141.874 L 294.371 141.874 L 294.371 139.905 L 292.237 139.905 L 292.237 137.905 L 290.1 137.905 L 290.1 135.905 L 287.998 135.905 L 287.998 133.936 L 285.865 133.936 L 285.865 131.936 L 95.852 131.936" fill-opacity=".235"/>
10
+ <g fill="#fff" transform="matrix(1.067648, 0, 0, 1, -17.323257, 0.00148)">
11
+ <path d="m106 131.91v26.16h177.97v-26.16h-177.97m0 55.5v26.16h300v-26.16h-300m0 55.5v26.19h300v-26.19h-300m0 55.53v26.16h300v-26.16h-300m0 55.5v26.16h300v-26.16h-300"/>
12
+ <path d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <rect width="464.07" rx="58.46" x="23.964" height="512"/>
5
+ <rect y="3.5" width="457.73" rx="57.661" x="27.14" height="505"/>
6
+ <rect y="7" width="451.38" rx="56.862" x="30.31" height="498"/>
7
+ </g>
8
+ <rect rx="56.06" height="491" width="445.04" y="10.5" x="33.481" fill="#ba9f74"/>
9
+ <path fill="#282629" d="m33.469 334.16v111.28c0 31.06 25 56.06 56.06 56.06h332.94c31.06 0 56.06-25 56.06-56.06v-111.28h-445.06" fill-opacity=".235"/>
10
+ <rect rx="10.523" height="58.46" width="147.32" y="387.54" x="89.46" fill="#fff"/>
11
+ <path d="m101.8 392.78v47.969h10.458v-47.969h-10.458m20.376 0v47.969h2.185v-47.969h-2.185m14.411 0v47.969h5.843v-47.969h-5.843m13.944 0v47.969h10.409v-47.969h-10.409m17.946 0v47.969h6.948v-47.969h-6.948m14.19 0v47.969h11.05v-47.969h-11.05m19.15 0v47.969h5.205v-47.969h-5.205m15.05 0v47.969h7.586v-47.969h-7.586" fill="#282629"/>
12
+ <path opacity=".25" d="m272.42 30.875c-0.006 0.001-0.012 0.003-0.018 0.004-4.353 0.352-8.678 0.522-12.969 1.066l2.607 2.607c-0.533-0.022-0.996-0.046-1.631-0.064l1.996 1.996c-2.466 0.242-4.122 0.132-5.523-0.057l-3.5-3.5-0.002-0.002c-4.373 0.259-9.815 1.777-12.635 2.113l-1.328-1.328c-11.205 4.998-30.797 11.969-42.502 22.23l-1.436-1.436c-5.287 6.333-23.1 18.918-24.508 27.14l-1.367 0.297c-2.744 4.649-4.567 9.957-6.738 14.744-0.892 1.523-1.668 2.432-2.322 2.957l-7.715-7.715c-0.287-0.287-0.965 0.045-1.523 0.127l-0.842-0.842c-0.002 0.124 0.008 0.228 0.023 0.32 0.327 4.174-1.827 6.679-1.744 6.762l6.893 6.893c-2.01 4.454-3.669 8.649-5.119 12.637l-5.227-5.227c-4.04 5.161-1.821 6.247-2.246 9.762l4.42 4.42c-1.078 3.375-2.044 6.574-2.955 9.549 2.162 3.221 0.075 19.42 0.881 32.418-2.239 40.632 16.396 80.52 43.848 107.97l224.77 224.77h8.447c31.06 0 56.06-25 56.06-56.06v-245.24l-134.54-134.54c-6.63-6.63-13.97-12.142-21.07-15.938l3.535 3.535c0.525 0.667 0.767 1.185 0.371 1.348-0.67-0.398-1.209-0.734-1.766-1.08l-6.828-6.828c-7.199-2.931-7.629 0.228-12.4 0-13.464-7.138-16.18-6.449-28.402-10.83l-4.992-4.99v-0.002"/>
13
+ <path d="m272.42 30.876c-4.359 0.353-8.69 0.525-12.986 1.07l1.855 0.296c3.15-1.147 7.772-0.592 11.131-1.367zm-19.04 2.05c-7.093 0.421-17 4.15-13.963 0.784-11.57 5.162-32.11 12.415-43.646 23.24l-0.291-2.44c-5.287 6.333-23.11 18.918-24.508 27.14l-1.367 0.296c-2.744 4.649-4.566 9.958-6.737 14.745-3.59 6.127-5.3 2.357-4.785 3.32-7.07 14.341-10.545 26.433-13.572 36.32 2.162 3.221 0.075 19.42 0.881 32.418-3.537 64.19 45.01 126.52 98.13 140.9 7.777 2.784 19.346 2.661 29.2 2.93-11.62-3.318-13.08-1.708-24.411-5.664-8.155-3.845-9.937-8.265-15.72-13.28l2.246 4.102c-11.339-4-6.591-4.992-15.818-7.909l2.441-3.222c-3.675-0.285-9.664-6.192-11.327-9.472l-4.101 0.192c-4.821-5.955-7.312-10.241-7.128-13.573l-1.367 2.246c-1.462-2.514-17.734-22.284-9.276-17.673-1.562-1.427-3.7-2.333-5.956-6.444l1.757-2.051c-4.062-5.237-7.482-11.924-7.226-14.158 2.159 2.927 3.688 3.503 5.175 4-10.277-25.495-10.863-1.405-18.65-25.972l1.66-0.106c-1.259-1.905-2.01-4.03-3.03-6.05l0.683-7.127c-7.399-8.543-2.051-36.3-0.978-51.56 0.734-6.2 6.128-12.866 10.253-23.24l-2.539-0.387c4.809-8.396 27.573-33.711 38.08-32.416 5.09-6.384-1.05-0.106-2.05-1.661 11.18-11.558 14.72-8.165 22.263-10.253 8.13-4.822-6.98 1.854-3.125-1.855 14.06-3.59 9.959-8.141 28.316-9.96 0.792 0.443 0.047 0.899-1.076 1.271 12.93-3.487 34.11-1.662 48.528 4.98 19.11 8.936 40.642 35.396 41.498 60.25l0.879 0.296c-0.473 9.874 1.503 21.236-1.953 31.735l2.246-4.785c0.228 7.403-2.168 11.06-4.394 17.478l-4 1.953c-3.297 6.408 0.303 4.076-2.051 9.178-5.152 4.578-15.684 14.33-19.04 15.232-2.443-0.105 1.708-2.903 2.246-4-6.896 4.736-5.566 7.176-16.11 10.06l-0.291-0.685c-26.02 12.242-62.18-12.09-61.71-45.21-0.269 2.099-0.793 1.597-1.367 2.44-1.345-17.03 7.801-34.11 23.337-41.11 15.185-7.507 33.07-4.479 43.939 5.663-5.968-7.824-17.929-16.1-32.03-15.33-13.804 0.218-26.729 9.02-31.05 18.552-7.06 4.44-7.861 17.198-10.936 19.528-4.149 30.491 7.801 43.577 28.02 59.07 3.175 2.139 0.942 2.469 1.367 4.102-6.712-3.138-12.914-7.847-17.966-13.671 2.684 3.919 5.627 7.739 9.374 10.741-6.334-2.137-14.817-15.378-17.283-15.916 10.911 19.554 44.32 34.36 61.808 27.05-8.08 0.285-18.443 0.12-27.535-3.222-3.818-1.964-8.935-5.981-8.01-6.738 23.85 8.899 48.48 6.676 69.13-9.861 5.249-4.087 10.937-11.03 12.596-11.131-2.179 3.278-0.223 2.198-0.978 4.101 3.912-6.911-2.426-2.959 4.882-13.572l2.832 3.905c-1.05-7.01 8.701-15.476 7.714-26.558 1.118-1.691 1.81-0.753 1.855 1.562-0.12-2.073-0.378-4.108 0-7.323 0.903 2.391 2.112 4.994 2.734 7.519-2.137-8.345 2.135-14.09 3.222-18.943-1.064-0.468-3.296 3.697-3.808-6.152 0.075-4.284 1.232-2.27 1.66-3.32-0.831-0.468-3.053-3.748-4.394-10.06 0.964-1.477 2.578 3.879 3.906 4.101-0.839-5.01-2.284-8.849-2.343-12.693-3.871-8.092-1.355 1.023-4.492-3.516-4.112-12.854 3.393-2.954 3.906-8.788 6.237 9.05 9.79 23.09 11.424 28.903-1.244-7.077-3.296-13.967-5.761-20.603 1.906 0.784-3.074-14.573 2.441-4.393-5.893-21.688-25.17-41.95-42.963-51.46 2.159 1.987 4.893 4.479 3.906 4.883-8.849-5.259-7.321-5.687-8.593-7.909-7.199-2.931-7.63 0.228-12.401 0-13.586-7.202-16.199-6.422-28.707-10.936l0.585 2.636c-8.995-2.99-10.482 1.127-20.21 0-0.585-0.443 3.102-1.614 6.152-2.051-8.689 1.149-8.274-1.719-16.795 0.296 2.09-1.466 4.311-2.459 6.545-3.715zm103.99 123.52c0.066 2.308-0.568 5.969-1.758 9.862 1.809-4.743 1.91-7.34 1.758-9.862m-96.96-121.96c2.49 0.431 5.298 0.774 4.882 1.367 2.722-0.603 3.429-1.127-4.882-1.367m4.882 1.367l-1.66 0.387 1.562-0.192 0.102-0.195zm-14.158 24.703c-1.563 0.468-3.49 0.945-4.296 1.661 1.277-0.626 2.724-1.201 4.296-1.661m-100.67 30.662c0.723 6.723-5.05 9.322 1.269 4.882 3.403-7.668-1.316-2.099-1.269-4.882m-5.175 21.384c-4.04 5.161-1.821 6.249-2.246 9.763 1.462-4.481 1.683-7.165 2.246-9.763m166.38 31.15c-0.574 0-1.289 1.526-1.66 3.124 0.852 0.457 1.503 5.919 2.344 2.538 0.281-4.199-0.114-5.679-0.684-5.662m51.07 14.158l-0.684 1.757c-1.244 8.925-3.939 17.772-8.104 25.972 4.59-8.641 7.541-18.15 8.788-27.73m-54.09 3.223c-0.623 3.088-2.318 5.775-3.906 8.593-8.727 5.492-0.819-3.309 0-6.64-9.374 11.814-1.22 7.04-1.562 10.351 2.781-3.835 4.762-7.957 5.468-12.304m-19.04 17.966c-3.784 0.934-7.629 0.934-11.522 0.592-4.662 0.105 0.841 2.382 6.932 3.32 1.687-1.316 3.236-2.612 4.589-3.906zm-58.879 0.685c1.023 3.783 3.112 6.946 5.078 10.251l-1.465-4.199c-1.625-1.794-2.525-3.908-3.613-6.05zm-3.613 6.346l-0.683 3.222c3.062 4.162 5.553 8.751 9.471 12.01-2.805-5.494-4.932-7.789-8.787-15.233z" fill="#fff"/>
14
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
5
+ <path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
6
+ <path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
7
+ </g>
8
+ <path d="m74.38 10.5c-3.881 0-7 3.119-7 7v477c0 3.881 3.119 7 7 7h363.25c3.881 0 7-3.119 7-7v-344.72l-139.25-139.28h-231" fill="#d23638"/>
9
+ <path d="m308.78 148.78c4.487 5.957 11.24 10.578 16.06 16.313 39.915 39.949 79.85 79.881 119.78 119.81v-135.12h-132.25c-1.321 0-2.542-0.37-3.594-1" fill-opacity=".235"/>
10
+ <path fill="#fff" d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
11
+ <path opacity=".25" d="m202 145.91c-0.413 0.01-0.834 0.026-1.25 0.063-14.627-0.256-27.25 14.278-24.16 28.813 2.081 22.21 16.418 40.25 27.594 58.59 1.256 6.827-2.353 13.47-2.594 20.25-7.286 39.803-18.399 79.37-35.5 115.91-21.16 9.742-45.12 19.379-57.5 40.38-5.194 9.632-2.124 21.501 5.25 28.875l62.719 62.719h261.06c3.881 0 7-3.119 7-7v-109.22l-2.688-2.688c-1.174-3.455-2.663-6.83-4.531-10.09-0.898-1.304-1.911-2.536-3.03-3.656l-215.12-215.09-0.813-0.844c-4.353-4.353-10.24-7.145-16.438-7"/>
12
+ <path d="m200.75 145.96c-14.627-0.256-27.25 14.293-24.16 28.827 2.081 22.21 16.402 40.23 27.578 58.57 1.256 6.827-2.345 13.478-2.586 20.258-7.286 39.803-18.402 79.39-35.503 115.93-21.16 9.742-45.12 19.362-57.5 40.36-7.855 14.567 3.205 34.23 19.44 35.765 15.06 2.061 26.24-10.847 34.476-21.663 8.597-11.633 14.254-25.485 21.407-37.987 43.29-17.434 88.83-29.619 135.32-34.24 18.797 13.454 38.715 29.326 62.817 30.28 14.01-0.209 25.349-13.809 23.81-27.623-0.902-12.577-12.08-21.397-23.651-23.759-18.669-5.624-38.664-2.544-57.656-2.408-36.545-29.2-70.28-62.798-96.85-101.24 1.972-23.371 5.932-49.22-6.237-70.48-4.62-6.705-12.451-11.299-20.707-10.581m0.697 21.22c4.115 0.793 4.389 6.922 5.541 10.2 1.084 6.68 0.966 13.496 0.887 20.242-4.9-9.159-11.266-18.728-10.132-29.587 1.292-0.05 2.435-0.705 3.704-0.855m22.67 91.14c21.781 27.08 45.974 52.02 72.38 74.63-34.814 5.309-69.4 14.204-102.52 26.2 12.703-33.2 22.376-67.5 28.749-102.51 0.464 0.56 0.929 1.119 1.393 1.679m135.86 91.04c8.445 0.815 18.19 0.325 24.95 6.146 0.635 5.253-5.792 6.02-9.214 4.118-7.14-2.383-14.202-5.381-20.264-9.947 1.51-0.094 3.01-0.287 4.528-0.317m-211.03 55.25c-4.02 7.468-9.861 14.51-15.958 19.799-2.029 3.284-7.596-2.788-5.03-5.354 5.29-8.279 14.523-12.667 22.702-17.613l-1.71 3.168" fill="#fff"/>
13
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
3
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="456.61" x="-477.49" font-family="Gentium Book Basic" line-height="125%">
4
+ <tspan y="456.61" x="-477.49"/>
5
+ </text>
6
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="1269.4" x="198.74" font-family="Arial"/>
7
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="300.98" x="228.86" font-family="Gentium Book Basic" line-height="125%">
8
+ <tspan y="300.98" x="228.86"/>
9
+ </text>
10
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="644.88" x="374.76" font-family="Arial"/>
11
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="292.85" x="262.23" font-family="Gentium Book Basic" line-height="125%">
12
+ <tspan y="292.85" x="262.23"/>
13
+ </text>
14
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="612.28" x="383.07" font-family="Arial"/>
15
+ <g fill-opacity=".078">
16
+ <path d="m32.563 0c-4.774 0-8.594 3.266-8.594 7.313v497.38c0 4.047 3.82 7.313 8.594 7.313h446.87c4.774 0 8.594-3.266 8.594-7.313v-360.03l-144.66-144.66h-310.81"/>
17
+ <path d="m35.625 3.5c-4.709 0-8.5 3.196-8.5 7.188v490.62c0 3.991 3.791 7.188 8.5 7.188h440.75c4.709 0 8.5-3.196 8.5-7.188v-356.28l-141.53-141.53h-307.72"/>
18
+ <path d="m38.688 7c-4.643 0-8.375 3.158-8.375 7.094v483.82c0 3.936 3.732 7.094 8.375 7.094h434.62c4.643 0 8.375-3.158 8.375-7.094v-352.62l-138.28-138.28h-304.72"/>
19
+ </g>
20
+ <path d="m41.719 10.5c-4.578 0-8.25 3.119-8.25 7v477c0 3.881 3.672 7 8.25 7h428.56c4.578 0 8.25-3.119 8.25-7v-348.06l-135.97-135.94h-300.84" fill="#2489b5"/>
21
+ <path id="0" fill-opacity=".196" fill="#fff" d="m478.53 146.44l-135.97-135.94v128.94c0 3.881 3.672 7 8.25 7h127.72"/>
22
+ <use width="1" xlink:href="#0" height="1"/>
23
+ <path d="m345.03 144.56l133.5 129.38v-127.5h-127.72c-2.185 0-4.154-0.71-5.625-1.875h-0.156" fill-opacity=".196"/>
24
+ <g fill-rule="evenodd">
25
+ <path opacity=".25" d="m248.22 111.44l-16.719 22.75-24.656-13.719-8.875 26.781-27.688-5.406-0.156 28.19-28.03 3.438 8.594 26.875-25.563 11.906 16.406 22.875-20.656 19.25 20.594 20.594-11.563 20.75 23.844 23.844-2.5 12.75 48.47 48.47-24.16 78.69 42.03 42.03h252.69c4.578 0 8.25-3.119 8.25-7v-215.84l-117.78-117.81-3.531-0.031-28.12-28.12-16.5 5.25-22.25-22.25-22.06 15.813-20.06-20.06"/>
26
+ <path d="m248.22 111.45l-16.726 22.725-24.669-13.709-8.849 26.781-27.686-5.396-0.168 28.19-28.02 3.419 8.581 26.881-25.574 11.899 16.424 22.893-20.647 19.239 22.725 16.692-13.709 24.669 26.781 8.882-5.43 27.686 28.22 0.168 3.419 27.988 25.507-8.111-32.848 107.12 40.09-34.524 9.318 49.24 30.971-100.96 7.843 8.447 10.122-13.709 0.235 3.02 31.641 103.2 9.318-49.24 40.09 34.524-31.809-103.77-3.05-8.547 21.385 4.156 0.168-28.22 28.02-3.385-8.581-26.881 25.574-11.899-16.424-22.926 20.647-19.21-22.725-16.726 13.709-24.636-26.781-8.882 5.43-27.686-28.22-0.168-3.419-27.988-26.848 8.547-11.899-25.574-22.926 16.424-19.21-20.647m4.961 42.07c0.703-0.009 1.407-0.01 2.112 0 31.729-0.647 62.66 16.79 79.44 43.47 22.368 34.06 17.751 82.64-9.955 112.29-25.508 28.953-70.27 38.427-105.62 22.826-37.433-15.491-61.21-57.43-55.51-97.6 4.918-44.06 45.26-80.46 89.53-80.98m2.782 12.368c-44.592 0-80.61 36.09-80.61 80.68 0 44.592 36.02 80.64 80.61 80.64 44.592 0 80.68-36.05 80.68-80.64 0-44.592-36.09-80.68-80.68-80.68" fill="#fff"/>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,59 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill="#654641">
4
+ <text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="221.3" x="681.22" font-family="Gentium Book Basic" line-height="125%">
5
+ <tspan y="221.3" x="681.22"/>
6
+ </text>
7
+ <text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="659.01" x="299.04" font-family="Arial"/>
8
+ <text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="197.8" x="949.03" font-family="Gentium Book Basic" line-height="125%">
9
+ <tspan y="197.8" x="949.03"/>
10
+ </text>
11
+ <text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="671.14" x="305.7" font-family="Arial"/>
12
+ <text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="290.09" x="-25.07" font-family="Gentium Book Basic" line-height="125%">
13
+ <tspan y="290.09" x="-25.07"/>
14
+ </text>
15
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="805.88" x="195.94" font-family="Arial"/>
16
+ </g>
17
+ <g>
18
+ <g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
19
+ <text y="270.21" x="237.18">
20
+ <tspan y="270.21" x="237.18"/>
21
+ </text>
22
+ <text y="112.37" x="-55.893">
23
+ <tspan y="112.37" x="-55.893"/>
24
+ </text>
25
+ </g>
26
+ <g fill-opacity=".078">
27
+ <path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
28
+ <path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
29
+ <path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
30
+ </g>
31
+ </g>
32
+ <path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#a1c651"/>
33
+ <g fill="#654641">
34
+ <text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="185.78" x="119.84" font-family="Gentium Book Basic" line-height="125%">
35
+ <tspan y="185.78" x="119.84"/>
36
+ </text>
37
+ <text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="516.46" x="159.14" font-family="Arial"/>
38
+ <text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="162.28" x="387.65" font-family="Gentium Book Basic" line-height="125%">
39
+ <tspan y="162.28" x="387.65"/>
40
+ </text>
41
+ <text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="528.59" x="165.81" font-family="Arial"/>
42
+ <text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="256.28" x="-614.98" font-family="Gentium Book Basic" line-height="125%">
43
+ <tspan y="256.28" x="-614.98"/>
44
+ </text>
45
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="670.22" x="48.929" font-family="Arial"/>
46
+ </g>
47
+ <g>
48
+ <g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
49
+ <text y="236.4" x="-352.73">
50
+ <tspan y="236.4" x="-352.73"/>
51
+ </text>
52
+ <text y="78.57" x="-645.81">
53
+ <tspan y="78.57" x="-645.81"/>
54
+ </text>
55
+ </g>
56
+ <path opacity=".25" d="m245.69 88c-23.651 0-42.813 13.283-42.813 29.656 0.688 6.109 4.555 13.82 6.594 16.469 9.882 13.176 9.877 21.403 7.406 26.344h-79.906c-14.6 0-26.344 11.744-26.344 26.344v66.72l61.781 61.75c-5.139 6.181-11.727 9.906-18.938 9.906-5.03-0.085-12.694-4.585-16.5-6.594-13.176-9.882-21.403-9.877-26.344-7.406v86.47c0 6.738 2.493 12.85 6.625 17.5 0.603 0.678 1.268 1.325 1.938 1.938l84.41 84.41h266.69c4.578 0 8.25-3.119 8.25-7v-214.25l-112.28-112.28c-4.747-4.645-11.241-7.5-18.438-7.5h-7.188l-59.688-59.688c-7.729-7.729-20.644-12.781-35.25-12.781m179.63 229.88l10.594 10.594c-4.458 5.349-10.03 8.859-16.12 9.688-0.458-1.551-0.804-3.104-0.969-4.563 0-5.774 2.376-11.162 6.5-15.719m-72.37 58.53h21.22v21.25c0 9.156-4.608 17.19-11.656 21.906l-31.469-31.469c4.721-7.04 12.757-11.688 21.906-11.688"/>
57
+ </g>
58
+ <path d="m245.69 88c-23.651 0-42.824 13.273-42.824 29.647 0.688 6.109 4.55 13.822 6.588 16.471 9.882 13.176 9.882 21.412 7.412 26.353h-79.882c-14.6 0-26.353 11.753-26.353 26.353v66.71c4.941 2.471 13.176 2.471 26.353-7.412 2.648-2.038 10.362-5.9 16.471-6.588 16.374 0 29.647 19.17 29.647 42.824 0 23.651-13.273 42.824-29.647 42.824-5.03-0.085-12.665-4.58-16.471-6.588-13.176-9.882-21.412-9.882-26.353-7.412v86.47c0 14.6 11.753 26.353 26.353 26.353h106.24c2.471-4.941 2.471-13.176-7.412-26.353-2.038-2.648-5.9-10.362-6.588-16.471 0-16.374 19.17-29.647 42.824-29.647 23.651 0 42.824 13.273 42.824 29.647-0.085 5.03-4.58 12.665-6.588 16.471-9.882 13.176-9.882 21.412-7.412 26.353h46.941c14.6 0 26.353-11.753 26.353-26.353v-73.29c4.941-2.471 13.176-2.471 26.353 7.412 3.806 2.01 11.445 6.503 16.471 6.588 16.374 0 29.647-19.17 29.647-42.824 0-23.651-13.273-42.824-29.647-42.824-6.109 0.688-13.822 4.55-16.471 6.588-13.176 9.882-21.412 9.882-26.353 7.412v-79.882c0-14.6-11.753-26.353-26.353-26.353h-73.29c-2.471-4.941-2.471-13.176 7.412-26.353 2.01-3.806 6.503-11.445 6.588-16.471 0-16.374-19.17-29.647-42.824-29.647" fill="#fff"/>
59
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <rect width="464.07" rx="58.46" x="23.964" height="512"/>
5
+ <rect y="3.5" width="457.73" rx="57.661" x="27.14" height="505"/>
6
+ <rect y="7" width="451.38" rx="56.862" x="30.31" height="498"/>
7
+ </g>
8
+ <rect rx="56.06" height="491" width="445.04" y="10.5" x="33.481" fill="#ba9f74"/>
9
+ <path fill="#282629" d="m33.469 334.16v111.28c0 31.06 25 56.06 56.06 56.06h332.94c31.06 0 56.06-25 56.06-56.06v-111.28h-445.06" fill-opacity=".235"/>
10
+ <rect rx="10.523" height="58.46" width="147.32" y="387.54" x="89.46" fill="#fff"/>
11
+ <path d="m101.8 392.78v47.969h10.458v-47.969h-10.458m20.376 0v47.969h2.185v-47.969h-2.185m14.411 0v47.969h5.843v-47.969h-5.843m13.944 0v47.969h10.409v-47.969h-10.409m17.946 0v47.969h6.948v-47.969h-6.948m14.19 0v47.969h11.05v-47.969h-11.05m19.15 0v47.969h5.205v-47.969h-5.205m15.05 0v47.969h7.586v-47.969h-7.586" fill="#282629"/>
12
+ <path opacity=".25" d="m351.44 10.5c0.883 1.346 1.375 2.867 1.375 4.5v6.813c0 5.376-5.422 9.719-12.12 9.719h-7.875c0.02 0.247 0.031 0.467 0.031 0.719 0 1.308-0.269 2.57-0.75 3.719 4.604 0.938 7.969 4.377 7.969 8.531v6.188c0 4.879-4.677 8.781-10.5 8.781h-4.813c0.127 0.655 0.219 1.337 0.219 2.031 0 1.296-0.231 2.516-0.656 3.656 4.206 0.894 7.313 4.397 7.313 8.594v6.156c0 4.879-4.232 8.813-9.469 8.813h-4.875c0.021 0.289 0 0.579 0 0.875 0 1.639-0.349 3.159-0.938 4.531 3.57 0.991 6.188 4.401 6.188 8.5v6.188c0 4.879-3.704 8.781-8.313 8.781h-8.469c0.141 0.707 0.219 1.456 0.219 2.219 0 1.651-0.354 3.2-0.969 4.531 3.711 0.187 6.656 3.73 6.656 8.156v5.75c0 4.547-3.115 8.219-6.969 8.219h-7c0.109 0.559 0.188 1.149 0.188 1.75 0 1.16-0.209 2.241-0.594 3.219 2.357 1.032 4.094 4.278 4.094 8.156v5.969c0 4.713-2.546 8.5-5.688 8.5h-8.438c0.083 0.564 0.125 1.143 0.125 1.75 0 2.037-0.504 3.876-1.313 5.219 2.14 0.38 3.781 3.506 3.781 7.375v5.219c0 4.126-1.873 7.438-4.219 7.438h-15.313v19.844c5.306 0.78 8.906 2.294 8.906 4.03v64.22c0 0.342-0.143 0.68-0.406 1-0.157 11.483-10.481 20.781-23.16 20.781-6.387 0-12.162-2.382-16.344-6.188l195.38 195.41c25.13-5.555 43.844-27.867 43.844-54.719v-307.84l-127.09-127.09m-191.47 1.031c-0.341 0.715-0.568 1.495-0.688 2.281 0.12-0.789 0.346-1.564 0.688-2.281m-0.781 10.281c0 0.341 0.02 0.668 0.063 1-0.041-0.327-0.063-0.664-0.063-1m0.313 2.156c0.069 0.243 0.159 0.483 0.25 0.719-0.094-0.242-0.18-0.469-0.25-0.719m0.25 0.719c0.119 0.308 0.251 0.613 0.406 0.906-0.153-0.291-0.288-0.602-0.406-0.906m0.906 1.75c0.115 0.169 0.217 0.337 0.344 0.5-0.124-0.16-0.231-0.334-0.344-0.5m1.313 1.563l11.656 11.656c1.429-1.827 3.659-3.153 6.281-3.688-0.481-1.149-0.75-2.411-0.75-3.719 0-0.252 0.012-0.472 0.031-0.719h-7.875c-3.77 0-7.123-1.373-9.344-3.531m10.313 14.25c-0.057 0.188-0.114 0.37-0.156 0.563 0.044-0.193 0.098-0.375 0.156-0.563m2.719 14.656l9.531 9.563c0.948-0.598 2-1.067 3.156-1.313-0.425-1.14-0.656-2.36-0.656-3.656 0-0.694 0.092-1.376 0.219-2.031h-4.813c-2.912 0-5.54-0.975-7.438-2.563m5.5 15.406c-0.031 0.176-0.043 0.352-0.063 0.531 0.019-0.172 0.033-0.362 0.063-0.531m-0.125 7.594c0 0.494 0.073 0.967 0.156 1.438-0.083-0.472-0.156-0.943-0.156-1.438m0.281 2.125c0.045 0.169 0.101 0.335 0.156 0.5-0.055-0.164-0.112-0.332-0.156-0.5m0.531 1.406c0.106 0.226 0.218 0.441 0.344 0.656-0.126-0.217-0.237-0.429-0.344-0.656m0.344 0.656c0.146 0.25 0.298 0.484 0.469 0.719-0.17-0.234-0.323-0.469-0.469-0.719m1.625 2.031l9.531 9.563c0.869-0.709 1.875-1.259 2.969-1.563-0.588-1.372-0.938-2.892-0.938-4.531 0-0.296-0.021-0.586 0-0.875h-4.875c-2.618 0-4.978-1-6.688-2.594m9.313 29.469l10.5 10.5c1.112-1.035 2.512-1.673 4.03-1.75-0.615-1.331-0.969-2.88-0.969-4.531 0-0.762 0.078-1.512 0.219-2.219h-8.469c-2.02 0-3.876-0.749-5.313-2m10.938 29.5l8.75 8.781c0.69-1.114 1.562-2 2.563-2.438-0.385-0.977-0.594-2.058-0.594-3.219 0-0.601 0.078-1.191 0.188-1.75h-7c-1.445 0-2.796-0.49-3.906-1.375m7.469 12.09c-0.065 0.319-0.117 0.665-0.156 1 0.039-0.343 0.091-0.672 0.156-1m-0.156 1c-0.053 0.457-0.094 0.923-0.094 1.406 0-0.485 0.042-0.945 0.094-1.406m-0.063 8.25c0.019 0.279 0.057 0.542 0.094 0.813-0.036-0.268-0.075-0.536-0.094-0.813m2.938 6.594l9.906 9.938c0.65-1.059 1.498-1.771 2.438-1.938-0.809-1.343-1.313-3.181-1.313-5.219 0-0.607 0.042-1.186 0.125-1.75h-8.438c-0.982 0-1.914-0.378-2.719-1.031m11.125 27.469l17.469 17.5 1-16.938h-16.813c-0.586 0-1.15-0.188-1.656-0.563m17.281 20.406c-1.283 0.194-2.442 0.441-3.469 0.719 1.027-0.276 2.186-0.525 3.469-0.719m-1.875 68.03c0.591 8.445 7.478 15.13 15.875 15.13 8.343 0 15.208-6.569 15.875-14.938h-28.594c-1.107 0-2.196-0.082-3.156-0.188"/>
13
+ <path fill="#fdf6ea" d="m160.57 10.5c-0.883 1.346-1.378 2.881-1.378 4.514v6.794c0 5.376 5.413 9.716 12.12 9.716h7.887c-0.019 0.247-0.024 0.485-0.024 0.736 0 1.308 0.255 2.557 0.736 3.706-4.604 0.938-7.982 4.375-7.982 8.529v6.177c0 4.879 4.677 8.79 10.5 8.79h4.823c-0.127 0.655-0.214 1.349-0.214 2.043 0 1.296 0.24 2.518 0.665 3.659-4.206 0.894-7.317 4.379-7.317 8.576v6.153c0 4.879 4.218 8.814 9.455 8.814h4.894c-0.021 0.289-0.024 0.583-0.024 0.879 0 1.639 0.362 3.165 0.95 4.538-3.57 0.991-6.2 4.406-6.2 8.505v6.177c0 4.879 3.707 8.79 8.315 8.79h8.481c-0.141 0.707-0.214 1.447-0.214 2.209 0 1.651 0.335 3.206 0.95 4.537-3.711 0.187-6.652 3.746-6.652 8.172v5.749c0 4.547 3.107 8.22 6.961 8.22h7.01c-0.109 0.559-0.19 1.134-0.19 1.734 0 1.16 0.209 2.254 0.594 3.231-2.357 1.032-4.086 4.27-4.086 8.148v5.963c0 4.713 2.536 8.505 5.678 8.505h8.434c-0.083 0.564-0.119 1.128-0.119 1.734 0 2.037 0.498 3.883 1.307 5.226-2.14 0.38-3.777 3.52-3.777 7.388v5.226c0 4.126 1.883 7.436 4.229 7.436h16.82l-1.188 19.837c-5.132 0.774-8.388 2.264-8.41 4.01l-0.76 61.696c-0.184 1.067-0.285 2.165-0.285 3.278 0 11.606 10.341 21.02 23.12 21.02 12.676 0 22.982-9.28 23.14-20.763 0.263-0.32 0.404-0.656 0.404-0.998v-64.24c0-1.737-3.602-3.235-8.909-4.01v-19.837h15.323c2.346 0 4.229-3.309 4.229-7.436v-5.226c0-3.869-1.637-7.01-3.777-7.388 0.809-1.343 1.307-3.189 1.307-5.226 0-0.607-0.036-1.17-0.119-1.734h8.434c3.142 0 5.678-3.792 5.678-8.505v-5.963c0-3.878-1.729-7.117-4.086-8.148 0.385-0.977 0.594-2.071 0.594-3.231 0-0.601-0.081-1.175-0.19-1.734h7.01c3.854 0 6.961-3.673 6.961-8.22v-5.749c0-4.426-2.941-7.985-6.652-8.172 0.615-1.331 0.95-2.886 0.95-4.537 0-0.762-0.073-1.503-0.214-2.209h8.481c4.608 0 8.315-3.911 8.315-8.79v-6.177c0-4.099-2.63-7.514-6.2-8.505 0.588-1.372 0.95-2.898 0.95-4.538 0-0.296-0.003-0.59-0.024-0.879h4.894c5.237 0 9.455-3.935 9.455-8.814v-6.153c0-4.197-3.111-7.682-7.317-8.576 0.425-1.14 0.665-2.362 0.665-3.659 0-0.694-0.087-1.388-0.214-2.043h4.823c5.823 0 10.5-3.911 10.5-8.79v-6.177c0-4.154-3.378-7.591-7.982-8.529 0.481-1.149 0.736-2.398 0.736-3.706 0-0.252-0.004-0.489-0.024-0.736h7.887c6.703 0 12.12-4.34 12.12-9.716v-6.794c0-1.633-0.495-3.168-1.378-4.514h-190.86m79.56 278.45c0.96 0.106 2.029 0.166 3.136 0.166h28.603c-0.667 8.368-7.526 14.943-15.869 14.943-8.397 0-15.279-6.664-15.869-15.11" fill-opacity=".44"/>
14
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill-opacity=".078" transform="matrix(0.91581, 0, 0, 0.91581, 21.553526, 21.5499)">
4
+ <path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
5
+ <path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
6
+ <path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
7
+ </g>
8
+ <path d="M 59.774 31.166 C 55.581 31.166 52.212 34.023 52.212 37.577 L 52.212 474.418 C 52.212 477.972 55.581 480.829 59.774 480.829 L 452.226 480.829 C 456.419 480.829 459.788 477.972 459.788 474.418 L 459.788 37.577 C 459.788 34.023 456.419 31.166 452.226 31.166 L 59.764 31.166" fill="#2dcc9f"/>
9
+ <path d="M 104.892 67.597 C 93.996 67.597 85.231 76.363 85.231 87.258 L 85.231 374.081 C 85.231 384.977 93.996 393.742 104.892 393.742 L 407.109 393.742 C 418.006 393.742 426.771 384.977 426.771 374.081 L 426.771 157.547 L 336.82 67.596 L 104.892 67.596" fill="#fff"/>
10
+ <path d="M 208.874 135.77 C 188.19 135.77 171.096 152.41 171.096 173.121 C 171.096 193.829 188.171 210.897 208.874 210.897 C 229.582 210.897 246.659 193.823 246.659 173.121 C 246.659 152.411 229.557 135.77 208.874 135.77 M 310.061 209.602 C 292.156 209.338 278.501 218.911 266.624 230.447 C 254.753 241.986 244.627 255.646 232.748 264.756 C 228.716 267.745 224.978 269.612 221.889 270.405 C 218.802 271.195 216.596 270.971 214.508 269.102 C 201.689 252.014 189.508 243.007 178.462 240.436 C 167.346 237.852 157.261 242.184 148.927 249.991 C 132.269 265.597 121.492 295.956 116.792 323.385 L 116.359 325.555 L 395.617 325.555 L 394.314 322.952 C 381.82 297.532 373.14 269.689 361.308 247.81 C 355.392 236.875 348.726 227.229 340.463 220.452 C 332.193 213.675 322.187 209.734 310.067 209.594" fill="#2dcc9f"/>
11
+ <path d="M 426.772 157.548 L 336.821 67.597 L 336.821 137.886 C 336.821 148.781 345.586 157.547 356.483 157.547 L 426.771 157.547" fill="#a4a4a4"/>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <rect width="464.07" rx="58.46" x="23.964" height="512"/>
5
+ <rect y="3.5" width="457.73" rx="57.661" x="27.14" height="505"/>
6
+ <rect y="7" width="451.38" rx="56.862" x="30.31" height="498"/>
7
+ </g>
8
+ <rect rx="56.06" height="491" width="445.04" y="10.5" x="33.481" fill="#ba9f74"/>
9
+ <path fill="#282629" d="m33.469 334.16v111.28c0 31.06 25 56.06 56.06 56.06h332.94c31.06 0 56.06-25 56.06-56.06v-111.28h-445.06" fill-opacity=".235"/>
10
+ <rect rx="10.523" height="58.46" width="147.32" y="387.54" x="89.46" fill="#fff"/>
11
+ <path d="m101.8 392.78v47.969h10.458v-47.969h-10.458m20.376 0v47.969h2.185v-47.969h-2.185m14.411 0v47.969h5.843v-47.969h-5.843m13.944 0v47.969h10.409v-47.969h-10.409m17.946 0v47.969h6.948v-47.969h-6.948m14.19 0v47.969h11.05v-47.969h-11.05m19.15 0v47.969h5.205v-47.969h-5.205m15.05 0v47.969h7.586v-47.969h-7.586" fill="#282629"/>
12
+ <path opacity=".25" d="m247.41 57.63c-3.883 0.057-7.776 0.263-11.656 0.5-1.323 0.09-2.611-0.029-3.906 0.563-7.292 0.736-14.599 2.219-21.813 4.344-17.253 4.787-34.26 13.14-50.5 25.313-12.193 9.04-23.952 20.427-34.813 34.406-16.06 20.788-30.469 47.956-38.781 81.938-4.179 17.453-6.794 36.552-6.656 55.844l240.97 240.97h102.21c31.06 0 56.06-25 56.06-56.06v-220.62l-120.24-120.24c-11.386-11.386-23.446-20.38-35.727-27.338l-0.463-0.463c-18.01-9.91-36.614-15.906-55.28-18.438-5.171-0.447-10.355-0.679-15.531-0.719-1.294-0.01-2.581-0.019-3.875 0"/>
13
+ <path d="m247.41 57.63c-3.883 0.057-7.776 0.263-11.656 0.5-1.323 0.09-2.611-0.029-3.906 0.563-7.292 0.736-14.599 2.219-21.813 4.344-17.253 4.787-34.26 13.14-50.5 25.313-12.193 9.04-23.952 20.427-34.813 34.406-16.06 20.788-30.469 47.956-38.781 81.938-4.179 17.453-6.794 36.552-6.656 55.844 14.04-4.781 28.03-9.644 42.06-14.469 4.987-1.47 9.915-3.862 14.938-4.844-1.315-11.549-2.746-23.411-1.875-35.31 0.937-24.973 7.826-47.756 16.813-65.37 12.681-24.519 29.12-40.768 46.13-51.31 23.1-14.203 47.705-18.07 71.781-13.344 14.638 3.395 29.18 9.723 42.844 20.531 0.691 0.474 1.381 1.399 2.156 1.125l-0.219 0.563c10.2 7.984 19.843 18.888 28.28 32.5 10.123 16.356 18.507 37.936 21.469 63.03 1.47 13.357 1.497 27.457-0.313 40.719 0.123 0.035 0.252 0.059 0.375 0.094 18.595 5.637 37.22 11.257 55.813 16.875-0.925-21.802-4.752-42.991-10.656-61.66-5.417-17.232-12.451-32.33-20.25-45.719-19.07-31.943-42.42-53.42-66.59-67l0.063-0.156c-18.01-9.91-36.614-15.906-55.28-18.437-5.171-0.447-10.355-0.679-15.531-0.719-1.294-0.01-2.581-0.019-3.875 0m1.719 128.94c-3.577 0-6.556 4.223-7.813 10.219-2.753-0.929-5.543-1.84-8.313-2.563-0.188 1.965-0.352 3.77-0.5 5.75 2.616 0.861 5.215 1.808 7.813 2.875 0.108 0.034 0.204-0.034 0.313 0 0 9.01 3.803 16.25 8.5 16.25 3.719 0 7-4.469 8.156-10.844 3.14 1.042 6.325 2.204 9.469 3.188 8.47 2.764 16.805 5.927 25.281 8.625 8.924 3.114 17.851 5.864 26.781 8.906 12.876 4.256 25.859 9.03 38.75 13.09 20.615 7.236 41.25 13.93 61.875 21.03 4.268 1.307 8.508 2.878 12.781 4.156 0.132-1.934 0.237-3.868 0.5-5.75-4.307-1.821-8.642-2.857-12.969-4.469-18.963-6.354-37.914-12.749-56.875-19.12-4.358-1.364-8.601-3.243-12.969-4.469-12.989-4.568-26.09-8.691-39.09-13.06-1.267-0.638-2.541-0.731-3.813-1.281-3.11-1-6.19-2.354-9.313-3.188-12.996-4.51-26.08-8.779-39.09-13.06-0.253-0.192-0.535-0.253-0.813-0.344-0.093-8.851-4.02-15.938-8.656-15.938" fill="#fff"/>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
3
+ <g fill-opacity=".078" transform="matrix(1.067648, 0, 0, 1, -17.323257, 0.00148)">
4
+ <path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
5
+ <path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
6
+ <path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
7
+ </g>
8
+ <path d="M 62.09 10.501 C 57.946 10.501 54.615 13.62 54.615 17.501 L 54.615 494.501 C 54.615 498.382 57.946 501.501 62.09 501.501 L 449.91 501.501 C 454.055 501.501 457.385 498.382 457.385 494.501 L 457.385 149.781 L 308.715 10.501 L 62.09 10.501" fill="#6ea6c1"/>
9
+ <path d="M 95.846 131.911 L 95.846 158.071 L 97.985 158.071 L 97.985 160.071 L 100.087 160.071 L 100.087 162.04 L 102.22 162.04 L 102.22 164.04 L 104.357 164.04 L 104.357 166.04 L 106.459 166.04 L 106.459 168.009 L 108.592 168.009 L 108.592 170.009 L 110.729 170.009 L 110.729 172.009 L 112.832 172.009 L 112.832 173.978 L 114.965 173.978 L 114.965 175.978 L 117.102 175.978 L 117.102 177.978 L 119.204 177.978 L 119.204 179.947 L 121.338 179.947 L 121.338 181.947 L 123.474 181.947 L 123.474 183.947 L 125.609 183.947 L 125.609 185.947 L 127.711 185.947 L 127.711 187.416 L 95.847 187.416 L 95.847 213.576 L 97.986 213.576 L 97.986 215.576 L 100.088 215.576 L 100.088 217.545 L 102.221 217.545 L 102.221 219.545 L 104.358 219.545 L 104.358 221.545 L 106.46 221.545 L 106.46 223.514 L 108.593 223.514 L 108.593 225.514 L 110.73 225.514 L 110.73 227.514 L 112.833 227.514 L 112.833 229.483 L 114.966 229.483 L 114.966 231.483 L 117.103 231.483 L 117.103 233.483 L 119.205 233.483 L 119.205 235.452 L 121.339 235.452 L 121.339 237.452 L 123.475 237.452 L 123.475 239.452 L 125.61 239.452 L 125.61 241.452 L 127.712 241.452 L 127.712 242.921 L 95.848 242.921 L 95.848 269.111 L 97.987 269.111 L 97.987 271.111 L 100.089 271.111 L 100.089 273.08 L 102.222 273.08 L 102.222 275.08 L 104.359 275.08 L 104.359 277.08 L 106.461 277.08 L 106.461 279.049 L 108.594 279.049 L 108.594 281.049 L 110.731 281.049 L 110.731 283.049 L 112.834 283.049 L 112.834 285.018 L 114.967 285.018 L 114.967 287.018 L 117.104 287.018 L 117.104 289.018 L 119.206 289.018 L 119.206 290.987 L 121.34 290.987 L 121.34 292.987 L 123.476 292.987 L 123.476 294.987 L 125.611 294.987 L 125.611 296.987 L 127.713 296.987 L 127.713 298.456 L 95.849 298.456 L 95.849 324.616 L 97.988 324.616 L 97.988 326.616 L 100.09 326.616 L 100.09 328.585 L 102.223 328.585 L 102.223 330.585 L 104.36 330.585 L 104.36 332.585 L 106.462 332.585 L 106.462 334.554 L 108.595 334.554 L 108.595 336.554 L 110.732 336.554 L 110.732 338.554 L 112.835 338.554 L 112.835 340.523 L 114.968 340.523 L 114.968 342.523 L 117.105 342.523 L 117.105 344.523 L 119.208 344.523 L 119.208 346.492 L 121.341 346.492 L 121.341 348.492 L 123.477 348.492 L 123.477 350.492 L 125.612 350.492 L 125.612 352.492 L 127.714 352.492 L 127.714 353.961 L 95.85 353.961 L 95.85 380.121 L 97.989 380.121 L 97.989 382.121 L 100.091 382.121 L 100.091 384.09 L 102.224 384.09 L 102.224 386.09 L 104.361 386.09 L 104.361 388.09 L 106.463 388.09 L 106.463 390.059 L 108.596 390.059 L 108.596 392.059 L 110.733 392.059 L 110.733 394.059 L 112.836 394.059 L 112.836 396.028 L 114.969 396.028 L 114.969 398.028 L 117.106 398.028 L 117.106 400.028 L 119.209 400.028 L 119.209 401.997 L 121.342 401.997 L 121.342 403.997 L 123.478 403.997 L 123.478 405.997 L 125.613 405.997 L 125.613 407.997 L 127.715 407.997 L 127.715 409.966 L 129.851 409.966 L 129.851 411.966 L 131.985 411.966 L 131.985 413.966 L 134.087 413.966 L 134.087 415.935 L 136.224 415.935 L 136.224 417.935 L 138.357 417.935 L 138.357 419.935 L 140.461 419.935 L 140.461 421.904 L 142.597 421.904 L 142.597 423.904 L 144.73 423.904 L 144.73 425.904 L 146.832 425.904 L 146.832 427.873 L 148.969 427.873 L 148.969 429.873 L 151.102 429.873 L 151.102 431.873 L 153.205 431.873 L 153.205 433.842 L 155.343 433.842 L 155.343 435.842 L 157.477 435.842 L 157.477 437.842 L 159.581 437.842 L 159.581 439.811 L 161.716 439.811 L 161.716 441.811 L 163.851 441.811 L 163.851 443.811 L 165.953 443.811 L 165.953 445.78 L 168.087 445.78 L 168.087 447.78 L 170.225 447.78 L 170.225 449.78 L 172.358 449.78 L 172.358 451.78 L 174.46 451.78 L 174.46 453.749 L 176.597 453.749 L 176.597 455.749 L 178.73 455.749 L 178.73 457.749 L 180.833 457.749 L 180.833 459.718 L 182.97 459.718 L 182.97 461.718 L 185.103 461.718 L 185.103 463.718 L 187.205 463.718 L 187.205 465.687 L 189.342 465.687 L 189.342 467.687 L 191.476 467.687 L 191.476 469.687 L 193.578 469.687 L 193.578 471.656 L 195.715 471.656 L 195.715 473.656 L 197.849 473.656 L 197.849 475.656 L 199.951 475.656 L 199.951 477.625 L 202.087 477.625 L 202.087 479.625 L 204.221 479.625 L 204.221 481.625 L 206.323 481.625 L 206.323 483.594 L 208.461 483.594 L 208.461 485.594 L 210.594 485.594 L 210.594 487.594 L 212.696 487.594 L 212.696 489.563 L 214.833 489.563 L 214.833 491.563 L 216.966 491.563 L 216.966 493.563 L 219.103 493.563 L 219.103 495.563 L 221.205 495.563 L 221.205 497.532 L 223.339 497.532 L 223.339 499.532 L 225.477 499.532 L 225.477 501.532 L 449.916 501.532 C 454.059 501.532 457.39 498.413 457.39 494.532 L 457.39 149.812 L 316.195 149.812 C 315.805 149.812 315.432 149.771 315.06 149.718 C 314.932 149.7 314.817 149.68 314.69 149.655 C 314.467 149.613 314.239 149.559 314.025 149.499 C 313.769 149.427 313.534 149.345 313.289 149.249 C 313.142 149.19 312.998 149.129 312.856 149.061 C 312.587 148.936 312.338 148.808 312.089 148.655 C 312.643 149.444 313.349 150.135 314.19 150.655 C 314.746 151.444 315.484 152.104 316.327 152.624 C 316.884 153.414 317.617 154.103 318.461 154.624 C 319.024 155.424 319.738 156.132 320.598 156.655 C 321.146 157.426 321.843 158.079 322.665 158.593 C 323.224 159.397 323.98 160.065 324.833 160.593 C 325.396 161.393 326.112 162.101 326.97 162.624 C 327.518 163.395 328.216 164.048 329.037 164.562 C 329.596 165.366 330.352 166.034 331.206 166.562 C 331.77 167.362 332.486 168.07 333.343 168.593 C 333.891 169.364 334.59 170.018 335.41 170.531 C 335.97 171.335 336.725 172.003 337.578 172.531 C 338.143 173.331 338.858 174.039 339.716 174.562 C 340.263 175.333 340.961 175.986 341.782 176.5 C 342.343 177.304 343.098 177.972 343.952 178.5 C 344.516 179.3 345.23 180.008 346.088 180.531 C 346.637 181.303 347.334 181.955 348.157 182.469 C 348.716 183.273 349.471 183.941 350.325 184.469 C 350.881 185.259 351.617 185.948 352.46 186.469 C 352.706 186.82 352.986 187.135 353.294 187.438 L 343.218 187.438 L 343.218 185.657 L 341.116 185.657 L 341.116 183.688 L 338.979 183.688 L 338.979 181.688 L 336.845 181.688 L 336.845 179.688 L 334.743 179.688 L 334.743 177.719 L 332.607 177.719 L 332.607 175.719 L 330.474 175.719 L 330.474 173.719 L 328.372 173.719 L 328.372 171.75 L 326.234 171.75 L 326.234 169.75 L 324.1 169.75 L 324.1 167.75 L 321.998 167.75 L 321.998 165.781 L 319.861 165.781 L 319.861 163.781 L 317.728 163.781 L 317.728 161.781 L 315.626 161.781 L 315.626 159.812 L 313.489 159.812 L 313.489 157.812 L 311.355 157.812 L 311.355 155.812 L 309.218 155.812 L 309.218 153.812 L 307.116 153.812 L 307.116 151.843 L 304.982 151.843 L 304.982 149.843 L 302.847 149.843 L 302.847 147.843 L 300.745 147.843 L 300.745 145.874 L 298.61 145.874 L 298.61 143.874 L 296.473 143.874 L 296.473 141.874 L 294.371 141.874 L 294.371 139.905 L 292.237 139.905 L 292.237 137.905 L 290.1 137.905 L 290.1 135.905 L 287.998 135.905 L 287.998 133.936 L 285.865 133.936 L 285.865 131.936 L 95.852 131.936" fill-opacity=".235"/>
10
+ <g fill="#fff" transform="matrix(1.067648, 0, 0, 1, -17.323257, 0.00148)">
11
+ <path d="m106 131.91v26.16h177.97v-26.16h-177.97m0 55.5v26.16h300v-26.16h-300m0 55.5v26.19h300v-26.19h-300m0 55.53v26.16h300v-26.16h-300m0 55.5v26.16h300v-26.16h-300"/>
12
+ <path d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
5
+ <path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
6
+ <path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
7
+ </g>
8
+ <path d="m74.38 10.5c-3.881 0-7 3.119-7 7v477c0 3.881 3.119 7 7 7h363.25c3.881 0 7-3.119 7-7v-344.72l-139.25-139.28h-231" fill="#555753"/>
9
+ <path d="m308.78 148.78c4.487 5.957 11.24 10.578 16.06 16.313 17.336 17.351 34.69 34.685 52.03 52.03-11.986-1.894-24.807-0.344-37.12-0.844h-70.25v47.781c-5.68-5.865 0.026-0.014-12.719-13.03-6.03-3.717-13.722 0.882-23.19-7.344-9.273-8.926-17.755-17.217-26.625-27.563-0.695 0.001-7.699 0.047-8.438 0.156h-9.5l-0.031-0.125v24.75c-23.531 1.286-51.2 16.376-51.625 42.75-1.318 14.222 5.831 25.693 14.906 35.656 14.865 14.865 14.926 14.818 36.563 39.22 0.323 1.512 0.406 3.139 0.188 4.875v32.28c-17.365 3.807-41.671-13.09-53.75-7.344v18.344c31.872 31.394 63.37 63.15 94.97 94.81h207.38c3.881 0 7-3.119 7-7v-344.72h-132.25c-1.321 0-2.542-0.37-3.594-1m125.44 125.72l5.469 5.469c-1.064-1.01-2.14-2.01-3.219-3-0.741-0.832-1.495-1.648-2.25-2.469" fill-opacity=".235"/>
10
+ <g fill="#fff">
11
+ <path d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
12
+ <g transform="translate(1.219-465.19)">
13
+ <path d="m257.4 833.27c0 12.556-4.674 22.959-14.02 31.21-9.257 8.249-22.501 13.427-39.731 15.535v31.345h-18.01v-30.11c-10.448-0.183-20.484-1.054-30.11-2.612-9.532-1.65-17.414-3.895-23.646-6.736v-23.1c6.874 3.208 15.26 6 25.16 8.386 9.99 2.291 19.522 3.529 28.595 3.712v-58.84c-18.789-5.957-32.08-12.923-39.869-20.897-7.79-8.07-11.686-18.376-11.686-30.932 0-12.1 4.628-22.04 13.885-29.833 9.257-7.79 21.813-12.556 37.669-14.298v-24.746h18.01v24.471c17.414 0.458 33.957 3.941 49.629 10.448l-7.699 19.384c-14.206-5.591-28.18-8.89-41.931-9.898v58.02c14.664 4.949 25.571 9.624 32.72 14.02 7.24 4.399 12.556 9.44 15.947 15.12 3.391 5.591 5.087 12.373 5.087 20.347m-25.02 1.787c0-6.599-2.154-11.823-6.461-15.672-4.308-3.941-11.732-7.744-22.271-11.411v51.55c19.16-2.933 28.733-11.09 28.733-24.471m-73.14-85.1c0 6.691 1.97 12.1 5.912 16.222 3.941 4.124 10.769 7.928 20.484 11.411v-51.28c-8.615 1.467-15.168 4.262-19.659 8.386s-6.736 9.211-6.736 15.26"/>
14
+ <path fill-opacity=".435" d="m266.1 681.36h107.24v230h-107.24z" fill-rule="evenodd"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
3
+ <defs>
4
+ <linearGradient id="1" y1="269.09" x2="0" y2="438.13" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#fff" stop-opacity=".745" offset="0"/>
6
+ <stop stop-color="#fff" stop-opacity="0" offset="1"/>
7
+ </linearGradient>
8
+ </defs>
9
+ <g fill-opacity=".078">
10
+ <path d="m32.563 0c-4.774 0-8.594 3.266-8.594 7.313v497.38c0 4.047 3.82 7.313 8.594 7.313h446.88c4.774 0 8.594-3.266 8.594-7.313v-360.03l-144.66-144.66h-310.81"/>
11
+ <path d="m35.625 3.5c-4.709 0-8.5 3.196-8.5 7.188v490.62c0 3.991 3.791 7.188 8.5 7.188h440.75c4.709 0 8.5-3.196 8.5-7.188v-356.28l-141.53-141.53h-307.72"/>
12
+ <path d="m38.688 7c-4.643 0-8.375 3.158-8.375 7.094v483.82c0 3.936 3.732 7.094 8.375 7.094h434.63c4.643 0 8.375-3.158 8.375-7.094v-352.62l-138.28-138.28h-304.72"/>
13
+ </g>
14
+ <path d="m41.719 10.5c-4.578 0-8.25 3.119-8.25 7v477c0 3.881 3.672 7 8.25 7h428.56c4.578 0 8.25-3.119 8.25-7v-348.06l-135.97-135.94h-300.84" fill="#924565"/>
15
+ <path id="0" fill-opacity=".196" fill="#fff" d="m478.53 146.44l-135.97-135.94v128.94c0 3.881 3.672 7 8.25 7h127.72"/>
16
+ <use width="1" xlink:href="#0" height="1"/>
17
+ <path d="m345.03 144.56l133.5 129.38v-127.5h-127.72c-2.185 0-4.154-0.71-5.625-1.875h-0.156" fill-opacity=".196"/>
18
+ <path opacity=".69" d="m81.13 174.38v20.571h34.654v-20.571h-34.654m0 31v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.654v-20.571h-34.654m252.03 0c0.328 6.862 0.591 13.704 0.75 20.571h8.541v-20.571h-9.291m-297.12 31v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.654v-20.571h-34.654m45.09 0v20.571h30.742c-1.076-6.727-0.568-13.961 1.597-20.571h-32.34m207.89 0c0.09 6.847 0.108 13.721 0.098 20.571h8.248v-20.571h-8.346m17.02 0v20.571h34.654v-20.571h-34.654m-315.08 31v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.654v-20.571h-34.654m45.09 0v20.571h30.807v-20.571h-30.807m149.96 0l-14.67 3.521v17.05h34.426v-20.571h-19.756m57.996 0c-0.043 6.86-0.12 13.71-0.196 20.571h8.476v-20.571h-8.28m16.952 0v20.571h34.654v-20.571h-34.654m-100.05 6.03l-34.654 8.346v6.194h34.654v-14.54m-215.03 24.972v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.654v-20.571h-34.654m45.09 0v20.571h30.807v-20.571h-30.807m68.982 0l-0.098 20.571h10.888v-20.571h-10.791m21.22 0v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.426v-20.571h-34.426m72.37 0c-0.075 6.858-0.124 13.714-0.163 20.571h8.737v-20.571h-8.574m17.245 0v20.571h34.654v-20.571h-34.654" fill="#fff"/>
19
+ <path d="m81.17 327.34v20.571h34.654v-20.571h-34.654m45.09 0v20.571h34.654v-20.571h-34.654m45.09 0v20.571h30.775v-20.571h-30.775m68.819 0l-0.098 20.571h10.986v-20.571h-10.888m21.32 0v20.571h34.654v-20.571h-34.654m45.09 0v16.496c11.03-3.916 23.21-4.936 34.458-2.706v-13.79h-34.458m72.21 0c-0.007 3.859-0.021 7.715 0 11.573-0.272 2.986-0.376 5.987-0.359 8.998h9.128v-20.571h-8.769m17.408 0v20.571h34.654v-20.571h-34.654m-315.02 31v20.571h34.654v-20.571h-34.654m45.09 0v20.571h32.633c0.659-0.353 1.348-0.681 2.02-1.01v-19.56h-34.654m45.09 0v15.55c10.01-2.91 20.733-3.499 30.775-1.467v-14.08h-30.775m90.14 0v20.571h10.595c0.172-0.991 0.378-1.978 0.652-2.967 2.348-6.768 6.129-12.651 10.888-17.604h-22.14m117.26 0c0.322 6.897 0.659 13.781 0.033 20.571h8.769v-20.571h-8.802m17.441 0v20.571h34.654v-20.571h-34.654m-315.02 31v20.571h34.654v-20.571h-34.654m45.09 0v20.571h6.976c0.192-1.043 0.411-2.089 0.717-3.13 2.41-6.697 6.21-12.532 10.986-17.441h-18.68m250.66 0c-0.103 0.361-0.214 0.716-0.326 1.076-3.277 7.815-8.443 14.347-14.8 19.495h25.754v-20.571h-10.628m19.267 0v20.571h34.654v-20.571h-34.654m-269.93 31v20.571h17.311c-5.498-5.672-9.339-12.885-10.497-20.571h-6.813m226.64 0v20.571h34.654v-20.571h-34.654" fill="url(#1)"/>
20
+ <g style="color:#bebebe">
21
+ <path opacity=".25" d="m357.97 194.22l-128.06 29.813c-9.621 2.32-17.375 11.537-17.375 20.5v142.13c-9.756-4.597-22.292-6.475-35.28-3.438-23.44 5.48-38.12 23.2-33.09 39.563 1.183 3.853 3.357 7.294 6.313 10.25l0.938 0.906 67.56 67.56h251.31c4.578 0 8.25-3.119 8.25-7v-183.34l-113.34-113.34c-1.882-1.882-4.394-3.165-7.219-3.594"/>
22
+ <path d="m357.97 194.23l-128.07 29.789c-9.621 2.32-17.366 11.548-17.366 20.51v142.11c-9.756-4.597-22.285-6.456-35.27-3.418-23.44 5.48-38.13 23.19-33.1 39.556 5.02 16.363 28.12 25.503 51.55 20.02 18.7-4.372 31.59-16.744 33.646-29.789l0.542-134.29 121.56-29.3v105.97c-9.756-4.597-22.285-6.455-35.27-3.418-23.44 5.481-38.13 23.19-33.1 39.556 5.02 16.363 28.12 25.503 51.55 20.02 18.7-4.372 31.591-16.743 33.646-29.789l0.542-174.83c0-6.722-4.616-11.751-10.854-12.697" fill="#fff"/>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
3
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="456.61" x="-477.49" font-family="Gentium Book Basic" line-height="125%">
4
+ <tspan y="456.61" x="-477.49"/>
5
+ </text>
6
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="1269.4" x="198.74" font-family="Arial"/>
7
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="300.98" x="228.86" font-family="Gentium Book Basic" line-height="125%">
8
+ <tspan y="300.98" x="228.86"/>
9
+ </text>
10
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="644.88" x="374.76" font-family="Arial"/>
11
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="292.85" x="262.23" font-family="Gentium Book Basic" line-height="125%">
12
+ <tspan y="292.85" x="262.23"/>
13
+ </text>
14
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="612.28" x="383.07" font-family="Arial"/>
15
+ <g fill-opacity=".078">
16
+ <path d="m32.563 0c-4.774 0-8.594 3.266-8.594 7.313v497.38c0 4.047 3.82 7.313 8.594 7.313h446.87c4.774 0 8.594-3.266 8.594-7.313v-360.03l-144.66-144.66h-310.81"/>
17
+ <path d="m35.625 3.5c-4.709 0-8.5 3.196-8.5 7.188v490.62c0 3.991 3.791 7.188 8.5 7.188h440.75c4.709 0 8.5-3.196 8.5-7.188v-356.28l-141.53-141.53h-307.72"/>
18
+ <path d="m38.688 7c-4.643 0-8.375 3.158-8.375 7.094v483.82c0 3.936 3.732 7.094 8.375 7.094h434.62c4.643 0 8.375-3.158 8.375-7.094v-352.62l-138.28-138.28h-304.72"/>
19
+ </g>
20
+ <path d="m41.719 10.5c-4.578 0-8.25 3.119-8.25 7v477c0 3.881 3.672 7 8.25 7h428.56c4.578 0 8.25-3.119 8.25-7v-348.06l-135.97-135.94h-300.84" fill="#2489b5"/>
21
+ <path id="0" fill-opacity=".196" fill="#fff" d="m478.53 146.44l-135.97-135.94v128.94c0 3.881 3.672 7 8.25 7h127.72"/>
22
+ <use width="1" xlink:href="#0" height="1"/>
23
+ <path d="m345.03 144.56l133.5 129.38v-127.5h-127.72c-2.185 0-4.154-0.71-5.625-1.875h-0.156" fill-opacity=".196"/>
24
+ <g fill-rule="evenodd">
25
+ <path opacity=".25" d="m248.22 111.44l-16.719 22.75-24.656-13.719-8.875 26.781-27.688-5.406-0.156 28.19-28.03 3.438 8.594 26.875-25.563 11.906 16.406 22.875-20.656 19.25 20.594 20.594-11.563 20.75 23.844 23.844-2.5 12.75 48.47 48.47-24.16 78.69 42.03 42.03h252.69c4.578 0 8.25-3.119 8.25-7v-215.84l-117.78-117.81-3.531-0.031-28.12-28.12-16.5 5.25-22.25-22.25-22.06 15.813-20.06-20.06"/>
26
+ <path d="m248.22 111.45l-16.726 22.725-24.669-13.709-8.849 26.781-27.686-5.396-0.168 28.19-28.02 3.419 8.581 26.881-25.574 11.899 16.424 22.893-20.647 19.239 22.725 16.692-13.709 24.669 26.781 8.882-5.43 27.686 28.22 0.168 3.419 27.988 25.507-8.111-32.848 107.12 40.09-34.524 9.318 49.24 30.971-100.96 7.843 8.447 10.122-13.709 0.235 3.02 31.641 103.2 9.318-49.24 40.09 34.524-31.809-103.77-3.05-8.547 21.385 4.156 0.168-28.22 28.02-3.385-8.581-26.881 25.574-11.899-16.424-22.926 20.647-19.21-22.725-16.726 13.709-24.636-26.781-8.882 5.43-27.686-28.22-0.168-3.419-27.988-26.848 8.547-11.899-25.574-22.926 16.424-19.21-20.647m4.961 42.07c0.703-0.009 1.407-0.01 2.112 0 31.729-0.647 62.66 16.79 79.44 43.47 22.368 34.06 17.751 82.64-9.955 112.29-25.508 28.953-70.27 38.427-105.62 22.826-37.433-15.491-61.21-57.43-55.51-97.6 4.918-44.06 45.26-80.46 89.53-80.98m2.782 12.368c-44.592 0-80.61 36.09-80.61 80.68 0 44.592 36.02 80.64 80.61 80.64 44.592 0 80.68-36.05 80.68-80.64 0-44.592-36.09-80.68-80.68-80.68" fill="#fff"/>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,188 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
3
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="148.92" x="-109.95" font-family="Gentium Book Basic" line-height="125%">
4
+ <tspan y="148.92" x="-109.95"/>
5
+ </text>
6
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="248.43" x="169.68" font-family="Arial"/>
7
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="68.919" x="471.32" font-family="Gentium Book Basic" line-height="125%">
8
+ <tspan y="68.919" x="471.32"/>
9
+ </text>
10
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-72.6" x="314.53" font-family="Arial"/>
11
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-112.34" x="-600.26" font-family="Gentium Book Basic" line-height="125%">
12
+ <tspan y="-112.34" x="-600.26"/>
13
+ </text>
14
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-799.96" x="47.49" font-family="Arial"/>
15
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-328.81" x="497.79" font-family="Gentium Book Basic" line-height="125%">
16
+ <tspan y="-328.81" x="497.79"/>
17
+ </text>
18
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1668.62" x="321.13" font-family="Arial"/>
19
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-408.82" x="1079.06" font-family="Gentium Book Basic" line-height="125%">
20
+ <tspan y="-408.82" x="1079.06"/>
21
+ </text>
22
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1989.66" x="465.98" font-family="Arial"/>
23
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-881.22" x="689.94" font-family="Gentium Book Basic" line-height="125%">
24
+ <tspan y="-881.22" x="689.94"/>
25
+ </text>
26
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3885.31" x="369.01" font-family="Arial"/>
27
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-961.22" x="1271.2" font-family="Gentium Book Basic" line-height="125%">
28
+ <tspan y="-961.22" x="1271.2"/>
29
+ </text>
30
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4206.34" x="513.86" font-family="Arial"/>
31
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="453.5" x="-561.6" font-family="Gentium Book Basic" line-height="125%">
32
+ <tspan y="453.5" x="-561.6"/>
33
+ </text>
34
+ <path opacity=".1" d="m36.06 0c-5.63 0-10.156 4.527-10.156 10.156v491.69c0 5.63 4.527 10.156 10.156 10.156h439.88c5.63 0 10.156-4.527 10.156-10.156v-334.09l-167.75-167.75h-282.28"/>
35
+ <path opacity=".1" d="m39.06 3.5c-5.553 0-10.03 4.479-10.03 10.03v484.94c0 5.553 4.479 10.03 10.03 10.03h433.88c5.553 0 10.03-4.479 10.03-10.03v-327.84l-167.12-167.12h-276.78"/>
36
+ <path opacity=".1" d="m42.06 7c-5.476 0-9.875 4.399-9.875 9.875v478.25c0 5.476 4.399 9.875 9.875 9.875h427.88c5.476 0 9.875-4.399 9.875-9.875v-321.66l-166.47-166.47h-271.28"/>
37
+ <path d="m45.06 10.5c-5.399 0-9.719 4.351-9.719 9.75v471.5c0 5.399 4.32 9.75 9.719 9.75h421.88c5.399 0 9.719-4.351 9.719-9.75v-315.44l-165.81-165.81h-265.78" fill="#3c3c3c"/>
38
+ <path id="0" fill-opacity=".196" fill="#fff" d="m476.66 176.31l-165.81-165.81v156.06c0 5.399 4.32 9.75 9.719 9.75h156.09"/>
39
+ <use xlink:href="#0"/>
40
+ <path opacity=".25" d="m316.59 175.47c10.209 10.263 20.673 20.774 31.06 31.22h-155.06l42.625 42.625c-0.073 0.006-0.145 0.025-0.219 0.031l-42.656-42.656c-4.763-2.709-9.466-3.918-13.844-3.969-14.395-0.167-25.404 12.06-24.563 23.781l-13.09-13.09c-23.854 10.933-20.6 27.24-9.188 43l-17.281-17.281c-15.235 19.744-23.756 43.686 0.75 58.44l3.813 3.813c-5.962-4.863-12.1-9.505-18.5-13.875l59.719 59.719c-8.08 26.39-17 52.607-23.09 79.38 8.606 8.856 17.241 17.703 25.875 26.531-0.756 0.016-1.52 0.067-2.281 0.125l-30.938-30.938c-1.645 12.12 1.28 22.14 6.719 30.938l-8-8c2.956 3.149 5.941 6.266 8.906 9.406 2.538 3.857 5.519 7.489 8.844 10.969-4.092-3.934-8.18-7.888-12.281-11.813 16.02 15.849 31.988 31.76 47.938 47.688h285.09c5.399 0 9.719-4.351 9.719-9.75v-315.43h-156.09c-1.422 0-2.756-0.3-3.969-0.844m-162.53 297.72c1.66 1.489 3.379 2.945 5.094 4.406 2.151 2.246 4.282 4.508 6.438 6.75-3.842-3.719-7.682-7.445-11.531-11.156"/>
41
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-43.575" x="-990.51" font-family="Gentium Book Basic" line-height="125%">
42
+ <tspan y="-43.575" x="-990.51"/>
43
+ </text>
44
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-737.75" x="70.891" font-family="Arial"/>
45
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-811.53" x="-1638.27" font-family="Gentium Book Basic" line-height="125%">
46
+ <tspan y="-811.53" x="-1638.27"/>
47
+ </text>
48
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-3819.41" x="-90.53" font-family="Arial"/>
49
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-967.16" x="-931.93" font-family="Gentium Book Basic" line-height="125%">
50
+ <tspan y="-967.16" x="-931.93"/>
51
+ </text>
52
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-4443.94" x="85.49" font-family="Arial"/>
53
+ <g fill="#fff">
54
+ <path d="m72.27 108.77c37.2-14.404 65.56-13.86 87.44 1.383 19.34-22.85 61.09-31.632 74.49-30.1-40.04-14.88-71.46 0.077-78.25 10.08-22.23-9.765-72.03-0.918-83.67 18.636"/>
55
+ <path d="m134.75 56.812c26.617-7.348 50.23-7.979 66.97 1.488 15.649-12.541 47.967-17.08 58.19-16.11-36.725-7.588-52.912-0.63-60.811 4.174-23.597-5.201-46.2-4.787-64.34 10.45"/>
56
+ </g>
57
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="244.38" x="-34.02" font-family="Gentium Book Basic" line-height="125%">
58
+ <tspan y="244.38" x="-34.02"/>
59
+ </text>
60
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="631.48" x="188.6" font-family="Arial"/>
61
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="164.38" x="547.25" font-family="Gentium Book Basic" line-height="125%">
62
+ <tspan y="164.38" x="547.25"/>
63
+ </text>
64
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="310.45" x="333.45" font-family="Arial"/>
65
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-16.884" x="-524.33" font-family="Gentium Book Basic" line-height="125%">
66
+ <tspan y="-16.884" x="-524.33"/>
67
+ </text>
68
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-416.9" x="66.41" font-family="Arial"/>
69
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-233.35" x="573.72" font-family="Gentium Book Basic" line-height="125%">
70
+ <tspan y="-233.35" x="573.72"/>
71
+ </text>
72
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1285.57" x="340.05" font-family="Arial"/>
73
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-313.36" x="1154.99" font-family="Gentium Book Basic" line-height="125%">
74
+ <tspan y="-313.36" x="1154.99"/>
75
+ </text>
76
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1606.61" x="484.9" font-family="Arial"/>
77
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-785.76" x="765.87" font-family="Gentium Book Basic" line-height="125%">
78
+ <tspan y="-785.76" x="765.87"/>
79
+ </text>
80
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3502.26" x="387.93" font-family="Arial"/>
81
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-865.76" x="1347.13" font-family="Gentium Book Basic" line-height="125%">
82
+ <tspan y="-865.76" x="1347.13"/>
83
+ </text>
84
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3823.29" x="532.78" font-family="Arial"/>
85
+ <g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
86
+ <text y="548.96" x="-485.67" font-size="208.33">
87
+ <tspan y="548.96" x="-485.67"/>
88
+ </text>
89
+ <text y="217.75" x="-38.25" font-size="129.23">
90
+ <tspan y="217.75" x="-38.25"/>
91
+ </text>
92
+ </g>
93
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="524.62" x="187.55" font-family="Arial"/>
94
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="137.75" x="543.02" font-family="Gentium Book Basic" line-height="125%">
95
+ <tspan y="137.75" x="543.02"/>
96
+ </text>
97
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="203.59" x="332.4" font-family="Arial"/>
98
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-43.514" x="-528.56" font-family="Gentium Book Basic" line-height="125%">
99
+ <tspan y="-43.514" x="-528.56"/>
100
+ </text>
101
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-523.76" x="65.36" font-family="Arial"/>
102
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-259.98" x="569.49" font-family="Gentium Book Basic" line-height="125%">
103
+ <tspan y="-259.98" x="569.49"/>
104
+ </text>
105
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1392.43" x="339" font-family="Arial"/>
106
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-339.99" x="1150.76" font-family="Gentium Book Basic" line-height="125%">
107
+ <tspan y="-339.99" x="1150.76"/>
108
+ </text>
109
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1713.47" x="483.85" font-family="Arial"/>
110
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-812.39" x="761.64" font-family="Gentium Book Basic" line-height="125%">
111
+ <tspan y="-812.39" x="761.64"/>
112
+ </text>
113
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3609.12" x="386.88" font-family="Arial"/>
114
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-892.39" x="1342.9" font-family="Gentium Book Basic" line-height="125%">
115
+ <tspan y="-892.39" x="1342.9"/>
116
+ </text>
117
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3930.15" x="531.73" font-family="Arial"/>
118
+ <g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
119
+ <text y="522.33" x="-489.9" font-size="208.33">
120
+ <tspan y="522.33" x="-489.9"/>
121
+ </text>
122
+ <text y="-78.877" x="-90.43" font-size="129.23">
123
+ <tspan y="-78.877" x="-90.43"/>
124
+ </text>
125
+ </g>
126
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-665.68" x="174.55" font-family="Arial"/>
127
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-158.88" x="490.84" font-family="Gentium Book Basic" line-height="125%">
128
+ <tspan y="-158.88" x="490.84"/>
129
+ </text>
130
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-986.71" x="319.4" font-family="Arial"/>
131
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-340.14" x="-580.74" font-family="Gentium Book Basic" line-height="125%">
132
+ <tspan y="-340.14" x="-580.74"/>
133
+ </text>
134
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1714.06" x="52.36" font-family="Arial"/>
135
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-556.61" x="517.31" font-family="Gentium Book Basic" line-height="125%">
136
+ <tspan y="-556.61" x="517.31"/>
137
+ </text>
138
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2582.73" x="326" font-family="Arial"/>
139
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-636.62" x="1098.58" font-family="Gentium Book Basic" line-height="125%">
140
+ <tspan y="-636.62" x="1098.58"/>
141
+ </text>
142
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2903.77" x="470.84" font-family="Arial"/>
143
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1109.02" x="709.46" font-family="Gentium Book Basic" line-height="125%">
144
+ <tspan y="-1109.02" x="709.46"/>
145
+ </text>
146
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4799.42" x="373.88" font-family="Arial"/>
147
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1189.02" x="1290.72" font-family="Gentium Book Basic" line-height="125%">
148
+ <tspan y="-1189.02" x="1290.72"/>
149
+ </text>
150
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-5120.45" x="518.72" font-family="Arial"/>
151
+ <g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
152
+ <text y="225.7" x="-542.08" font-size="208.33">
153
+ <tspan y="225.7" x="-542.08"/>
154
+ </text>
155
+ <text y="240.04" x="140.62" font-size="129.23">
156
+ <tspan y="240.04" x="140.62"/>
157
+ </text>
158
+ </g>
159
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="614.07" x="232.12" font-family="Arial"/>
160
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="160.04" x="721.89" font-family="Gentium Book Basic" line-height="125%">
161
+ <tspan y="160.04" x="721.89"/>
162
+ </text>
163
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="293.04" x="376.97" font-family="Arial"/>
164
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-21.22" x="-349.69" font-family="Gentium Book Basic" line-height="125%">
165
+ <tspan y="-21.22" x="-349.69"/>
166
+ </text>
167
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-434.31" x="109.93" font-family="Arial"/>
168
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-237.69" x="748.36" font-family="Gentium Book Basic" line-height="125%">
169
+ <tspan y="-237.69" x="748.36"/>
170
+ </text>
171
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1302.98" x="383.57" font-family="Arial"/>
172
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-317.7" x="1329.63" font-family="Gentium Book Basic" line-height="125%">
173
+ <tspan y="-317.7" x="1329.63"/>
174
+ </text>
175
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1624.02" x="528.42" font-family="Arial"/>
176
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-790.1" x="940.51" font-family="Gentium Book Basic" line-height="125%">
177
+ <tspan y="-790.1" x="940.51"/>
178
+ </text>
179
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3519.67" x="431.45" font-family="Arial"/>
180
+ <text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-870.1" x="1521.77" font-family="Gentium Book Basic" line-height="125%">
181
+ <tspan y="-870.1" x="1521.77"/>
182
+ </text>
183
+ <text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3840.7" x="576.3" font-family="Arial"/>
184
+ <text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="544.62" x="-311.03" font-family="Gentium Book Basic" line-height="125%">
185
+ <tspan y="544.62" x="-311.03"/>
186
+ </text>
187
+ <path d="m192.33 206.67c-23.865 0.846-39.34 2.078-51.48 6.742-12.138 4.664-20.01 13.381-26.465 25.694a7.0963 7.0963 0 0 0 -0.0297 0.0296l-19.664 38.02a7.0963 7.0963 0 0 0 5.7327 10.337l6.713 0.505a7.0963 7.0963 0 0 0 6.7723 -3.6535c6.903-12.661 13.613-21.561 21.03-27.15 7.37-5.553 15.518-8.253 27.03-8.287h0.208l17.05 0.445c-9.705 56.16-7.786 99.63-49.1 172.07a7.0963 7.0963 0 0 0 -0.41584 0.8911c-3.335 8.394-3.682 16.345-1.278 22.926 2.399 6.586 7.509 11.447 13.456 13.872 11.893 4.847 27.315 0.337 35.674-13.426a7.0963 7.0963 0 0 0 0.32674 -0.62376c17.365-36.407 26.501-105.53 32.14-195.62h57.861l-9.445 147.9a7.0963 7.0963 0 0 0 0 0.29703c-0.469 21.924 4.878 38.45 14.643 49.22 9.765 10.762 23.766 15.01 37.664 13.245 27.797-3.516 56.24-28.948 67.28-69.74a7.0963 7.0963 0 0 0 -6.8614 -8.9704h-6.683a7.0963 7.0963 0 0 0 -6.2971 3.802c-9.789 18.588-19.279 29.32-26.763 34.07-7.487 4.753-12.136 4.378-16.99 1.396s-9.87-9.979-13.13-20.02c-3.257-10.03-4.799-22.866-3.862-36.594 0.001-0.01-0.001-0.019 0-0.03l8.287-114.15 66.29-0.95a7.0963 7.0963 0 0 0 7.01 -7.099v-28.04a7.0963 7.0963 0 0 0 -7.0991 -7.0991h-179.35a7.0963 7.0963 0 0 0 -0.26734 0" fill="#fff"/>
188
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <g fill-opacity=".078">
4
+ <path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
5
+ <path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
6
+ <path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
7
+ </g>
8
+ <path d="m74.38 10.5c-3.881 0-7 3.119-7 7v477c0 3.881 3.119 7 7 7h363.25c3.881 0 7-3.119 7-7v-344.72l-139.25-139.28h-231" fill="#62c0dc"/>
9
+ <path d="m308.78 148.78c4.487 5.957 11.24 10.578 16.06 16.313 39.915 39.949 79.85 79.881 119.78 119.81v-135.12h-132.25c-1.321 0-2.542-0.37-3.594-1" fill-opacity=".235"/>
10
+ <path fill="#fff" d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
11
+ <path opacity=".318" d="m255.74 137.45c-15.28 0-30.03 2.247-43.95 6.423 1.554 7.506-0.108 15.438 7.378 15.333 4.835 6.485-9.633 1.923 0.815 6.921 6.01 4.489-6.347 7.07 1.094 11.1-8.576 4.198 1.386 21.965 7.756 26.41 10.484 8.373 4.649-17.734 16.347-19.09 6.357-6.885 17.507-11.31 25.435-18.236-7.749-0.597-12.29-5.18-4.952-8.01 13.506 13.13 3.4-6.204-4.077-9.267 7.234-2.183 14.268-0.601 13.265-6.264 2.376-1.649 2.561-2.941 1.531-3.918-6.752-0.912-13.641-1.392-20.643-1.392m-74.56 19.41c-4.46 2.499-8.777 5.214-12.946 8.134 3.935 0.157 6.835 1.031 9.148 6.702 10.337 5.652 0.906 15.243-3.6 18.535 7.536-4.224 20.744 16.693 17.14 5.091-4.435-3.072 11.92 4.934 3.44-5.05-7.804-11.928 0.608-5.329 3.898-2.546 11.19-9.519-12.656-10.687-6.702-20.483-2.911-2.237-6.323-7.01-10.381-10.381m-7.398 33.37c-0.243 0.136-0.465 0.287-0.696 0.477 0.216-0.142 0.445-0.294 0.696-0.477m41.4-25.296c-5.831 4.609 11.08 5.477 0 0m132.05 2.963c-7.527 6.272-12.199 15.63-17.6 23.824-11.625 4.972-11.197 26.309 1.79 19.489 3.476 5.759-2.428 14.829 7.696 7.298 8.167-10.253 1.435-26.826 15.333-33.29 1.012 5.03-12.818 23.807 3.341 20.722 14.608 0.523-10.605 1.37-3.5 10.222-7.382-4.155-3.55 11.344-13.185 7.736-8.347 4.308-13.824-2-11.912-8.909-6.567 3.634 2.052 13.901-9.347 14.517-2.553 8.602-23.555 7.289-11.614 16.05 5.302 13.04-19.741 0.824-12.628 16.466 6.086 15.468 18.829-5.11 24-9.09 9.672-7.117 23.856 11.295 16.566 13.13 9.179-1.644 7.02-10.357-0.835-13.782-4.359-10.726 13.794 5.282 12.787 10.659 6.407 11.382 3.782-11.67 10.301-1.472-0.761 10.758 26.23 2.537 13.344 16.248-11.08 2.117-22-2.694-31.541 0.398-8.877-0.075-8.402-9.08-11.634-11.336-11.292 0.87-25.27 0.772-32.833 9.426-8.175 10.64-19.947 25.511-11.04 39.1 8.916 20.13 31.02 1.036 43.731 12.926 3.778 4.958-3.276 10.858 5.171 16.228 3.179 11.439-3.61 22.296 4.196 33.23 4.04 10.284 6.553 25.685 21.577 16.287 15.901-9.08 11.659-25.811 24.779-35.08-10.382-19.06 12.716-27.402 18.475-42.876-12.583 1.748-23.807-10.175-26.847-22.15-5.286-5.818-3.916-14.391 1.989-3.46 8.116 7.461 8.295 29.585 23.307 18.2 1.701-0.675 4.133-1.808 6.602-3.222 0.44-4.454 0.687-8.965 0.736-13.523-8.413-0.02-15.284-19.08-2.784-5.548 0.949 0.382 1.871 0.732 2.764 1.074-0.129-7.161-0.727-14.212-1.81-21.1-1.206 1.901-3.692 2.056-7.418-1.83 1.496-9.377-9.923-16.53 2.347-19.887-9.674-30.951-28.945-57.653-54.31-76.66m-184.21 0.915c-1.017 0.778-2.026 1.564-3.02 2.367-1.615 3.966-4.583 7.794-5.588 4.733-28.544 25.329-47.529 61.18-50.871 101.48 4 6.937 11.191 18.791 11.594 14.12-5.351-5.316-10.864-21.264-1.81-7.06 8.11 13.502 19.06 22.262 35.04 25.475 8.737 2.819 15.922 12.513 23.606 10.381 4.345 10.866-12.877 21.307 0.577 31.441 7.02 10.26 18.833 16.997 12.449 31.401-4.111 12.952-2.843 26.946-5.628 39.32 3.942 2.28 7.996 4.396 12.151 6.324 1.95-8.51 3.615-16.854 10.202-22.771 12.156 0.091 2.331-12.411 14.398-10.779 7.363-9.156 9.489-20.09 21.915-23.725 1.484-11.11 20.666-28.13 0.855-32.455-5.384-2.518-19.256-3.411-18.2-4.654 2.146-11.03-17.909-14.182-26.45-18.694-11.213-7.551-28.07 12.542-32.02-4.773-2.357-5.448-10.981-5.514-7.02-13.921-7.139 6.736-21.1 4.675-17.441-8.333 5.552-10.955 26.874-11.487 30.506 1.69-5.04-14.533 9.745-25.855 17.958-36.19 1.672-4.942 11.613-9.173 8.193-2.605 5.825-0.199 14.644-10.171 4.296-5.568-0.146-9.09-9.06-6.502-11.952-5.21 5.361-8.07 32.908-3.65 21.378-16.844-8.934-3.434-8.206-23.474-17.242-12.31 0.76-6.879-18.396-20.345-17.978-8.81 2.338 10.322 0.421 22.21-4.554 28.975-1.038-15.12-28.24-11.804-24.739-27.921 5.064-7.681 11.01-18.277 11.574-17.321 8.431-3.054 15.309-11.53 7.816-17.759m12.09 5.01c-4.938 7.675 7.297 2.834 0 0m108.13 9.09c-5.782 6.315-13.399-1.669-13.523 3.759 1.048 1.64 5.243 13.351 14.438 4.713 4.935-1.974 2.98-6.948-0.915-8.472m-123.1 3.759c-10.966 9.09 18.628 9.935 2.327 1.054l-2.327-1.054m144.54 25.26c-7.609 4.921 3.935 15.183 0 20.03-4.947 8.178 18.388-0.575 5.926-7.1-0.854-5.392-6.832-11.916-5.906-12.927h-0.02m-5.191 9.764c-11 2.951-2.504 18.19 1.392 3.838 0.219-0.832 0.523-3.866-1.392-3.838m-88.08 11.02c-10.234 6.62-1.594 13.24 5.906 10.262-1.54-3.994-5.837-6.523-5.906-10.262m167.07 11.236c-0.693 6.48 14.723 16.532-1.909 13.245-8.796 0.979-21.979-0.261-10.898-10.659 3.501-1.994 12.699 6.903 7.915-1.392 1.696-0.103 3.294-0.705 4.892-1.193m24.342 4.992c-1.634 1.77-2.575 3.716 1.472 5.708-0.457-1.917-0.943-3.819-1.472-5.708m-75.15 9.03c-6.416 3.921 4.436 6.928 0 0m-161.1 36.552c-1.082 3.423 20.296 6.896 5.548 1.412l-2.207-0.736-3.341-0.676m16.586 4.872c-6.483 6.243 13.356 1.865 0 0" fill="#fff8eb"/>
12
+ <path d="m264.69 183.59c-4.429 21.735-8.922 43.46-13.375 65.19-12.513-12.513-23.364-24.52-36.781-37.938-4.03 4.258-12.702 11.02-18.75 12.969-31.19 16.11-63.41 28.37-94.03 44.844 2.201 9.545 10.339 13.158 4.219 29.938-0.565 1.548-3.833 1.462-4.656 3.25 38.41 38.41 131.23 131.49 199.97 199.66h136.34c3.881 0 7-3.119 7-7v-191.84c-12.195-12.06-24.11-23.86-35.563-35.31-24.514-12.457-49.15-25-73.59-37.41-16.44-16.44-33.633-34.13-45.844-46.34h-24.938" fill-opacity=".235"/>
13
+ <g transform="matrix(1.21841 0 0 1.42073-70.879-115.24)" stroke="#fff8eb" fill="#fff">
14
+ <path d="m141.91 293.24c-0.943-0.707 0-23.1 0-23.1l91.93-40.07v26.873l-63.17 24.04 62.703 25.459v26.17z"/>
15
+ <path d="m275.86 210.8h19.502l-33.504 139.18h-19.335z"/>
16
+ <path d="m394.66 293.24c0.943-0.707 0-23.1 0-23.1l-91.93-40.07v26.873l63.17 24.04-62.704 25.459v26.17z"/>
17
+ </g>
18
+ </svg>