@allbluecn/web-app 0.9.4 → 0.10.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 (684) hide show
  1. package/package.json +12 -10
  2. package/public/favicon.ico +0 -0
  3. package/src/__tests__/paraglide.test.ts +43 -0
  4. package/src/__tests__/setup.ts +27 -9
  5. package/src/assets/illustrations/empty-states/workspace-empty.svg +5 -0
  6. package/src/assets/illustrations/knowledge/law-card-illustration.svg +5 -0
  7. package/src/assets/logo/logo.tsx +53 -36
  8. package/src/components/agents/agent-card.tsx +7 -7
  9. package/src/components/agents/agent-form-dialog.tsx +41 -42
  10. package/src/components/agents/agent-selector.tsx +6 -8
  11. package/src/components/agents/agents-page.tsx +26 -28
  12. package/src/components/agents/skill-card.tsx +1 -4
  13. package/src/components/agents/skill-form-dialog.tsx +19 -21
  14. package/src/components/agents/slash-skill-menu.tsx +5 -7
  15. package/src/components/agents/use-agent-handlers.ts +5 -8
  16. package/src/components/ai/ai-chat-prompt.tsx +26 -33
  17. package/src/components/ai/global-chat-panel.tsx +10 -11
  18. package/src/components/ai/use-knowledge-bases.ts +2 -2
  19. package/src/components/anyhub/anyhub-app-card.tsx +13 -15
  20. package/src/components/anyhub/anyhub-app-runner.tsx +5 -7
  21. package/src/components/anyhub/anyhub-install-dialog.tsx +16 -18
  22. package/src/components/anyhub/anyhub-management-view.tsx +9 -11
  23. package/src/components/anyhub/anyhub-marketplace-view.tsx +14 -17
  24. package/src/components/anyhub/anyhub-permission-panel.tsx +8 -11
  25. package/src/components/anyhub/anyhub-provider.tsx +0 -1
  26. package/src/components/anyhub/anyhub-top-nav.tsx +5 -8
  27. package/src/components/auth/auth-header.tsx +2 -2
  28. package/src/components/auth/icon-input.tsx +0 -1
  29. package/src/components/auth/oauth-section.tsx +3 -5
  30. package/src/components/auth/password-input.tsx +2 -4
  31. package/src/components/auth/session-guard.tsx +0 -1
  32. package/src/components/auth/sso-section.tsx +3 -4
  33. package/src/components/billing/__tests__/seats-manager.test.tsx +5 -9
  34. package/src/components/billing/billing-panel.tsx +5 -6
  35. package/src/components/billing/checkout-redirect.ts +6 -10
  36. package/src/components/billing/feature-gate.tsx +2 -3
  37. package/src/components/billing/invoice-history.tsx +9 -11
  38. package/src/components/billing/login-prompt-dialog.tsx +10 -11
  39. package/src/components/billing/pricing-card.tsx +6 -7
  40. package/src/components/billing/pricing-page.tsx +4 -5
  41. package/src/components/billing/seats-manager.tsx +19 -20
  42. package/src/components/billing/subscription-card.tsx +13 -14
  43. package/src/components/billing/upgrade-prompt.tsx +11 -13
  44. package/src/components/changelog/changelog-page.tsx +36 -26
  45. package/src/components/chat/ai-chat-history/components/conversation-header.tsx +4 -5
  46. package/src/components/chat/ai-chat-history/components/conversation-item.tsx +15 -17
  47. package/src/components/chat/ai-chat-history/components/conversation-search.tsx +3 -4
  48. package/src/components/chat/ai-chat-history/components/empty-state.tsx +5 -6
  49. package/src/components/chat/ai-chat-history/index.tsx +11 -15
  50. package/src/components/chat/ai-chat-history/utils/group-conversations.ts +9 -2
  51. package/src/components/chat/ai-citations/components/citation-item.tsx +3 -5
  52. package/src/components/chat/ai-citations/components/citations-list.tsx +4 -6
  53. package/src/components/chat/ai-citations/components/inline-citation.tsx +2 -4
  54. package/src/components/chat/ai-citations/components/source-components.tsx +6 -10
  55. package/src/components/chat/ai-citations/index.tsx +3 -4
  56. package/src/components/chat/ai-citations/utils.ts +15 -3
  57. package/src/components/chat/ai-conversation.tsx +10 -12
  58. package/src/components/chat/ai-message/components/message-actions.tsx +7 -9
  59. package/src/components/chat/ai-message/components/streaming-indicator.tsx +3 -4
  60. package/src/components/chat/ai-message/index.tsx +5 -5
  61. package/src/components/chat/ai-message/utils/dom-utils.ts +1 -1
  62. package/src/components/chat/ai-prompt-input/components/action-buttons.tsx +14 -16
  63. package/src/components/chat/ai-prompt-input/components/agent-mode-select.tsx +10 -5
  64. package/src/components/chat/ai-prompt-input/components/context-badge.tsx +2 -3
  65. package/src/components/chat/ai-prompt-input/components/kb-context-selector.tsx +6 -8
  66. package/src/components/chat/ai-prompt-input/components/model-select.tsx +14 -7
  67. package/src/components/chat/ai-prompt-input/components/page-user-context-selector.tsx +6 -8
  68. package/src/components/chat/ai-prompt-input/index.tsx +18 -11
  69. package/src/components/chat/ai-prompt-input/types.ts +6 -5
  70. package/src/components/chat/ai-thinking.tsx +6 -9
  71. package/src/components/chat/chat-thread-page.tsx +4 -5
  72. package/src/components/chat/interrupt-approval.tsx +6 -8
  73. package/src/components/command/command-palette.tsx +7 -10
  74. package/src/components/design/project-card.tsx +2 -3
  75. package/src/components/design/sketch/code-preview.tsx +3 -4
  76. package/src/components/design/sketch/export-panel.tsx +3 -4
  77. package/src/components/design/sketch/property-panel.tsx +16 -17
  78. package/src/components/error/global-error-boundary.tsx +65 -0
  79. package/src/components/forms/app-array-field.tsx +3 -4
  80. package/src/components/forms/app-combobox.tsx +2 -3
  81. package/src/components/forms/app-date-picker.tsx +2 -3
  82. package/src/components/forms/app-form-dialog.tsx +3 -4
  83. package/src/components/forms/app-select.tsx +2 -3
  84. package/src/components/forms/hooks/use-form-submit.ts +2 -2
  85. package/src/components/forms/schemas/common.ts +4 -6
  86. package/src/components/hotkeys/shortcuts-panel.tsx +2 -3
  87. package/src/components/iteration/auto-schedule-dialog.tsx +12 -13
  88. package/src/components/iteration/burndown-chart.tsx +6 -8
  89. package/src/components/iteration/constants.ts +5 -4
  90. package/src/components/iteration/create-iteration-dialog.tsx +14 -15
  91. package/src/components/iteration/iteration-card.tsx +3 -4
  92. package/src/components/iteration/iteration-editor.tsx +7 -8
  93. package/src/components/iteration/iteration-progress-bar.tsx +3 -5
  94. package/src/components/iteration/iteration-status-badge.tsx +1 -3
  95. package/src/components/kibo-ui/contribution-graph/index.tsx +37 -9
  96. package/src/components/knowledge/dialog/knowledge-form-dialog.tsx +8 -9
  97. package/src/components/knowledge/doc-properties.tsx +12 -13
  98. package/src/components/knowledge/editor/doc-header.tsx +7 -8
  99. package/src/components/knowledge/editor/knowledge-doc-editor.tsx +9 -9
  100. package/src/components/knowledge/knowledge-homepage.tsx +6 -7
  101. package/src/components/knowledge/knowledge-tag-input.tsx +3 -4
  102. package/src/components/knowledge/knowledge-toolbar.tsx +38 -40
  103. package/src/components/knowledge/knowledge-tree-item.tsx +21 -22
  104. package/src/components/knowledge/knowledge-tree.tsx +15 -16
  105. package/src/components/knowledge-public/bookmark-card.tsx +13 -14
  106. package/src/components/knowledge-public/bookmark-form-dialog.tsx +25 -26
  107. package/src/components/knowledge-public/knowledge-card-grid.tsx +3 -3
  108. package/src/components/knowledge-public/knowledge-filters.tsx +9 -10
  109. package/src/components/knowledge-public/knowledge-form-dialog.tsx +62 -63
  110. package/src/components/knowledge-public/knowledge-search-bar.tsx +3 -4
  111. package/src/components/knowledge-public/legal-compliance-editor.tsx +30 -31
  112. package/src/components/knowledge-public/markdown-editor.tsx +3 -4
  113. package/src/components/knowledge-public/markdown-view.tsx +2 -3
  114. package/src/components/knowledge-public/sharers-avatar-group.tsx +3 -4
  115. package/src/components/knowledge-public/tag-filter.tsx +3 -4
  116. package/src/components/layout/sidebar-03/__tests__/nav-workspace.test.tsx +42 -79
  117. package/src/components/layout/sidebar-03/__tests__/user-menu-anonymous.test.tsx +51 -0
  118. package/src/components/layout/sidebar-03/app-sidebar.tsx +3 -4
  119. package/src/components/layout/sidebar-03/index.tsx +0 -1
  120. package/src/components/layout/sidebar-03/nav-anyhub.tsx +4 -5
  121. package/src/components/layout/sidebar-03/nav-knowledge.tsx +80 -37
  122. package/src/components/layout/sidebar-03/nav-main.tsx +10 -12
  123. package/src/components/layout/sidebar-03/nav-notifications.tsx +19 -28
  124. package/src/components/layout/sidebar-03/nav-search-trigger.tsx +3 -5
  125. package/src/components/layout/sidebar-03/nav-workspace.tsx +32 -12
  126. package/src/components/layout/sidebar-03/team-switcher.tsx +0 -1
  127. package/src/components/layout/sidebar-03/user-menu.tsx +33 -13
  128. package/src/components/magicui/components/animate/avatar-group.tsx +0 -1
  129. package/src/components/magicui/primitives/animate/avatar-group.tsx +0 -1
  130. package/src/components/magicui/primitives/animate/slot.tsx +0 -1
  131. package/src/components/magicui/primitives/animate/tooltip.tsx +0 -1
  132. package/src/components/magicui/sparkles-text.tsx +0 -1
  133. package/src/components/mindmap/mindmap-doc-editor.tsx +15 -15
  134. package/src/components/notifications/settings-notifications.tsx +22 -23
  135. package/src/components/notifications/team-notifications.tsx +27 -29
  136. package/src/components/plugin-slots/__tests__/plugin-settings-tabs.test.tsx +4 -4
  137. package/src/components/plugin-slots/plugin-settings-tabs.tsx +15 -11
  138. package/src/components/project/create-project-dialog.tsx +60 -34
  139. package/src/components/project/invite-member-dialog.tsx +20 -21
  140. package/src/components/project/project-activity-list.tsx +19 -24
  141. package/src/components/project/project-member-manager.tsx +27 -28
  142. package/src/components/project/project-module-card.tsx +5 -6
  143. package/src/components/project/schemas/create-project.ts +3 -5
  144. package/src/components/prototype/component/GenericPrototype.tsx +0 -1
  145. package/src/components/prototype/component-preview.tsx +0 -1
  146. package/src/components/settings/ai/api-key-field.tsx +8 -10
  147. package/src/components/settings/ai/create-custom-model-dialog.tsx +28 -21
  148. package/src/components/settings/ai/create-custom-provider-dialog.tsx +15 -16
  149. package/src/components/settings/ai/model-card.tsx +25 -10
  150. package/src/components/settings/ai/model-manager.tsx +24 -16
  151. package/src/components/settings/ai/provider-card.tsx +9 -11
  152. package/src/components/settings/ai/provider-detail-form.tsx +24 -26
  153. package/src/components/settings/ai/provider-grid.tsx +23 -13
  154. package/src/components/settings/language-selector.tsx +13 -15
  155. package/src/components/settings/personal-team/account/account-client.tsx +14 -16
  156. package/src/components/settings/personal-team/account/avatar/notion-avatar-editor.tsx +36 -28
  157. package/src/components/settings/personal-team/account/settings-profile.tsx +39 -40
  158. package/src/components/settings/personal-team/team/team-client.tsx +45 -50
  159. package/src/components/settings/personal-team/team/team-invitations.tsx +89 -95
  160. package/src/components/settings/personal-team/team/team-member-list.tsx +50 -47
  161. package/src/components/shadcn-space/blocks/pricing-01/pricing.tsx +170 -172
  162. package/src/components/shared-kit/data-viz/contribution-graph-tooltip.tsx +128 -15
  163. package/src/components/shared-kit/dialogs/name-confirm-dialog.tsx +16 -16
  164. package/src/components/shared-kit/i18n/language-switcher.tsx +6 -9
  165. package/src/components/shared-kit/i18n/translator-text.tsx +2 -4
  166. package/src/components/shared-kit/icons/lucide-icon-picker/panel.tsx +7 -8
  167. package/src/components/shared-kit/logos/logo-icon.tsx +64 -0
  168. package/src/components/shared-kit/navigation/nav-float-button.tsx +3 -5
  169. package/src/components/shared-kit/pages/placeholder-page.tsx +2 -4
  170. package/src/components/shared-kit/theme/animated-theme-toggler.tsx +0 -1
  171. package/src/components/shared-kit/theme/theme-toggle.tsx +0 -1
  172. package/src/components/shared-kit/timezone/timezone-select.tsx +6 -7
  173. package/src/components/story/__tests__/constants.test.ts +7 -7
  174. package/src/components/story/__tests__/dependency-type-badge.test.ts +5 -5
  175. package/src/components/story/ai/action-registry.ts +12 -11
  176. package/src/components/story/ai/handlers/more-popover.tsx +5 -6
  177. package/src/components/story/ai/prototype-dialog.tsx +9 -10
  178. package/src/components/story/ai/split-dialog.tsx +22 -23
  179. package/src/components/story/ai/story-ai-panel.tsx +29 -30
  180. package/src/components/story/ai/story-ai-preview-list.tsx +16 -9
  181. package/src/components/story/ai/story-ai-toolbar.tsx +12 -13
  182. package/src/components/story/columns.tsx +33 -17
  183. package/src/components/story/constants.ts +73 -69
  184. package/src/components/story/create-story-dialog.tsx +13 -14
  185. package/src/components/story/detail/__tests__/categories.test.tsx +8 -10
  186. package/src/components/story/detail/__tests__/dependencies-button.test.tsx +3 -5
  187. package/src/components/story/detail/activity-tabs.tsx +6 -7
  188. package/src/components/story/detail/activity-timeline.tsx +33 -35
  189. package/src/components/story/detail/comment-input.tsx +7 -8
  190. package/src/components/story/detail/comment-item.tsx +15 -16
  191. package/src/components/story/detail/comment-thread.tsx +6 -7
  192. package/src/components/story/detail/reaction-bar.tsx +2 -3
  193. package/src/components/story/detail/story-detail-body.tsx +26 -28
  194. package/src/components/story/detail/story-detail-toolbar/associated-attachments-panel.tsx +42 -45
  195. package/src/components/story/detail/story-detail-toolbar/categories.tsx +13 -14
  196. package/src/components/story/detail/story-detail-toolbar/children.tsx +19 -22
  197. package/src/components/story/detail/story-detail-toolbar/dependencies.tsx +3 -5
  198. package/src/components/story/detail/story-detail-toolbar/dependency-panel.tsx +30 -20
  199. package/src/components/story/detail/story-detail-toolbar.tsx +16 -11
  200. package/src/components/story/detail/story-properties.tsx +7 -8
  201. package/src/components/story/display/__tests__/display-dropdown.test.tsx +3 -5
  202. package/src/components/story/display/__tests__/use-paged-story-groups.test.ts +2 -0
  203. package/src/components/story/display/constants.ts +27 -26
  204. package/src/components/story/display/display-dropdown.tsx +20 -26
  205. package/src/components/story/display/group-resolver.tsx +12 -14
  206. package/src/components/story/display/use-grouped-stories.ts +3 -5
  207. package/src/components/story/display/use-paged-story-groups.ts +12 -13
  208. package/src/components/story/filters/add-filter-dropdown.tsx +4 -5
  209. package/src/components/story/filters/applied-filters.tsx +7 -9
  210. package/src/components/story/filters/filter-condition.tsx +9 -12
  211. package/src/components/story/filters/filter-row.tsx +5 -6
  212. package/src/components/story/filters/filter-toggle.tsx +2 -3
  213. package/src/components/story/filters/filter-types.ts +24 -23
  214. package/src/components/story/filters/filter-value-input.tsx +3 -4
  215. package/src/components/story/infinite-scroll-sentinel.tsx +2 -3
  216. package/src/components/story/inline-editors/__tests__/dependency-type-select.test.tsx +18 -23
  217. package/src/components/story/inline-editors/__tests__/labels-editor.test.tsx +9 -11
  218. package/src/components/story/inline-editors/__tests__/priority-editor.test.tsx +21 -25
  219. package/src/components/story/inline-editors/__tests__/state-editor.test.tsx +21 -25
  220. package/src/components/story/inline-editors/assignee-editor.tsx +8 -9
  221. package/src/components/story/inline-editors/date-editor.tsx +4 -5
  222. package/src/components/story/inline-editors/dependency-type-select.tsx +15 -12
  223. package/src/components/story/inline-editors/inline-trigger.tsx +2 -3
  224. package/src/components/story/inline-editors/labels-editor.tsx +16 -17
  225. package/src/components/story/inline-editors/parent-story-editor.tsx +3 -4
  226. package/src/components/story/inline-editors/priority-editor.tsx +6 -8
  227. package/src/components/story/inline-editors/state-editor.tsx +6 -7
  228. package/src/components/story/inline-editors/story-select-dialog.tsx +25 -26
  229. package/src/components/story/inline-editors/title-editor.tsx +2 -3
  230. package/src/components/story/peek-panel.tsx +6 -7
  231. package/src/components/story/relations/__tests__/knowledge-select-dialog.test.tsx +2 -0
  232. package/src/components/story/relations/__tests__/link-manage-dialog.test.tsx +2 -0
  233. package/src/components/story/relations/attachment-manage-dialog.tsx +23 -24
  234. package/src/components/story/relations/general-groups.ts +12 -29
  235. package/src/components/story/relations/knowledge-select-dialog.tsx +21 -22
  236. package/src/components/story/relations/link-manage-dialog.tsx +12 -13
  237. package/src/components/story/relations/story-ref-row.tsx +20 -21
  238. package/src/components/story/schemas/story-create.ts +3 -5
  239. package/src/components/story/search-popover.tsx +5 -6
  240. package/src/components/story/story-list-table.tsx +3 -4
  241. package/src/components/story/story-list-view.tsx +9 -10
  242. package/src/components/story/story-panel-header.tsx +27 -28
  243. package/src/components/story/story-toolbar.tsx +11 -12
  244. package/src/components/story/transfer-story-popover.tsx +15 -16
  245. package/src/components/story/views/calendar-view.tsx +12 -14
  246. package/src/components/story/views/create-view-dialog.tsx +19 -52
  247. package/src/components/story/views/kanban-board.tsx +9 -12
  248. package/src/components/story/views/kanban-card.tsx +1 -3
  249. package/src/components/story/views/story-list/__tests__/batch-toolbar.test.tsx +9 -2
  250. package/src/components/story/views/story-list/__tests__/group-header.test.tsx +15 -17
  251. package/src/components/story/views/story-list/batch-preview-dialog.tsx +26 -28
  252. package/src/components/story/views/story-list/batch-toolbar.tsx +12 -13
  253. package/src/components/story/views/story-list/group.tsx +9 -11
  254. package/src/components/story/views/story-list/index.tsx +13 -14
  255. package/src/components/story/views/story-list/inline-story-creator.tsx +6 -7
  256. package/src/components/story/views/story-list/row.tsx +6 -7
  257. package/src/components/story/views/timeline-view.tsx +7 -8
  258. package/src/components/story/views/view-list-section.tsx +14 -16
  259. package/src/components/story/views/view-selector-button.tsx +6 -7
  260. package/src/components/story/views/view-switcher.tsx +9 -10
  261. package/src/components/story/views/view-types.ts +15 -15
  262. package/src/components/tiptap/extension/code-block-ellipsis-input-extension.ts +0 -1
  263. package/src/components/tiptap/hooks/use-composed-ref.ts +0 -1
  264. package/src/components/tiptap/hooks/use-cursor-visibility.ts +0 -1
  265. package/src/components/tiptap/hooks/use-floating-element.ts +0 -1
  266. package/src/components/tiptap/hooks/use-is-breakpoint.ts +0 -1
  267. package/src/components/tiptap/hooks/use-isomorphic-layout-effect.ts +0 -1
  268. package/src/components/tiptap/hooks/use-menu-navigation.ts +0 -1
  269. package/src/components/tiptap/hooks/use-on-click-outside.ts +0 -1
  270. package/src/components/tiptap/hooks/use-tiptap-editor.ts +0 -1
  271. package/src/components/tiptap/hooks/use-ui-editor-state.ts +0 -1
  272. package/src/components/tiptap/mindmap/lib/__tests__/default-mindmap-data.test.ts +3 -2
  273. package/src/components/tiptap/mindmap/lib/default-mindmap-data.ts +2 -2
  274. package/src/components/tiptap/mindmap/mind-map.tsx +36 -39
  275. package/src/components/tiptap/mindmap/mindmap-fullscreen-dialog.tsx +2 -3
  276. package/src/components/tiptap/node/annotation-node/annotation-node-view.tsx +11 -12
  277. package/src/components/tiptap/node/doc-card-extension.tsx +8 -10
  278. package/src/components/tiptap/node/image-node/image-node-floating.tsx +2 -3
  279. package/src/components/tiptap/node/image-upload-node/image-upload-node.tsx +0 -1
  280. package/src/components/tiptap/node/mention-extension.ts +5 -5
  281. package/src/components/tiptap/node/table-node/hooks/use-table-handle-state.ts +0 -1
  282. package/src/components/tiptap/node/table-node/ui/table-add-row-column-button/table-add-row-column-button.tsx +0 -1
  283. package/src/components/tiptap/node/table-node/ui/table-add-row-column-button/use-table-add-row-column.ts +5 -6
  284. package/src/components/tiptap/node/table-node/ui/table-align-cell-button/table-align-cell-button.tsx +0 -1
  285. package/src/components/tiptap/node/table-node/ui/table-align-cell-button/use-table-align-cell.ts +8 -9
  286. package/src/components/tiptap/node/table-node/ui/table-alignment-menu/table-alignment-menu.tsx +2 -4
  287. package/src/components/tiptap/node/table-node/ui/table-cell-handle-menu/table-cell-handle-menu.tsx +2 -5
  288. package/src/components/tiptap/node/table-node/ui/table-clear-row-column-content-button/table-clear-row-column-content-button.tsx +0 -1
  289. package/src/components/tiptap/node/table-node/ui/table-clear-row-column-content-button/use-table-clear-row-column-content.ts +4 -5
  290. package/src/components/tiptap/node/table-node/ui/table-delete-row-column-button/table-delete-row-column-button.tsx +0 -1
  291. package/src/components/tiptap/node/table-node/ui/table-delete-row-column-button/use-table-delete-row-column.ts +3 -4
  292. package/src/components/tiptap/node/table-node/ui/table-duplicate-row-column-button/table-duplicate-row-column-button.tsx +0 -1
  293. package/src/components/tiptap/node/table-node/ui/table-duplicate-row-column-button/use-table-duplicate-row-column.ts +3 -4
  294. package/src/components/tiptap/node/table-node/ui/table-extend-row-column-button/table-extend-row-column-button.tsx +2 -4
  295. package/src/components/tiptap/node/table-node/ui/table-fit-to-width-button/table-fit-to-width-button.tsx +0 -1
  296. package/src/components/tiptap/node/table-node/ui/table-fit-to-width-button/use-table-fit-to-width.ts +3 -4
  297. package/src/components/tiptap/node/table-node/ui/table-handle/table-handle.tsx +0 -1
  298. package/src/components/tiptap/node/table-node/ui/table-handle-menu/table-handle-menu.tsx +3 -5
  299. package/src/components/tiptap/node/table-node/ui/table-header-row-column-button/table-header-row-column-button.tsx +0 -1
  300. package/src/components/tiptap/node/table-node/ui/table-header-row-column-button/use-table-header-row-column.ts +3 -4
  301. package/src/components/tiptap/node/table-node/ui/table-merge-split-cell-button/table-merge-split-cell-button.tsx +0 -1
  302. package/src/components/tiptap/node/table-node/ui/table-merge-split-cell-button/use-table-merge-split-cell.ts +3 -4
  303. package/src/components/tiptap/node/table-node/ui/table-move-row-column-button/table-move-row-column-button.tsx +0 -1
  304. package/src/components/tiptap/node/table-node/ui/table-move-row-column-button/use-table-move-row-column.ts +9 -10
  305. package/src/components/tiptap/node/table-node/ui/table-selection-overlay/table-selection-overlay.tsx +0 -1
  306. package/src/components/tiptap/node/table-node/ui/table-selection-overlay/use-resize-overlay.ts +0 -1
  307. package/src/components/tiptap/node/table-node/ui/table-sort-row-column-button/table-sort-row-column-button.tsx +0 -1
  308. package/src/components/tiptap/node/table-node/ui/table-sort-row-column-button/use-table-sort-row-column.ts +5 -6
  309. package/src/components/tiptap/node/table-node/ui/table-trigger-button/table-grid-selector.tsx +2 -3
  310. package/src/components/tiptap/node/table-node/ui/table-trigger-button/table-trigger-button.tsx +0 -1
  311. package/src/components/tiptap/node/table-node/ui/table-trigger-button/use-table-trigger.ts +3 -4
  312. package/src/components/tiptap/node/toc-node/toc-node.tsx +2 -4
  313. package/src/components/tiptap/node/toc-node/ui/toc-show-title-button/toc-show-title-button.tsx +0 -1
  314. package/src/components/tiptap/node/toc-node/ui/toc-show-title-button/toc-show-title.ts +2 -3
  315. package/src/components/tiptap/node/toc-node/ui/toc-sidebar/toc-sidebar.tsx +2 -5
  316. package/src/components/tiptap/notion-like/notion-like-editor-header.tsx +2 -4
  317. package/src/components/tiptap/notion-like/notion-like-editor-mobile-toolbar.tsx +17 -23
  318. package/src/components/tiptap/notion-like/notion-like-editor-theme-toggle.tsx +2 -5
  319. package/src/components/tiptap/notion-like/notion-like-editor-toolbar-floating.tsx +16 -12
  320. package/src/components/tiptap/notion-like/notion-like-editor.tsx +2 -7
  321. package/src/components/tiptap/notion-like/setup-error-message/setup-error-message.tsx +0 -1
  322. package/src/components/tiptap/ui/ai-ask-button/ai-ask-button.tsx +0 -1
  323. package/src/components/tiptap/ui/ai-ask-button/use-ai-ask.ts +2 -3
  324. package/src/components/tiptap/ui/ai-menu/ai-menu-actions/ai-menu-actions.tsx +4 -6
  325. package/src/components/tiptap/ui/ai-menu/ai-menu-input/ai-menu-input.tsx +6 -10
  326. package/src/components/tiptap/ui/ai-menu/ai-menu-items/ai-menu-items-constants.ts +36 -36
  327. package/src/components/tiptap/ui/ai-menu/ai-menu-items/ai-menu-items.tsx +13 -16
  328. package/src/components/tiptap/ui/ai-menu/ai-menu-items/language-selection-submenu.tsx +3 -4
  329. package/src/components/tiptap/ui/ai-menu/ai-menu-items/tone-selection-submenu.tsx +2 -3
  330. package/src/components/tiptap/ui/ai-menu/ai-menu-utils.ts +3 -3
  331. package/src/components/tiptap/ui/ai-menu/ai-menu.tsx +3 -5
  332. package/src/components/tiptap/ui/blockquote-button/blockquote-button.tsx +2 -6
  333. package/src/components/tiptap/ui/blockquote-button/use-blockquote.ts +2 -3
  334. package/src/components/tiptap/ui/code-block-button/code-block-button.tsx +2 -6
  335. package/src/components/tiptap/ui/code-block-button/use-code-block.ts +2 -3
  336. package/src/components/tiptap/ui/color-highlight-button/color-highlight-button.tsx +0 -1
  337. package/src/components/tiptap/ui/color-highlight-button/use-color-highlight.ts +14 -14
  338. package/src/components/tiptap/ui/color-highlight-popover/color-highlight-popover.tsx +9 -11
  339. package/src/components/tiptap/ui/color-menu/color-menu.tsx +5 -11
  340. package/src/components/tiptap/ui/color-text-button/color-text-button.tsx +2 -3
  341. package/src/components/tiptap/ui/color-text-button/use-color-text.ts +12 -13
  342. package/src/components/tiptap/ui/color-text-popover/color-text-popover.tsx +6 -10
  343. package/src/components/tiptap/ui/color-text-popover/use-color-text-popover.ts +2 -3
  344. package/src/components/tiptap/ui/copy-anchor-link-button/copy-anchor-link-button.tsx +2 -6
  345. package/src/components/tiptap/ui/copy-anchor-link-button/use-copy-anchor-link.ts +2 -3
  346. package/src/components/tiptap/ui/copy-anchor-link-button/use-scroll-to-hash.ts +0 -1
  347. package/src/components/tiptap/ui/copy-to-clipboard-button/copy-to-clipboard-button.tsx +2 -6
  348. package/src/components/tiptap/ui/copy-to-clipboard-button/use-copy-to-clipboard.ts +2 -3
  349. package/src/components/tiptap/ui/delete-node-button/delete-node-button.tsx +2 -6
  350. package/src/components/tiptap/ui/delete-node-button/use-delete-node.ts +2 -3
  351. package/src/components/tiptap/ui/doc-reference-floating/doc-reference-floating.tsx +10 -11
  352. package/src/components/tiptap/ui/doc-reference-interaction/doc-reference-interaction.tsx +10 -11
  353. package/src/components/tiptap/ui/drag-context-menu/drag-context-menu.tsx +7 -9
  354. package/src/components/tiptap/ui/duplicate-button/duplicate-button.tsx +2 -6
  355. package/src/components/tiptap/ui/duplicate-button/use-duplicate.ts +2 -3
  356. package/src/components/tiptap/ui/emoji-dropdown-menu/emoji-dropdown-menu.tsx +0 -1
  357. package/src/components/tiptap/ui/emoji-menu/emoji-menu.tsx +2 -5
  358. package/src/components/tiptap/ui/emoji-trigger-button/emoji-trigger-button.tsx +2 -6
  359. package/src/components/tiptap/ui/emoji-trigger-button/use-emoji-trigger.ts +2 -3
  360. package/src/components/tiptap/ui/heading-button/heading-button.tsx +0 -1
  361. package/src/components/tiptap/ui/heading-button/use-heading.ts +7 -8
  362. package/src/components/tiptap/ui/image-align-button/image-align-button.tsx +0 -1
  363. package/src/components/tiptap/ui/image-align-button/use-image-align.ts +4 -5
  364. package/src/components/tiptap/ui/image-caption-button/image-caption-button.tsx +0 -1
  365. package/src/components/tiptap/ui/image-caption-button/use-image-caption.ts +2 -3
  366. package/src/components/tiptap/ui/image-download-button/image-download-button.tsx +0 -1
  367. package/src/components/tiptap/ui/image-download-button/use-image-download.ts +2 -3
  368. package/src/components/tiptap/ui/image-upload-button/image-upload-button.tsx +0 -1
  369. package/src/components/tiptap/ui/image-upload-button/use-image-upload.ts +2 -3
  370. package/src/components/tiptap/ui/improve-dropdown/improve-dropdown.tsx +14 -17
  371. package/src/components/tiptap/ui/improve-dropdown/use-improve-dropdown.ts +2 -3
  372. package/src/components/tiptap/ui/indent-button/indent-button.tsx +0 -1
  373. package/src/components/tiptap/ui/indent-button/use-indent.ts +3 -4
  374. package/src/components/tiptap/ui/link-popover/link-popover.tsx +7 -12
  375. package/src/components/tiptap/ui/link-popover/use-link-popover.ts +2 -3
  376. package/src/components/tiptap/ui/list-button/list-button.tsx +0 -1
  377. package/src/components/tiptap/ui/list-button/use-list.ts +4 -5
  378. package/src/components/tiptap/ui/mark-button/mark-button.tsx +0 -1
  379. package/src/components/tiptap/ui/mark-button/use-mark.ts +8 -9
  380. package/src/components/tiptap/ui/mention-dropdown-menu/mention-dropdown-menu.tsx +0 -2
  381. package/src/components/tiptap/ui/mention-trigger-button/mention-trigger-button.tsx +0 -1
  382. package/src/components/tiptap/ui/mention-trigger-button/use-mention-trigger.ts +2 -3
  383. package/src/components/tiptap/ui/move-node-button/move-node-button.tsx +2 -6
  384. package/src/components/tiptap/ui/move-node-button/use-move-node.ts +2 -3
  385. package/src/components/tiptap/ui/reference-dropdown-menu/reference-dropdown-menu.tsx +6 -10
  386. package/src/components/tiptap/ui/reset-all-formatting-button/reset-all-formatting-button.tsx +2 -6
  387. package/src/components/tiptap/ui/reset-all-formatting-button/use-reset-all-formatting.ts +2 -3
  388. package/src/components/tiptap/ui/slash-command-trigger-button/slash-command-trigger-button.tsx +0 -1
  389. package/src/components/tiptap/ui/slash-command-trigger-button/use-slash-command-trigger.ts +2 -3
  390. package/src/components/tiptap/ui/slash-dropdown-menu/slash-dropdown-menu.tsx +2 -5
  391. package/src/components/tiptap/ui/slash-dropdown-menu/use-slash-dropdown-menu.ts +78 -79
  392. package/src/components/tiptap/ui/text-align-button/text-align-button.tsx +0 -1
  393. package/src/components/tiptap/ui/text-align-button/use-text-align.ts +5 -6
  394. package/src/components/tiptap/ui/text-button/text-button.tsx +2 -6
  395. package/src/components/tiptap/ui/text-button/use-text.ts +2 -3
  396. package/src/components/tiptap/ui/turn-into-dropdown/turn-into-dropdown.tsx +4 -7
  397. package/src/components/tiptap/ui/turn-into-dropdown/use-turn-into-dropdown.ts +11 -12
  398. package/src/components/tiptap/ui/undo-redo-button/undo-redo-button.tsx +0 -1
  399. package/src/components/tiptap/ui/undo-redo-button/use-undo-redo.ts +3 -4
  400. package/src/components/tiptap/ui-primitive/avatar/avatar.tsx +0 -1
  401. package/src/components/tiptap/ui-primitive/badge/badge.tsx +0 -1
  402. package/src/components/tiptap/ui-primitive/button/button.tsx +0 -1
  403. package/src/components/tiptap/ui-primitive/card/card.tsx +0 -1
  404. package/src/components/tiptap/ui-primitive/combobox/combobox.tsx +0 -1
  405. package/src/components/tiptap/ui-primitive/dropdown-menu/dropdown-menu.tsx +0 -1
  406. package/src/components/tiptap/ui-primitive/input/input.tsx +0 -1
  407. package/src/components/tiptap/ui-primitive/input-group/input-group.tsx +0 -1
  408. package/src/components/tiptap/ui-primitive/label/label.tsx +0 -1
  409. package/src/components/tiptap/ui-primitive/menu/menu-context.ts +0 -1
  410. package/src/components/tiptap/ui-primitive/menu/menu-hooks.ts +0 -1
  411. package/src/components/tiptap/ui-primitive/menu/menu-types.ts +0 -1
  412. package/src/components/tiptap/ui-primitive/menu/menu-utils.ts +0 -1
  413. package/src/components/tiptap/ui-primitive/menu/menu.tsx +0 -1
  414. package/src/components/tiptap/ui-primitive/popover/popover.tsx +0 -1
  415. package/src/components/tiptap/ui-primitive/separator/separator.tsx +0 -1
  416. package/src/components/tiptap/ui-primitive/sidebar/sidebar.tsx +0 -1
  417. package/src/components/tiptap/ui-primitive/spacer/spacer.tsx +0 -1
  418. package/src/components/tiptap/ui-primitive/textarea/textarea.tsx +0 -1
  419. package/src/components/tiptap/ui-primitive/textarea-autosize/textarea-autosize.tsx +0 -1
  420. package/src/components/tiptap/ui-primitive/toolbar/toolbar.tsx +0 -1
  421. package/src/components/tiptap/ui-primitive/tooltip/tooltip.tsx +0 -1
  422. package/src/components/tiptap/ui-utils/floating-element/floating-element.tsx +0 -1
  423. package/src/components/tiptap/ui-utils/suggestion-menu/suggestion-menu.tsx +0 -1
  424. package/src/components/ui/field.tsx +1 -1
  425. package/src/components/ui/radio-group.tsx +2 -3
  426. package/src/components/ui/spinner.tsx +2 -2
  427. package/src/components/workspace/create-workspace-dialog.tsx +12 -13
  428. package/src/components/workspace/delete-workspace-options.tsx +177 -0
  429. package/src/components/workspace/edit-workspace-dialog.tsx +153 -0
  430. package/src/components/workspace/schemas/create-workspace.ts +2 -2
  431. package/src/components/workspace/workspace-activity-card.tsx +60 -0
  432. package/src/components/workspace/workspace-contribution-card.tsx +37 -0
  433. package/src/components/workspace/workspace-header.tsx +100 -0
  434. package/src/components/workspace/workspace-kb-card.tsx +31 -0
  435. package/src/components/workspace/workspace-member-item.tsx +80 -0
  436. package/src/components/workspace/workspace-members-manager.tsx +291 -0
  437. package/src/components/workspace/workspace-project-list.tsx +129 -0
  438. package/src/config/sidebar-routes.tsx +25 -24
  439. package/src/config/sidebar-teams.ts +4 -4
  440. package/src/hooks/__tests__/use-commands.test.tsx +0 -10
  441. package/src/hooks/use-commands.ts +3 -7
  442. package/src/hooks/use-entity-subscription.ts +0 -1
  443. package/src/hooks/use-notifications.ts +5 -6
  444. package/src/hooks/useTranslator.ts +0 -1
  445. package/src/lib/__tests__/edition.test.ts +9 -0
  446. package/src/lib/analytics.ts +0 -1
  447. package/src/lib/anyhub/anyhub-message-bridge.ts +1 -1
  448. package/src/lib/auth/__tests__/anonymous-safe.test.ts +89 -0
  449. package/src/lib/auth/__tests__/page-gate.test.ts +29 -0
  450. package/src/lib/auth/anonymous-safe.ts +39 -0
  451. package/src/lib/auth/page-gate.ts +18 -0
  452. package/src/lib/changelog/sdk-versions.ts +19 -19
  453. package/src/lib/collections/knowledge/knowledge-bases-collection.ts +1 -1
  454. package/src/lib/collections/reference/bookmark-categories-collection.ts +1 -1
  455. package/src/lib/collections/reference/labels-collection.ts +1 -1
  456. package/src/lib/collections/reference/projects-collection.ts +1 -1
  457. package/src/lib/collections/reference/users-brief-collection.ts +1 -1
  458. package/src/lib/collections/reference/workspaces-collection.ts +3 -3
  459. package/src/lib/commands/__tests__/registry.test.ts +3 -3
  460. package/src/lib/commands/registry.ts +22 -21
  461. package/src/lib/commands/types.ts +1 -1
  462. package/src/lib/edition.ts +7 -0
  463. package/src/lib/router-context.ts +1 -2
  464. package/src/plugins/.gen-manifest.json +13 -0
  465. package/src/plugins/core/inspiration/pages/inspiration-page.tsx +2 -3
  466. package/src/plugins/core/inspiration/ui.tsx +2 -3
  467. package/src/plugins/core/prd/components/agent-input.tsx +7 -8
  468. package/src/plugins/core/prd/components/component-editor/content-section.tsx +3 -3
  469. package/src/plugins/core/prd/components/component-editor/position-section.tsx +3 -4
  470. package/src/plugins/core/prd/components/component-editor/style-fields.tsx +13 -16
  471. package/src/plugins/core/prd/components/dialog/create-prd-dialog.tsx +11 -12
  472. package/src/plugins/core/prd/components/dialog/prd-detail-client.tsx +7 -9
  473. package/src/plugins/core/prd/components/page-version-panel/components/create-version-dialog.tsx +7 -8
  474. package/src/plugins/core/prd/components/page-version-panel/components/delete-version-dialog.tsx +5 -6
  475. package/src/plugins/core/prd/components/page-version-panel/components/edit-version-dialog.tsx +7 -8
  476. package/src/plugins/core/prd/components/page-version-panel/constants.tsx +3 -2
  477. package/src/plugins/core/prd/components/page-version-panel.tsx +43 -45
  478. package/src/plugins/core/prd/components/page-version-tree.tsx +6 -8
  479. package/src/plugins/core/prd/components/prd-agent-panel.tsx +29 -23
  480. package/src/plugins/core/prd/components/prd-comment-review-panel.tsx +21 -23
  481. package/src/plugins/core/prd/components/prd-component-editor-content.tsx +6 -7
  482. package/src/plugins/core/prd/components/prd-dashboard.tsx +28 -23
  483. package/src/plugins/core/prd/components/prd-doc-panel.tsx +6 -9
  484. package/src/plugins/core/prd/components/prd-editor-layout.tsx +11 -13
  485. package/src/plugins/core/prd/components/prd-filter-bar.tsx +2 -3
  486. package/src/plugins/core/prd/components/prd-left-sidebar.tsx +19 -20
  487. package/src/plugins/core/prd/components/prd-navigation.tsx +12 -14
  488. package/src/plugins/core/prd/components/prd-outline-tab.tsx +3 -4
  489. package/src/plugins/core/prd/components/prd-prototype-panel.tsx +8 -10
  490. package/src/plugins/core/prd/components/prd-right-sidebar.tsx +10 -12
  491. package/src/plugins/core/prd/components/prd-share-panel/components/single-version-share-card.tsx +13 -14
  492. package/src/plugins/core/prd/components/prd-share-panel/constants.ts +5 -3
  493. package/src/plugins/core/prd/components/prd-share-panel.tsx +58 -60
  494. package/src/plugins/core/prd/components/prd-tree-page-tab.tsx +20 -22
  495. package/src/plugins/core/prd/components/prototype/PrototypeCanvas.tsx +2 -4
  496. package/src/plugins/core/prd/components/prototype/PrototypeElement.tsx +3 -5
  497. package/src/plugins/core/prd/components/prototype/ResizeHandles.tsx +0 -1
  498. package/src/plugins/core/prd/components/prototype/icon-components.ts +19 -21
  499. package/src/plugins/core/prd/components/prototype/index.ts +3 -0
  500. package/src/plugins/core/prd/components/restore-version-dialog.tsx +5 -7
  501. package/src/plugins/core/prd/components/share/prd-share-client.tsx +7 -9
  502. package/src/plugins/core/prd/components/share/share-annotation-overlay.tsx +0 -1
  503. package/src/plugins/core/prd/components/share/share-comment-panel.tsx +15 -16
  504. package/src/plugins/core/prd/components/share/share-comment-review-panel.tsx +7 -9
  505. package/src/plugins/core/prd/components/share/share-directory-tree.tsx +3 -5
  506. package/src/plugins/core/prd/components/share/share-doc-view.tsx +3 -5
  507. package/src/plugins/core/prd/components/share/share-layout.tsx +3 -5
  508. package/src/plugins/core/prd/components/share/share-nav-bar.tsx +3 -5
  509. package/src/plugins/core/prd/components/share/share-password-gate.tsx +8 -9
  510. package/src/plugins/core/prd/components/share/share-prototype-view.tsx +3 -5
  511. package/src/plugins/core/prd/components/share/share-review-panel.tsx +9 -11
  512. package/src/plugins/core/prd/components/share/share-sse-listener.tsx +0 -1
  513. package/src/plugins/core/prd/components/share/version-share-client.tsx +3 -5
  514. package/src/plugins/core/prd/pages/prd-detail-page.tsx +9 -21
  515. package/src/plugins/core/prd/pages/share-prd-page.tsx +6 -16
  516. package/src/plugins/core/prd/prd-nav.tsx +2 -3
  517. package/src/plugins/core/tags/nav-tag.tsx +14 -15
  518. package/src/plugins/core/tags/pages/tag-detail-page.tsx +3 -5
  519. package/src/plugins/core/tags/pages/tag-settings-page.tsx +3 -5
  520. package/src/plugins/core/tags/pages/tags-index-page.tsx +3 -5
  521. package/src/plugins/core/tags/tag-badge.tsx +2 -3
  522. package/src/plugins/core/tags/tag-color-picker.tsx +2 -4
  523. package/src/plugins/core/tags/tag-manager.tsx +23 -25
  524. package/src/plugins/core/tags/tag-selector.tsx +4 -5
  525. package/src/plugins/modules.gen.ts +21 -0
  526. package/src/plugins/plugins.gen.ts +20 -0
  527. package/src/plugins/ui.gen.ts +8 -0
  528. package/src/providers/index.tsx +3 -14
  529. package/src/routeTree.gen.ts +27 -0
  530. package/src/router.tsx +16 -6
  531. package/src/routes/__desktop/onboarding/route.lazy.tsx +22 -23
  532. package/src/routes/__root.tsx +13 -36
  533. package/src/routes/__tests__/-edition-routing.test.tsx +151 -0
  534. package/src/routes/_login/forgot-password/route.lazy.tsx +14 -15
  535. package/src/routes/_login/login/route.lazy.tsx +26 -25
  536. package/src/routes/_login/register/route.lazy.tsx +23 -24
  537. package/src/routes/_login/reset-password/route.lazy.tsx +16 -17
  538. package/src/routes/_login/schemas/-auth.ts +11 -13
  539. package/src/routes/_nav/acceptance-criteria/route.tsx +2 -3
  540. package/src/routes/_nav/apps/anyhub/$id/route.tsx +2 -3
  541. package/src/routes/_nav/chat/route.lazy.tsx +9 -10
  542. package/src/routes/_nav/dashboard/-components/activity-feed.tsx +3 -4
  543. package/src/routes/_nav/dashboard/-components/quick-actions.tsx +3 -4
  544. package/src/routes/_nav/dashboard/-components/stats-grid.tsx +5 -6
  545. package/src/routes/_nav/dashboard/route.lazy.tsx +7 -8
  546. package/src/routes/_nav/design/$projectId/$artboardId/route.lazy.tsx +7 -9
  547. package/src/routes/_nav/design/$projectId/route.lazy.tsx +3 -5
  548. package/src/routes/_nav/design/index.lazy.tsx +26 -27
  549. package/src/routes/_nav/inspiration/route.tsx +8 -0
  550. package/src/routes/_nav/knowledge/$kbId/doc/$docId/route.lazy.tsx +4 -5
  551. package/src/routes/_nav/knowledge/$kbId/route.lazy.tsx +3 -4
  552. package/src/routes/_nav/knowledge/bookmarks/$id.lazy.tsx +29 -30
  553. package/src/routes/_nav/knowledge/bookmarks/index.lazy.tsx +12 -13
  554. package/src/routes/_nav/knowledge/compliance/$id.lazy.tsx +22 -23
  555. package/src/routes/_nav/knowledge/compliance/index.lazy.tsx +18 -19
  556. package/src/routes/_nav/knowledge/dictionaries/$id.lazy.tsx +5 -6
  557. package/src/routes/_nav/knowledge/dictionaries/index.lazy.tsx +17 -18
  558. package/src/routes/_nav/knowledge/index.lazy.tsx +248 -40
  559. package/src/routes/_nav/knowledge/laws/$id.lazy.tsx +22 -23
  560. package/src/routes/_nav/knowledge/laws/index.lazy.tsx +14 -15
  561. package/src/routes/_nav/knowledge/summary/index.lazy.tsx +31 -32
  562. package/src/routes/_nav/notifications/route.lazy.tsx +3 -4
  563. package/src/routes/_nav/notifications/route.tsx +2 -0
  564. package/src/routes/_nav/notion-like/route.tsx +2 -3
  565. package/src/routes/_nav/prd/$id/route.tsx +9 -0
  566. package/src/routes/_nav/prd/index.tsx +9 -0
  567. package/src/routes/_nav/prd/route.tsx +8 -0
  568. package/src/routes/_nav/pricing-02/route.tsx +2 -3
  569. package/src/routes/_nav/projects/$projectId/$storyId/route.lazy.tsx +23 -24
  570. package/src/routes/_nav/projects/$projectId/index.lazy.tsx +54 -74
  571. package/src/routes/_nav/projects/$projectId/iterations/$iterationId/route.lazy.tsx +27 -30
  572. package/src/routes/_nav/projects/$projectId/iterations/index.lazy.tsx +9 -10
  573. package/src/routes/_nav/projects/$projectId/route.tsx +4 -2
  574. package/src/routes/_nav/projects/$projectId/settings/route.lazy.tsx +40 -41
  575. package/src/routes/_nav/route.tsx +13 -16
  576. package/src/routes/_nav/settings/-settings-tabs.tsx +24 -51
  577. package/src/routes/_nav/settings/account/route.lazy.tsx +1 -9
  578. package/src/routes/_nav/settings/ai/index/route.lazy.tsx +5 -6
  579. package/src/routes/_nav/settings/billing/route.lazy.tsx +4 -5
  580. package/src/routes/_nav/settings/connection/route.lazy.tsx +14 -10
  581. package/src/routes/_nav/settings/design/route.lazy.tsx +21 -22
  582. package/src/routes/_nav/settings/general/route.lazy.tsx +10 -11
  583. package/src/routes/_nav/settings/notifications/route.lazy.tsx +3 -5
  584. package/src/routes/_nav/settings/privacy/route.lazy.tsx +15 -16
  585. package/src/routes/_nav/settings/route.lazy.tsx +2 -3
  586. package/src/routes/_nav/settings/route.tsx +10 -15
  587. package/src/routes/_nav/settings/team/route.lazy.tsx +1 -9
  588. package/src/routes/_nav/tags/$id/route.tsx +8 -0
  589. package/src/routes/_nav/tags/index.tsx +8 -0
  590. package/src/routes/_nav/tags/route.tsx +8 -0
  591. package/src/routes/_nav/tags/settings/route.tsx +9 -0
  592. package/src/routes/_nav/test-cases/route.tsx +2 -3
  593. package/src/routes/_nav/workspaces/$workspaceId/activities/route.lazy.tsx +69 -0
  594. package/src/routes/_nav/workspaces/$workspaceId/activities/route.tsx +28 -0
  595. package/src/routes/_nav/workspaces/$workspaceId/route.lazy.tsx +194 -99
  596. package/src/routes/_nav/workspaces/$workspaceId/route.tsx +12 -3
  597. package/src/routes/_nav/workspaces/$workspaceId/settings/route.lazy.tsx +75 -61
  598. package/src/routes/_nav/workspaces/index.lazy.tsx +196 -22
  599. package/src/routes/_nav/workspaces/route.tsx +2 -0
  600. package/src/routes/_public/index/route.tsx +5 -1
  601. package/src/routes/invite/$token/route.lazy.tsx +36 -37
  602. package/src/routes/share/$versionId/route.lazy.tsx +4 -11
  603. package/src/routes/share/compliance/$id/route.lazy.tsx +6 -8
  604. package/src/routes/share/law/$id/route.lazy.tsx +6 -8
  605. package/src/routes/share/prd/$prdId/route.tsx +10 -0
  606. package/src/server/__tests__/agent-client-graph.test.ts +4 -8
  607. package/src/server/ai-ports.ts +7 -6
  608. package/src/server/builtin-project.ts +43 -0
  609. package/src/server/design/sketch/file-storage.ts +1 -1
  610. package/src/server/pro-services.ts +1 -1
  611. package/src/server/serverFns/__tests__/workspace.test.ts +101 -0
  612. package/src/server/serverFns/activity.ts +15 -9
  613. package/src/server/serverFns/knowledge-public/bookmarks/list.ts +1 -1
  614. package/src/server/serverFns/knowledge-public/bookmarks/share.ts +3 -3
  615. package/src/server/serverFns/knowledge-public/compliance/share.ts +3 -3
  616. package/src/server/serverFns/knowledge-public/dictionary/share.ts +3 -3
  617. package/src/server/serverFns/knowledge-public/legal/share.ts +3 -3
  618. package/src/server/serverFns/knowledge.ts +27 -2
  619. package/src/server/serverFns/notifications.ts +3 -0
  620. package/src/server/serverFns/project.ts +48 -35
  621. package/src/server/serverFns/story/story-crud/bulk.ts +2 -2
  622. package/src/server/serverFns/story/story-crud.ts +9 -7
  623. package/src/server/serverFns/story/story-groups.ts +6 -6
  624. package/src/server/serverFns/workspace.ts +334 -13
  625. package/src/server-entry.ts +29 -0
  626. package/vite.shared.ts +4 -1
  627. package/src/components/layout/sidebar-03/logo.tsx +0 -41
  628. package/src/i18n/__tests__/detect.test.ts +0 -48
  629. package/src/i18n/__tests__/integration.test.tsx +0 -32
  630. package/src/i18n/__tests__/server.test.ts +0 -33
  631. package/src/i18n/client.ts +0 -32
  632. package/src/i18n/config.ts +0 -116
  633. package/src/i18n/detect.ts +0 -43
  634. package/src/i18n/locales/en/agents.json +0 -134
  635. package/src/i18n/locales/en/apps.json +0 -6
  636. package/src/i18n/locales/en/auth.json +0 -90
  637. package/src/i18n/locales/en/billing.json +0 -78
  638. package/src/i18n/locales/en/chat.json +0 -194
  639. package/src/i18n/locales/en/common.json +0 -242
  640. package/src/i18n/locales/en/dashboard.json +0 -38
  641. package/src/i18n/locales/en/design.json +0 -70
  642. package/src/i18n/locales/en/desktop.json +0 -35
  643. package/src/i18n/locales/en/display.json +0 -37
  644. package/src/i18n/locales/en/editor.json +0 -304
  645. package/src/i18n/locales/en/enterprise.json +0 -1
  646. package/src/i18n/locales/en/invite.json +0 -56
  647. package/src/i18n/locales/en/iterations.json +0 -92
  648. package/src/i18n/locales/en/knowledge.json +0 -462
  649. package/src/i18n/locales/en/mindmap.json +0 -28
  650. package/src/i18n/locales/en/notifications.json +0 -79
  651. package/src/i18n/locales/en/prd.json +0 -51
  652. package/src/i18n/locales/en/projects.json +0 -140
  653. package/src/i18n/locales/en/settings.json +0 -428
  654. package/src/i18n/locales/en/share.json +0 -20
  655. package/src/i18n/locales/en/story.json +0 -923
  656. package/src/i18n/locales/en/tags.json +0 -42
  657. package/src/i18n/locales/en/workspace.json +0 -90
  658. package/src/i18n/locales/zh/agents.json +0 -134
  659. package/src/i18n/locales/zh/apps.json +0 -6
  660. package/src/i18n/locales/zh/auth.json +0 -90
  661. package/src/i18n/locales/zh/billing.json +0 -78
  662. package/src/i18n/locales/zh/chat.json +0 -194
  663. package/src/i18n/locales/zh/common.json +0 -242
  664. package/src/i18n/locales/zh/dashboard.json +0 -38
  665. package/src/i18n/locales/zh/design.json +0 -70
  666. package/src/i18n/locales/zh/desktop.json +0 -35
  667. package/src/i18n/locales/zh/display.json +0 -37
  668. package/src/i18n/locales/zh/editor.json +0 -304
  669. package/src/i18n/locales/zh/enterprise.json +0 -1
  670. package/src/i18n/locales/zh/invite.json +0 -56
  671. package/src/i18n/locales/zh/iterations.json +0 -92
  672. package/src/i18n/locales/zh/knowledge.json +0 -462
  673. package/src/i18n/locales/zh/mindmap.json +0 -28
  674. package/src/i18n/locales/zh/notifications.json +0 -79
  675. package/src/i18n/locales/zh/prd.json +0 -51
  676. package/src/i18n/locales/zh/projects.json +0 -140
  677. package/src/i18n/locales/zh/settings.json +0 -428
  678. package/src/i18n/locales/zh/share.json +0 -20
  679. package/src/i18n/locales/zh/story.json +0 -923
  680. package/src/i18n/locales/zh/tags.json +0 -42
  681. package/src/i18n/locales/zh/workspace.json +0 -90
  682. package/src/i18n/server.ts +0 -18
  683. package/src/i18n/types.ts +0 -5
  684. package/src/server/serverFns/locale.ts +0 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allbluecn/web-app",
3
- "version": "0.9.4",
3
+ "version": "0.10.0",
4
4
  "license": "AGPL-3.0-or-later",
5
5
  "type": "module",
6
6
  "files": [
@@ -68,6 +68,9 @@
68
68
  "@fontsource-variable/geist-mono": "^5.3.0",
69
69
  "@iconify/react": "^6.0.2",
70
70
  "@lobehub/icons": "^5.16.0",
71
+ "@open-file-viewer/core": "^0.1.43",
72
+ "@open-file-viewer/react": "^0.1.43",
73
+ "@phosphor-icons/react": "^2.1.10",
71
74
  "@prisma/client": "^7.8.0",
72
75
  "@radix-ui/react-dialog": "^1.1.23",
73
76
  "@radix-ui/react-dropdown-menu": "^2.1.16",
@@ -139,11 +142,10 @@
139
142
  "class-variance-authority": "^0.7.1",
140
143
  "clsx": "^2.1.1",
141
144
  "cmdk": "^1.1.1",
145
+ "cn": "^0.2.6",
142
146
  "date-fns": "^4.4.0",
143
147
  "date-fns-tz": "^3.2.0",
144
148
  "emoji-picker-react": "^4.19.1",
145
- "i18next": "^25.10.10",
146
- "i18next-browser-languagedetector": "^8.2.1",
147
149
  "ioredis": "^5.11.0",
148
150
  "is-hotkey": "^0.2.0",
149
151
  "isomorphic-dompurify": "^3.22.0",
@@ -155,7 +157,7 @@
155
157
  "motion": "^12.42.2",
156
158
  "nanoid": "^5.1.11",
157
159
  "next-themes": "^0.4.6",
158
- "nitro": "3.0.260603-beta",
160
+ "nitro": "3.0.260903-beta",
159
161
  "ogl": "^1.0.11",
160
162
  "pdfjs-dist": "^6.3.289",
161
163
  "pinyin-pro": "^3.29.3",
@@ -165,7 +167,6 @@
165
167
  "react-day-picker": "^10.0.1",
166
168
  "react-dom": "19.2.4",
167
169
  "react-hotkeys-hook": "^5.3.2",
168
- "react-i18next": "^15.7.4",
169
170
  "react-markdown": "^10.1.0",
170
171
  "react-resizable-panels": "^4.11.1",
171
172
  "react-textarea-autosize": "^8.5.9",
@@ -178,16 +179,16 @@
178
179
  "three": "^0.180.0",
179
180
  "tw-animate-css": "^1.4.0",
180
181
  "zod": "^4.4.3",
181
- "@open-file-viewer/core": "^0.1.43",
182
- "@open-file-viewer/react": "^0.1.43",
183
- "@allbluecn/kernel": "0.5.2",
184
- "@allbluecn/database": "0.4.18"
182
+ "@allbluecn/database": "0.4.18",
183
+ "@allbluecn/kernel": "0.5.2"
185
184
  },
186
185
  "devDependencies": {
187
186
  "@babel/parser": "^8.0.4",
188
187
  "@babel/traverse": "^8.0.4",
189
188
  "@cloudflare/vite-plugin": "^1.40.1",
190
189
  "@eslint/js": "^9.39.4",
190
+ "@inlang/paraglide-js": "^2.25.0",
191
+ "@inlang/plugin-message-format": "^4.4.4",
191
192
  "@playwright/mcp": "^0.0.75",
192
193
  "@playwright/test": "^1.60.0",
193
194
  "@tailwindcss/vite": "^4.3.2",
@@ -238,6 +239,7 @@
238
239
  "predev": "pnpm assemble && node scripts/check-sdk-versions.mjs",
239
240
  "prebuild": "pnpm assemble && node scripts/check-sdk-versions.mjs",
240
241
  "pretest": "pnpm assemble",
241
- "pretest:run": "pnpm assemble"
242
+ "pretest:run": "pnpm assemble",
243
+ "typecheck": "node scripts/i18n/compile.mjs && tsc --noEmit"
242
244
  }
243
245
  }
Binary file
@@ -0,0 +1,43 @@
1
+ // SPDX-License-Identifier: AGPL-3.0-or-later
2
+ import { describe, it, expect } from 'vitest'
3
+ import { m } from '@/paraglide/messages.js'
4
+ import { getLocale, overwriteGetLocale, locales, baseLocale } from '@/paraglide/runtime.js'
5
+ import zh from '../../messages/zh.json'
6
+ import en from '../../messages/en.json'
7
+
8
+ describe('paraglide 消息编译', () => {
9
+ it('locales 与 baseLocale 配置正确', () => {
10
+ expect(locales).toEqual(['zh', 'en'])
11
+ expect(baseLocale).toBe('zh')
12
+ })
13
+
14
+ it('m 函数返回 zh 文案(setup.ts 已锁定 zh)', () => {
15
+ const key = Object.keys(zh)[0]!
16
+ const fn = (m as any)[key] as () => string
17
+ expect(fn()).toBe(zh[key as keyof typeof zh])
18
+ })
19
+
20
+ it('overwriteGetLocale 切换后返回 en 文案', () => {
21
+ overwriteGetLocale(() => 'en')
22
+ const key = Object.keys(en)[0]!
23
+ const fn = (m as any)[key] as () => string
24
+ expect(fn()).toBe(en[key as keyof typeof en])
25
+ // 恢复为 zh(setup.ts 的锁定值)
26
+ overwriteGetLocale(() => 'zh')
27
+ })
28
+
29
+ it('带插值的消息函数正确渲染参数', () => {
30
+ // 先切换到 en 以匹配找到的 en key
31
+ overwriteGetLocale(() => 'en')
32
+ const entry = Object.entries(en).find(([, v]) => typeof v === 'string' && /\{\w+\}/.test(v))
33
+ if (!entry) {
34
+ overwriteGetLocale(() => 'zh')
35
+ return
36
+ }
37
+ const [key, template] = entry as [string, string]
38
+ const varName = template.match(/\{(\w+)\}/)![1]!
39
+ const fn = (m as any)[key] as (args: Record<string, string>) => string
40
+ expect(fn({ [varName]: 'XX' })).toBe(template.replace(`{${varName}}`, 'XX'))
41
+ overwriteGetLocale(() => 'zh')
42
+ })
43
+ })
@@ -18,15 +18,33 @@
18
18
  /// <reference types="vitest/globals" />
19
19
  import '@testing-library/jest-dom/vitest'
20
20
 
21
- import i18next from 'i18next'
22
- import { initReactI18next } from 'react-i18next'
23
- import { resources } from '@/i18n/config'
21
+ import { overwriteGetLocale } from '@/paraglide/runtime.js'
22
+
23
+ // Global i18n key resolver for test mocks
24
+ const zhMessages = JSON.parse(
25
+ require('fs').readFileSync(
26
+ require('path').resolve(import.meta.dirname, '../../messages/zh.json'),
27
+ 'utf8'
28
+ )
29
+ )
30
+
31
+ export function resolveI18nKey(key: string): string {
32
+ const normalized = key.replace(/[:.]/g, '_')
33
+ if (zhMessages[normalized] !== undefined) return zhMessages[normalized]
34
+ for (const prefix of ['story_', 'display_', 'common_']) {
35
+ const prefixed = prefix + normalized
36
+ if (zhMessages[prefixed] !== undefined) return zhMessages[prefixed]
37
+ }
38
+ for (const prefix of ['common_', 'story_', 'display_']) {
39
+ if (normalized.startsWith(prefix)) {
40
+ const rest = normalized.slice(prefix.length)
41
+ if (zhMessages[rest] !== undefined) return zhMessages[rest]
42
+ }
43
+ }
44
+ return key
45
+ }
24
46
 
25
47
  beforeAll(() => {
26
- i18next.use(initReactI18next).init({
27
- lng: 'zh',
28
- fallbackLng: 'zh',
29
- resources,
30
- interpolation: { escapeValue: false },
31
- })
48
+ // jsdom 的 navigator.language 为 en-US,会导致中文文案断言失败
49
+ overwriteGetLocale(() => 'zh')
32
50
  })
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1188 1010" width="1188" height="1010">
3
+ <path d="M192.86 0.17C218.23 0.17 243.6 0.17 268.97 0.17C280.28 0.17 291.6 0.17 302.91 0.17C359.3 0.17 415.7 0.17 472.09 0.17C482.03 0.17 491.97 0.17 501.91 0.17C554.55 0.17 607.19 0.17 659.84 0.17C662.89 0.31 665.95 0.45 669 0.59C672 0.59 675 0.59 678 0.59C681.34 0.45 684.67 0.31 688.01 0.17C693.71 0.17 699.41 0.17 705.12 0.17C708.41 0.31 711.71 0.45 715 0.59C726.83 0.89 738.67 0.7 750.5 0.72C760.53 0.75 770.94 1.21 777.78 9.73C785.39 19.2 783.22 32.24 783.16 43.5C783.04 67.16 783.23 90.83 783.28 114.5C783.42 180.5 782.87 246.5 783.14 312.5C783.23 332.17 783.16 351.83 783.1 371.5C783.08 381.02 782.16 391.13 783.24 400.5C812.65 409.65 840.27 423.88 864.3 443.17C873.49 450.55 881.76 459.1 890.1 467.42C892.89 470.2 896.29 475.98 899.99 477.46C905.31 479.59 919.28 477.82 925.5 477.81C941.18 477.76 956.83 478.12 972.5 478.16C980.58 478.18 989.91 476.87 997.81 478.62C1007.75 480.82 1016.91 487.94 1025.66 492.85C1046.09 504.31 1066.16 516.38 1086.47 528.04C1093.65 532.16 1100.74 536.45 1107.94 540.54C1112.03 542.86 1117.48 545.3 1120.61 548.9C1122.73 551.33 1121.89 555.46 1121.88 558.5C1121.85 565.9 1123.9 576.89 1118.17 582.68C1112.02 588.89 1099.41 586.39 1091.5 586.35C1077.17 586.28 1062.83 586.54 1048.5 586.54C1041.24 586.53 1033.25 585.5 1026.14 586.5C1025.84 593.23 1027.6 600.06 1028.6 606.71C1030.74 620.97 1032.99 635.24 1034.86 649.51C1037.31 668.21 1040.25 686.86 1042.88 705.52C1044.84 719.39 1046.21 733.39 1048.42 747.26C1051.98 769.54 1055.68 792.02 1058.24 814.48C1060.4 833.49 1063.67 852.47 1066.28 871.45C1066.9 875.98 1070.27 888.15 1068.43 891.95C1066.85 895.2 1062.43 894.68 1059.5 894.74C1052.51 894.88 1045.48 895.01 1038.5 894.91C1035.49 894.86 1031.84 895.41 1029.88 892.63C1027.26 888.92 1025.83 874.79 1024.72 869.64C1021.56 854.96 1018.96 840.17 1016.21 825.43C1014.75 817.56 1014.13 808.98 1011.5 801.43C993.69 799.78 973.55 801.11 955.5 801.24C951.03 801.27 936.24 800.1 932.99 801.54C930.29 802.73 928.43 808.11 927.06 810.56C922.81 818.15 917.88 825.25 912.7 832.23C904.33 843.53 895.47 855.02 884.85 864.38C880.11 868.55 875.5 873.15 870.47 876.99C866.41 880.1 861.48 882.83 857.98 886.5C859.93 891.96 865.98 896.38 870.09 900.42C883.8 913.89 899.91 922.07 917.79 928.61C927.11 932.02 943.16 936.59 941.75 949.45C940.61 959.92 926.54 965.38 917.94 967.47C892.34 973.7 864.51 969.67 839.71 979.25C819.32 987.13 805.68 995.61 782.5 993.97C763.03 992.59 744.22 983.38 724.5 984.2C705.66 984.97 690.22 994.89 673.27 1001.75C664.99 1005.1 655.37 1006.51 646.5 1007.2C633.75 1008.19 620.91 1007.02 608.55 1003.83C595.85 1000.55 583.7 996.11 570.5 995.06C549.81 993.41 530.15 1001.82 510.16 1005.52C501.08 1007.2 491.69 1008.15 482.5 1008.95C477.71 1009.36 472.47 1008.64 467.9 1009.83C466.23 1009.83 464.55 1009.83 462.88 1009.83C460.92 1009.69 458.96 1009.55 457 1009.41C449.16 1008.78 441.33 1008.92 433.5 1008.05C417.86 1006.32 402.14 1002.62 387.38 997.19C339.18 979.42 304.06 936.18 296.11 885.5C293.26 867.3 293.23 848.84 294.92 830.5C295.74 821.56 299.15 811.32 297.69 802.5C286.44 801.21 274.64 802.43 263.32 802.5C239.68 802.65 216.14 802.98 192.5 802.98C182.96 802.98 172.79 803.97 163.36 802.41C161.15 802.05 159.58 800.64 157.45 800.35C151.03 799.48 143.98 800.27 137.5 800.28C128.08 800.3 118.37 799.73 109.02 800.5C105.64 807.46 105.48 816.84 103.86 824.45C100.73 839.11 98.15 853.94 95.29 868.65C94.41 873.21 92.25 890.49 89.7 893.2C87 896.06 75.53 894.72 71.5 894.77C67.13 894.82 56.13 896.72 53.02 893.52C49.57 889.97 52.36 882.8 52.91 878.5C54.76 863.81 57.02 849.14 59.1 834.5C65.25 791.09 72.09 747.8 78.78 704.47C80.52 693.26 81.44 681.9 83.37 670.73C86.76 651.06 89.4 631.32 92.27 611.55C93.45 603.43 96.53 594.62 95.78 586.5C74.11 585.52 52.2 586.66 30.5 586.58C22.79 586.55 10.61 588.61 4.57 582.94C-1.4 577.33 0.9 565.92 0.85 558.5C0.83 555.59 0.22 551.98 2.07 549.55C4.53 546.3 9.43 544.39 12.86 542.37C20.58 537.82 28.05 532.78 35.85 528.37C55.74 517.12 75.23 505.1 94.86 493.4C103.16 488.45 111.88 481.07 121.38 478.69C130.12 476.49 140.53 478.14 149.5 478.1C171.43 477.98 193.59 479.1 215.5 477.87C221.38 477.54 232.67 479.98 237.5 477.85C235.97 475.45 232.37 474.15 229.86 472.6C225.18 469.7 220.68 466.65 216.55 462.98C207.29 454.74 201.9 444.6 196.5 433.68C184.48 430.71 178.78 437.6 166.38 427.11C158.18 420.17 159.33 409.19 159.37 399.5C159.44 379.5 159.39 359.5 159.4 339.5C159.43 260.5 159.24 181.5 159.45 102.5C159.49 83.83 159.46 65.17 159.47 46.5C159.48 29.14 156.74 9.69 176.52 2.02C180.46 0.5 184.84 0.75 189 0.57C190.29 0.44 191.58 0.3 192.86 0.17ZM170 378.64C173.04 378.54 176.09 378.43 179.13 378.33C184.25 378.33 189.38 378.32 194.5 378.32C196.29 372.71 198.08 367.11 199.87 361.5C195.08 360.7 189.88 361.91 185.54 359.5C183.42 351.53 184.97 341.73 184.97 333.5C184.97 315.5 184.97 297.5 185.03 279.5C185.19 222.5 185.04 165.5 184.94 108.5C184.9 88.83 185.23 69.16 185.07 49.5C185.01 42.69 182.8 31.67 187.57 26.09C190.09 23.13 193.92 23.23 197.5 23.2C204.83 23.13 212.17 23.17 219.5 23.18C250.5 23.23 281.5 23.15 312.5 23.2C422.17 23.35 531.83 23.3 641.5 23.23C669.17 23.22 696.83 23.09 724.5 23.18C731.5 23.2 738.51 23.06 745.5 23.21C748.78 23.29 752.5 23.08 755.09 25.41C760.21 30 758.08 40.28 758.1 46.5C758.13 66.17 758.05 85.83 758.16 105.5C758.46 162.83 757.94 220.17 758.05 277.5C758.08 295.83 758.08 314.17 758.04 332.5C758.02 341.07 759.53 351.24 757.5 359.54C752.22 362.89 742.71 361.07 736.5 361.06C720.17 361.02 703.83 360.96 687.5 361.01C644.17 361.14 600.83 361.02 557.5 361.03C543.83 361.03 530.17 361.06 516.5 361.08C509.18 361.09 501.16 360.18 494 361.5C495.92 367.17 497.85 372.83 499.78 378.5C504.52 378.55 509.26 378.59 514 378.64C523.67 378.64 533.33 378.64 543 378.64C569.33 378.54 595.67 378.43 622 378.33C636 378.43 650 378.54 664 378.64C693.67 378.64 723.33 378.64 753 378.64C758.3 378.53 763.61 378.43 768.91 378.32C771.77 378.17 774.64 378.02 777.5 377.87C778.46 369.24 777.75 360.2 777.78 351.5C777.85 331.83 777.69 312.17 777.75 292.5C777.94 230.84 777.57 169.17 777.76 107.5C777.82 85.84 777.7 64.17 777.7 42.5C777.69 32.44 779.68 21.15 772.5 13C763.74 3.05 747.24 6.16 735.5 6.21C703.83 6.36 672.17 6.15 640.5 6.14C523.84 6.1 407.16 5.88 290.5 6.17C262.17 6.25 233.83 6.12 205.5 6.19C193.81 6.22 179.42 3.5 170.58 13.09C163.76 20.49 165.21 31.25 165.14 40.5C164.99 61.83 165.16 83.17 165.16 104.5C165.18 165.83 165.16 227.17 165.1 288.5C165.08 308.17 165.08 327.83 165.04 347.5C165.03 357.5 163.52 368.95 165.5 378.72C167 378.69 168.5 378.66 170 378.64ZM198.84 28.67C196.06 29.05 193.28 29.43 190.5 29.81C187.95 34.55 188.51 56.12 189.5 61.98C206.98 62.1 224.46 62.21 241.94 62.32C254.96 62.43 267.98 62.54 281 62.65C288 62.65 295 62.65 302 62.65C452.31 62.49 602.62 62.33 752.93 62.17C754.22 59.41 753.52 55.68 753.49 52.44C753.42 44.96 754.3 36.74 752.52 29.5C740.34 29.13 728.17 28.75 716 28.38C715 28.38 714 28.38 713 28.38C682.33 28.38 651.67 28.38 621 28.38C619.67 28.38 618.33 28.38 617 28.38C593.67 28.38 570.33 28.38 547 28.38C542.67 28.38 538.33 28.38 534 28.38C443.67 28.38 353.33 28.38 263 28.38C260.33 28.38 257.67 28.38 255 28.38C243.67 28.38 232.33 28.39 221 28.39C213.61 28.48 206.23 28.57 198.84 28.67ZM212.62 37.36C223.07 36.16 226.83 52.32 216.44 54.82C204.29 57.74 200.66 38.72 212.62 37.36ZM242.66 37.37C254.24 36.2 256.54 54.59 244.5 55.26C233.01 55.9 231.54 38.49 242.66 37.37ZM270.65 38.23C283.72 34.84 287.29 51.91 275.68 55.3C265.53 58.27 259.71 41.07 270.65 38.23ZM211.76 41.35C204.9 43.3 208.46 53.64 215.3 51.73C221.72 49.93 218.62 39.39 211.76 41.35ZM243.5 40.75C239.73 42.02 238.36 43.54 237.87 47.5C242.96 56.58 253.8 48 246.32 42.16C245.43 41.46 244.52 41.2 243.5 40.75ZM272.76 41.4C264.84 42.68 267.83 53.63 275.44 51.89C281.49 50.51 279.3 40.35 272.76 41.4ZM869.5 56.41C870.4 57.84 870.4 59.99 871.3 61.2C871.87 61.97 873.46 62.81 874.16 63.5C871.14 65.22 870.5 66.8 868.5 69.38C866.48 66.02 866.22 64.84 862.32 63.5C864.02 61.31 865.76 62.32 867.17 60.74C868.46 59.29 867.99 57.68 869.5 56.41ZM189.86 67.03C189.68 86.02 189.5 105.01 189.32 124C189.32 131 189.32 138 189.32 145C189.32 158.33 189.32 171.67 189.33 185C189.32 227 189.32 269 189.32 311C189.32 318 189.32 325 189.32 332C189.38 340.33 189.44 348.66 189.5 356.99C192.96 357.17 198.95 358.16 202.12 356.57C204.3 355.47 206.2 351.09 207.59 349.11C211.15 344.04 215.42 339.61 220.16 335.63C232.34 325.39 247.27 320.02 263 318.64C265.33 318.64 267.67 318.65 270 318.65C288.62 320.44 307.07 328.61 319.78 342.73C323.56 346.92 326.19 352.08 329.68 356.5C338.93 356.5 348.19 356.5 357.44 356.5C363.4 346.44 369.49 336.65 378.7 329.18C403.59 309.03 438.55 307.65 465.2 325.33C478.2 333.95 484.13 344.49 492.5 356.97C579.5 356.86 666.5 356.75 753.5 356.64C754.51 349.44 753.38 341.79 753.57 334.5C754 317.86 753.5 301.16 753.52 284.5C753.58 234.82 753.46 185.18 753.49 135.5C753.5 118.16 753.83 100.83 753.8 83.5C753.79 80.28 754.87 70.17 753.66 67.72C753.19 66.77 752.67 67.13 751.94 66.7C750.63 66.59 749.31 66.49 748 66.39C741 66.39 734 66.39 727 66.39C708.67 66.39 690.33 66.39 672 66.39C626 66.39 580 66.39 534 66.39C488.33 66.39 442.67 66.39 397 66.39C327.95 66.6 258.91 66.82 189.86 67.03ZM843.65 75.22C848.62 74.17 848.99 82.33 844.5 82.47C840.44 82.58 839.73 76.05 843.65 75.22ZM229.5 85.66C231.93 90.39 230.83 97.19 230.84 102.5C230.85 113.83 231.01 125.16 231.01 136.5C231.03 177.83 231.04 219.16 231.06 260.5C231.06 273.17 231.03 285.83 231.04 298.5C231.04 303.54 232.27 310.3 229.5 314.47C226.67 310.55 227.73 304.36 227.73 299.5C227.72 288.5 227.71 277.5 227.71 266.5C227.74 223.5 227.65 180.5 227.68 137.5C227.68 125.17 227.66 112.83 227.71 100.5C227.72 95.8 226.66 89.3 229.5 85.66ZM974.5 94.14C980.05 94.23 985.41 96.29 990.79 97.58C1001.44 100.15 1011.99 102.97 1022.57 105.78C1057.86 115.15 1093.07 125.23 1128.56 133.77C1142.34 137.09 1155.86 141.42 1169.63 144.75C1175.14 146.08 1182.76 146.7 1187.04 150.5C1186.33 162.79 1182.28 175.65 1179.25 187.58C1177.09 196.08 1175.54 204.74 1173.65 213.29C1171.38 223.56 1168.08 233.59 1165.32 243.73C1158.21 269.82 1149.8 295.43 1140.35 320.76C1134.33 336.9 1126.14 354.95 1113.93 367.42C1100.89 380.74 1082.3 388.88 1064.77 394.36C1056.5 396.95 1047.13 401.03 1038.45 401.61C1031.34 402.09 1022.99 397.45 1016.34 395.23C998.77 389.37 981.12 383.69 963.48 378C940.49 370.59 917.33 363.73 894.39 356.18C888.06 354.1 872.15 351.19 869.24 345.5C872.02 342.13 875.64 339.38 878.63 336.15C886.64 327.46 893.88 317.67 900.1 307.63C923.05 270.59 937.94 228.15 949.82 186.43C956.04 164.58 961.47 142.54 967.22 120.57C968.99 113.81 970.5 99.04 974.5 94.14ZM1181.22 154.5C1113.45 136.5 1045.68 118.5 977.91 100.5C975.03 106.58 972.42 122.16 970.88 129.46C967.12 147.24 961.91 164.93 956.78 182.36C943.98 225.94 929.78 270.35 905.86 309.33C898.04 322.07 888.5 333.08 879 344.5C882.76 347.75 890.5 348.58 895.49 349.97C905.53 352.75 915.33 356.38 925.35 359.26C951.78 366.85 977.7 376.44 1004.01 384.51C1013.76 387.5 1023.45 392.15 1033.5 393.87C1040.76 384.15 1045.03 370.79 1048.81 359.36C1050.47 354.32 1051.24 347.62 1054.32 343.5C1059.31 344.16 1064.08 346.9 1068.77 348.67C1077.7 352.05 1087.18 354.92 1096.45 357.16C1100.62 358.18 1107.48 360.93 1111.65 359.23C1115.63 357.6 1118.35 351.52 1120.55 348.06C1127.93 336.43 1133.19 323.37 1138.08 310.55C1147.68 285.38 1154.71 259.4 1161.95 233.51C1169.24 207.46 1175.84 181.01 1181.22 154.5ZM1038.18 159.5C1035.97 163.74 1031.41 161.21 1027.45 160.15C1017.84 157.58 1008.36 154.2 998.5 152.79C996.99 157.8 997.01 166.13 992.5 169.12C991.8 168.33 991.35 168.67 991.03 167.45C990.25 164.47 994.52 151.67 995.87 148.5C1001.68 147.5 1020.69 153.27 1027.47 155.06C1031.21 156.04 1036.14 156.28 1038.18 159.5ZM1135.2 211.5C1134.33 212.11 1134.62 212.45 1133.45 212.72C1131.4 213.2 1128.42 211.69 1126.44 211.22C1121.08 209.92 1115.67 208.71 1110.37 207.21C1089.18 201.23 1067.79 195.44 1046.41 190.21C1041.02 188.89 1027.34 187.05 1024.81 182.5C1025.6 181.72 1025.26 181.2 1026.53 180.79C1028.52 180.14 1031.58 181.39 1033.53 181.92C1039.03 183.42 1044.51 185 1050.01 186.49C1071.41 192.27 1092.88 197.87 1114.38 203.27C1117.39 204.02 1132.93 207.52 1134.36 209.1C1135.22 210.05 1134.82 210.41 1135.2 211.5ZM1126.5 239.61C1123.79 242.85 1121.14 241.24 1117.44 240.18C1109.52 237.91 1101.5 236.04 1093.55 233.86C1065.15 226.08 1036.64 218.47 1008.38 210.19C1001.92 208.29 995.48 206.24 988.97 204.54C986.36 203.86 982.92 203.84 981.5 201.34C983.89 197.83 987.02 199.68 990.65 200.76C998.21 203.02 1005.91 204.85 1013.52 206.92C1042.08 214.7 1070.57 222.66 1099.13 230.44C1105.92 232.29 1112.53 234.63 1119.37 236.26C1121.89 236.86 1125.44 237.03 1126.5 239.61ZM69.39 221.5C72.11 224.54 67.86 227.68 65.96 230.43C60.38 238.5 53.2 245.48 47.72 253.5C51.96 258.91 64.35 264.69 70.55 269.02C73.65 271.2 78.21 273.13 77.38 277.5C72.98 277.22 68.43 273.28 64.57 270.95C56.4 266.04 47.05 261.54 39.71 255.5C42.49 247.95 55.15 236.01 60.82 229.3C63.3 226.36 65.59 222.1 69.39 221.5ZM1117.36 269.5C1114.22 272.18 1111.17 270.32 1107.41 269.14C1099.87 266.76 1092.17 264.93 1084.56 262.78C1056.34 254.78 1028.09 246.91 999.98 238.54C993.79 236.69 987.55 234.87 981.29 233.32C978.08 232.52 975.25 232.28 973.28 229.5C975.82 226.9 979.19 228.15 982.49 229C990.55 231.08 998.36 234.01 1006.4 236.18C1033.5 243.51 1060.66 250.8 1087.6 258.79C1094.49 260.83 1113.81 263.94 1117.36 269.5ZM1106.93 298.5C1104.07 300.69 1100.77 299.07 1097.45 298.18C1089.64 296.09 1081.97 293.58 1074.2 291.41C1046.15 283.58 1018.1 275.79 990.24 267.32C984.01 265.43 977.7 263.87 971.44 262.11C969.31 261.51 965.6 261.08 963.93 259.54C963.18 258.85 963.25 258.33 962.79 257.5C965.87 254.55 968.84 256.5 972.7 257.73C980.34 260.15 988.02 262.55 995.75 264.67C1022.78 272.08 1049.71 279.84 1076.55 287.87C1084.01 290.11 1091.51 292.14 1098.92 294.54C1102.05 295.55 1105.03 295.9 1106.93 298.5ZM1091.5 326.52C1089.16 330.34 1086.2 328.16 1082.49 327C1075.24 324.73 1067.73 323.35 1060.53 320.92C1033.44 311.77 1005.68 304.63 978.4 296.15C972.34 294.26 966.37 292.04 960.26 290.34C956.51 289.3 953.15 289.37 951.95 285.5C955.09 283.42 958.57 285.42 962 286.5C969.86 288.98 977.84 291.16 985.62 293.85C992.25 296.14 999.14 297.61 1005.87 299.57C1024.86 305.11 1043.76 311.03 1062.69 316.76C1069.06 318.69 1075.39 320.7 1081.75 322.66C1084.82 323.6 1089.31 324.04 1091.5 326.52ZM59.5 323.07C61.19 324.93 61.06 326.92 61.63 329.5C63.69 330.17 65.76 330.83 67.82 331.5C65.91 334.72 63.15 332.99 61.65 335.12C60.27 337.07 61.49 338.9 59.5 340.64C57.8 338.88 57.94 336.97 57.67 334.5C54.8 334.14 52.96 334.37 50.85 332.5C53.25 329.94 54.24 330.84 57.78 330.5C58.16 327.66 57.8 325.05 59.5 323.07ZM417.64 324.45C368.12 329.45 347.84 391.46 366.3 432.24C373.66 448.51 388.53 460.59 405.05 466.47C413.68 469.54 423.09 470.35 432.21 469.52C440.31 468.79 447.61 466.09 454.66 462.16C507.1 432.91 499.83 344.76 441.74 326.69C433.88 324.24 425.82 323.62 417.64 324.45ZM887 959.68C887.96 959.55 888.92 959.42 889.88 959.3C899.93 958.89 923 957.58 929.02 948.5C927.09 944.42 922.72 943.42 918.73 941.72C911.63 938.7 904.2 936.55 897.17 933.35C875.71 923.59 864.03 909.75 847.5 894.12C843.36 895.38 839.57 898.14 835.76 900.27C829.58 903.75 822.86 907.13 816.24 909.68C795.39 917.72 774.24 921.94 752 923.33C748.33 923.33 744.67 923.34 741 923.34C733.46 922.78 726 922.06 718.5 921.01C714.22 920.41 709.85 919.07 705.5 919.16C698.53 919.3 691.43 922 684.5 922.87C670.74 924.6 657.22 923.97 643.56 921.75C579.5 911.31 530.42 856.57 506.26 799.27C491.06 763.23 485.92 724.59 476.52 686.92C473.36 674.23 468.56 661.95 463.59 649.89C455.61 630.51 437.74 604.44 418.5 594.93C417.17 597.26 415.83 599.58 414.5 601.91C412.22 601.88 409.39 601.84 408.47 599.11C407.26 595.52 411.4 578.35 412.38 573.77C416.62 554.01 421.18 534.26 424.65 514.35C426.57 503.36 428.17 492.34 430.76 481.5C421.17 481.06 414.49 480.51 405.04 478.5C401.61 486.39 401.22 498.69 399.72 507.45C396.52 526.15 393.43 544.86 390.3 563.58C389.13 570.59 387.85 577.63 386.19 584.55C385.29 588.27 384.87 591.9 381.5 594.02C375.64 592.8 376.95 588.5 376.88 583.5C365.26 577.35 342.59 583.98 331.5 589.75C328.3 586.81 327.97 581.66 326.84 577.55C324.65 569.58 322.79 561.57 320.79 553.55C314.87 529.88 308.35 506.42 302.73 482.67C301.14 475.94 298.65 469.35 297.75 462.5C301.93 458.55 306.82 455.58 310.8 451.28C320.73 440.52 326.73 426.95 328.74 412.44C333.75 376.12 311.23 333.22 271.5 330.05C264.15 329.46 256.82 330.37 249.74 332.34C203 345.36 187.14 411.3 217.01 447.48C226.22 458.63 239.83 468.46 254.5 470.27C262.33 471.24 270.02 469.69 277.77 469.5C279.79 472.16 280.8 475.15 280.04 478.5C278.19 479.18 276.35 479.86 274.5 480.54C274.54 487.1 282.28 506.27 284.76 513.69C290.66 531.32 295.18 549.41 300.31 567.27C303.29 577.62 308.67 591.07 309.69 601.5C266.89 636.38 256.68 709.5 303.15 746.39C313.97 754.98 326.2 761.17 339.41 765.21C345.17 766.97 359.31 768.7 362.85 772.5C352.08 775.98 338.4 774.98 327.62 771.8C322.31 770.23 316.95 766.66 311.5 766.43C315.06 784.07 307.97 813.77 306.31 832.5C302.96 870.17 308.71 907.51 330.29 939.23C364.44 989.4 434.03 1003.71 490.87 996.46C512.43 993.71 533 985.91 554.51 983.15C585.97 979.11 613.95 998.15 645.29 995.56C671.25 993.41 692.12 975.97 717.68 972.38C743.48 968.75 766.89 983.41 792.5 981.72C809.82 980.58 824.56 971.62 840.69 966.25C855.6 961.28 871.48 960.87 887 959.68ZM1056.5 349.14C1054.8 356.61 1053.62 364.05 1050.67 371.23C1047.55 378.83 1042.49 386.68 1040.48 394.5C1048.11 394.47 1056.65 390.92 1063.74 388.27C1079.27 382.47 1094.21 375.92 1107.27 365.5C1102.96 362.76 1093.12 362.6 1087.53 360.98C1081.22 359.16 1074.88 357.24 1068.85 354.6C1064.78 352.81 1060.67 350.45 1056.5 349.14ZM420 355.66C421.67 355.66 423.33 355.67 425 355.67C431.51 356.27 438.32 357.92 443.8 361.68C474.37 382.64 460.89 437.27 422.5 437.4C383.09 437.53 371.77 381.52 402.68 361.16C407.88 357.73 413.88 356.23 420 355.66ZM258.73 361.39C263.2 360.65 268.15 360.68 272.52 361.95C311.55 373.31 306.85 434.51 267.5 439.01C263.13 439.51 258.72 439.18 254.49 438.01C217.05 427.66 220.67 367.71 258.73 361.39ZM346 361.34C342.67 361.34 339.33 361.34 336 361.33C334.83 361.51 333.67 361.69 332.5 361.86C334.34 367.41 336.18 372.95 338.02 378.5C341.86 378.5 345.71 378.5 349.55 378.5C351.26 372.83 352.96 367.17 354.67 361.5C351.78 361.45 348.89 361.39 346 361.34ZM436 369.73C433.97 370.41 432.71 371.08 431.31 372.77C421.07 385.23 443.54 395.58 446.27 380.93C446.28 379.93 446.29 378.93 446.31 377.93C445.54 373.59 443.29 370.86 438.99 369.73C437.99 369.73 437 369.73 436 369.73ZM276.64 374.4C265.05 375.26 266.97 393.38 278.5 392.32C290.34 391.23 288.72 373.49 276.64 374.4ZM165.5 383.9C164.92 389.04 165.1 394.32 165.05 399.5C164.97 408.73 163.89 419.06 172.64 424.92C176.06 427.2 180.54 427.42 184.51 427.74C187.87 428.01 191.08 428.15 194.33 427.5C193.02 419.17 191.1 411 190.93 402.5C190.81 396.23 192.4 390.1 192.5 383.9C183.5 383.9 174.5 383.9 165.5 383.9ZM348.91 384.23C345.71 384.23 342.52 384.23 339.32 384.23C339.91 393.65 340.73 402.95 339.71 412.47C339.17 417.6 337.52 422.95 337.5 428.02C342.49 428.02 347.48 428.02 352.47 428.02C350.9 420.9 349.11 413.82 348.59 406.5C348.07 399.03 349.03 391.65 348.91 384.23ZM777.4 383.85C685.16 383.85 592.91 383.85 500.66 383.85C501.44 392.44 502.11 400.88 500.78 409.46C499.88 415.23 497.7 420.76 496.89 426.5C506.75 428.71 523.79 427.05 534.5 427.08C541.44 427.1 550.19 428.39 556.89 426.41C560.15 425.44 562.97 423.1 565.84 421.37C570.88 418.33 576.3 415.61 581.64 413.15C601.72 403.92 622.77 396.22 644.53 392.18C671.43 387.19 699.22 385.19 726.5 388.17C737.41 389.36 748.32 391.09 759.04 393.5C764.85 394.8 771.56 397.87 777.4 397.5C777.4 392.95 777.4 388.4 777.4 383.85ZM686.08 398.69C650.73 399.38 604.45 411.47 574.31 430.5C576.69 432.94 585.61 434.6 589.48 436.03C596.82 438.74 603.86 442.73 610.34 447.11C636.94 465.09 653.88 493.04 665.5 522.24C674.07 518.98 681.86 514.14 690.7 511.26C718.14 502.3 749.26 500.36 777.23 508.36C786.26 510.95 795.86 513.94 804.21 518.32C809.99 521.36 815.48 525.79 821.5 528.15C828.18 520.58 833.04 506.17 835.95 496.49C840.15 482.53 843.49 452.28 836.31 439.24C832.66 432.59 817.47 427.1 810.78 423.7C779.77 407.94 742.81 398.17 707.92 398.69C705.28 398.57 702.64 398.46 700 398.35C697.33 398.35 694.67 398.35 692 398.35C690.03 398.46 688.05 398.58 686.08 398.69ZM545.98 433C545.82 432.77 545.66 432.53 545.5 432.3C544.67 432.31 543.83 432.32 543 432.32C539.29 432.48 538.59 434.19 539.5 437.67C542.02 436.45 544.75 435.33 545.98 433ZM340.11 433.69C338.28 433.96 336.46 434.23 334.63 434.5C328.56 448.51 320.73 456.06 310.11 466.5C311.13 470.5 312.14 474.5 313.15 478.5C319.95 479.56 327.55 478.41 334.5 478.34C346.83 478.23 359.17 478.65 371.5 478.69C377.15 478.7 388.99 480.19 393.61 477.5C393.64 476.48 394.04 475.8 393.68 474.76C393.11 473.1 383.18 468.07 381.1 466.44C372.95 460.08 365.84 453.02 360.27 444.25C358.07 440.79 356.81 436.89 354.52 433.5C353.71 433.56 352.9 433.62 352.09 433.68C348.1 433.68 344.1 433.69 340.11 433.69ZM494.5 433.01C487.86 447.15 478.95 460.4 465.73 469.23C460.14 472.95 453.13 474.71 447.82 478.5C458.12 480.2 469.97 478.45 480.5 478.36C483.79 478.34 491 479.4 493.84 478.35C497.12 477.14 499.54 472.83 501.95 470.46C507.33 465.19 513 460.15 518.52 455.02C521.62 452.14 533.77 443.26 534.97 440.32C535.95 437.92 535.2 435.36 534.5 433.01C521.17 433.01 507.83 433.01 494.5 433.01ZM661.11 524.5C650.74 492.5 627.03 461.38 597.5 444.99C591.37 441.59 575.22 433.18 568.54 433.98C565.29 434.37 561.56 437.69 558.86 439.39C549.67 445.17 541.42 451.78 532.88 458.42C501.19 483.03 476.7 518.34 460.11 554.57C454.42 566.98 446 586.23 444.09 599.5C449.66 606.27 455.85 612.42 460.95 619.6C463.6 623.33 466.63 630.91 469.89 633.61C472.61 635.86 479.66 637.64 483.39 640.07C494.75 647.45 504.06 658.15 510.39 670.12C524.73 697.24 528.47 729.02 536.24 758.34C544.7 790.31 561.33 820.32 585.04 843.46C595.08 853.25 606.1 861.3 618.25 868.28C622.99 871 627.39 874.75 632.91 874.5C624.31 866.04 615.46 858.04 608.4 848.12C554.39 772.15 551.81 665.63 599.69 586.2C610.59 568.11 625.35 551.51 641.69 538.15C647.76 533.18 655.48 529.77 661.11 524.5ZM842.5 442.82C842.05 448.31 844.15 454.83 844.59 460.56C845.24 469.1 844.4 478.07 842.85 486.46C841.23 495.25 838.66 504.29 834.88 512.39C832.02 518.52 827.03 525.07 825.46 531.5C858.46 558.17 877.83 588.08 887.76 629.65C889.88 638.51 890.77 647.7 891.52 656.78C891.88 661.01 891.62 665.36 892.5 669.52C898.36 670.26 904.6 669.36 910.5 668.79C924.48 667.45 943.84 664.66 955.07 655.5C954.53 593.75 929.11 530.16 888.96 483.54C879.17 472.17 855.73 448.62 842.5 442.82ZM258 483.33C254.36 483.45 250.72 483.56 247.07 483.67C232.95 482.9 218.63 483.67 204.5 483.96C191.84 484.22 179.16 483.8 166.5 483.96C157.16 484.08 147.83 483.82 138.5 483.75C133.74 483.72 128.29 483.07 123.64 484.26C116.54 486.06 109.36 491.88 103.13 495.61C89.8 503.58 76.6 511.8 63.2 519.66C51.87 526.3 40.83 533.46 29.45 539.98C25.3 542.35 17.38 545.52 15.47 549.5C104.82 549.17 194.16 548.83 283.5 548.5C276.71 526.83 269.93 505.17 263.14 483.5C261.43 483.44 259.71 483.39 258 483.33ZM365.9 484.02C348.79 484.02 331.67 484.02 314.56 484.02C319.87 505.64 325.19 527.26 330.5 548.88C340.7 549.62 351.24 548.83 361.5 548.77C368.28 548.73 376.07 549.52 382.5 547.56C383.87 538.54 385.25 529.52 386.62 520.5C377.07 519.24 367.12 520.49 357.5 520.41C354.11 520.39 348.8 519.64 347.91 515.46C347.07 511.53 350.29 507.87 352.44 504.93C357.17 498.45 363.4 491.68 365.9 484.02ZM392.5 485.02C389.31 483.95 375.82 483.89 372.66 485.16C370.37 486.09 368.23 490.43 366.97 492.46C363.18 498.56 354.81 506.96 353.2 513.5C356.61 515.3 360.69 514.71 364.5 514.71C372.04 514.71 380.04 515.28 387.5 514.34C389.17 504.57 390.83 494.79 392.5 485.02ZM483 484.36C479.7 484.46 476.41 484.57 473.11 484.67C467.03 484.67 460.95 484.67 454.88 484.67C452.25 484.56 449.63 484.46 447 484.35C445.36 484.4 443.72 484.45 442.08 484.5C440.02 494.5 437.97 504.5 435.91 514.5C442.95 516.12 451.23 515.19 458.5 515.13C461.36 515.11 465.57 515.8 468.22 514.64C470.69 513.57 472.36 508.48 473.84 506.32C478.83 499.07 485.1 492.28 489.18 484.5C487.12 484.45 485.06 484.4 483 484.36ZM1109.13 549C1104.95 545.15 1098.68 542.68 1093.77 539.72C1082.9 533.16 1071.78 526.96 1060.68 520.82C1045.76 512.57 1031.15 503.64 1016.36 495.15C1010.45 491.76 1004.58 486.53 998.03 484.5C990.04 482.02 977.04 483.96 968.5 483.97C954.5 483.99 940.5 483.93 926.5 483.97C919.57 483.99 911.87 483.12 905.13 484.5C909.91 494.39 918.66 502.64 924.39 512.13C928.43 518.82 932.37 525.59 935.94 532.55C938.71 537.94 940.96 544.12 944.5 549C999.38 549 1054.25 549 1109.13 549ZM880.33 675.13C880.33 670.39 880.33 665.65 880.33 660.9C880.22 651.53 878.39 642.4 876.35 633.28C860.69 563.2 803.27 509.81 728.56 515.4C703.79 517.26 680.94 526.27 660.23 539.7C644.77 549.73 628.87 563.55 619.23 579.5C647.48 585.12 672.64 607.31 690.39 629.13C694.05 633.63 696.78 638.87 700.5 643.3C705.53 640.42 709.37 635.13 714.09 631.58C721.87 625.74 731.95 621.68 741.56 620.29C780.98 614.57 810.28 648.27 806.05 686.5C803.71 707.63 786.74 736.16 761.48 729.09C747.66 725.21 740.62 711.17 743.04 697.51C744.14 691.32 750.18 680.81 757 687.5C755.47 693.9 751.99 698.35 753.11 705.48C754.77 716.08 767.02 721.74 776.29 716.78C786.44 711.35 793.08 699.61 794.72 688.45C799.64 654.84 772.59 623.09 737.55 633.15C712.68 640.28 696.25 666.06 691.56 690.2C683.63 730.96 694.93 771.43 730.19 795.34C738.56 801.02 748.54 804.61 758.48 806.22C829.54 817.78 879.65 737.36 880.33 675.13ZM464.98 520.5C454.82 520.5 444.66 520.5 434.5 520.5C432.68 529.97 430.86 539.44 429.04 548.91C436.01 548.91 442.98 548.91 449.95 548.91C454.96 539.44 459.97 529.97 464.98 520.5ZM447.05 554.17C440.75 554.17 434.44 554.17 428.14 554.17C426.19 563.94 424.23 573.72 422.28 583.5C426.35 585.75 430.43 587.99 434.5 590.24C438.68 578.21 442.87 566.19 447.05 554.17ZM134 580.66C138.38 580.55 142.77 580.44 147.15 580.33C195.68 580.06 244.21 579.78 292.74 579.5C290.33 571.5 287.92 563.5 285.51 555.5C192.69 555.5 99.86 555.5 7.03 555.5C6.64 560.33 5.41 576.22 9.39 579.13C12.08 581.1 16.33 580.61 19.5 580.63C27.5 580.67 35.5 580.55 43.5 580.54C73.62 580.49 103.9 581.66 134 580.66ZM332.5 555.06C334.17 561.49 335.83 567.92 337.5 574.35C344.69 572.25 351.97 570.26 359.5 569.97C365.73 569.74 372.09 570.82 378.18 570.5C378.97 565.35 379.76 560.2 380.55 555.06C364.53 555.06 348.52 555.06 332.5 555.06ZM1114.56 555.11C1058.52 555.11 1002.48 555.11 946.44 555.11C949.13 563.37 951.81 571.63 954.5 579.9C966.61 581.37 979.24 580.33 991.45 580.48C1018.11 580.81 1044.84 580.96 1071.5 580.55C1081.17 580.4 1090.83 580.45 1100.5 580.36C1104.05 580.33 1109.81 581.29 1112.92 579.42C1115.25 578.02 1115.03 574.82 1115.15 572.5C1115.46 566.75 1115.83 560.67 1114.56 555.11ZM617.5 582.06C607.57 590.75 600.79 607.07 595.44 618.93C575.21 663.84 572.92 718.1 583.67 765.71C586.57 778.54 591.52 790.73 596.6 802.83C598.99 808.5 601.26 815.46 605.5 819.96C627.91 813.16 654.08 793.52 672.26 778.74C677.7 774.31 682.59 769.44 688.42 765.5C685.64 755.69 681.35 746.3 679.4 736.23C675.49 716.03 677.09 695.28 683.27 675.71C685.11 669.87 687.4 664.32 690.55 659.05C693.02 654.91 696.27 650.99 697.96 646.5C676.65 620.1 651.59 591.49 617.5 582.06ZM274.02 586.68C237.51 586.75 201.01 586.82 164.5 586.89C163.09 594.7 164.09 603.5 164.07 611.5C164.04 627.83 164.11 644.17 164.07 660.5C164.06 666.17 164.03 671.83 164.04 677.5C164.05 680.18 163.31 682.77 166 683.67C170.05 683.56 174.11 683.44 178.16 683.33C182.08 683.33 186 683.33 189.91 683.33C202.61 683.45 215.3 683.56 228 683.67C239.1 683.62 250.19 683.56 261.29 683.5C261.95 679.57 261.56 675.49 261.92 671.5C262.56 664.54 263.76 657.53 265.35 650.73C267.85 640.03 273.46 630.3 278.1 620.5C269.22 618.35 254.15 619.89 244.5 619.91C240.09 619.91 233.74 621.18 230.12 618.5C230.39 617.57 230 616.93 230.79 616.17C232.86 614.16 239.91 615.45 242.5 615.48C255.17 615.64 267.86 615.41 280.5 616.01C285.87 609.51 291.24 603 296.61 596.5C295.91 593.37 295.2 590.24 294.5 587.12C290 586.85 285.5 586.59 281 586.33C278.67 586.45 276.34 586.56 274.02 586.68ZM1035.95 888.28C1038.97 888.4 1041.98 888.52 1045 888.65C1050.65 888.6 1056.29 888.55 1061.94 888.5C1047.69 788.17 1033.44 687.83 1019.18 587.5C1006.5 587.17 993.81 586.83 981.13 586.5C979.66 590.38 983.22 600.85 983.93 605.5C986.56 622.89 990.12 640.14 992.84 657.51C1001.34 711.7 1012.58 765.46 1021.89 819.51C1024.6 835.23 1027.91 850.84 1030.86 866.53C1032.11 873.17 1032.43 882.65 1035.95 888.28ZM140.65 587.04C127.96 587.04 115.28 587.04 102.59 587.04C87.51 687.63 72.42 788.23 57.34 888.82C66.4 888.82 75.45 888.82 84.5 888.82C88.44 873.97 90.37 858.64 93.25 843.56C100.07 807.83 106.92 772.09 113.67 736.35C115.67 725.79 116.97 715.06 119.16 704.54C124.47 679.08 128.59 653.36 133.45 627.8C135.72 615.8 140.48 598.74 140.65 587.04ZM158.46 587.49C154.65 586.51 150.97 586.64 147.12 587.5C134.59 656.96 122.06 726.42 109.53 795.87C125.84 795.87 142.15 795.87 158.46 795.87C158.46 726.41 158.46 656.95 158.46 587.49ZM956.5 586.82C956.32 593.06 960.54 605.54 961.85 612.54C964.77 628.03 966.36 643.73 966.84 659.5C967.91 694.67 960.89 729.82 949.44 762.93C945.59 774.07 940.24 784.61 935.81 795.5C943.49 797.88 953.39 796.41 961.5 796.42C977.38 796.46 993.66 797.4 1009.5 796.41C1011.03 790.07 1008.48 781.96 1007.14 775.46C1004.08 760.57 1001.88 745.43 999.12 730.48C993.29 698.87 987.1 667.23 982.25 635.44C979.8 619.35 977.84 602.69 974.07 586.82C968.21 586.82 962.36 586.82 956.5 586.82ZM475.5 648.95C476.08 654.12 479.83 659.74 481.62 664.8C485.76 676.47 488.83 688.64 491.73 700.67C494.01 710.09 495.45 719.75 497.39 729.25C501.47 749.23 506.96 769.33 514.1 788.46C528.5 827.07 555.18 863.01 589.11 886.42C609.09 900.2 632.15 908.79 656.21 911.46C663.78 912.3 677.39 913.96 684.16 910.5C678.79 906.98 672.37 904.79 666.63 901.87C661.69 899.35 657.15 895.44 651.91 893.57C641.72 889.95 631.15 887.92 621.26 883.26C586.96 867.1 560.61 838.79 542.63 805.88C523.73 771.27 520.87 732 508.24 695.31C502.35 678.21 492.75 657.37 475.5 648.95ZM389.5 677.97C383.42 683.14 378.41 688.73 371.25 692.73C356.79 700.79 337.87 700.95 322.77 694.67C315.18 691.51 309.98 685.58 303.5 680.95C298.01 684.35 289.51 694.46 286.7 681.5C290.19 676.95 295.7 674.43 299.1 669.65C300.87 667.18 302.28 661.92 305.17 660.65C307.68 659.54 309.9 660.92 311.71 662.5C312.68 666.86 311.41 669.5 310.19 673.5C315.68 678.19 322.11 682.97 328.91 685.54C348.61 693 368.87 684.59 383 670.5C381.19 666.44 374.66 656.24 382.82 654.48C388.23 653.32 393.04 665.01 397.16 668.37C400.25 670.89 407.76 672.41 408.55 676.77C408.83 678.28 408.22 679.65 407.33 680.83C402.9 686.77 394.25 680.09 389.5 677.97ZM955.3 676.88C955.42 674.25 955.54 671.63 955.66 669C955.6 666.67 955.55 664.33 955.5 662C951.58 663.1 947.94 665.11 944.1 666.55C937.47 669.04 930.46 670.71 923.49 671.94C917.59 672.99 911.49 673.66 905.5 673.92C900.98 674.11 896.38 673.69 891.96 674.5C890.43 686.89 889.7 699.09 886.69 711.3C879.05 742.27 862.52 771.79 838.28 792.8C832.94 797.42 826.79 801.62 820.71 805.21C817.93 806.86 814.79 807.76 812.12 809.5C813.76 814.08 816.48 818.44 818.63 822.83C822.98 831.73 826.99 841.15 829.71 850.69C831.46 856.84 833 863.17 833.9 869.5C834.66 874.81 834.35 880.46 835.5 885.64C840.61 883.64 844.93 880.01 849.45 876.96C861.62 868.76 872.28 859.49 882.67 849.18C925.45 806.74 953.68 736.77 955.3 676.88ZM164.07 687.9C164.07 724.26 164.07 760.62 164.07 796.97C208.88 796.97 253.69 796.97 298.5 796.97C300.84 788.43 300.6 778.33 300.22 769.5C300.09 766.64 300.6 762.64 299.48 759.97C298.39 757.37 291.91 753.29 289.68 750.79C283.01 743.3 277.72 735.5 272.5 726.96C262.19 726.81 251.83 727 241.5 726.96C237.16 726.95 232.52 728 229.63 724.5C233.14 722.03 238.21 722.89 242.5 722.86C251.84 722.8 261.17 723.01 270.5 723.07C269.64 717.8 266.65 712.6 265.28 707.33C263.62 700.91 262.87 694.35 261.5 687.9C229.02 687.9 196.55 687.9 164.07 687.9ZM690.5 769.36C685.89 770.99 681.65 776.18 678 779.51C671.74 785.22 664.98 790.57 658.23 795.69C642.61 807.54 625.08 815.26 608 824.5C608.81 829.74 612.8 834.35 615.8 838.7C623.6 850.03 633.25 860.84 643.5 869.99C684.22 906.32 736.85 919.36 789.77 905.37C802.4 902.03 819.29 896.24 829.88 888.5C831.06 869.44 824.77 849.31 817.6 831.86C814.89 825.26 812.24 817.5 807.5 812.09C803.32 812.79 799.42 814.59 795.3 815.67C787.92 817.6 780.13 818.65 772.5 818.83C749.96 819.37 727.5 810.92 710.95 795.55C702.66 787.85 696.84 778.59 690.5 769.36Z" fill="#050504" fill-rule="evenodd" stroke="#050504" stroke-width="0.25" stroke-linejoin="round"/>
4
+ <path d="M189 0.17C190.29 0.17 191.58 0.17 192.86 0.17C191.58 0.3 190.29 0.44 189 0.57C189 0.44 189 0.3 189 0.17ZM268.97 0.17C280.28 0.17 291.6 0.17 302.91 0.17C291.6 0.17 280.28 0.17 268.97 0.17ZM472.09 0.17C482.03 0.17 491.97 0.17 501.91 0.17C491.97 0.17 482.03 0.17 472.09 0.17ZM659.84 0.17C662.89 0.17 665.95 0.17 669 0.17C669 0.31 669 0.45 669 0.59C665.95 0.45 662.89 0.31 659.84 0.17ZM678 0.17C681.34 0.17 684.67 0.17 688.01 0.17C684.67 0.31 681.34 0.45 678 0.59C678 0.45 678 0.31 678 0.17ZM705.12 0.17C708.41 0.17 711.71 0.17 715 0.17C715 0.31 715 0.45 715 0.59C711.71 0.45 708.41 0.31 705.12 0.17ZM221 28.39C213.61 28.48 206.23 28.57 198.84 28.67C206.23 28.57 213.61 28.48 221 28.39ZM255 28.38C257.67 28.38 260.33 28.38 263 28.38C262.83 28.59 262.67 28.79 262.5 29C260.17 29 257.83 29 255.5 29C255.33 28.79 255.17 28.59 255 28.38ZM534 28.38C538.33 28.38 542.67 28.38 547 28.38C546.83 28.59 546.67 28.79 546.5 29C542.5 29 538.5 29 534.5 29C534.33 28.79 534.17 28.59 534 28.38ZM617 28.38C618.33 28.38 619.67 28.38 621 28.38C620.83 28.58 620.67 28.79 620.5 29C619.5 29 618.5 29 617.5 29C617.33 28.79 617.17 28.59 617 28.38ZM713 28.38C714 28.38 715 28.38 716 28.38C715.83 28.59 715.67 28.79 715.5 29C714.67 28.79 713.83 28.59 713 28.38ZM241.94 62.32C254.96 62.43 267.98 62.54 281 62.65C267.98 62.54 254.96 62.43 241.94 62.32ZM752.93 62.17C602.62 62.33 452.31 62.49 302 62.65C452.31 62.49 602.62 62.33 752.93 62.17ZM397 66.39C442.67 66.39 488.33 66.39 534 66.39C488.33 66.39 442.67 66.39 397 66.39ZM672 66.39C690.33 66.39 708.67 66.39 727 66.39C708.67 66.39 690.33 66.39 672 66.39ZM748 66.39C749.31 66.49 750.63 66.59 751.94 66.7C750.8 66.8 749.65 66.9 748.5 67C748.33 66.8 748.17 66.59 748 66.39ZM189.86 67.03C189.68 86.02 189.5 105.01 189.32 124C189.5 105.01 189.68 86.02 189.86 67.03ZM189.32 145C189.32 158.33 189.32 171.67 189.33 185C189.32 171.67 189.32 158.33 189.32 145ZM189.32 311C189.32 318 189.32 325 189.32 332C189.32 325 189.32 318 189.32 311ZM270 318.65C267.67 318.65 265.33 318.64 263 318.64C263.17 318.43 263.33 318.21 263.5 318C265.5 318 267.5 318 269.5 318C269.67 318.22 269.83 318.43 270 318.65ZM425 355.67C423.33 355.67 421.67 355.66 420 355.66C420.17 355.44 420.33 355.22 420.5 355C421.83 355 423.17 355 424.5 355C424.67 355.22 424.83 355.45 425 355.67ZM336 361.33C339.33 361.34 342.67 361.34 346 361.34C345.83 361.56 345.67 361.78 345.5 362C342.5 362 339.5 362 336.5 362C336.33 361.78 336.17 361.55 336 361.33ZM438.99 369.73C437.99 369.73 437 369.73 436 369.73C437 369.73 437.99 369.73 438.99 369.73ZM179.13 378.33C176.09 378.43 173.04 378.54 170 378.64C170.17 378.42 170.33 378.21 170.5 378C173.38 378.11 176.25 378.22 179.13 378.33ZM446.31 377.93C446.29 378.93 446.28 379.93 446.27 380.93C446.28 379.93 446.29 378.93 446.31 377.93ZM543 378.64C533.33 378.64 523.67 378.64 514 378.64C523.67 378.64 533.33 378.64 543 378.64ZM622 378.33C636 378.43 650 378.54 664 378.64C650 378.54 636 378.43 622 378.33ZM768.91 378.32C763.61 378.43 758.3 378.53 753 378.64C753.17 378.43 753.33 378.21 753.5 378C758.64 378.11 763.77 378.22 768.91 378.32ZM692 398.35C691.83 398.57 691.67 398.78 691.5 399C689.69 398.9 687.89 398.79 686.08 398.69C688.05 398.58 690.03 398.46 692 398.35ZM700 398.35C702.64 398.46 705.28 398.57 707.92 398.69C705.45 398.79 702.97 398.9 700.5 399C700.33 398.78 700.17 398.57 700 398.35ZM543 432.32C543.83 432.32 544.67 432.31 545.5 432.3C545.66 432.53 545.82 432.77 545.98 433C545.16 433 544.33 433 543.5 433C543.33 432.77 543.17 432.55 543 432.32ZM352.09 433.68C348.1 433.68 344.1 433.69 340.11 433.69C344.1 433.69 348.1 433.68 352.09 433.68ZM258 483.33C257.83 483.56 257.67 483.78 257.5 484C254.02 483.89 250.55 483.78 247.07 483.67C250.72 483.56 254.36 483.45 258 483.33ZM447 484.35C449.63 484.46 452.25 484.56 454.88 484.67C452.42 484.78 449.96 484.89 447.5 485C447.33 484.78 447.17 484.57 447 484.35ZM483 484.36C482.83 484.57 482.67 484.79 482.5 485C479.37 484.89 476.24 484.78 473.11 484.67C476.41 484.57 479.7 484.46 483 484.36ZM147.15 580.33C142.77 580.44 138.38 580.55 134 580.66C134.17 580.44 134.33 580.22 134.5 580C138.72 580.11 142.93 580.22 147.15 580.33ZM281 586.33C280.83 586.55 280.67 586.78 280.5 587C278.34 586.89 276.18 586.79 274.02 586.68C276.34 586.56 278.67 586.45 281 586.33ZM880.33 660.9C880.33 665.65 880.33 670.39 880.33 675.13C880.33 670.39 880.33 665.65 880.33 660.9ZM955.66 669C955.54 671.63 955.42 674.25 955.3 676.88C955.2 674.42 955.1 671.96 955 669.5C955.22 669.33 955.44 669.17 955.66 669ZM178.16 683.33C174.11 683.44 170.05 683.56 166 683.67C166.17 683.44 166.33 683.22 166.5 683C170.39 683.11 174.27 683.22 178.16 683.33ZM189.91 683.33C202.61 683.45 215.3 683.56 228 683.67C215.3 683.56 202.61 683.45 189.91 683.33ZM1035.95 888.28C1038.8 888.19 1041.65 888.09 1044.5 888C1044.67 888.22 1044.83 888.43 1045 888.65C1041.98 888.52 1038.97 888.4 1035.95 888.28ZM741 923.34C744.67 923.34 748.33 923.33 752 923.33C751.83 923.56 751.67 923.78 751.5 924C748.17 924 744.83 924 741.5 924C741.33 923.78 741.17 923.56 741 923.34ZM889.88 959.3C888.92 959.42 887.96 959.55 887 959.68C887.17 959.45 887.33 959.23 887.5 959C888.29 959.1 889.09 959.2 889.88 959.3ZM457 1009.41C458.96 1009.55 460.92 1009.69 462.88 1009.83C460.92 1009.83 458.96 1009.83 457 1009.83C457 1009.69 457 1009.55 457 1009.41Z" fill="#ffffff" fill-rule="evenodd" stroke="#ffffff" stroke-width="0.25" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1022 1089" width="1022" height="1089">
3
+ <path d="M687.02 122.29C688.35 122.41 689.67 122.53 691 122.65C708.03 124.53 725.28 125.03 742.36 126.38C761.1 127.87 779.78 130.24 798.5 131.97C813.83 133.4 833.19 132.46 845.8 142.68C851.86 147.6 856.67 153.88 861.81 159.7C871.19 170.31 880.4 181.16 889.11 192.35C913.08 223.14 936.8 254.07 960.25 285.24C966.72 293.83 978.02 308.04 981.8 317.68C985.56 327.26 980.25 333.58 970.88 335.39C967.36 336.06 963.59 336.14 960 336.38C958.97 336.48 957.94 336.58 956.91 336.68C955.23 336.69 953.54 336.7 951.86 336.7C950.55 336.7 949.24 336.69 947.92 336.69C945.49 336.23 943.28 336.6 940.88 336.52C935.91 336.33 930.75 335.06 925.81 334.54C915.08 333.41 899.44 327.77 889.09 332.62C886.49 333.83 884.3 337.2 882.75 339.5C884 343.02 886.42 345.96 888.33 349.19C893.41 357.79 898.48 366.72 902.66 375.77C914.61 401.63 924.46 428.77 930.82 456.57C954.12 558.51 937.51 668.26 879.87 756.34C869.8 771.73 859.1 787.53 846.46 800.96C840.02 807.81 833.32 814.51 826.53 821.02C822.73 824.65 818.02 828.32 814.97 832.5C818.51 836.73 824.01 840.39 828.17 844.37C836.55 852.37 843.98 860.83 854.74 865.76C871.84 873.59 908.95 876.22 904.94 903.5C903.58 912.7 895.65 920.02 888.06 924.56C870.31 935.2 849.42 935.35 829.5 937.18C799.6 939.92 779.11 963.38 751.18 971.6C739.93 974.91 728.21 975.84 716.5 974.93C704.18 973.97 691.94 971.03 679.5 972.22C639.79 976.01 616.83 1006.17 580.34 1015.75C565.67 1019.59 550.48 1019.69 535.51 1017.85C519.11 1015.84 503.13 1012.19 486.55 1015.18C469.22 1018.31 454.07 1026.98 437.92 1033.44C420.92 1040.23 403.6 1046.08 385.46 1048.81C326 1057.73 263.97 1044.33 210.4 1018.13C190.26 1008.28 161.14 990.63 149.62 970.89C140.83 955.82 145.51 945.85 142.5 931.1C125.23 935.48 103.41 917.48 105.65 899.5C102.81 896.69 98.49 895.85 95.62 892.87C85.95 882.79 90.72 869.67 97.08 859.5C94.58 854 88.55 849.26 89.05 842.51C89.35 838.52 92.4 834.19 94.4 830.85C98.52 823.98 102.6 817.16 107 810.46C124.16 784.37 146.18 761.61 162.09 734.64C167.09 726.17 180.36 710.63 179.5 701.01C165.99 689.67 153.21 677.88 143.67 662.8C113.61 615.33 122.08 547.55 151.14 501.66C158.7 489.71 167.63 478.13 177.56 468.06C180.29 465.3 183.58 463.26 186.25 460.5C185.47 448.77 181.72 436.8 179.32 425.29C174.98 404.45 169.28 384.02 164.24 363.35C160.05 346.14 155.2 329.23 150.42 312.2C148.12 304.01 146.55 294.24 142.5 286.79C136.66 285.33 130.56 285.37 124.67 283.74C103.85 277.97 83.65 262.79 71.08 245.36C52.9 220.17 44.78 187.22 49.2 156.54C56.32 107.1 96.29 62.38 146.54 55.21C156.57 53.77 166.6 54.14 176.55 55.8C193.12 58.56 208.05 65.98 221.09 76.45C223.98 78.77 226.18 82.1 228.71 84.79C251.71 109.24 262.54 136.63 262.07 170.5C261.96 178.91 261.58 187.2 259.88 195.47C254.66 220.98 242.24 243.86 222.98 261.48C218.07 265.97 211.79 268.35 206.89 272.5C217.76 326.73 228.63 380.96 239.5 435.19C242.79 434.72 245.51 433.31 248.65 432.21C253.65 430.45 258.76 429.37 264 428.67C264.99 428.55 265.97 428.43 266.96 428.3C273.69 428.95 280.42 429.6 287.15 430.24C287.93 430.42 288.72 430.59 289.5 430.77C289.67 430.55 289.84 430.33 290.01 430.11C291.59 426.71 292.2 422.36 293.24 418.63C296.29 407.67 299.43 396.74 302.33 385.74C308.58 361.97 316.16 338.52 322.33 314.73C324.66 305.76 326.94 296.77 329.42 287.83C330.46 284.11 333.03 279.2 331.96 275.5C282.86 247.7 265.68 187.46 281.39 134.81C287.07 115.78 298.48 100.47 311.54 86.04C313.11 84.31 314.35 82.24 316.14 80.7C319.94 77.41 324.29 74.86 328.37 71.94C338.33 64.81 348.84 58.61 360.77 55.35C384.72 48.79 411.7 51.86 433.28 64.24C439.95 68.06 445.91 72.73 451.42 78.07C455.08 81.62 458.19 85.8 463.44 85.5C463.43 69.17 487.41 55.48 502.5 55.98C511.12 56.27 516.94 58.43 524.27 62.3C529.89 65.27 535.79 67.69 540.92 71.57C552.53 80.35 560.66 94.74 559.76 109.5C578.3 110.62 585.66 113.07 593.5 130.98C597.94 130.49 601.94 128.3 606.5 128.01C619.12 127.2 630.46 133.8 638.5 142.95C638.26 138.1 635.36 133.81 637.32 128.78C639.21 123.94 645.56 122.26 650.08 121.53C662.35 119.52 674.72 122.18 687.02 122.29ZM379.77 66.44C339.44 71.66 305.9 100.76 294.02 139.54C291.29 148.48 290.35 158.21 289.84 167.5C287.37 212.25 309.13 253.3 352.91 268.56C362.35 271.85 371.46 273.45 381.5 273.33C420.09 272.89 453.4 245.7 468.76 211.26C473.81 199.94 477.54 186.92 477.94 174.5C478.02 172.08 477.4 169.87 477.35 167.52C477.29 164.13 478.75 160.79 478.8 157.51C478.95 147.36 472.58 128.85 467.7 119.78C451.07 88.9 416.81 61.64 379.77 66.44ZM537.5 123.87C539.83 122.66 548.32 116.19 549.38 113.84C553.56 104.53 544.87 89.48 538.94 82.59C532.52 75.15 523.17 68.94 513.46 67.16C503.3 65.29 491.62 69.67 482.49 73.97C479.17 75.54 474.45 77.73 472.5 81.01C469.86 85.44 469.07 92.5 468.93 97.5C472.12 101.6 475.31 105.7 478.5 109.8C484.32 107.57 489.47 103.76 495.79 102.39C515.98 98 526.97 108.75 537.5 123.87ZM277.92 443.72C276.94 443.58 275.97 443.44 275 443.3C264.51 442.43 253.67 444.2 244.08 448.55C239.6 450.59 236.11 454.66 231.5 456.04C228.33 452.59 228.33 446.28 227.67 441.62C225.98 429.86 223.24 418.2 220.78 406.58C210.83 359.68 200.42 312.68 192.04 265.5C194.78 263.23 198.31 261.82 201.43 259.99C205.54 257.58 209.35 254.59 212.94 251.47C230.59 236.08 243.58 213.37 247.71 190.36C257.1 138.08 226.42 72.11 167.5 68.92C159.81 68.51 152.1 68.57 144.55 70.17C67.78 86.53 35.54 185.25 89.1 243.37C102.48 257.89 121.67 269.32 141.52 271.83C147.07 272.53 152.92 272.74 158.5 272.31C164.44 271.86 170.56 270.17 176.34 271.5C174.62 281.69 163.4 280.33 157.01 285.5C159.83 300.49 165.75 315.01 169.71 329.73C177.62 359.11 185.16 388.5 191.31 418.32C193.3 428.01 195.35 437.67 197.26 447.38C198.49 453.63 200.71 461.08 199.97 467.5C199.48 471.67 195.03 472.47 192.08 474.55C189.62 476.28 187.4 478.66 185.28 480.77C174.06 491.98 164.4 505.6 157.19 519.7C132.82 567.36 129.77 630.39 169.1 671.37C181.6 684.4 197.53 694.22 213.89 701.59C225.29 706.73 238.09 708.82 250.23 711.39C254.37 712.26 259.34 715.37 263.5 715.19C266.88 715.04 270.74 712.67 273.76 711.29C281.04 707.97 288.19 704.6 295.15 700.65C320.5 686.28 344.06 670.47 366.69 652.16C378.16 642.87 389.05 632.43 399.04 621.54C401.34 619.03 408.63 612.46 409.26 609.48C410.09 605.52 408.03 600.29 407.25 596.41C405.12 585.76 402.69 575.64 399.26 565.32C388.25 532.11 377.04 505.65 352.18 480.33C347.42 475.48 341.8 470.93 335.91 467.56C332.08 465.36 327.99 463.5 324.77 460.5C329.61 439.7 337.94 419.49 344.74 399.28C353.72 372.61 361.79 345.61 370.41 318.81C373.69 308.63 378.74 298.85 381.36 288.5C375.15 287.52 368.83 288 362.57 286.75C355.45 285.33 349.19 282.01 342.5 279.51C339.38 290.95 337.55 302.79 334.72 314.35C328.46 339.91 320.97 365.18 314.19 390.59C309.74 407.21 305.24 423.79 299.52 440.04C297.91 444.61 296.75 449.44 294.5 453.76C292.17 453.31 289.83 452.86 287.5 452.42C287.8 450.44 288.1 448.47 288.4 446.5C284.9 445.57 281.41 444.65 277.92 443.72ZM491.5 185.15C497.5 186.84 504.8 186.17 510.73 184.31C535.36 176.58 543.16 146.73 529.83 125.69C521.42 112.41 509.24 104.44 493.33 109.76C489.23 111.13 484.71 112.99 481.5 115.88C484.35 127.6 490.33 138.33 491.89 150.5C492.74 157.18 492.9 163.79 492.36 170.5C491.97 175.27 490.79 180.5 491.5 185.15ZM171.88 113.32C173.25 113.44 174.63 113.55 176 113.67C215.18 118.74 237.4 162.66 219.3 197.77C213.2 209.6 200.91 219.41 188.62 224.17C181.6 226.89 173.97 227.55 166.5 227C159.12 226.47 152.2 223.34 145.99 219.49C121.63 204.42 112.27 170.65 124.25 144.72C130.58 131.02 142.99 119.28 157.76 115.36C162.41 114.12 167.14 113.95 171.88 113.32ZM579.5 160.85C592.29 145.98 583.06 118.64 561.7 119.47C555.35 119.71 551.02 122.22 545.66 125.13C543.25 126.44 541.4 127.57 539.25 125.5C539.43 130.74 542.23 135.32 542.95 140.5C544.15 149.25 542.28 157.01 541.02 165.5C545.48 165.29 550.01 161.33 554.69 160.32C563.22 158.48 571.04 159.38 579.5 160.85ZM350.66 121.35C368.07 119.07 387.26 132.43 394.9 147.59C398.26 154.26 400.19 162.1 400.69 169.53C402.32 193.7 381.1 220.24 356.5 222C327.46 224.07 305.44 197.62 307.14 169.5C308.58 145.69 327.01 124.46 350.66 121.35ZM897 320.72C898.3 320.58 899.6 320.44 900.91 320.3C905.24 320.31 909.57 320.31 913.91 320.32C914.94 320.45 915.97 320.57 917 320.7C919.02 320.89 921.03 321.08 923.05 321.27C924.03 321.42 925.02 321.58 926 321.73C937.27 323.77 947.6 324.49 959 323.74C960 323.72 961 323.7 962 323.68C965.11 323.94 967.72 324.42 970.06 322.5C966.35 315.81 960.45 310.62 956.19 304.3C933.28 270.35 907.21 238.68 882.08 206.37C872.31 193.81 862.51 181.3 852.63 168.84C847.87 162.83 842.32 154.86 835.84 150.65C831.71 147.96 826.22 148.2 821.5 147.76C814.97 147.16 808.51 146 801.95 145.75C800.97 145.61 799.98 145.47 799 145.33C785.66 144.12 772.32 142.92 758.98 141.72C757.98 141.58 756.99 141.44 756 141.3C753.29 141.12 750.58 140.93 747.88 140.75C746.92 140.61 745.96 140.46 745 140.32C741.34 140.12 737.69 139.92 734.03 139.72C733.02 139.58 732.01 139.44 731 139.3C720.66 138.44 710.32 137.57 699.97 136.71C698.32 136.56 696.66 136.42 695 136.28C690.7 136.08 686.41 135.88 682.11 135.68C681.07 135.56 680.04 135.43 679 135.3C674.67 135.11 670.34 134.92 666.01 134.73C665.01 134.59 664 134.45 663 134.32C658.54 133.92 653.45 133.22 649.56 135.5C652.06 141.37 656.92 146.65 660.88 151.67C666.33 158.56 671.75 165.52 676.95 172.59C680.11 176.88 683.82 183.57 688.5 185.98C691.64 182.98 693.92 175.32 696.97 173.48C701.27 170.89 707.83 172.43 712.5 172.86C725.95 174.08 738.86 177.74 751.7 181.71C794.08 194.8 836.15 224.04 867.13 255.37C876.55 264.9 885.99 274.75 894.01 285.5C896.89 289.37 901.99 294.77 902.63 299.75C903.35 305.3 894.28 315.15 892.48 320.5C893.99 320.57 895.49 320.65 897 320.72ZM193.61 135.33C184.7 136.14 181.57 148.21 185.48 155.03C188.55 160.38 195.81 161.45 201.3 159.78C215.96 155.34 206.86 134.12 193.61 135.33ZM373.73 137.45C356.81 138.23 359.77 162.93 375.46 162.5C381.56 162.33 387.01 155.6 386.62 149.63C386.25 143.95 379.54 137.19 373.73 137.45ZM635.83 167.5C635.08 151.92 624 137.66 607.5 138.01C603.18 138.11 596.66 139.6 593.66 143.14C591.65 145.5 590.86 150.31 589.7 153.26C588.09 157.37 585.73 160.19 583.12 163.5C588 167.6 593.76 171.9 596.58 177.86C597.58 179.97 597.72 182.39 598.57 184.5C601.2 182.04 603.27 178.97 606.26 176.75C615.32 170.03 625.19 169.27 635.83 167.5ZM641.5 145.91C641.56 149.46 644.03 152.96 644.73 156.67C645.48 160.59 645.1 164.73 645.5 168.65C666.13 176.81 668.44 184.36 675.5 203.89C677.12 201.43 678.74 198.96 680.36 196.5C667.41 179.64 654.45 162.77 641.5 145.91ZM548.26 232.5C575.4 237.02 601.44 207.69 588.7 181.79C581.62 167.4 564.16 163.08 549.96 168.47C541.36 171.74 534.06 179.06 527.68 185.5C531.53 189.28 536.67 191.75 540.46 196.06C550.74 207.77 548.32 218.4 548.26 232.5ZM627.06 176.71C619.89 177.12 604.29 182.16 601.5 189.92C600.56 192.53 600.9 196.08 600.67 198.85C600.54 199.9 600.41 200.95 600.29 202C600.02 204.08 599.76 206.16 599.5 208.24C612.01 211.76 622.68 220.4 625.74 233.63C627.1 239.49 626.35 245.62 627.5 251.29C672.31 252.72 679.32 180.24 633.9 176.73C632.94 176.6 631.97 176.47 631 176.34C630.67 176.34 630.33 176.33 630 176.32C629.02 176.45 628.04 176.58 627.06 176.71ZM875.5 329.6C879.64 325.16 883.85 314.57 886.27 308.74C887.13 306.66 888.99 303.97 888.7 301.66C888.14 297.26 883.1 292.35 880.58 288.89C872.07 277.23 862.07 266.81 851.67 256.84C821.78 228.18 784.1 202.66 743.86 191.56C735.08 189.14 726.51 186.4 717.5 184.94C713.99 184.37 709.14 183.07 705.69 184.23C702.81 185.21 700.53 190 698.82 192.31C694.51 198.16 689.88 203.82 685.35 209.5C690.92 212.2 698.33 212.07 704.43 213.25C718.34 215.96 732.22 219.88 745.39 225.15C797.53 246.02 844.79 282.17 875.5 329.6ZM472.57 235.5C478.57 243.17 492.01 252.93 501.74 254.61C517.97 257.43 536.39 247.8 540.82 231.33C544.36 218.16 540.1 193.91 523.44 191.21C516.4 190.08 510.25 192.86 503.47 193.82C498.57 194.52 493.76 193.51 489.02 193.5C486.79 199.56 486.07 206.19 483.71 212.29C480.61 220.34 475.72 227.6 472.57 235.5ZM557 240.32C555.95 240.43 554.89 240.55 553.84 240.67C553.27 240.67 552.7 240.67 552.12 240.68C551.08 240.56 550.04 240.43 549 240.31C545.07 240.34 544.54 243.94 542.42 246.91C538.73 252.07 533.79 256.64 528.17 259.62C523.34 262.18 517.84 263.96 512.44 264.71C509.78 265.08 506.34 264.44 503.85 265.46C501.54 266.41 499.7 270.78 498.24 272.74C494.72 277.48 490.24 281.43 485.97 285.47C481.13 290.06 475.39 294.06 469.23 296.69C466.3 297.94 461.23 298.3 458.86 300.39C456.6 302.38 454.95 307.16 453.34 309.81C450.71 314.12 446.83 317.83 444.98 322.5C454.02 337.14 480.03 335.52 491.97 325.5C496.1 322.03 498.13 317.52 499.5 312.45C503.85 312.18 506.7 314.44 510.77 315.66C514.84 316.88 519.29 317.18 523.5 316.79C538.89 315.35 555.16 300.75 554.91 284.5C554.82 279.03 551.64 274.16 549.11 269.5C555.68 265.47 560.72 276.2 562.5 281.11C583.89 290 613.98 272.08 617.91 249.48C620.3 235.78 612.88 214.82 596.5 214.41C586.5 228.8 574.97 238.3 557 240.32ZM705 358.69C709.33 358.69 713.67 358.69 718 358.69C738.73 360.52 758.09 365.94 776.35 376.16C784.13 380.51 790.86 386.42 798.5 390.96C808.96 378.08 813.69 354.17 814.31 337.92C814.31 334.63 814.31 331.34 814.31 328.05C813.98 310.04 806.26 286.03 794.42 272.1C788.49 265.12 779.76 260.12 772.06 255.42C755.76 245.45 737.81 238.27 719.56 232.84C706.95 229.09 687.8 223.14 674.86 224.5C673.07 229.34 671.98 234.26 669.33 238.8C660 254.79 643.66 262.71 625.44 262.5C622.64 266.84 620.49 271.6 616.98 275.46C606.85 286.62 594.22 289.92 580.17 293.5C585.25 300.32 592.65 305.72 597.91 312.65C613.28 332.88 625.7 357.97 630.5 382.96C639.46 379.16 647.62 373.12 656.67 369.19C672.03 362.52 688.45 359.96 705 358.69ZM470.5 239.02C466.3 241.54 463.01 247.39 459.65 251.19C454.44 257.07 448.23 262.79 441.88 267.4C432.49 274.21 421.38 280.33 410.22 283.65C406.22 284.84 399.26 284.8 396 287.51C393.27 289.79 392.14 296.21 390.91 299.46C388.07 307.02 385.48 314.68 382.74 322.28C381.49 325.72 379.27 330.77 379.52 334.49C379.78 338.32 384.91 340.58 387.98 341.52C396.55 344.14 410.1 344.55 415.07 335.5C410.87 333.11 407.47 329.34 410.5 324.69C418.91 342.08 435.65 318.79 442.75 311.25C445.67 308.15 450.13 304.67 450.71 300.5C441.56 298.93 421.17 297.57 424.5 283.02C431.28 286.3 436.57 290.79 444.5 291.9C448.62 292.48 453.23 292.53 457.31 291.7C469.94 289.13 491.7 273.37 496.86 261.5C494.07 259.9 490.96 259.09 488.21 257.33C481.03 252.75 474.87 246.27 470.5 239.02ZM865.32 551C865.44 552.39 865.55 553.77 865.67 555.16C865.9 556.6 866.13 558.05 866.37 559.5C882.45 564.07 900.09 562.3 913.71 552.19C918.26 548.82 924.42 544.17 925.8 538.34C928.12 528.52 924.36 501.48 922.67 490.62C915.69 445.89 897.39 390.3 872.31 352.24C863.62 339.06 854.18 326.54 844.06 314.42C835 303.57 824.7 293.69 813.63 284.92C809.48 281.63 804.07 275.79 798.75 275.5C802.38 282.85 807.72 288.98 810.65 296.78C819.63 320.66 819.73 341.24 813.34 365.74C811.97 371.02 810.43 376.52 807.88 381.38C805.8 385.34 802.91 388.76 800.5 392.5C804.18 398.2 810.39 402.51 814.93 407.58C821.42 414.81 827.25 422.93 832.32 431.21C849.69 459.63 859.16 491.8 863.73 524.55C864.96 533.34 864.68 542.18 865.32 551ZM463.3 635C463.5 636.62 463.7 638.25 463.9 639.87C467.66 643.64 472.15 646.77 476.01 650.5C484.48 658.66 492.52 667.39 500.4 676.11C505.39 681.63 509.06 688.64 514.5 693.66C515.16 688.09 512.07 681.14 511.24 675.45C509.83 665.69 509.49 655.8 508.68 646C508.56 644.98 508.44 643.96 508.33 642.95C508.32 635.27 508.32 627.59 508.31 619.91C508.43 618.61 508.55 617.3 508.67 616C509.46 606.15 509.81 596.33 511.21 586.53C517.31 543.92 531.7 503.28 553.98 466.41C559.92 456.58 565.95 446.65 573.2 437.72C584.04 424.36 595.71 411.51 608.57 400.05C614.72 394.57 622.23 390.39 627.95 384.5C622.55 359.99 610.91 334.74 595.57 314.89C586.55 303.22 579.87 294.44 564.5 292.11C562.37 298.22 560.29 304.56 556.29 309.8C544.43 325.34 524.56 328.96 506.5 324.99C502.47 328.68 499.44 333.15 494.86 336.37C483.96 344.04 468.31 346.29 455.77 341.66C449.85 339.48 445.72 335.03 440.5 331.87C429.24 340.04 421 353.44 413.4 364.89C391.67 397.65 376.78 433.47 364.03 470.5C366.58 474.09 370.24 476.98 373.22 480.27C378.97 486.61 384.23 493.47 388.66 500.78C392.14 506.51 394.87 512.69 397.73 518.73C398.7 520.77 399.68 524.66 401.43 526.09C403.23 527.58 408.78 528.91 411.3 530.23C416.51 532.94 421.45 536.76 425.65 540.84C450.69 565.18 460.61 601.26 463.3 635ZM376.5 344.55C372.44 349.55 367.81 368.84 365.55 376.1C359.59 395.26 352.92 414.25 346.83 433.38C344.97 439.23 340.71 447.58 340.54 453.5C344.86 456.01 349.18 458.52 353.5 461.03C360.26 433.89 371.89 408.28 385.31 383.76C390.71 373.9 400.14 361.39 403.9 351.5C393.54 351.96 385.28 350.4 376.5 344.55ZM702.1 374.69C666.32 376.14 630.1 397.81 606.26 423.78C602.13 428.29 597.51 432.43 593.63 437.16C559.14 479.21 536.55 525.54 527.77 579.45C526.01 590.24 524.12 600.94 523.68 611.89C523.56 613.26 523.44 614.63 523.32 616C523.32 625.33 523.32 634.67 523.33 644C523.45 645.33 523.57 646.65 523.69 647.98C524.18 669.89 526.74 693.55 534.25 714.28C537.67 723.71 542.51 732.64 546.75 741.73C549.61 747.87 551.74 754.2 554.16 760.5C561.63 761.64 575.53 753.46 582.25 749.73C608.43 735.16 630.26 711.89 648.5 688.5C635.82 649.61 633.26 612.09 646.28 572.72C648.92 564.75 652.35 556.43 656.7 549.23C659.45 544.67 663.37 540.51 665.17 535.5C661.84 527.97 655.97 520.98 651.11 514.34C639.36 498.28 625.12 481.91 607.77 471.68C598.73 466.35 588.71 463.99 578.95 460.5C588.25 458.63 599.13 464.11 607.25 468.31C626.4 478.21 641.94 495.82 654.43 513.08C658.87 519.2 662.26 527.41 667.5 532.69C671.6 528.93 675 524.41 679.13 520.62C690.43 510.26 704.66 503.11 720 501.69C722 501.69 724 501.69 726 501.69C781.88 507.78 799.62 584.58 768.4 624.87C756.93 639.68 733.68 651.63 717.67 635.83C706.93 625.23 705.58 606.84 712.54 594.03C714.44 590.54 716.82 587.07 720.5 585.41C729.42 588.65 721.07 599.45 720.69 605.97C720.7 607.63 720.7 609.29 720.71 610.95C721.08 615.68 722.8 619.07 725.92 622.6C734.51 632.33 746.78 627.17 754.62 619.14C781.06 592.04 770.9 536.95 736.44 521.05C719.5 513.24 701.25 520.95 688.51 533C666.03 554.27 654.45 583.4 652.7 614.12C652.56 615.41 652.42 616.71 652.28 618C648.9 657.35 663.33 702.53 697.33 725.13C710.92 734.16 726 739.57 742.46 736.82C750.19 735.53 757.51 732.59 764.42 728.98C820.2 699.8 850.31 627.44 851.33 567.16C851.44 566.1 851.56 565.05 851.67 564C852.58 549.86 851.25 535.47 849.1 521.5C840.44 465.32 810.39 407.03 755.64 383.84C743.84 378.83 730.95 375.14 718.12 374.67C716.75 374.55 715.37 374.44 714 374.32C711.33 374.32 708.67 374.32 706 374.32C704.7 374.44 703.4 374.57 702.1 374.69ZM406.98 547.09C408 550.06 409.55 552.82 410.69 555.75C413.79 563.7 415.86 572.34 417.77 580.63C418.68 584.57 420.11 597.46 421.51 600.01C422.63 602.05 429.24 605.18 431.43 607.05C438.48 613.05 444.13 619.25 449.2 627C449.63 627.2 450.07 627.4 450.5 627.6C450.41 627.09 450.33 626.58 450.24 626.08C447.83 598.33 433.73 560.36 408 546.02C407.34 545.84 406.69 545.67 406.03 545.5C406.34 546.03 406.66 546.56 406.98 547.09ZM925.5 544.95C922.26 547.71 919.76 551.28 916.39 553.94C906.48 561.77 894.05 565.2 881.5 564.88C876.15 564.75 871.1 562.98 865.89 562.5C861.67 617.97 850.14 667.07 812.44 709.92C804.97 718.41 795.99 726.75 786.82 733.35C781.91 736.89 775.12 739.43 770.93 743.5C773.75 748.99 778 753.96 780.77 759.71C787.64 773.93 791.89 790.72 792.08 806.5C792.15 812.2 791.76 817.53 790.54 823.1C789.73 826.76 787.46 830.43 787.5 833.99C806.69 821.55 824.95 802.57 839.56 785.08C878.79 738.1 907.59 680.82 919.21 620.55C922.78 602.08 925.91 583.38 925.98 564.5C926 558.37 927.42 550.59 925.5 544.95ZM288.5 551.34C290.79 554.93 291.33 559.32 293.46 563.06C297.3 569.8 304.15 575.8 310.59 579.99C314 582.21 320.47 584.36 319.76 589.38C319.18 593.43 315.05 594.48 311.66 593.75C305.4 592.4 298.22 587.14 293.5 582.98C287.79 588.4 283.34 594.66 276.9 599.42C257.47 613.76 222.95 618.34 202.18 604.33C193.79 598.68 190.41 592.86 184.5 585.15C179.09 588.63 175.54 596.46 167.6 594.78C164.68 594.16 163.59 592.07 163.08 589.5C166.82 584.88 172.78 582.81 176.53 578C180.72 572.62 181.96 564.83 186.5 560.05C199.02 559.75 190 572.03 191.43 578.22C192.24 581.74 197.19 585.45 199.85 587.6C221.31 604.98 254.6 601.58 275.27 584.8C279.23 581.59 284.6 578.04 286.87 573.5C285.45 571.33 283.56 569.46 282.42 567.12C279.16 560.44 278.41 550.13 288.5 551.34ZM421.5 611.29C412.23 625.26 400.8 636.67 388.59 648.07C361.64 673.24 331.17 693.76 298.78 711.31C290.75 715.65 281.89 718.25 273.91 722.5C275.71 725.88 278.27 728.88 280.38 732.12C284.72 738.8 288.61 745.77 293.19 752.3C295.2 755.17 298.82 761.34 302.54 762.07C306.15 762.78 310.35 759.54 313.29 757.78C322.62 752.21 331.34 745.94 340.13 739.6C368.05 719.47 394.68 694.67 416.66 668.17C423.18 660.31 430 652.69 435.65 644.17C437.23 641.8 439.92 638.98 440.71 636.21C441.6 633.05 439.36 630.37 437.6 627.88C433.76 622.46 427.84 613.53 421.5 611.29ZM325.33 820C325.45 821.97 325.57 823.94 325.69 825.92C325.9 833.61 326.11 841.31 326.32 849C326.44 850.34 326.56 851.68 326.68 853.01C326.89 858.34 327.1 863.67 327.31 869C327.44 870.01 327.56 871.03 327.69 872.04C327.86 886.27 329.62 900.36 330.89 914.5C334.55 955.08 340.83 994.98 350.5 1034.56C358.96 1036.4 368.88 1035.12 377.5 1034.22C410.61 1030.77 438.58 1013.28 469.69 1003.26C483.9 998.68 497.6 996.93 512.5 998.02C534.67 999.65 551.49 1006.33 574.44 1000.82C595.15 995.86 610.74 982.51 629.04 972.57C648.43 962.03 665.64 955.85 687.94 955.32C689.3 955.44 690.65 955.56 692 955.68C708.96 957.23 726.32 961.67 743.26 957.69C763.61 952.9 779.46 938.37 797.82 929.38C810.97 922.94 826.08 921.59 840.5 921.05C854.75 920.52 869.33 918.99 881.57 911.05C884.74 909 890.65 904.8 890.64 900.54C890.63 893.24 877.97 888.76 872.51 886.95C859.64 882.69 847.35 879.34 836.1 871.41C824.47 863.21 816.04 849.87 803.5 843.15C799.32 845.29 795.68 848.61 791.89 851.41C785.51 856.12 778.75 860.45 771.85 864.36C742.85 880.78 713.12 887.81 679.88 886.71C678.92 886.57 677.96 886.44 677 886.3C670.36 885.51 658.17 881.58 652.5 881.98C647.18 882.35 639.69 886.23 634.29 887.71C625 890.26 615.15 891.68 605.5 891.83C592.5 892.04 580.04 889.36 567.63 885.77C564.16 884.77 560.94 883.06 557.5 882.06C551.43 901.05 548.89 916.19 538.6 934.12C534.61 941.06 529.5 948.83 520.5 948.97C515.05 949.06 510.13 945.78 505.5 943.37C501.77 945.55 498.81 948.81 494.4 949.76C474.04 954.19 456.81 941.58 445.5 925.96C440.07 926.05 435.17 926.84 429.73 925.66C416.96 922.88 409.53 911.28 406.5 899.62C392.85 896.98 383.27 889.04 385.29 873.59C386.14 867.12 390.27 862.2 392.76 856.5C390.1 852.95 387.55 850.5 386.66 846C386.67 845 386.68 844 386.68 843C388.51 830.7 396.61 818.87 402.77 808.28C405.23 804.04 408.83 799.24 409.75 794.35C410.67 789.48 408.85 784.28 408.1 779.49C407.35 774.67 407.14 769.85 406.68 765C406.55 764 406.43 763.01 406.3 762.01C406.02 755.93 403.62 745.38 409.5 741.69C416.73 749.66 415.24 767.87 418.5 778.06C422.83 771.24 427.17 764.41 431.5 757.59C434.78 762.16 431.63 770.3 430.17 775.58C427.04 786.93 421.88 797.58 416.51 808.03C414.06 812.81 410.96 817.53 409.01 822.5C411.05 823.58 412.96 823.73 415.15 824.44C419.05 825.7 423.17 827.75 426.8 829.68C441.19 837.28 454.77 847.86 467.41 858.06C483.02 870.66 498.78 882.79 515.32 894.16C520.96 898.03 529.31 904.85 535.5 906.9C543.37 890.96 549.61 858.65 549.31 841C549.43 840 549.54 839 549.66 838C550.99 822.09 551.14 804.23 547.79 788.57C538.72 746.2 513.42 708.52 483.54 677.96C475.63 669.87 467.45 662.05 459.29 654.21C456.29 651.32 451.8 645.36 448.5 643.88C445.9 647.7 443.98 652.11 441.56 656.09C438.87 660.52 435.48 664.69 432.32 668.79C413.41 693.32 390.27 714.33 366.91 734.43C357.75 742.31 347.47 749.12 337.78 756.31C335.2 758.23 326 763.11 325 765.61C323.14 770.26 324.84 777.6 324.98 782.5C325.35 794.99 324.61 807.53 325.33 820ZM733 753.33C732 753.32 731 753.32 730 753.32C704.38 751.36 682.06 738.29 666.05 718.42C659.44 710.23 655.4 700.61 649.5 692C645.01 694.13 641.47 700.84 638.42 704.91C633.02 712.11 626.33 719.14 619.81 725.33C608.31 736.25 595.48 746.54 581.36 753.85C573.14 758.1 564.17 760.53 555.92 764.5C562.21 788.08 575.45 807.79 592.91 824.59C598.36 829.83 603.59 835.38 609.63 839.95C631.98 856.87 659.64 867.5 687.5 869.78C712.77 871.84 737.66 863.92 759.76 852.3C768.28 847.82 779.98 841.8 784.21 832.67C786.91 826.84 787.74 819.84 788.12 813.5C789.6 788.51 781.33 765.9 769.5 744.34C764.21 745.06 759.34 748.09 754.22 749.65C747.17 751.79 740.34 752.8 733 753.33ZM190.5 706.36C189.47 711.83 193.88 719.21 196.41 724.07C202.76 736.27 210.41 746.61 220.38 756.11C223.52 759.1 225.59 762.31 229.5 764.4C237.28 757.86 240.71 746.12 246.11 737.64C248.96 733.15 253.99 728.49 255.5 723.53C251.57 722.89 247.49 723.23 243.5 722.8C234.48 721.81 225.51 720.11 216.78 717.64C207.49 715.01 199.52 709.39 190.5 706.36ZM158.67 923.9C158.56 924.93 158.44 925.97 158.33 927C157.68 936.02 156.09 950.91 159.22 959.29C162.3 967.5 169.51 973.08 175.97 978.53C179.81 981.77 184.53 986.92 189.5 987.71C189.42 984.93 188.53 982.25 188.16 979.48C187.46 974.27 187.19 968.76 187.02 963.5C186.43 945.71 187.56 927.91 187.33 910.14C187.44 908.76 187.56 907.38 187.67 906C187.88 900.65 188.1 895.31 188.31 889.96C188.43 888.97 188.54 887.99 188.66 887C189.31 879.86 189.42 872.65 190.1 865.5C192.24 843.06 195.67 820.75 199.08 798.5C200.3 790.57 201.76 782.63 203.35 774.76C204.22 770.48 206.47 764.92 205.88 760.54C205.46 757.34 199.09 751.37 197.05 748.42C193.65 743.5 190.68 737.79 188.12 732.39C186.37 728.69 185.33 724.41 182.5 721.55C177.24 728.03 174.15 737.06 169.77 744.3C163.58 754.52 156.59 764.46 149.86 774.34C142.74 784.79 134.64 794.37 126.9 804.35C123.25 809.04 119 813.31 116.05 818.5C118.67 822.53 122.59 826 125.98 829.52C134.15 838.04 142.51 846.12 151.5 853.78C154.25 850.62 156.03 833.93 157.23 828.59C161.44 809.84 166.5 791.44 172.66 773.23C174.43 768.01 177.3 755.92 181.5 752.97C185.52 755.62 184.22 760.7 183.49 765C181.74 775.29 179.36 785.41 177.3 795.66C170.68 828.54 164.52 861.13 160.77 894.48C159.67 904.21 158.61 914.09 158.67 923.9ZM264.5 727.07C260.09 730.93 251.77 745.61 252 751.5C252.1 754.31 253.79 756.92 255.34 759.18C257.27 762 259.79 765.18 263.5 765.31C268.51 765.48 278.21 757.42 278.9 752.47C279.77 746.31 269.97 729.81 264.5 727.07ZM244.71 774.15C244.57 775.43 244.44 776.72 244.3 778C241.43 810.69 238.57 843.39 235.7 876.08C235.58 877.05 235.46 878.03 235.33 879C235.12 888.68 234.9 898.37 234.68 908.05C234.56 911.37 234.44 914.68 234.33 918C234.32 928.33 234.32 938.67 234.32 949C234.44 950.67 234.56 952.34 234.68 954.01C234.89 960.01 235.1 966 235.31 972C235.44 972.97 235.57 973.94 235.71 974.91C236.17 984.9 237.14 994.9 238.58 1004.78C238.98 1007.51 238.66 1011.76 240.43 1014.08C242.4 1016.69 248.51 1017.93 251.49 1019.04C261.63 1022.81 272.16 1025.28 282.5 1028.39C283.06 1022.02 278.39 1007.02 277.25 999.45C274.17 979.02 272.37 958.57 270.69 938C270.56 937.01 270.44 936.02 270.31 935.02C270.09 929.68 269.88 924.34 269.66 919C269.55 917.69 269.43 916.39 269.32 915.08C269.32 888.1 269.33 861.12 269.33 834.14C269.44 832.76 269.56 831.38 269.67 830C269.88 823.64 270.1 817.28 270.31 810.92C270.44 809.95 270.57 808.97 270.7 808C271.97 794.67 273.23 781.35 274.5 768.02C273.12 769.24 271.75 770.72 270.07 771.52C257.05 777.68 254.69 765.33 247.5 759.31C244.13 762.6 244.82 769.61 244.71 774.15ZM278.69 796.06C278.57 797.04 278.45 798.02 278.33 799C278.11 806.64 277.89 814.29 277.67 821.93C277.56 823.62 277.44 825.31 277.33 827C277.33 848.67 277.32 870.33 277.32 892C277.44 894.37 277.55 896.75 277.67 899.12C277.4 922.88 279.79 946.86 281.88 970.5C283.6 990.07 285.31 1010.71 291.35 1029.5C300.76 1033.39 318.12 1034.45 328.5 1035.04C333.35 1035.31 338.29 1036.33 343.04 1035.5C342.35 1030.02 340.48 1024.73 339.25 1019.35C336.16 1005.84 333.54 992.1 331.25 978.45C326.13 947.84 324.18 916.89 321.69 886C321.57 884.95 321.45 883.91 321.33 882.86C320.78 865.24 320.22 847.62 319.67 830C319.56 826.97 319.44 823.94 319.33 820.92C319.33 811.26 319.33 801.61 319.33 791.95C319.44 789.64 319.55 787.32 319.67 785C319.95 779.43 320.22 773.85 320.5 768.28C314.31 769.63 307.33 775.97 300.75 774.63C292.85 773.03 290.3 762.79 284.5 758.99C282.8 760.53 281.46 762.2 280.75 764.46C278.89 770.37 278.77 789.14 278.69 796.06ZM195.69 891.04C195.57 892.02 195.44 893.01 195.31 894C195.1 898.95 194.88 903.91 194.67 908.86C194.56 910.24 194.45 911.62 194.34 913C194.33 933 194.32 953 194.31 973C194.43 974.37 194.55 975.73 194.67 977.1C194.76 981.66 194.15 988.73 196.67 992.8C198.19 995.27 202.41 997.18 204.87 998.63C213.21 1003.55 222.76 1008.48 231.9 1011.5C231.91 1008.03 230.65 1004.97 230.04 1001.5C229.17 996.55 228.77 991.49 228.21 986.5C226.68 973.05 226.59 959.49 225.69 946C225.57 943.68 225.45 941.36 225.33 939.05C225.33 927.39 225.33 915.74 225.33 904.09C225.44 902.39 225.55 900.7 225.67 899C225.88 892.34 226.1 885.68 226.32 879.03C226.43 878.02 226.55 877.01 226.67 876C228.39 852.75 230.62 829.68 233.14 806.5C233.97 798.86 234.93 791.12 236.21 783.55C236.98 778.96 238.58 774.25 238.5 769.67C226.5 778.48 220.16 772.21 210.5 763.95C209.29 769.26 209.59 775 208.8 780.45C207.12 792.11 205.38 803.78 203.78 815.46C200.34 840.58 196.49 865.63 195.69 891.04ZM353.5 766.75C360.83 766.75 368.17 766.75 375.5 766.75C376.83 769.57 378.17 772.38 379.5 775.19C381.95 775.19 384.4 775.19 386.85 775.19C386.84 776.65 386.38 778.2 386.39 779.57C386.41 781.2 387.59 782.79 387.65 784.54C387.78 788.51 387.15 792.5 387.33 796.5C387.49 800.04 388.66 803.49 387.36 806.91C384.58 814.17 377.49 817.87 371.45 821.93C368.98 823.6 365.69 826.73 362.49 826.69C359.74 826.66 357.28 823.79 355.14 822.36C349.05 818.3 342.24 814.53 339.31 807.24C336.32 799.82 339.83 791.17 337.99 783.5C340.67 780.89 340.47 781.82 340.5 778C343.95 777.4 347.65 777.36 350.5 775.59C350.04 771.16 350.37 769.52 353.5 766.75ZM373 781.01C363.64 782.04 352.04 778.51 343.23 782.5C342.71 789.09 341.3 797.97 343.07 804.38C345.23 812.23 355.77 818.37 362.5 821.81C368.11 819.59 380.42 812.05 382.66 806.2C384.14 802.31 383.62 797.32 383.47 793.24C383.34 789.59 384 785.45 381.5 783.01C377.6 785.52 379.24 793.02 379.07 797.5C378.79 805.19 372.71 813.69 364.46 814.9C357.9 815.85 349.34 808.08 347.5 802.02C346.77 799.63 346.97 796.98 346.98 794.5C347 790.67 345.92 785.73 349.5 783.92C349.72 784.2 350.32 784.16 350.39 784.51C350.4 784.59 349.32 786.24 349.25 786.55C348.74 788.68 348.97 791.32 349.02 793.5C349.17 800.67 353.96 811.9 362.5 812.17C377.58 812.63 377.55 793.8 377.12 783.5C375.75 782.67 374.37 781.84 373 781.01C377 780.84 381.01 780.67 385.01 780.5C382.1 778.36 378.08 778.99 374.5 778.29C374.38 776.03 374.25 773.76 374.13 771.5C367.58 771.22 361.04 770.93 354.5 770.65C354.17 772.98 353.83 775.3 353.5 777.63C357.89 778.24 370.93 777.83 373 781.01ZM563.5 816.98C563.84 819.97 563.21 824.11 564.62 826.86C565.73 829.04 568.79 830.45 570.73 831.74C575.77 835.09 582.31 840.63 588.4 840.5C580.1 832.66 571.8 824.82 563.5 816.98ZM112.5 825.12C109.56 827.66 100.86 839.6 101.24 843.42C101.66 847.65 107.79 852.94 110.47 856.03C118.64 865.48 135.68 883.39 147.5 887.05C148.71 878.87 149.93 870.68 151.14 862.5C148.81 859.77 145.85 857.74 143.13 855.4C136.53 849.73 130.08 843.71 123.95 837.54C120.11 833.67 117.28 827.75 112.5 825.12ZM406.5 828.83C402.98 833.16 398.62 838.88 398.25 844.5C414 855.38 428.8 867.63 443.36 880.11C450.01 885.81 456.13 892.09 463.05 897.49C469.26 902.33 475.73 906.83 482.09 911.46C490.76 917.78 499.55 923.38 508.95 928.57C513.16 930.9 517.79 934.2 522.5 934.93C527.57 929.57 532.27 920.83 533.09 913.5C519.08 904.16 504.67 895.5 491.23 885.28C475.94 873.66 461.71 860.66 446.15 849.38C435.13 841.4 420.59 829.04 406.5 828.83ZM604.93 877.32C607.6 877.31 610.27 877.29 612.94 877.28C618.43 877.02 632 876.12 635.78 872.5C620.33 865.73 603.79 861.44 588.7 853.77C582.25 850.48 569.7 840.97 563.5 840.23C562.81 849.65 562.12 859.08 561.43 868.5C575.43 873.78 589.95 877.06 604.93 877.32ZM401.5 861.62C398.53 865 395.96 869.01 395.23 873.56C394.2 880.02 397.74 888.83 405.5 888.12C410.05 887.7 414.77 879.98 419.26 877.5C416.11 872.54 406.91 863.58 401.5 861.62ZM104.5 865.96C99 871.6 97.3 890.48 109.27 887.67C112.77 886.85 115.9 881.14 117.9 878.5C114.36 874.51 109.59 867.36 104.5 865.96ZM420.5 877.22C419.07 884.46 415.94 891.67 417.29 899.33C420.55 917.97 443.14 916.34 456.22 910.5C452.96 904.21 445.4 900.01 440.12 895.4C433.67 889.76 428.16 881.14 420.5 877.22ZM121.5 881.42C118.77 886.73 115.15 897.56 115.84 903.5C117.21 915.18 133.39 921.96 143.5 919.34C144.16 913.06 144.82 906.78 145.48 900.5C137.49 894.14 129.49 887.78 121.5 881.42ZM459.5 913.24C457.74 916.33 455.97 919.41 454.21 922.5C460.9 931.01 471.14 936.97 481.54 939.96C486.41 941.37 492.6 941.62 495.99 937.5C493.35 932.7 477.91 925.52 472.59 922.01C468.21 919.11 464.76 914.46 459.5 913.24Z" fill="#020302" fill-rule="evenodd" stroke="#020302" stroke-width="0.25" stroke-linejoin="round"/>
4
+ <path d="M171.88 113.32C173.08 113.22 174.29 113.11 175.5 113C175.67 113.22 175.83 113.45 176 113.67C174.63 113.55 173.25 113.44 171.88 113.32ZM687.02 122.29C688.18 122.19 689.34 122.1 690.5 122C690.67 122.22 690.83 122.43 691 122.65C689.67 122.53 688.35 122.41 687.02 122.29ZM663 134.32C664 134.45 665.01 134.59 666.01 134.73C665.17 134.82 664.34 134.91 663.5 135C663.33 134.77 663.17 134.55 663 134.32ZM679 135.3C680.04 135.43 681.07 135.56 682.11 135.68C681.24 135.79 680.37 135.89 679.5 136C679.33 135.77 679.17 135.54 679 135.3ZM695 136.28C696.66 136.42 698.32 136.56 699.97 136.71C698.48 136.8 696.99 136.9 695.5 137C695.33 136.76 695.17 136.52 695 136.28ZM731 139.3C732.01 139.44 733.02 139.58 734.03 139.72C733.19 139.81 732.34 139.91 731.5 140C731.33 139.77 731.17 139.53 731 139.3ZM745 140.32C745.96 140.46 746.92 140.61 747.88 140.75C747.08 140.83 746.29 140.92 745.5 141C745.33 140.77 745.17 140.55 745 140.32ZM756 141.3C756.99 141.44 757.98 141.58 758.98 141.72C758.15 141.81 757.33 141.91 756.5 142C756.33 141.77 756.17 141.54 756 141.3ZM799 145.33C799.98 145.47 800.97 145.61 801.95 145.75C801.13 145.84 800.32 145.92 799.5 146C799.33 145.78 799.17 145.55 799 145.33ZM630 176.32C629.83 176.55 629.67 176.77 629.5 177C628.69 176.9 627.88 176.81 627.06 176.71C628.04 176.58 629.02 176.45 630 176.32ZM631 176.34C631.97 176.47 632.94 176.6 633.9 176.73C633.1 176.82 632.3 176.91 631.5 177C631.33 176.78 631.17 176.56 631 176.34ZM600.67 198.85C600.78 199.73 600.89 200.62 601 201.5C600.76 201.67 600.52 201.83 600.29 202C600.41 200.95 600.54 199.9 600.67 198.85ZM549 240.31C550.04 240.43 551.08 240.56 552.12 240.68C551.25 240.78 550.37 240.89 549.5 241C549.33 240.77 549.17 240.54 549 240.31ZM557 240.32C556.83 240.55 556.67 240.77 556.5 241C555.61 240.89 554.73 240.78 553.84 240.67C554.89 240.55 555.95 240.43 557 240.32ZM900.91 320.3C899.6 320.44 898.3 320.58 897 320.72C897.17 320.48 897.33 320.24 897.5 320C898.64 320.1 899.77 320.2 900.91 320.3ZM913.91 320.32C914.77 320.21 915.64 320.11 916.5 320C916.67 320.23 916.83 320.47 917 320.7C915.97 320.57 914.94 320.45 913.91 320.32ZM923.05 321.27C923.87 321.18 924.68 321.09 925.5 321C925.67 321.24 925.83 321.49 926 321.73C925.02 321.58 924.03 321.42 923.05 321.27ZM962 323.68C961 323.7 960 323.72 959 323.74C959.17 323.49 959.33 323.25 959.5 323C960.33 323.23 961.17 323.46 962 323.68ZM814.31 328.05C814.31 331.34 814.31 334.63 814.31 337.92C814.31 334.63 814.31 331.34 814.31 328.05ZM951.86 336.7C950.55 336.7 949.24 336.69 947.92 336.69C949.24 336.69 950.55 336.7 951.86 336.7ZM960 336.38C959.83 336.59 959.67 336.79 959.5 337C958.64 336.89 957.77 336.79 956.91 336.68C957.94 336.58 958.97 336.48 960 336.38ZM718 358.69C713.67 358.69 709.33 358.69 705 358.69C705.17 358.46 705.33 358.23 705.5 358C709.5 358 713.5 358 717.5 358C717.67 358.23 717.83 358.46 718 358.69ZM706 374.32C705.83 374.55 705.67 374.77 705.5 375C704.37 374.9 703.23 374.79 702.1 374.69C703.4 374.57 704.7 374.44 706 374.32ZM714 374.32C715.37 374.44 716.75 374.55 718.12 374.67C716.91 374.78 715.71 374.89 714.5 375C714.33 374.77 714.17 374.55 714 374.32ZM266.96 428.3C265.97 428.43 264.99 428.55 264 428.67C264.17 428.45 264.33 428.22 264.5 428C265.32 428.1 266.14 428.2 266.96 428.3ZM287.15 430.24C288.1 430.2 289.06 430.15 290.01 430.11C289.84 430.33 289.67 430.55 289.5 430.77C288.72 430.59 287.93 430.42 287.15 430.24ZM275 443.3C275.97 443.44 276.94 443.58 277.92 443.72C277.11 443.81 276.31 443.91 275.5 444C275.33 443.77 275.17 443.53 275 443.3ZM726 501.69C724 501.69 722 501.69 720 501.69C720.17 501.46 720.33 501.23 720.5 501C722.17 501 723.83 501 725.5 501C725.67 501.23 725.83 501.46 726 501.69ZM408 546.02C407.66 546.38 407.32 546.73 406.98 547.09C406.66 546.56 406.34 546.03 406.03 545.5C406.69 545.67 407.34 545.84 408 546.02ZM865.32 551C865.55 551.17 865.77 551.33 866 551.5C865.89 552.72 865.78 553.94 865.67 555.16C865.55 553.77 865.44 552.39 865.32 551ZM851.67 564C851.56 565.05 851.44 566.1 851.33 567.16C851.22 566.27 851.11 565.39 851 564.5C851.22 564.33 851.45 564.17 851.67 564ZM720.69 605.97C720.7 607.63 720.7 609.29 720.71 610.95C720.7 609.29 720.7 607.63 720.69 605.97ZM523.68 611.89C523.78 613.09 523.89 614.3 524 615.5C523.77 615.67 523.55 615.83 523.32 616C523.44 614.63 523.56 613.26 523.68 611.89ZM652.7 614.12C652.8 615.25 652.9 616.37 653 617.5C652.76 617.67 652.52 617.83 652.28 618C652.42 616.71 652.56 615.41 652.7 614.12ZM508.67 616C508.55 617.3 508.43 618.61 508.31 619.91C508.21 618.77 508.1 617.64 508 616.5C508.22 616.33 508.44 616.17 508.67 616ZM450.24 626.08C450.33 626.58 450.41 627.09 450.5 627.6C450.07 627.4 449.63 627.2 449.2 627C449.54 626.69 449.89 626.39 450.24 626.08ZM463.3 635C463.53 635.17 463.77 635.33 464 635.5C463.97 636.96 463.93 638.41 463.9 639.87C463.7 638.25 463.5 636.62 463.3 635ZM508.33 642.95C508.44 643.96 508.56 644.98 508.68 646C508.45 645.83 508.23 645.67 508 645.5C508.11 644.65 508.22 643.8 508.33 642.95ZM523.33 644C523.55 644.17 523.78 644.33 524 644.5C523.9 645.66 523.8 646.82 523.69 647.98C523.57 646.65 523.45 645.33 523.33 644ZM730 753.32C731 753.32 732 753.32 733 753.33C732.17 753.55 731.33 753.78 730.5 754C730.33 753.77 730.17 753.55 730 753.32ZM406.3 762.01C406.43 763.01 406.55 764 406.68 765C406.45 764.83 406.23 764.67 406 764.5C406.1 763.67 406.2 762.84 406.3 762.01ZM244.71 774.15C244.8 775.27 244.9 776.38 245 777.5C244.77 777.67 244.53 777.83 244.3 778C244.44 776.72 244.57 775.43 244.71 774.15ZM319.67 785C319.55 787.32 319.44 789.64 319.33 791.95C319.22 789.8 319.11 787.65 319 785.5C319.22 785.33 319.45 785.17 319.67 785ZM278.69 796.06C278.8 796.87 278.9 797.69 279 798.5C278.78 798.67 278.55 798.83 278.33 799C278.45 798.02 278.57 797.04 278.69 796.06ZM270.7 808C270.57 808.97 270.44 809.95 270.31 810.92C270.21 810.12 270.1 809.31 270 808.5C270.23 808.33 270.47 808.17 270.7 808ZM325.33 820C325.56 820.17 325.78 820.33 326 820.5C325.9 822.31 325.79 824.11 325.69 825.92C325.57 823.94 325.45 821.97 325.33 820ZM319.33 820.92C319.44 823.94 319.56 826.97 319.67 830C319.45 829.83 319.22 829.67 319 829.5C319.11 826.64 319.22 823.78 319.33 820.92ZM277.67 821.93C277.78 823.45 277.89 824.98 278 826.5C277.78 826.67 277.55 826.83 277.33 827C277.44 825.31 277.56 823.62 277.67 821.93ZM269.67 830C269.56 831.38 269.44 832.76 269.33 834.14C269.22 832.93 269.11 831.71 269 830.5C269.22 830.33 269.45 830.17 269.67 830ZM549.66 838C549.54 839 549.43 840 549.31 841C549.21 840.17 549.1 839.33 549 838.5C549.22 838.33 549.44 838.17 549.66 838ZM386.68 843C386.68 844 386.67 845 386.66 846C386.44 845.17 386.22 844.33 386 843.5C386.23 843.33 386.46 843.17 386.68 843ZM326.32 849C326.55 849.17 326.77 849.33 327 849.5C326.89 850.67 326.79 851.84 326.68 853.01C326.56 851.68 326.44 850.34 326.32 849ZM327.31 869C327.54 869.17 327.77 869.33 328 869.5C327.9 870.35 327.79 871.2 327.69 872.04C327.56 871.03 327.44 870.01 327.31 869ZM226.67 876C226.55 877.01 226.43 878.02 226.32 879.03C226.21 878.18 226.11 877.34 226 876.5C226.22 876.33 226.44 876.17 226.67 876ZM235.7 876.08C235.8 876.89 235.9 877.69 236 878.5C235.78 878.67 235.56 878.83 235.33 879C235.46 878.03 235.58 877.05 235.7 876.08ZM604.93 877.32C607.6 877.31 610.27 877.29 612.94 877.28C610.27 877.29 607.6 877.31 604.93 877.32ZM321.33 882.86C321.45 883.91 321.57 884.95 321.69 886C321.46 885.83 321.23 885.67 321 885.5C321.11 884.62 321.22 883.74 321.33 882.86ZM677 886.3C677.96 886.44 678.92 886.57 679.88 886.71C679.09 886.8 678.29 886.9 677.5 887C677.33 886.77 677.17 886.53 677 886.3ZM188.66 887C188.54 887.99 188.43 888.97 188.31 889.96C188.21 889.14 188.1 888.32 188 887.5C188.22 887.33 188.44 887.17 188.66 887ZM195.69 891.04C195.79 891.86 195.9 892.68 196 893.5C195.77 893.67 195.54 893.83 195.31 894C195.44 893.01 195.57 892.02 195.69 891.04ZM277.32 892C277.55 892.17 277.77 892.33 278 892.5C277.89 894.71 277.78 896.91 277.67 899.12C277.55 896.75 277.44 894.37 277.32 892ZM225.67 899C225.55 900.7 225.44 902.39 225.33 904.09C225.22 902.56 225.11 901.03 225 899.5C225.22 899.33 225.44 899.17 225.67 899ZM187.67 906C187.56 907.38 187.44 908.76 187.33 910.14C187.22 908.93 187.11 907.71 187 906.5C187.22 906.33 187.45 906.17 187.67 906ZM234.68 908.05C234.79 911.2 234.89 914.35 235 917.5C234.78 917.67 234.55 917.83 234.33 918C234.44 914.68 234.56 911.37 234.68 908.05ZM194.67 908.86C194.78 910.08 194.89 911.29 195 912.5C194.78 912.67 194.56 912.83 194.34 913C194.45 911.62 194.56 910.24 194.67 908.86ZM269.32 915.08C269.43 916.39 269.55 917.69 269.66 919C269.44 918.83 269.22 918.67 269 918.5C269.11 917.36 269.21 916.22 269.32 915.08ZM158.67 923.9C158.78 924.76 158.89 925.63 159 926.5C158.78 926.67 158.55 926.83 158.33 927C158.44 925.97 158.56 924.93 158.67 923.9ZM270.31 935.02C270.44 936.02 270.56 937.01 270.69 938C270.46 937.83 270.23 937.67 270 937.5C270.1 936.67 270.21 935.85 270.31 935.02ZM225.33 939.05C225.45 941.36 225.57 943.68 225.69 946C225.46 945.83 225.23 945.67 225 945.5C225.11 943.35 225.22 941.2 225.33 939.05ZM234.32 949C234.55 949.17 234.77 949.33 235 949.5C234.89 951 234.79 952.51 234.68 954.01C234.56 952.34 234.44 950.67 234.32 949ZM687.94 955.32C689.13 955.22 690.31 955.11 691.5 955C691.67 955.23 691.83 955.46 692 955.68C690.65 955.56 689.3 955.44 687.94 955.32ZM235.31 972C235.54 972.17 235.77 972.33 236 972.5C235.9 973.3 235.8 974.11 235.71 974.91C235.57 973.94 235.44 972.97 235.31 972ZM194.31 973C194.54 973.17 194.77 973.33 195 973.5C194.89 974.7 194.78 975.9 194.67 977.1C194.55 975.73 194.43 974.37 194.31 973Z" fill="#ffffff" fill-rule="evenodd" stroke="#ffffff" stroke-width="0.25" stroke-linejoin="round"/>
5
+ </svg>
@@ -15,39 +15,56 @@
15
15
  // You should have received a copy of the GNU Affero General Public License
16
16
  // along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
 
18
- import type { SVGAttributes } from "react";
19
-
20
- const Logo = (props: SVGAttributes<SVGElement>) => {
21
- return (
22
- <div className="flex items-center gap-2.5">
23
- <svg
24
- width="147"
25
- height="40"
26
- viewBox="0 0 147 40"
27
- fill="none"
28
- xmlns="http://www.w3.org/2000/svg"
29
- {...props}
30
- >
31
- <circle
32
- cx="20"
33
- cy="20"
34
- r="20"
35
- fill="#030712"
36
- className="dark:fill-[#FFFFFF]"
37
- />
38
- <path
39
- d="M25.2992 26.2688C24.0576 26.2688 23.04 26 22.2464 25.4624C21.4528 24.9248 20.9728 24.1568 20.8064 23.1584L23.0336 22.5824C23.1232 23.0304 23.2704 23.3824 23.4752 23.6384C23.6928 23.8944 23.9552 24.08 24.2624 24.1952C24.5824 24.2976 24.928 24.3488 25.2992 24.3488C25.8624 24.3488 26.2784 24.2528 26.5472 24.0608C26.816 23.856 26.9504 23.6064 26.9504 23.312C26.9504 23.0176 26.8224 22.7936 26.5664 22.64C26.3104 22.4736 25.9008 22.3392 25.3376 22.2368L24.8 22.1408C24.1344 22.0128 23.5264 21.84 22.976 21.6224C22.4256 21.392 21.984 21.0784 21.6512 20.6816C21.3184 20.2848 21.152 19.7728 21.152 19.1456C21.152 18.1984 21.4976 17.4752 22.1888 16.976C22.88 16.464 23.7888 16.208 24.9152 16.208C25.9776 16.208 26.8608 16.4448 27.5648 16.9184C28.2688 17.392 28.7296 18.0128 28.9472 18.7808L26.7008 19.472C26.5984 18.9856 26.3872 18.64 26.0672 18.4352C25.76 18.2304 25.376 18.128 24.9152 18.128C24.4544 18.128 24.1024 18.2112 23.8592 18.3776C23.616 18.5312 23.4944 18.7488 23.4944 19.0304C23.4944 19.3376 23.6224 19.568 23.8784 19.7216C24.1344 19.8624 24.48 19.9712 24.9152 20.048L25.4528 20.144C26.1696 20.272 26.816 20.4448 27.392 20.6624C27.9808 20.8672 28.4416 21.168 28.7744 21.5648C29.12 21.9488 29.2928 22.4736 29.2928 23.1392C29.2928 24.1376 28.928 24.912 28.1984 25.4624C27.4816 26 26.5152 26.2688 25.2992 26.2688ZM30.6447 26V12.56H33.0639V17.648H33.4095C33.5119 17.4432 33.6719 17.2384 33.8895 17.0336C34.1071 16.8288 34.3951 16.6624 34.7535 16.5344C35.1247 16.3936 35.5919 16.3232 36.1551 16.3232C36.8975 16.3232 37.5439 16.496 38.0943 16.8416C38.6575 17.1744 39.0927 17.6416 39.3999 18.2432C39.7071 18.832 39.8607 19.5232 39.8607 20.3168V26H37.4415V20.5088C37.4415 19.792 37.2623 19.2544 36.9039 18.896C36.5583 18.5376 36.0591 18.3584 35.4063 18.3584C34.6639 18.3584 34.0879 18.608 33.6783 19.1072C33.2687 19.5936 33.0639 20.2784 33.0639 21.1616V26H30.6447Z"
40
- fill="white"
41
- className="dark:fill-[#030712]"
42
- />
43
- <path
44
- d="M44.6648 26.2688C43.9864 26.2688 43.3784 26.1536 42.8408 25.9232C42.3032 25.68 41.8744 25.3344 41.5544 24.8864C41.2472 24.4256 41.0936 23.8688 41.0936 23.216C41.0936 22.5632 41.2472 22.0192 41.5544 21.584C41.8744 21.136 42.3096 20.8032 42.86 20.5856C43.4232 20.3552 44.0632 20.24 44.78 20.24H47.3912V19.7024C47.3912 19.2544 47.2504 18.8896 46.9688 18.608C46.6872 18.3136 46.2392 18.1664 45.6248 18.1664C45.0232 18.1664 44.5752 18.3072 44.2808 18.5888C43.9864 18.8576 43.7944 19.2096 43.7048 19.6448L41.4776 18.896C41.6312 18.4096 41.8744 17.968 42.2072 17.5712C42.5528 17.1616 43.0072 16.8352 43.5704 16.592C44.1464 16.336 44.844 16.208 45.6632 16.208C46.9176 16.208 47.9096 16.5216 48.6392 17.1488C49.3688 17.776 49.7336 18.6848 49.7336 19.8752V23.4272C49.7336 23.8112 49.9128 24.0032 50.2712 24.0032H51.0392V26H49.4264C48.9528 26 48.5624 25.8848 48.2552 25.6544C47.948 25.424 47.7944 25.1168 47.7944 24.7328V24.7136H47.4296C47.3784 24.8672 47.2632 25.072 47.084 25.328C46.9048 25.5712 46.6232 25.7888 46.2392 25.9808C45.8552 26.1728 45.3304 26.2688 44.6648 26.2688ZM45.0872 24.3104C45.7656 24.3104 46.316 24.1248 46.7384 23.7536C47.1736 23.3696 47.3912 22.864 47.3912 22.2368V22.0448H44.9528C44.5048 22.0448 44.1528 22.1408 43.8968 22.3328C43.6408 22.5248 43.5128 22.7936 43.5128 23.1392C43.5128 23.4848 43.6472 23.7664 43.916 23.984C44.1848 24.2016 44.5752 24.3104 45.0872 24.3104ZM55.6925 26.2688C54.9373 26.2688 54.2269 26.0832 53.5613 25.712C52.9085 25.328 52.3837 24.7712 51.9869 24.0416C51.5901 23.312 51.3917 22.4288 51.3917 21.392V21.0848C51.3917 20.048 51.5901 19.1648 51.9869 18.4352C52.3837 17.7056 52.9085 17.1552 53.5613 16.784C54.2141 16.4 54.9245 16.208 55.6925 16.208C56.2685 16.208 56.7485 16.2784 57.1325 16.4192C57.5293 16.5472 57.8493 16.7136 58.0925 16.9184C58.3357 17.1232 58.5213 17.3408 58.6493 17.5712H58.9949V12.56H61.4141V26H59.0333V24.848H58.6877C58.4701 25.2064 58.1309 25.5328 57.6701 25.8272C57.2221 26.1216 56.5629 26.2688 55.6925 26.2688ZM56.4221 24.1568C57.1645 24.1568 57.7853 23.92 58.2845 23.4464C58.7837 22.96 59.0333 22.256 59.0333 21.3344V21.1424C59.0333 20.2208 58.7837 19.5232 58.2845 19.0496C57.7981 18.5632 57.1773 18.32 56.4221 18.32C55.6797 18.32 55.0589 18.5632 54.5597 19.0496C54.0605 19.5232 53.8109 20.2208 53.8109 21.1424V21.3344C53.8109 22.256 54.0605 22.96 54.5597 23.4464C55.0589 23.92 55.6797 24.1568 56.4221 24.1568ZM67.8018 26.2688C66.8802 26.2688 66.0418 26.0768 65.2866 25.6928C64.5442 25.3088 63.9554 24.752 63.5202 24.0224C63.085 23.2928 62.8674 22.4096 62.8674 21.3728V21.104C62.8674 20.0672 63.085 19.184 63.5202 18.4544C63.9554 17.7248 64.5442 17.168 65.2866 16.784C66.0418 16.4 66.8802 16.208 67.8018 16.208C68.7106 16.208 69.4914 16.368 70.1442 16.688C70.797 17.008 71.3218 17.4496 71.7186 18.0128C72.1282 18.5632 72.397 19.1904 72.525 19.8944L70.1826 20.3936C70.1314 20.0096 70.0162 19.664 69.837 19.3568C69.6578 19.0496 69.4018 18.8064 69.069 18.6272C68.749 18.448 68.3458 18.3584 67.8594 18.3584C67.373 18.3584 66.9314 18.4672 66.5346 18.6848C66.1506 18.8896 65.8434 19.2032 65.613 19.6256C65.3954 20.0352 65.2866 20.5408 65.2866 21.1424V21.3344C65.2866 21.936 65.3954 22.448 65.613 22.8704C65.8434 23.28 66.1506 23.5936 66.5346 23.8112C66.9314 24.016 67.373 24.1184 67.8594 24.1184C68.589 24.1184 69.1394 23.9328 69.5106 23.5616C69.8946 23.1776 70.1378 22.6784 70.2402 22.064L72.5826 22.6208C72.4162 23.2992 72.1282 23.92 71.7186 24.4832C71.3218 25.0336 70.797 25.4688 70.1442 25.7888C69.4914 26.1088 68.7106 26.2688 67.8018 26.2688ZM73.8102 26V16.4768H76.191V17.7248H76.5366C76.6902 17.392 76.9782 17.0784 77.4006 16.784C77.823 16.4768 78.463 16.3232 79.3206 16.3232C80.063 16.3232 80.7094 16.496 81.2598 16.8416C81.823 17.1744 82.2582 17.6416 82.5654 18.2432C82.8726 18.832 83.0262 19.5232 83.0262 20.3168V26H80.607V20.5088C80.607 19.792 80.4278 19.2544 80.0694 18.896C79.7238 18.5376 79.2246 18.3584 78.5718 18.3584C77.8294 18.3584 77.2534 18.608 76.8438 19.1072C76.4342 19.5936 76.2294 20.2784 76.2294 21.1616V26H73.8102ZM88.8287 26.2688C87.5871 26.2688 86.5695 26 85.7759 25.4624C84.9823 24.9248 84.5023 24.1568 84.3359 23.1584L86.5631 22.5824C86.6527 23.0304 86.7999 23.3824 87.0047 23.6384C87.2223 23.8944 87.4847 24.08 87.7919 24.1952C88.1119 24.2976 88.4575 24.3488 88.8287 24.3488C89.3919 24.3488 89.8079 24.2528 90.0767 24.0608C90.3455 23.856 90.4799 23.6064 90.4799 23.312C90.4799 23.0176 90.3519 22.7936 90.0959 22.64C89.8399 22.4736 89.4303 22.3392 88.8671 22.2368L88.3295 22.1408C87.6639 22.0128 87.0559 21.84 86.5055 21.6224C85.9551 21.392 85.5135 21.0784 85.1807 20.6816C84.8479 20.2848 84.6815 19.7728 84.6815 19.1456C84.6815 18.1984 85.0271 17.4752 85.7183 16.976C86.4095 16.464 87.3183 16.208 88.4447 16.208C89.5071 16.208 90.3903 16.4448 91.0943 16.9184C91.7983 17.392 92.2591 18.0128 92.4767 18.7808L90.2303 19.472C90.1279 18.9856 89.9167 18.64 89.5967 18.4352C89.2895 18.2304 88.9055 18.128 88.4447 18.128C87.9839 18.128 87.6319 18.2112 87.3887 18.3776C87.1455 18.5312 87.0239 18.7488 87.0239 19.0304C87.0239 19.3376 87.1519 19.568 87.4079 19.7216C87.6639 19.8624 88.0095 19.9712 88.4447 20.048L88.9823 20.144C89.6991 20.272 90.3455 20.4448 90.9215 20.6624C91.5103 20.8672 91.9711 21.168 92.3039 21.5648C92.6495 21.9488 92.8223 22.4736 92.8223 23.1392C92.8223 24.1376 92.4575 24.912 91.7279 25.4624C91.0111 26 90.0447 26.2688 88.8287 26.2688ZM94.1742 29.84V16.4768H96.555V17.6288H96.9006C97.1182 17.2576 97.4574 16.9312 97.9182 16.6496C98.379 16.3552 99.0382 16.208 99.8958 16.208C100.664 16.208 101.374 16.4 102.027 16.784C102.68 17.1552 103.205 17.7056 103.601 18.4352C103.998 19.1648 104.197 20.048 104.197 21.0848V21.392C104.197 22.4288 103.998 23.312 103.601 24.0416C103.205 24.7712 102.68 25.328 102.027 25.712C101.374 26.0832 100.664 26.2688 99.8958 26.2688C99.3198 26.2688 98.8334 26.1984 98.4366 26.0576C98.0526 25.9296 97.739 25.7632 97.4958 25.5584C97.2654 25.3408 97.0798 25.1232 96.939 24.9056H96.5934V29.84H94.1742ZM99.1662 24.1568C99.9214 24.1568 100.542 23.92 101.029 23.4464C101.528 22.96 101.777 22.256 101.777 21.3344V21.1424C101.777 20.2208 101.528 19.5232 101.029 19.0496C100.529 18.5632 99.9086 18.32 99.1662 18.32C98.4238 18.32 97.803 18.5632 97.3038 19.0496C96.8046 19.5232 96.555 20.2208 96.555 21.1424V21.3344C96.555 22.256 96.8046 22.96 97.3038 23.4464C97.803 23.92 98.4238 24.1568 99.1662 24.1568ZM108.607 26.2688C107.928 26.2688 107.32 26.1536 106.783 25.9232C106.245 25.68 105.816 25.3344 105.496 24.8864C105.189 24.4256 105.036 23.8688 105.036 23.216C105.036 22.5632 105.189 22.0192 105.496 21.584C105.816 21.136 106.252 20.8032 106.802 20.5856C107.365 20.3552 108.005 20.24 108.722 20.24H111.333V19.7024C111.333 19.2544 111.192 18.8896 110.911 18.608C110.629 18.3136 110.181 18.1664 109.567 18.1664C108.965 18.1664 108.517 18.3072 108.223 18.5888C107.928 18.8576 107.736 19.2096 107.647 19.6448L105.42 18.896C105.573 18.4096 105.816 17.968 106.149 17.5712C106.495 17.1616 106.949 16.8352 107.512 16.592C108.088 16.336 108.786 16.208 109.605 16.208C110.86 16.208 111.852 16.5216 112.581 17.1488C113.311 17.776 113.676 18.6848 113.676 19.8752V23.4272C113.676 23.8112 113.855 24.0032 114.213 24.0032H114.981V26H113.368C112.895 26 112.504 25.8848 112.197 25.6544C111.89 25.424 111.736 25.1168 111.736 24.7328V24.7136H111.372C111.32 24.8672 111.205 25.072 111.026 25.328C110.847 25.5712 110.565 25.7888 110.181 25.9808C109.797 26.1728 109.272 26.2688 108.607 26.2688ZM109.029 24.3104C109.708 24.3104 110.258 24.1248 110.68 23.7536C111.116 23.3696 111.333 22.864 111.333 22.2368V22.0448H108.895C108.447 22.0448 108.095 22.1408 107.839 22.3328C107.583 22.5248 107.455 22.7936 107.455 23.1392C107.455 23.4848 107.589 23.7664 107.858 23.984C108.127 24.2016 108.517 24.3104 109.029 24.3104ZM120.268 26.2688C119.346 26.2688 118.508 26.0768 117.753 25.6928C117.01 25.3088 116.422 24.752 115.986 24.0224C115.551 23.2928 115.334 22.4096 115.334 21.3728V21.104C115.334 20.0672 115.551 19.184 115.986 18.4544C116.422 17.7248 117.01 17.168 117.753 16.784C118.508 16.4 119.346 16.208 120.268 16.208C121.177 16.208 121.958 16.368 122.61 16.688C123.263 17.008 123.788 17.4496 124.185 18.0128C124.594 18.5632 124.863 19.1904 124.991 19.8944L122.649 20.3936C122.598 20.0096 122.482 19.664 122.303 19.3568C122.124 19.0496 121.868 18.8064 121.535 18.6272C121.215 18.448 120.812 18.3584 120.326 18.3584C119.839 18.3584 119.398 18.4672 119.001 18.6848C118.617 18.8896 118.31 19.2032 118.079 19.6256C117.862 20.0352 117.753 20.5408 117.753 21.1424V21.3344C117.753 21.936 117.862 22.448 118.079 22.8704C118.31 23.28 118.617 23.5936 119.001 23.8112C119.398 24.016 119.839 24.1184 120.326 24.1184C121.055 24.1184 121.606 23.9328 121.977 23.5616C122.361 23.1776 122.604 22.6784 122.706 22.064L125.049 22.6208C124.882 23.2992 124.594 23.92 124.185 24.4832C123.788 25.0336 123.263 25.4688 122.61 25.7888C121.958 26.1088 121.177 26.2688 120.268 26.2688ZM130.616 26.2688C129.668 26.2688 128.83 26.0704 128.1 25.6736C127.384 25.264 126.82 24.6944 126.411 23.9648C126.014 23.2224 125.816 22.352 125.816 21.3536V21.1232C125.816 20.1248 126.014 19.2608 126.411 18.5312C126.808 17.7888 127.364 17.2192 128.081 16.8224C128.798 16.4128 129.63 16.208 130.577 16.208C131.512 16.208 132.324 16.4192 133.016 16.8416C133.707 17.2512 134.244 17.8272 134.628 18.5696C135.012 19.2992 135.204 20.1504 135.204 21.1232V21.9488H128.273C128.299 22.6016 128.542 23.1328 129.003 23.5424C129.464 23.952 130.027 24.1568 130.692 24.1568C131.371 24.1568 131.87 24.0096 132.19 23.7152C132.51 23.4208 132.753 23.0944 132.92 22.736L134.897 23.7728C134.718 24.1056 134.456 24.4704 134.11 24.8672C133.777 25.2512 133.329 25.584 132.766 25.8656C132.203 26.1344 131.486 26.2688 130.616 26.2688ZM128.292 20.144H132.747C132.696 19.5936 132.472 19.152 132.075 18.8192C131.691 18.4864 131.185 18.32 130.558 18.32C129.905 18.32 129.387 18.4864 129.003 18.8192C128.619 19.152 128.382 19.5936 128.292 20.144ZM137.994 26.2688C137.482 26.2688 137.047 26.1024 136.688 25.7696C136.343 25.424 136.17 24.9824 136.17 24.4448C136.17 23.9072 136.343 23.472 136.688 23.1392C137.047 22.7936 137.482 22.6208 137.994 22.6208C138.519 22.6208 138.954 22.7936 139.3 23.1392C139.645 23.472 139.818 23.9072 139.818 24.4448C139.818 24.9824 139.645 25.424 139.3 25.7696C138.954 26.1024 138.519 26.2688 137.994 26.2688Z"
45
- fill="#030712"
46
- className="dark:fill-[#FFFFFF]"
47
- />
48
- </svg>
49
- </div>
50
- );
51
- };
52
-
53
- export default Logo;
18
+ import type { SVGAttributes } from "react";
19
+
20
+ const PATH_0 = "M912.82 421.43C912.92 423.04 913.03 424.64 913.13 426.24C913.41 436.02 913.68 445.8 913.96 455.57C913.82 457.16 913.67 458.75 913.53 460.34C913.39 464.09 913.25 467.85 913.11 471.61C913.01 475.69 912.9 479.76 912.8 483.84C905.03 614.78 836.48 739.86 721.87 806.58C713.75 811.31 705.22 814.88 696.81 818.82C681.84 825.84 666.92 832.57 651.26 838.16C619.75 849.42 586.6 854.7 553.54 858.44C552.2 858.57 550.85 858.7 549.51 858.83C545.18 858.97 540.85 859.11 536.52 859.25C533.01 859.29 529.5 859.33 525.98 859.38C520.6 859.19 515.22 859 509.83 858.81C507.65 858.71 505.47 858.6 503.29 858.49C501.39 858.34 499.48 858.18 497.58 858.02C496.24 857.91 494.9 857.8 493.57 857.69C461.02 854.33 429.45 847.25 399.28 834.59C396.56 833.45 393.57 832.92 390.9 831.7C389.25 830.95 388.09 829.59 386.42 828.83C375.89 824.08 364.9 820.07 354.95 814.1C348.49 810.22 340.67 802.9 334.06 800.22C327.67 797.62 320.09 797.29 313.41 795.58C302.7 792.84 291.97 788.87 281.95 784.16C218.81 754.5 165.31 704.82 137.47 640.13C125.41 612.09 117.59 582.91 112.22 552.9C105.08 513.03 104.34 471.16 86.98 433.78C80.1 418.98 71.48 405.92 59 395.26C43.31 381.86 27.91 375.15 13.87 358.51C8.99 352.73 4.81 346.43 2.3 339.24C1.43 336.74 1.16 333.94 0.14 331.58C0.14 326.94 0.14 322.31 0.14 317.67C1.35 314.89 1.52 311.38 2.36 308.37C4.36 301.27 6.96 294.29 10.08 287.6C22.74 260.44 38.53 234.64 55.66 210.06C139.44 89.85 287.99 10.93 433.59 2.96C435.46 2.86 437.32 2.77 439.19 2.68C470.99 -0.23 503.07 3.72 534.54 7.84C556.37 10.7 577.66 15.99 598.74 22.39C618.17 28.3 637.25 34.9 655.82 43.23C745.71 83.53 819.5 157.02 863.49 244.8C879.78 277.29 893.81 312.84 901.66 348.38C907 372.56 910.26 396.87 912.82 421.43ZM493.57 182.93C494.93 182.82 496.3 182.72 497.66 182.61C505.74 182.61 513.82 182.61 521.9 182.61C524.07 182.72 526.24 182.82 528.41 182.92C561.81 185.44 594.93 192.49 625.58 206.35C635.18 210.69 644.79 215.62 653.81 221.07C658.57 223.94 663.03 228.33 668.22 230.26C673.63 226.68 683.25 209.59 686.8 203.36C703.34 174.33 713.07 141.46 709.77 107.79C709.63 106.48 709.5 105.18 709.37 103.87C709.14 100.94 709.21 96.23 707.38 93.76C704.78 90.25 698.39 87.71 694.72 85.35C685.43 79.4 676.09 73.48 666.3 68.38C624.09 46.36 577.59 31.74 530.61 24.81C522.06 23.54 513.55 22.01 504.89 21.63C503.54 21.51 502.2 21.38 500.86 21.25C493.3 20.83 485.75 20.42 478.2 20C476.56 19.89 474.93 19.78 473.3 19.68C450.82 17.58 427.93 20.22 405.63 22.9C371.88 26.95 341.56 33.48 309.14 43.67C296.56 47.62 283.89 52.16 271.81 57.45C268.64 58.83 261.75 60.48 260.51 63.62C264.92 66.44 271.7 66.57 276.75 68.08C286.8 71.09 296.71 75.83 305.56 81.45C336.54 101.12 361.81 126.41 378.02 159.73C382.31 168.53 386.57 177.57 389.71 186.86C391.66 192.64 392.43 199.06 394.6 204.64C398.04 204.62 401.67 202.32 404.95 201.13C413.17 198.15 421.55 195.3 430 193.03C450.85 187.43 472.07 184.53 493.57 182.93ZM187.04 542.19C186.91 540.33 186.78 538.46 186.65 536.59C186.84 532.9 186.2 529.26 186.27 525.58C186.54 511.2 187.22 496.43 189.24 482.19C199.47 410.09 228.1 344.53 276.74 290.11C281.56 284.72 286.16 278.95 291.42 273.99C309.99 256.47 329.78 240.3 351.93 227.51C359.31 223.25 366.61 218.8 374.29 215.08C378.39 213.1 384.07 211.94 386.99 208.33C387.19 198.94 377.68 178.18 373.32 169.26C355.91 133.67 330.18 103.03 294.94 83.94C284.52 78.3 273.61 73.83 262.29 70.33C258.28 69.09 252.68 66.98 248.55 68.23C244.02 69.6 239.34 72.89 235.11 75.04C221.9 81.75 209.46 89.66 197.15 97.86C189.2 103.16 180.88 107.88 173.15 113.55C122.61 150.58 78.65 197.8 47.79 252.38C40.47 265.32 33.02 277.98 27.12 291.68C22.72 301.89 16.43 318.01 18.24 329.1C21.06 346.46 41.16 360.45 54.63 369.63C72.08 381.53 88.02 396.33 98.55 414.87C122.95 457.88 122.14 510.27 131.72 557.48C135.8 577.54 139.77 597.71 146.98 616.95C164.32 663.26 195.1 705.41 234.93 734.76C247.38 743.94 259.84 752.27 273.72 759.2C277.82 761.24 284.79 766.61 289.13 765.47C287.16 761.37 278.25 754.14 274.66 750.17C263.65 737.97 252.77 725.18 243.61 711.49C207.97 658.28 192.06 605.7 187.04 542.19ZM718.15 117.52C718.18 120.49 718.2 123.46 718.22 126.43C717.46 136.86 716.88 147.28 714.61 157.54C710.82 174.7 702.85 191 694.8 206.49C691.82 212.22 688.37 217.72 684.34 222.76C681.34 226.51 676.68 230.85 675.33 235.44C680.4 240.92 687.28 245.04 692.79 250.16C704.7 261.25 715.61 273.36 725.75 286.09C749.66 316.1 767.03 353.54 774.82 391.04C777.72 404.95 778.9 418.75 780.67 432.78C780.72 438.18 780.77 443.59 780.83 448.99C780.62 451.46 780.42 453.92 780.22 456.39C780.1 458.52 779.98 460.64 779.87 462.77C779.99 464.5 779.95 464.53 781.34 465.43C784.02 465.54 786.7 465.66 789.38 465.77C801.15 466.66 813.28 466.98 825.04 465.79C826.96 465.68 828.88 465.57 830.79 465.47C850.7 465.45 874.53 460.05 892.99 452.64C895.33 445.14 893.36 435.28 893.03 427.51C892.24 408.85 890.32 389.91 886.51 371.61C875.06 316.67 855.45 263.3 825.31 215.75C812.61 195.72 799.1 175.14 782.34 158.19C767.47 143.15 752.77 128.48 736.46 114.95C732.34 111.54 721.34 101.22 716.84 100.67C717.28 106.29 717.72 111.9 718.15 117.52ZM514.64 364.49C519.5 364.49 524.36 364.48 529.22 364.48C563.64 368.65 596.33 384.31 611.49 417.37C616.99 429.35 619.78 441.71 621.78 454.66C621.9 456.05 622.03 457.44 622.16 458.83C622.17 460.94 622.18 463.05 622.18 465.17C622.04 466.8 621.9 468.43 621.76 470.06C618.66 503.22 595.23 538.24 560.43 543.86C552.87 545.08 544.33 545.22 536.87 543.15C509.15 535.43 492.16 506.74 509.02 480.29C512.66 474.57 519.84 467.6 527.17 471.71C528.62 472.52 530.07 473.94 530.56 475.58C531.59 479.06 528.57 481.57 526.76 484.19C523.83 488.43 521.98 492.45 521.68 497.65C521.68 499.83 521.67 502.01 521.67 504.19C523.6 527.88 550.02 530.06 567.56 522.56C587.94 513.84 600.08 489.72 601.61 468.48C601.62 464.39 601.62 460.29 601.62 456.2C601.57 450.19 600.01 444.32 598.49 438.54C594.42 423.05 585.53 407.69 572.6 397.9C550.9 381.46 518.84 377.57 493.2 385.06C450.3 397.59 419.32 435.92 407.95 477.96C403.48 494.49 401.61 512.55 402.5 529.63C403.14 541.91 406.11 554.6 409.85 566.28C432.39 636.77 500.5 676.66 572.99 670.86C574.32 670.73 575.66 670.61 576.99 670.48C585.6 670.28 594.5 667.86 602.79 665.69C619.35 661.34 634.41 655.75 649.35 647.3C718.36 608.26 757.1 538.55 759.19 459.93C759.4 452.24 760.69 444.53 759.98 436.83C759.86 433.88 759.75 430.92 759.64 427.96C759.49 425.25 759.34 422.53 759.2 419.81C759.08 418.45 758.96 417.09 758.84 415.73C757.72 395.27 751.43 375.82 744.23 356.82C719.23 290.85 664.95 240.51 599.81 215.16C592.66 212.38 585.11 210.77 577.73 208.75C562.15 204.48 545.42 201.03 529.18 200.74C527.3 200.61 525.43 200.47 523.55 200.34C508.74 198.48 493.06 200 478.27 201.41C432.35 205.78 387.73 222.74 349.49 248.57C337.91 256.39 326.64 265.14 316.44 274.71C313.21 277.74 308.64 280.6 306.1 284.06C309.51 288.45 323.4 292.81 329.01 296.26C346.82 307.23 364.64 318.41 380.18 332.61C395 346.15 408.61 361.07 421.19 376.68C424.81 381.17 427.82 386.38 430.99 391.21C432.51 393.54 433.34 396.53 435.62 397.97C438.8 396.11 441.43 392.85 444.37 390.49C448.2 387.42 452.75 384.46 457.07 382.13C476.8 371.52 492.29 366.73 514.64 364.49ZM206.07 543.81C206.18 545.13 206.3 546.45 206.42 547.77C206.56 549.42 206.7 551.08 206.84 552.73C206.97 554.09 207.1 555.46 207.22 556.82C208.75 587.42 217.32 618.74 229.86 646.59C233.67 655.06 237.48 668.35 244.3 674.7C248.5 674.4 253.61 670.6 257.46 668.8C267.12 664.28 277.07 660.52 286.69 655.88C304.27 647.41 321.86 638.41 338.62 628.38C346.33 623.76 353.75 618.59 361.45 613.92C373.55 606.58 386.27 599.78 397.53 591.17C396.7 584.09 392.15 576.86 390.09 569.96C386.6 558.27 385.08 546.09 383.12 534.09C383.01 532.7 382.91 531.32 382.8 529.93C382.8 525.39 382.8 520.85 382.8 516.31C382.92 514.13 383.03 511.95 383.15 509.77C383.3 507.85 383.44 505.92 383.59 503.99C383.72 502.68 383.86 501.36 383.99 500.05C387.62 476.41 393.83 452.71 406.6 432.14C410.26 426.24 414.34 420.51 418.96 415.31C422.09 411.79 426.6 408.12 428.75 404.01C423.15 392.59 414.55 382.49 406.58 372.65C386.28 347.58 361.41 325.17 333.7 308.56C325.97 303.92 307.5 291.43 299.46 290.31C293.08 294.95 288.07 302.54 283.01 308.55C272.5 321.03 262.6 333.83 254.46 348.01C227.76 394.48 212.55 439.71 207.31 493.16C205.65 510.12 204.84 526.78 206.07 543.81ZM816.94 474.28C810.72 474.33 804.51 474.38 798.29 474.42C794.01 474.23 789.72 474.04 785.44 473.85C783.65 473.78 781.85 473.71 780.06 473.65C779.98 473.8 779.9 473.96 779.82 474.11C778.27 480.1 778.41 486.95 777.39 493.16C775.21 506.55 771.82 519.48 767.88 532.43C764.89 542.25 760.29 551.72 755.84 560.94C739.05 595.71 716.36 625.15 684.87 647.99C672.14 657.21 658.79 665.87 644.45 672.36C640.55 674.12 636.43 675.95 632.35 677.25C629.55 678.14 626.58 678.11 624.02 679.56C624.13 683.59 626.94 686.68 628.68 690.3C631.87 696.92 634.91 703.67 637.71 710.45C646.43 731.52 653.6 753.15 658.57 775.43C660.45 783.85 661.15 792.48 662.45 800.99C662.98 804.48 662.8 808.75 664.98 811.45C672.92 809.52 679.75 804.41 687.05 800.92C704.15 792.76 720.13 783.37 735.63 772.49C806.65 722.63 859.72 644.07 880.43 559.79C886.19 536.35 891.08 512.51 891.99 488.3C892.24 481.78 894.47 467.13 892.62 461.55C888.62 461.6 884.42 464.05 880.53 465.2C875.2 466.79 869.75 467.99 864.32 469.2C848.64 472.68 832.81 472.65 816.94 474.28ZM517.98 839.83C521.68 839.84 525.39 839.86 529.1 839.87C570.52 840.69 615.92 830.57 654.44 815.48C656.78 805.45 652.44 794.04 650.83 784.11C646.7 758.8 638.19 733.8 628.28 710.2C625.69 704.03 622.06 698.44 619.35 692.36C617.98 689.3 617.09 685.12 614.73 682.76C605.25 683.65 595.84 686.76 586.36 688.03C574.03 689.68 561.94 689.08 549.6 689.43C547.67 689.29 545.74 689.15 543.81 689.01C501.53 683.39 462.28 669.63 431.63 638.56C422.63 629.44 415.77 619.45 408.57 608.93C406.16 605.41 404.3 601.27 401.58 598.04C394.71 599.37 378.41 613 371.47 617.46C347.08 633.15 322.05 647.46 296.12 660.41C286.68 665.13 276.85 669.6 267.03 673.45C261.1 675.77 253.05 677.55 248.4 682.08C249.64 688.81 255.93 696.23 259.72 701.88C270.21 717.54 282.56 731.83 295.93 745.1C345.45 794.22 410.48 826.76 479.4 837C492.01 838.87 505.24 839.34 517.98 839.83Z";
21
+ const PATH_1 = "M439.19 2.68C437.32 2.77 435.46 2.86 433.59 2.96C433.73 2.78 433.86 2.61 434 2.43C435.73 2.51 437.46 2.6 439.19 2.68ZM473.3 19.68C474.93 19.78 476.56 19.89 478.2 20C476.7 20.09 475.2 20.17 473.71 20.26C473.57 20.07 473.44 19.87 473.3 19.68ZM500.86 21.25C502.2 21.38 503.54 21.51 504.89 21.63C503.68 21.72 502.47 21.8 501.26 21.88C501.13 21.67 500.99 21.46 500.86 21.25ZM709.37 103.87C709.5 105.18 709.63 106.48 709.77 107.79C709.56 107.66 709.35 107.52 709.15 107.38C709.22 106.21 709.29 105.04 709.37 103.87ZM718.15 117.52C718.39 117.65 718.63 117.79 718.87 117.92C718.87 120.62 718.87 123.32 718.87 126.03C718.65 126.16 718.44 126.3 718.22 126.43C718.2 123.46 718.18 120.49 718.15 117.52ZM497.66 182.61C496.3 182.72 494.93 182.82 493.57 182.93C493.7 182.73 493.84 182.54 493.97 182.35C495.2 182.44 496.43 182.53 497.66 182.61ZM521.9 182.61C523.94 182.53 525.97 182.44 528.01 182.35C528.14 182.54 528.28 182.73 528.41 182.92C526.24 182.82 524.07 182.72 521.9 182.61ZM523.55 200.34C525.43 200.47 527.3 200.61 529.18 200.74C527.44 200.82 525.7 200.91 523.96 200.99C523.82 200.77 523.69 200.56 523.55 200.34ZM529.22 364.48C524.36 364.48 519.5 364.49 514.64 364.49C514.77 364.29 514.91 364.09 515.04 363.89C519.63 363.89 524.23 363.89 528.82 363.89C528.95 364.09 529.09 364.28 529.22 364.48ZM758.84 415.73C758.96 417.09 759.08 418.45 759.2 419.81C758.99 419.68 758.79 419.54 758.58 419.41C758.67 418.18 758.75 416.96 758.84 415.73ZM912.82 421.43C913.01 421.57 913.19 421.71 913.38 421.84C913.3 423.31 913.21 424.77 913.13 426.24C913.03 424.64 912.92 423.04 912.82 421.43ZM759.64 427.96C759.75 430.92 759.86 433.88 759.98 436.83C759.78 436.7 759.59 436.56 759.39 436.43C759.47 433.61 759.56 430.78 759.64 427.96ZM780.67 432.78C780.72 438.18 780.77 443.59 780.83 448.99C780.77 443.59 780.72 438.18 780.67 432.78ZM621.78 454.66C621.99 454.8 622.21 454.93 622.43 455.07C622.34 456.32 622.25 457.57 622.16 458.83C622.03 457.44 621.9 456.05 621.78 454.66ZM913.96 455.57C914.04 457.03 914.11 458.48 914.19 459.93C913.97 460.07 913.75 460.2 913.53 460.34C913.67 458.75 913.82 457.16 913.96 455.57ZM601.62 456.2C601.62 460.29 601.62 464.39 601.61 468.48C601.62 464.39 601.62 460.29 601.62 456.2ZM780.22 456.39C780.3 458.38 780.38 460.37 780.47 462.36C780.27 462.5 780.07 462.63 779.87 462.77C779.98 460.64 780.1 458.52 780.22 456.39ZM622.18 465.17C622.26 466.66 622.35 468.16 622.43 469.66C622.2 469.79 621.98 469.93 621.76 470.06C621.9 468.43 622.04 466.8 622.18 465.17ZM781.34 465.43C783.89 465.35 786.43 465.28 788.97 465.2C789.11 465.39 789.24 465.58 789.38 465.77C786.7 465.66 784.02 465.54 781.34 465.43ZM830.79 465.47C828.88 465.57 826.96 465.68 825.04 465.79C825.17 465.59 825.31 465.4 825.45 465.2C827.23 465.29 829.01 465.38 830.79 465.47ZM913.11 471.61C913.2 475.55 913.29 479.49 913.38 483.43C913.19 483.57 912.99 483.7 912.8 483.84C912.9 479.76 913.01 475.69 913.11 471.61ZM785.44 473.85C783.57 473.94 781.69 474.02 779.82 474.11C779.9 473.96 779.98 473.8 780.06 473.65C781.85 473.71 783.65 473.78 785.44 473.85ZM798.29 474.42C804.51 474.38 810.72 474.33 816.94 474.28C814.3 475.59 801.18 475.53 798.29 474.42ZM521.68 497.65C521.68 499.83 521.67 502.01 521.67 504.19C521.67 502.01 521.68 499.83 521.68 497.65ZM383.99 500.05C383.86 501.36 383.72 502.68 383.59 503.99C383.5 502.81 383.42 501.63 383.34 500.45C383.56 500.32 383.78 500.18 383.99 500.05ZM383.15 509.77C383.03 511.95 382.92 514.13 382.8 516.31C382.71 514.27 382.62 512.22 382.53 510.18C382.74 510.04 382.95 509.91 383.15 509.77ZM382.8 529.93C382.91 531.32 383.01 532.7 383.12 534.09C382.92 533.95 382.73 533.82 382.53 533.68C382.62 532.43 382.71 531.18 382.8 529.93ZM186.65 536.59C186.78 538.46 186.91 540.33 187.04 542.19C186.82 542.06 186.61 541.92 186.4 541.79C186.49 540.06 186.57 538.33 186.65 536.59ZM206.07 543.81C206.27 543.95 206.47 544.08 206.67 544.22C206.58 545.4 206.5 546.59 206.42 547.77C206.3 546.45 206.18 545.13 206.07 543.81ZM206.84 552.73C207.05 552.86 207.26 553 207.48 553.13C207.39 554.36 207.31 555.59 207.22 556.82C207.1 555.46 206.97 554.09 206.84 552.73ZM576.99 670.48C575.66 670.61 574.32 670.73 572.99 670.86C573.12 670.66 573.26 670.45 573.39 670.24C574.59 670.32 575.79 670.4 576.99 670.48ZM543.81 689.01C545.74 689.15 547.67 689.29 549.6 689.43C547.81 689.52 546.01 689.6 544.22 689.69C544.08 689.47 543.95 689.24 543.81 689.01ZM517.98 839.83C521.68 839.84 525.39 839.86 529.1 839.87C525.39 839.86 521.68 839.84 517.98 839.83ZM493.57 857.69C494.9 857.8 496.24 857.91 497.58 858.02C496.37 858.1 495.17 858.19 493.97 858.27C493.84 858.08 493.7 857.88 493.57 857.69ZM503.29 858.49C505.47 858.6 507.65 858.71 509.83 858.81C507.79 858.9 505.74 858.99 503.7 859.08C503.56 858.88 503.43 858.69 503.29 858.49ZM553.54 858.44C553.4 858.66 553.27 858.87 553.13 859.08C551.93 858.99 550.72 858.91 549.51 858.83C550.85 858.7 552.2 858.57 553.54 858.44ZM525.98 859.38C529.5 859.33 533.01 859.29 536.52 859.25C536.38 859.46 536.25 859.67 536.11 859.89C532.87 859.89 529.63 859.89 526.39 859.89C526.25 859.72 526.12 859.55 525.98 859.38Z";
22
+
23
+ const CONTENT_BOUNDS = { minX: 0.14, minY: -0.23, maxX: 914.19, maxY: 859.89 };
24
+
25
+ interface LogoProps extends SVGAttributes<SVGElement> {
26
+ /** Stroke width in viewBox units. Auto-expands viewBox when stroke is thick. Default: 4 */
27
+ strokeWidth?: number;
28
+ }
29
+
30
+ const Logo = ({ strokeWidth = 4, ...props }: LogoProps) => {
31
+ const hs = strokeWidth / 2;
32
+ const vbX = CONTENT_BOUNDS.minX - hs;
33
+ const vbY = CONTENT_BOUNDS.minY - hs;
34
+ const vbW = CONTENT_BOUNDS.maxX - CONTENT_BOUNDS.minX + strokeWidth;
35
+ const vbH = CONTENT_BOUNDS.maxY - CONTENT_BOUNDS.minY + strokeWidth;
36
+
37
+ return (
38
+ <div className="flex items-center gap-2.5">
39
+ <svg
40
+ width="147"
41
+ height="40"
42
+ viewBox={`${vbX} ${vbY} ${vbW} ${vbH}`}
43
+ fill="none"
44
+ xmlns="http://www.w3.org/2000/svg"
45
+ {...props}
46
+ >
47
+ <path
48
+ d={PATH_0}
49
+ fill="currentColor"
50
+ className="text-foreground"
51
+ fillRule="evenodd"
52
+ stroke="currentColor"
53
+ strokeWidth={strokeWidth}
54
+ strokeLinejoin="round"
55
+ />
56
+ <path
57
+ d={PATH_1}
58
+ fill="currentColor"
59
+ className="text-background"
60
+ fillRule="evenodd"
61
+ stroke="currentColor"
62
+ strokeWidth={strokeWidth}
63
+ strokeLinejoin="round"
64
+ />
65
+ </svg>
66
+ </div>
67
+ );
68
+ };
69
+
70
+ export default Logo;
@@ -7,7 +7,6 @@ import {
7
7
  } from 'lucide-react'
8
8
  import { format } from 'date-fns'
9
9
  import { zhCN } from 'date-fns/locale'
10
- import { useTranslation } from 'react-i18next'
11
10
  import {
12
11
  DropdownMenu,
13
12
  DropdownMenuContent,
@@ -18,6 +17,7 @@ import { Badge } from '@/components/ui/badge'
18
17
  import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
19
18
  import { Button } from '@/components/ui/button'
20
19
  import type { AgentData } from './agents-page'
20
+ import { m } from "@/paraglide/messages.js";
21
21
 
22
22
  interface AgentCardProps {
23
23
  agent: AgentData
@@ -43,7 +43,7 @@ const TOOLS_DISPLAY: Record<string, string> = {
43
43
  }
44
44
 
45
45
  export function AgentCard({ agent, onEdit, onDelete }: AgentCardProps) {
46
- const { t } = useTranslation('agents')
46
+
47
47
  const emoji = agent.avatarEmoji || '🤖'
48
48
 
49
49
  return (
@@ -58,7 +58,7 @@ export function AgentCard({ agent, onEdit, onDelete }: AgentCardProps) {
58
58
  <div className="min-w-0 flex-1">
59
59
  <CardTitle className="line-clamp-1 text-base">{agent.name}</CardTitle>
60
60
  <CardDescription className="mt-1 line-clamp-2 text-xs">
61
- {agent.description || t('card.noDescription')}
61
+ {agent.description || m.agents_card_noDescription()}
62
62
  </CardDescription>
63
63
  </div>
64
64
  <DropdownMenu>
@@ -74,14 +74,14 @@ export function AgentCard({ agent, onEdit, onDelete }: AgentCardProps) {
74
74
  <DropdownMenuContent align="end">
75
75
  <DropdownMenuItem onClick={() => onEdit(agent)}>
76
76
  <Pencil className="mr-2 size-3.5" />
77
- {t('card.edit')}
77
+ {m.agents_card_edit()}
78
78
  </DropdownMenuItem>
79
79
  <DropdownMenuItem
80
80
  variant="destructive"
81
81
  onClick={() => onDelete(agent)}
82
82
  >
83
83
  <Trash2 className="mr-2 size-3.5" />
84
- {t('card.delete')}
84
+ {m.agents_card_delete()}
85
85
  </DropdownMenuItem>
86
86
  </DropdownMenuContent>
87
87
  </DropdownMenu>
@@ -113,13 +113,13 @@ export function AgentCard({ agent, onEdit, onDelete }: AgentCardProps) {
113
113
  ))
114
114
  ) : (
115
115
  <span className="text-xs text-muted-foreground">
116
- {t('card.noTools')}
116
+ {m.agents_card_noTools()}
117
117
  </span>
118
118
  )}
119
119
  </div>
120
120
 
121
121
  <div className="text-xs text-muted-foreground">
122
- {t('card.updatedAt', { date: formatRelative(agent.updatedAt) })}
122
+ {m.agents_card_updatedAt({ date: formatRelative(agent.updatedAt) })}
123
123
  </div>
124
124
  </CardContent>
125
125
  </Card>