@prostgles/prostgles 2.3.6-dev.1786548258

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 (1650) hide show
  1. package/.dockerignore +14 -0
  2. package/.eslintrc.common.js +71 -0
  3. package/.gitattributes +2 -0
  4. package/.github/ISSUE_TEMPLATE/BUG.yml +52 -0
  5. package/.github/ISSUE_TEMPLATE/CUSTOM.yml +13 -0
  6. package/.github/ISSUE_TEMPLATE/FEATURE.yml +27 -0
  7. package/.github/ISSUE_TEMPLATE/bug_report.md +9 -0
  8. package/.github/ISSUE_TEMPLATE/config.yml +5 -0
  9. package/.github/ISSUE_TEMPLATE/custom.md +3 -0
  10. package/.github/ISSUE_TEMPLATE/feature_request.md +5 -0
  11. package/.github/workflows/docker_test.yml +46 -0
  12. package/.github/workflows/electron_build_linux.yml +40 -0
  13. package/.github/workflows/electron_build_macos.yml +36 -0
  14. package/.github/workflows/electron_build_windows.yml +34 -0
  15. package/.github/workflows/electron_linux_test.yml +24 -0
  16. package/.github/workflows/electron_macos_test.yml +25 -0
  17. package/.github/workflows/linux_test.yml +127 -0
  18. package/.github/workflows/macos_test.yml +63 -0
  19. package/.github/workflows/on_release.yml +185 -0
  20. package/.github/workflows/package_version_increased.yml +66 -0
  21. package/.github/workflows/publish_release.yml +67 -0
  22. package/.github/workflows/windows_test.yml +48 -0
  23. package/.prettierignore +5 -0
  24. package/.prettierrc +3 -0
  25. package/.vscode/settings.json +46 -0
  26. package/CODE_OF_CONDUCT +47 -0
  27. package/CONTRIBUTING +59 -0
  28. package/DB.Dockerfile +11 -0
  29. package/Dockerfile +31 -0
  30. package/LICENSE +661 -0
  31. package/PRIVACY +28 -0
  32. package/README.md +132 -0
  33. package/SECURITY.md +8 -0
  34. package/changelog/v1.0.0.md +5 -0
  35. package/changelog/v2.0.0.md +25 -0
  36. package/changelog/v2.2.0.md +13 -0
  37. package/changelog/v2.2.1.md +4 -0
  38. package/changelog/v2.2.2.md +3 -0
  39. package/changelog/v2.2.3.md +2 -0
  40. package/changelog/v2.2.4.md +3 -0
  41. package/changelog/v2.3.0.md +5 -0
  42. package/changelog/v2.3.1.md +1 -0
  43. package/changelog/v2.3.2.md +1 -0
  44. package/changelog/v2.3.3.md +2 -0
  45. package/changelog/v2.3.4.md +2 -0
  46. package/changelog/v2.3.5.md +2 -0
  47. package/changelog/v2.3.6.md +2 -0
  48. package/client/build.sh +1 -0
  49. package/client/eslint.config.mjs +114 -0
  50. package/client/package-lock.json +16513 -0
  51. package/client/package.json +108 -0
  52. package/client/public/manifest.json +12 -0
  53. package/client/public/robots.txt +3 -0
  54. package/client/setup-icons.js +59 -0
  55. package/client/src/App.css +31 -0
  56. package/client/src/App.tsx +364 -0
  57. package/client/src/Testing.ts +724 -0
  58. package/client/src/app/CommandPalette/CommandPalette.css +11 -0
  59. package/client/src/app/CommandPalette/CommandPalette.tsx +119 -0
  60. package/client/src/app/CommandPalette/Documentation.css +3 -0
  61. package/client/src/app/CommandPalette/Documentation.tsx +77 -0
  62. package/client/src/app/CommandPalette/DynamicComponent.tsx +87 -0
  63. package/client/src/app/CommandPalette/getDocumentation.ts +175 -0
  64. package/client/src/app/CommandPalette/getUIDocShortestPath.ts +62 -0
  65. package/client/src/app/CommandPalette/useCommandPaletteState.tsx +188 -0
  66. package/client/src/app/CommandPalette/useGoToUI.tsx +147 -0
  67. package/client/src/app/CommandPalette/useHighlightDocItem.ts +89 -0
  68. package/client/src/app/CommandPalette/utils.ts +111 -0
  69. package/client/src/app/UIDocs/UIInstallationUIDoc.ts +43 -0
  70. package/client/src/app/UIDocs/accountUIDoc.ts +128 -0
  71. package/client/src/app/UIDocs/commandPaletteUIDoc.ts +40 -0
  72. package/client/src/app/UIDocs/connection/AIAssistantUIDoc.ts +309 -0
  73. package/client/src/app/UIDocs/connection/agenticWorkflowsUIDoc.ts +37 -0
  74. package/client/src/app/UIDocs/connection/config/accessControlUIDoc.ts +44 -0
  75. package/client/src/app/UIDocs/connection/config/apiUIDoc.ts +95 -0
  76. package/client/src/app/UIDocs/connection/config/authentication.UIDoc.ts +96 -0
  77. package/client/src/app/UIDocs/connection/config/backupAndRestoreUIDoc.ts +238 -0
  78. package/client/src/app/UIDocs/connection/config/fileStorageUIDoc.ts +27 -0
  79. package/client/src/app/UIDocs/connection/connectionConfigUIDoc.ts +79 -0
  80. package/client/src/app/UIDocs/connection/dashboard/dashboardContentUIDoc.ts +27 -0
  81. package/client/src/app/UIDocs/connection/dashboard/dashboardMenuUIDoc.ts +189 -0
  82. package/client/src/app/UIDocs/connection/dashboard/mapUIDoc.ts +172 -0
  83. package/client/src/app/UIDocs/connection/dashboard/schemaGraphUIDoc.ts +66 -0
  84. package/client/src/app/UIDocs/connection/dashboard/serverSideFunctionUIDoc.ts +27 -0
  85. package/client/src/app/UIDocs/connection/dashboard/sqlEditorUIDoc.ts +284 -0
  86. package/client/src/app/UIDocs/connection/dashboard/table/addColumnMenuUIDoc.ts +250 -0
  87. package/client/src/app/UIDocs/connection/dashboard/table/columnMenuUIDoc.ts +123 -0
  88. package/client/src/app/UIDocs/connection/dashboard/table/paginationUIDoc.ts +56 -0
  89. package/client/src/app/UIDocs/connection/dashboard/table/smartFilterBarUIDoc.ts +126 -0
  90. package/client/src/app/UIDocs/connection/dashboard/table/smartFormUIDoc.ts +168 -0
  91. package/client/src/app/UIDocs/connection/dashboard/table/tableMenuUIDoc.ts +228 -0
  92. package/client/src/app/UIDocs/connection/dashboard/table/tableUIDoc.ts +90 -0
  93. package/client/src/app/UIDocs/connection/dashboard/timechartUIDoc.ts +169 -0
  94. package/client/src/app/UIDocs/connection/dashboardUIDoc.ts +176 -0
  95. package/client/src/app/UIDocs/connection/getCommonViewHeaderUIDoc.ts +146 -0
  96. package/client/src/app/UIDocs/connectionsUIDoc.ts +261 -0
  97. package/client/src/app/UIDocs/desktopInstallation.ts +32 -0
  98. package/client/src/app/UIDocs/editConnectionUIDoc.ts +131 -0
  99. package/client/src/app/UIDocs/navbarUIDoc.ts +145 -0
  100. package/client/src/app/UIDocs/overviewUIDoc.ts +31 -0
  101. package/client/src/app/UIDocs/serverSettingsUIDoc.ts +64 -0
  102. package/client/src/app/UIDocs.ts +274 -0
  103. package/client/src/app/XRealIpSpoofableAlert.tsx +39 -0
  104. package/client/src/app/domToSVG/SVGif/addSVGifCaption.ts +112 -0
  105. package/client/src/app/domToSVG/SVGif/addSVGifPointer.ts +59 -0
  106. package/client/src/app/domToSVG/SVGif/addSVGifTimelineControls.ts +94 -0
  107. package/client/src/app/domToSVG/SVGif/animations/getSVGifCursorAnimationHandler.ts +162 -0
  108. package/client/src/app/domToSVG/SVGif/animations/getSVGifCustomAnimation.ts +53 -0
  109. package/client/src/app/domToSVG/SVGif/animations/getSVGifPropertiesAnimation.ts +50 -0
  110. package/client/src/app/domToSVG/SVGif/animations/getSVGifTypeAnimation.ts +105 -0
  111. package/client/src/app/domToSVG/SVGif/animations/getSVGifZoomToAnimation.ts +114 -0
  112. package/client/src/app/domToSVG/SVGif/compressSVGif.ts +86 -0
  113. package/client/src/app/domToSVG/SVGif/getSVGif.ts +111 -0
  114. package/client/src/app/domToSVG/SVGif/getSVGifAnimations.ts +318 -0
  115. package/client/src/app/domToSVG/SVGif/getSVGifKeyframes.ts +42 -0
  116. package/client/src/app/domToSVG/SVGif/getSVGifParsedScenes.ts +52 -0
  117. package/client/src/app/domToSVG/SVGif/getSVGifRevealKeyframes.ts +73 -0
  118. package/client/src/app/domToSVG/SVGif/getSVGifTargetBBox.ts +36 -0
  119. package/client/src/app/domToSVG/addFragmentViewBoxes.ts +43 -0
  120. package/client/src/app/domToSVG/containers/addOverflowClipPath.ts +117 -0
  121. package/client/src/app/domToSVG/containers/bgAndBorderToSVG.ts +204 -0
  122. package/client/src/app/domToSVG/containers/deduplicateSVGPaths.ts +128 -0
  123. package/client/src/app/domToSVG/containers/elementToSVG.ts +231 -0
  124. package/client/src/app/domToSVG/containers/rectangleToSVG.ts +196 -0
  125. package/client/src/app/domToSVG/containers/shadowToSVG.ts +52 -0
  126. package/client/src/app/domToSVG/domToSVG.ts +263 -0
  127. package/client/src/app/domToSVG/domToSvg2.ts +129 -0
  128. package/client/src/app/domToSVG/domToThemeAwareSVG.ts +361 -0
  129. package/client/src/app/domToSVG/getCorrespondingDarkNode.ts +87 -0
  130. package/client/src/app/domToSVG/graphics/fontIconToSVG.ts +141 -0
  131. package/client/src/app/domToSVG/graphics/getForeignObject.ts +43 -0
  132. package/client/src/app/domToSVG/graphics/imgToSVG.ts +140 -0
  133. package/client/src/app/domToSVG/setThemeForSVGScreenshot.ts +82 -0
  134. package/client/src/app/domToSVG/text/getTextForSVG.ts +243 -0
  135. package/client/src/app/domToSVG/text/textToSVG.ts +264 -0
  136. package/client/src/app/domToSVG/utils/addNewChildren.ts +55 -0
  137. package/client/src/app/domToSVG/utils/canvasToDataURL.ts +6 -0
  138. package/client/src/app/domToSVG/utils/copyAnimationStylesToSvg.ts +127 -0
  139. package/client/src/app/domToSVG/utils/getWhatToRenderOnSVG.ts +218 -0
  140. package/client/src/app/domToSVG/utils/isElementVisible.ts +144 -0
  141. package/client/src/app/domToSVG/utils/toFixed.ts +3 -0
  142. package/client/src/appUtils.ts +135 -0
  143. package/client/src/components/AlertProvider.tsx +99 -0
  144. package/client/src/components/Animations.css +207 -0
  145. package/client/src/components/Animations.tsx +130 -0
  146. package/client/src/components/Btn.css +235 -0
  147. package/client/src/components/Btn.tsx +603 -0
  148. package/client/src/components/ButtonBar.tsx +29 -0
  149. package/client/src/components/ButtonGroup.tsx +135 -0
  150. package/client/src/components/Chat/Chat.css +116 -0
  151. package/client/src/components/Chat/Chat.tsx +200 -0
  152. package/client/src/components/Chat/ChatFileAttachments/ChatFileAttachments.tsx +126 -0
  153. package/client/src/components/Chat/ChatMessage.tsx +38 -0
  154. package/client/src/components/Chat/ChatSendControls.tsx +117 -0
  155. package/client/src/components/Chat/ChatSpeech/ChatSpeech.tsx +201 -0
  156. package/client/src/components/Chat/ChatSpeech/ChatSpeechSetup.tsx +75 -0
  157. package/client/src/components/Chat/ChatSpeech/hooks/SpeechRecorder.ts +295 -0
  158. package/client/src/components/Chat/ChatSpeech/hooks/renderSpeechAudioLevelsIcon.ts +67 -0
  159. package/client/src/components/Chat/ChatSpeech/hooks/useSpeechRecorder.ts +59 -0
  160. package/client/src/components/Chat/ChatSpeech/hooks/useSpeechToTextWeb.ts +125 -0
  161. package/client/src/components/Chat/ChatSpeech/useChatSpeechSetup.ts +106 -0
  162. package/client/src/components/Chat/Marked.tsx +258 -0
  163. package/client/src/components/Chat/MonacoCodeInMarkdown/MarkdownMonacoCodeHeader.tsx +179 -0
  164. package/client/src/components/Chat/MonacoCodeInMarkdown/MonacoCodeInMarkdown.tsx +162 -0
  165. package/client/src/components/Chat/MonacoCodeInMarkdown/useOnRunSQL.ts +70 -0
  166. package/client/src/components/Chat/useChatFileUpload.ts +167 -0
  167. package/client/src/components/Chat/useChatOnPaste.ts +102 -0
  168. package/client/src/components/Chat/useChatState.ts +118 -0
  169. package/client/src/components/Checkbox.css +24 -0
  170. package/client/src/components/Checkbox.tsx +152 -0
  171. package/client/src/components/Chip.css +78 -0
  172. package/client/src/components/Chip.tsx +150 -0
  173. package/client/src/components/ClickCatch.tsx +49 -0
  174. package/client/src/components/ClickCatchOverlay.css +7 -0
  175. package/client/src/components/ClickCatchOverlay.tsx +30 -0
  176. package/client/src/components/CodeFileBrowser/CodeFileBrowser.tsx +85 -0
  177. package/client/src/components/CodeFileBrowser/ProjectCodeEditor.tsx +89 -0
  178. package/client/src/components/CodeFileBrowser/WebAppFileBrowser.tsx +96 -0
  179. package/client/src/components/CompactTabs/CompactTabs.tsx +101 -0
  180. package/client/src/components/ConfirmationDialog.tsx +90 -0
  181. package/client/src/components/CopyToClipboardBtn.tsx +24 -0
  182. package/client/src/components/DragOverUpload/DragOverUpload.css +36 -0
  183. package/client/src/components/DragOverUpload/DragOverUpload.tsx +46 -0
  184. package/client/src/components/DraggableLI.tsx +182 -0
  185. package/client/src/components/ElectronSearchBar.tsx +335 -0
  186. package/client/src/components/ErrorComponent.tsx +240 -0
  187. package/client/src/components/ExpandSection.tsx +55 -0
  188. package/client/src/components/Expander.tsx +16 -0
  189. package/client/src/components/FileInput/DropZone.tsx +23 -0
  190. package/client/src/components/FileInput/FileInput.tsx +363 -0
  191. package/client/src/components/FileInput/FileInputMedia.tsx +144 -0
  192. package/client/src/components/FileInput/useFileDropZone.ts +51 -0
  193. package/client/src/components/FileTree/FILE_EXTENSION_TO_ICON_INFO.ts +687 -0
  194. package/client/src/components/FileTree/FileIcon.tsx +31 -0
  195. package/client/src/components/FileTree/FileTree.tsx +147 -0
  196. package/client/src/components/FileTree/FileTreeCurrentDirectory.tsx +135 -0
  197. package/client/src/components/FileTree/FileTreeNode.css +12 -0
  198. package/client/src/components/FileTree/FileTreeNode.tsx +264 -0
  199. package/client/src/components/FileTree/FileTreeNodeCheckbox.tsx +48 -0
  200. package/client/src/components/FileTree/FileTreeSearchBar.tsx +121 -0
  201. package/client/src/components/FileTree/FileTreeSelectedItems.tsx +73 -0
  202. package/client/src/components/FileTree/FolderIcon.tsx +18 -0
  203. package/client/src/components/FileTree/fileSystemTreeUtils.ts +15 -0
  204. package/client/src/components/FileTree/useFileTree.ts +255 -0
  205. package/client/src/components/FileTree/useFileTreeChecked.ts +158 -0
  206. package/client/src/components/FlashMessage.tsx +64 -0
  207. package/client/src/components/Flex.tsx +76 -0
  208. package/client/src/components/FormField/FormField.css +91 -0
  209. package/client/src/components/FormField/FormField.tsx +748 -0
  210. package/client/src/components/FormField/FormFieldCodeEditor.tsx +97 -0
  211. package/client/src/components/FormField/FormFieldDebounced.tsx +60 -0
  212. package/client/src/components/FormField/FormFieldSkeleton.tsx +206 -0
  213. package/client/src/components/FormField/onFormFieldKeyDown.ts +124 -0
  214. package/client/src/components/FullscreenWrapper/FullscreenWrapper.tsx +154 -0
  215. package/client/src/components/FullscreenWrapper/useFullscreen.ts +46 -0
  216. package/client/src/components/HeaderSection.tsx +36 -0
  217. package/client/src/components/Hotkey.css +12 -0
  218. package/client/src/components/Hotkey.tsx +26 -0
  219. package/client/src/components/IFrame/IFrame.tsx +54 -0
  220. package/client/src/components/Icon/Icon.tsx +138 -0
  221. package/client/src/components/IconPalette/IconPalette.tsx +194 -0
  222. package/client/src/components/InfoRow.tsx +64 -0
  223. package/client/src/components/Input.tsx +63 -0
  224. package/client/src/components/JSONBSchema/JSONBSchema.tsx +182 -0
  225. package/client/src/components/JSONBSchema/JSONBSchemaAllowedOptions.tsx +112 -0
  226. package/client/src/components/JSONBSchema/JSONBSchemaArray.tsx +172 -0
  227. package/client/src/components/JSONBSchema/JSONBSchemaLookup.tsx +249 -0
  228. package/client/src/components/JSONBSchema/JSONBSchemaObject.tsx +130 -0
  229. package/client/src/components/JSONBSchema/JSONBSchemaOneOfType.tsx +155 -0
  230. package/client/src/components/JSONBSchema/JSONBSchemaPrimitive.tsx +209 -0
  231. package/client/src/components/JSONBSchema/JSONBSchemaRecord.tsx +78 -0
  232. package/client/src/components/JSONBSchema/isCompleteJSONB.ts +54 -0
  233. package/client/src/components/Label.css +10 -0
  234. package/client/src/components/Label.tsx +152 -0
  235. package/client/src/components/LabeledRow.tsx +51 -0
  236. package/client/src/components/List.css +51 -0
  237. package/client/src/components/List.tsx +170 -0
  238. package/client/src/components/Loader/Loading.css +141 -0
  239. package/client/src/components/Loader/Loading.tsx +254 -0
  240. package/client/src/components/Loader/SpinnerV2.tsx +121 -0
  241. package/client/src/components/Loader/SpinnerV3.tsx +58 -0
  242. package/client/src/components/Loader/SpinnerV4.tsx +31 -0
  243. package/client/src/components/MarkdownWithPlugins/MarkdownWithPlugins.tsx +99 -0
  244. package/client/src/components/MarkdownWithPlugins/Marked.css +72 -0
  245. package/client/src/components/MarkdownWithPlugins/preserveDisallowedHtmlAsText.ts +76 -0
  246. package/client/src/components/MediaViewer/MediaViewer.tsx +252 -0
  247. package/client/src/components/MediaViewer/MediaViewerContent.tsx +223 -0
  248. package/client/src/components/MediaViewer/managedTableUtils.ts +99 -0
  249. package/client/src/components/MenuList.css +3 -0
  250. package/client/src/components/MenuList.tsx +237 -0
  251. package/client/src/components/MenuListItem.tsx +126 -0
  252. package/client/src/components/MonacoEditor/MonacoEditor.tsx +273 -0
  253. package/client/src/components/MonacoEditor/monacoHackyFixes.ts +56 -0
  254. package/client/src/components/MonacoEditor/useMonacoEditorAddActions.ts +56 -0
  255. package/client/src/components/MonacoEditor/useWhyDidYouUpdate.ts +80 -0
  256. package/client/src/components/MonacoLogs/MonacoLogs.tsx +98 -0
  257. package/client/src/components/MonacoLogs/MonacoLogsWithFullscreen.tsx +124 -0
  258. package/client/src/components/MonacoLogs/setAnsiLogContent.ts +163 -0
  259. package/client/src/components/NavBar/NavBar.css +110 -0
  260. package/client/src/components/NavBar/NavBar.tsx +152 -0
  261. package/client/src/components/NavBar/NavBarWrapper.tsx +55 -0
  262. package/client/src/components/NavBar/useNavBarItems.ts +40 -0
  263. package/client/src/components/Pan.tsx +63 -0
  264. package/client/src/components/PdfViewer/PdfViewer.css +58 -0
  265. package/client/src/components/PdfViewer/PdfViewer.tsx +126 -0
  266. package/client/src/components/PdfViewer/PdfViewerDoclingTextOverlay.tsx +44 -0
  267. package/client/src/components/PdfViewer/PdfViewerHeaderControls.tsx +82 -0
  268. package/client/src/components/PdfViewer/PdfViewerHighlights/PdfViewerHighlights.tsx +146 -0
  269. package/client/src/components/PdfViewer/PdfViewerHighlights/usePdfViewerHighlights.ts +212 -0
  270. package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.css +21 -0
  271. package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.tsx +323 -0
  272. package/client/src/components/PdfViewer/PdfViewerWithFileTableContext.tsx +209 -0
  273. package/client/src/components/PdfViewer/usePdfViewer.ts +215 -0
  274. package/client/src/components/Popup/Footer.tsx +41 -0
  275. package/client/src/components/Popup/FooterButtons.tsx +60 -0
  276. package/client/src/components/Popup/Popup.css +14 -0
  277. package/client/src/components/Popup/Popup.tsx +469 -0
  278. package/client/src/components/Popup/PopupHeader.tsx +113 -0
  279. package/client/src/components/Popup/getPopupPosition.ts +137 -0
  280. package/client/src/components/Popup/getPopupStyle.ts +57 -0
  281. package/client/src/components/Popup/popupCheckPosition.ts +280 -0
  282. package/client/src/components/PopupMenu.tsx +106 -0
  283. package/client/src/components/PopupMenuList.tsx +36 -0
  284. package/client/src/components/PostgresInstallationInstructions.tsx +112 -0
  285. package/client/src/components/ProgressBar.css +29 -0
  286. package/client/src/components/ProgressBar.tsx +131 -0
  287. package/client/src/components/QRCodeImage.tsx +57 -0
  288. package/client/src/components/Scheduler.css +7 -0
  289. package/client/src/components/Scheduler.tsx +149 -0
  290. package/client/src/components/ScrollFade/ScrollFade.css +4 -0
  291. package/client/src/components/ScrollFade/ScrollFade.tsx +177 -0
  292. package/client/src/components/ScrollFade/useAutoScrollToBottom.ts +31 -0
  293. package/client/src/components/ScrollFade/useResizeObserver.ts +96 -0
  294. package/client/src/components/SearchList/SearchInput.tsx +143 -0
  295. package/client/src/components/SearchList/SearchList.css +37 -0
  296. package/client/src/components/SearchList/SearchList.tsx +184 -0
  297. package/client/src/components/SearchList/SearchListContent.tsx +285 -0
  298. package/client/src/components/SearchList/SearchListItems.tsx +244 -0
  299. package/client/src/components/SearchList/SearchListRowContent.tsx +46 -0
  300. package/client/src/components/SearchList/getSearchListMatchAndHighlight.tsx +162 -0
  301. package/client/src/components/SearchList/hooks/useSearchListItems.tsx +113 -0
  302. package/client/src/components/SearchList/hooks/useSearchListItemsSorting.tsx +169 -0
  303. package/client/src/components/SearchList/hooks/useSearchListOnClick.ts +69 -0
  304. package/client/src/components/SearchList/hooks/useSearchListOnKeyUpDown.ts +128 -0
  305. package/client/src/components/SearchList/hooks/useSearchListSearch.ts +211 -0
  306. package/client/src/components/SearchList/searchMatchUtils/getItemSearchRank.ts +74 -0
  307. package/client/src/components/SearchList/searchMatchUtils/getSearchRanking.ts +18 -0
  308. package/client/src/components/Section.tsx +159 -0
  309. package/client/src/components/SegmentedToggle.tsx +57 -0
  310. package/client/src/components/Select/Select.css +18 -0
  311. package/client/src/components/Select/Select.tsx +629 -0
  312. package/client/src/components/Select/SelectTriggerButton.tsx +204 -0
  313. package/client/src/components/ShorterText.tsx +56 -0
  314. package/client/src/components/SidePanel.tsx +49 -0
  315. package/client/src/components/Slider.css +65 -0
  316. package/client/src/components/Slider.tsx +66 -0
  317. package/client/src/components/StatusChip.tsx +34 -0
  318. package/client/src/components/Stepper.tsx +92 -0
  319. package/client/src/components/Stopwatch.tsx +121 -0
  320. package/client/src/components/SvgIcon.tsx +181 -0
  321. package/client/src/components/SwitchToggle.css +136 -0
  322. package/client/src/components/SwitchToggle.tsx +141 -0
  323. package/client/src/components/Table/Pagination.tsx +178 -0
  324. package/client/src/components/Table/Table.css +97 -0
  325. package/client/src/components/Table/Table.tsx +216 -0
  326. package/client/src/components/Table/TableBody.tsx +146 -0
  327. package/client/src/components/Table/TableHeader.tsx +491 -0
  328. package/client/src/components/Table/TableRow.tsx +164 -0
  329. package/client/src/components/Table/useVirtualisedRows.ts +160 -0
  330. package/client/src/components/Tabs.tsx +320 -0
  331. package/client/src/components/Tooltip.tsx +47 -0
  332. package/client/src/dashboard/API/zip.ts +151 -0
  333. package/client/src/dashboard/AccessControl/AccessControl.tsx +164 -0
  334. package/client/src/dashboard/AccessControl/AccessControlRuleEditor.tsx +373 -0
  335. package/client/src/dashboard/AccessControl/AccessRuleEditorFooter.tsx +241 -0
  336. package/client/src/dashboard/AccessControl/AccessRuleSummary.tsx +159 -0
  337. package/client/src/dashboard/AccessControl/ContextDataSelector.tsx +89 -0
  338. package/client/src/dashboard/AccessControl/ContextFilter.tsx +161 -0
  339. package/client/src/dashboard/AccessControl/ExistingAccessRules.tsx +168 -0
  340. package/client/src/dashboard/AccessControl/Methods/MethodDefinition.tsx +156 -0
  341. package/client/src/dashboard/AccessControl/Methods/MethodDefinitionEditAsJson.tsx +73 -0
  342. package/client/src/dashboard/AccessControl/Methods/MethodFunctionDefinition.tsx +97 -0
  343. package/client/src/dashboard/AccessControl/Methods/ReferencesDefinition.tsx +155 -0
  344. package/client/src/dashboard/AccessControl/Methods/useCodeEditorTsTypes.ts +152 -0
  345. package/client/src/dashboard/AccessControl/OptionControllers/DynamicFields.tsx +145 -0
  346. package/client/src/dashboard/AccessControl/OptionControllers/FieldFilterControl.tsx +193 -0
  347. package/client/src/dashboard/AccessControl/OptionControllers/FilterControl.tsx +207 -0
  348. package/client/src/dashboard/AccessControl/PasswordlessSetup.tsx +90 -0
  349. package/client/src/dashboard/AccessControl/PermissionTypes/PAllTables.tsx +50 -0
  350. package/client/src/dashboard/AccessControl/PermissionTypes/PCustomTables.tsx +237 -0
  351. package/client/src/dashboard/AccessControl/PermissionTypes/PRunSQL.tsx +92 -0
  352. package/client/src/dashboard/AccessControl/PublishedWorkspaceSelector.tsx +290 -0
  353. package/client/src/dashboard/AccessControl/RuleTypeControls/ComparablePGPolicies.tsx +179 -0
  354. package/client/src/dashboard/AccessControl/RuleTypeControls/DeleteRuleControl.tsx +95 -0
  355. package/client/src/dashboard/AccessControl/RuleTypeControls/ExampleComparablePolicy.tsx +112 -0
  356. package/client/src/dashboard/AccessControl/RuleTypeControls/InsertRuleControl.tsx +115 -0
  357. package/client/src/dashboard/AccessControl/RuleTypeControls/RuleToggle.tsx +19 -0
  358. package/client/src/dashboard/AccessControl/RuleTypeControls/SelectRuleControl.tsx +186 -0
  359. package/client/src/dashboard/AccessControl/RuleTypeControls/SyncRuleControl.tsx +130 -0
  360. package/client/src/dashboard/AccessControl/RuleTypeControls/UpdateRuleControl.tsx +207 -0
  361. package/client/src/dashboard/AccessControl/RuleTypeControls/getComparablePGPolicy.ts +130 -0
  362. package/client/src/dashboard/AccessControl/TableRules/FileTableAccessControlInfo.tsx +161 -0
  363. package/client/src/dashboard/AccessControl/TableRules/TablePermissionControls.tsx +251 -0
  364. package/client/src/dashboard/AccessControl/TableRules/TableRulesPopup.tsx +167 -0
  365. package/client/src/dashboard/AccessControl/TableRules/useLocalTableRulesErrors.ts +27 -0
  366. package/client/src/dashboard/AccessControl/UserStats.tsx +83 -0
  367. package/client/src/dashboard/AccessControl/UserSyncConfig.tsx +168 -0
  368. package/client/src/dashboard/AccessControl/UserTypeSelect.tsx +86 -0
  369. package/client/src/dashboard/AccessControl/useAccessControlSearchParams.ts +81 -0
  370. package/client/src/dashboard/AccessControl/useEditedAccessRule.ts +293 -0
  371. package/client/src/dashboard/AskLLM/AskLLM.tsx +91 -0
  372. package/client/src/dashboard/AskLLM/Chat/AskLLMChat.tsx +208 -0
  373. package/client/src/dashboard/AskLLM/Chat/AskLLMChatHeader.tsx +127 -0
  374. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessage.tsx +77 -0
  375. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContent.tsx +96 -0
  376. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContentText.tsx +57 -0
  377. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageHeader.tsx +129 -0
  378. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMGroupedToolCallsMessage.tsx +122 -0
  379. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMSingleChatMessage.tsx +44 -0
  380. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMToolCallIcon.tsx +12 -0
  381. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/Agent.tsx +161 -0
  382. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/AgentGoalToolCall.tsx +59 -0
  383. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgentDefinition.tsx +206 -0
  384. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflow.tsx +242 -0
  385. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActions.tsx +245 -0
  386. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/AgenticWorkflowActivity.tsx +225 -0
  387. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/ToolCall.tsx +137 -0
  388. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/useAgenticWorkflowActivityItems.ts +70 -0
  389. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDefinition.tsx +173 -0
  390. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDetails.tsx +141 -0
  391. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowMessage.tsx +103 -0
  392. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowSchemaDrift.tsx +146 -0
  393. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/ContainerConfigurationEditor.tsx +184 -0
  394. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/McpToolAccess.tsx +156 -0
  395. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInput.tsx +393 -0
  396. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInputColumnValues.tsx +61 -0
  397. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useAgenticWorkflowState.ts +50 -0
  398. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useUserInput.ts +27 -0
  399. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AskUserQuestions.tsx +249 -0
  400. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/CreateTables.tsx +32 -0
  401. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DockerContainer.tsx +296 -0
  402. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocument.d.ts +154 -0
  403. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewer.tsx +98 -0
  404. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewerPage.tsx +42 -0
  405. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingTable.tsx +166 -0
  406. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingText.tsx +99 -0
  407. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingToolUseView.tsx +47 -0
  408. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ExecuteSQL.tsx +34 -0
  409. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/LoadSuggestedDashboards.tsx +172 -0
  410. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RequestToolAccess.tsx +272 -0
  411. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunCodeInSandbox.tsx +33 -0
  412. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunTypescriptInNodejs.tsx +48 -0
  413. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ToolUseResultError.tsx +29 -0
  414. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Favicon.tsx +34 -0
  415. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Markdown.tsx +21 -0
  416. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/WebSearch.tsx +70 -0
  417. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Webdev/CreateComponentQuickFeedbackPreview.tsx +104 -0
  418. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/DatabaseAccessPermissions.tsx +63 -0
  419. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/HeaderList.tsx +26 -0
  420. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useJSONBParsedData.ts +16 -0
  421. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useSendToolUseResult.ts +46 -0
  422. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useToolUseResultString.ts +27 -0
  423. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useTypedToolUseResultData.ts +85 -0
  424. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesToolUseMessage.tsx +127 -0
  425. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/InChatToolApprover.tsx +82 -0
  426. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessage.tsx +109 -0
  427. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtn.tsx +51 -0
  428. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtnTextSummary.tsx +45 -0
  429. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageJSONData.tsx +132 -0
  430. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageResult.tsx +57 -0
  431. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseReRunBtn.tsx +71 -0
  432. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/useToolUseChatMessage.ts +51 -0
  433. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/utils/getToolUseResult.ts +40 -0
  434. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessageGrouper.tsx +168 -0
  435. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessages.tsx +157 -0
  436. package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/setChatPrompt.ts +116 -0
  437. package/client/src/dashboard/AskLLM/Chat/AskLLMChatSettings.tsx +88 -0
  438. package/client/src/dashboard/AskLLM/Chat/useAskLLMChatSend.ts +111 -0
  439. package/client/src/dashboard/AskLLM/Chat/useLLMChat.tsx +126 -0
  440. package/client/src/dashboard/AskLLM/Chat/useLLMSchemaStr.ts +207 -0
  441. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBar.tsx +34 -0
  442. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarDatabaseAccess.tsx +273 -0
  443. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPTools.tsx +102 -0
  444. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPToolsBtn.tsx +167 -0
  445. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarModelSelector.tsx +238 -0
  446. package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarPromptSelector.tsx +206 -0
  447. package/client/src/dashboard/AskLLM/ChatActionBar/PromptAndAllowedMcpToolsSchemaPreviews.tsx +85 -0
  448. package/client/src/dashboard/AskLLM/LLMModelSelector.tsx +270 -0
  449. package/client/src/dashboard/AskLLM/Setup/AddLLMPromptForm.tsx +33 -0
  450. package/client/src/dashboard/AskLLM/Setup/AskLLMAccessControl.tsx +246 -0
  451. package/client/src/dashboard/AskLLM/Setup/LLMProviderSetup.tsx +68 -0
  452. package/client/src/dashboard/AskLLM/Setup/LLMSetupProvider.tsx +111 -0
  453. package/client/src/dashboard/AskLLM/Setup/ProstglesSignup.tsx +108 -0
  454. package/client/src/dashboard/AskLLM/Setup/SetupLLMCredentials.tsx +89 -0
  455. package/client/src/dashboard/AskLLM/Tools/AskLLMToolApprover.tsx +279 -0
  456. package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedBarchart.ts +126 -0
  457. package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedMap.ts +58 -0
  458. package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTable.ts +159 -0
  459. package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTimechart.ts +78 -0
  460. package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedWorkspaces.ts +168 -0
  461. package/client/src/dashboard/AskLLM/Tools/useAskLLMToolApprover.ts +99 -0
  462. package/client/src/dashboard/AskLLM/useLocalLLM.ts +84 -0
  463. package/client/src/dashboard/BackupAndRestore/AutomaticBackups.tsx +212 -0
  464. package/client/src/dashboard/BackupAndRestore/BackupsControls.tsx +291 -0
  465. package/client/src/dashboard/BackupAndRestore/BackupsInProgress.tsx +98 -0
  466. package/client/src/dashboard/BackupAndRestore/CloudStorageCredentialSelector.tsx +215 -0
  467. package/client/src/dashboard/BackupAndRestore/CodeConfirmation.tsx +205 -0
  468. package/client/src/dashboard/BackupAndRestore/CompletedBackups/DeleteAllBackups.tsx +58 -0
  469. package/client/src/dashboard/BackupAndRestore/CompletedBackups.tsx +276 -0
  470. package/client/src/dashboard/BackupAndRestore/DumpLocationOptions.tsx +40 -0
  471. package/client/src/dashboard/BackupAndRestore/DumpRestoreAlerts.tsx +82 -0
  472. package/client/src/dashboard/BackupAndRestore/PGDumpOptions.tsx +299 -0
  473. package/client/src/dashboard/BackupAndRestore/RenderBackupLogs.tsx +48 -0
  474. package/client/src/dashboard/BackupAndRestore/RenderBackupStatus.tsx +58 -0
  475. package/client/src/dashboard/BackupAndRestore/Restore/Restore.tsx +205 -0
  476. package/client/src/dashboard/BackupAndRestore/Restore/RestoreOptions.tsx +148 -0
  477. package/client/src/dashboard/BackupAndRestore/Restore/useRestoreDatabaseFromFile.ts +73 -0
  478. package/client/src/dashboard/BackupAndRestore/useBackupsControlsState.ts +39 -0
  479. package/client/src/dashboard/Charts/CanvasChart.ts +746 -0
  480. package/client/src/dashboard/Charts/TimeChart/TimeChart.tsx +232 -0
  481. package/client/src/dashboard/Charts/TimeChart/getBinValueLabels.ts +125 -0
  482. package/client/src/dashboard/Charts/TimeChart/getCssVariableValue.ts +6 -0
  483. package/client/src/dashboard/Charts/TimeChart/getTimeAxisTicks.ts +426 -0
  484. package/client/src/dashboard/Charts/TimeChart/getTimechartBinSize.ts +121 -0
  485. package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipIntersections.ts +94 -0
  486. package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipShapes.ts +318 -0
  487. package/client/src/dashboard/Charts/TimeChart/measureText.ts +34 -0
  488. package/client/src/dashboard/Charts/TimeChart/onDeltaTimechart.ts +65 -0
  489. package/client/src/dashboard/Charts/TimeChart/onRenderTimechart.ts +354 -0
  490. package/client/src/dashboard/Charts/TimeChart/prepareTimechartData.ts +185 -0
  491. package/client/src/dashboard/Charts/constants.ts +8 -0
  492. package/client/src/dashboard/Charts/createHiPPICanvas.ts +31 -0
  493. package/client/src/dashboard/Charts/drawMonotoneXCurve.ts +171 -0
  494. package/client/src/dashboard/Charts/drawShapes/drawLinkLine.ts +29 -0
  495. package/client/src/dashboard/Charts/drawShapes/drawShapes.ts +217 -0
  496. package/client/src/dashboard/Charts/drawShapes/drawShapesOnSVG.ts +481 -0
  497. package/client/src/dashboard/Charts/drawShapes/findShortestPathAroundRectangles.ts +241 -0
  498. package/client/src/dashboard/Charts/drawShapes/getLinkLinePoints.ts +124 -0
  499. package/client/src/dashboard/Charts/drawShapes/getTimechartGradientPeakSections.ts +27 -0
  500. package/client/src/dashboard/Charts/drawShapes/shortestLinkLineV2.ts +182 -0
  501. package/client/src/dashboard/Charts/roundRect.ts +42 -0
  502. package/client/src/dashboard/Charts.tsx +216 -0
  503. package/client/src/dashboard/CodeEditor/CodeEditor.tsx +288 -0
  504. package/client/src/dashboard/CodeEditor/CodeEditorWithSaveButton.tsx +208 -0
  505. package/client/src/dashboard/CodeEditor/registerLogLang.ts +128 -0
  506. package/client/src/dashboard/CodeEditor/utils/getMonacoJsonSchemas.ts +31 -0
  507. package/client/src/dashboard/CodeEditor/utils/installGoToDefinition.ts +40 -0
  508. package/client/src/dashboard/CodeEditor/utils/navigateTo.ts +61 -0
  509. package/client/src/dashboard/CodeEditor/utils/resolveDefinition..ts +33 -0
  510. package/client/src/dashboard/CodeEditor/utils/setMonacoErrorMarkers.ts +67 -0
  511. package/client/src/dashboard/CodeEditor/utils/useSetMonacoJsonSchemas.ts +60 -0
  512. package/client/src/dashboard/CodeEditor/utils/useSetMonacoTsLibraries.ts +157 -0
  513. package/client/src/dashboard/CodeExample.tsx +34 -0
  514. package/client/src/dashboard/ConnectionConfig/APIDetails/APICodeExamples.tsx +280 -0
  515. package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetails.tsx +111 -0
  516. package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsHttp.tsx +123 -0
  517. package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsTokens.tsx +137 -0
  518. package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsWs.tsx +98 -0
  519. package/client/src/dashboard/ConnectionConfig/APIDetails/AllowedOriginCheck.tsx +104 -0
  520. package/client/src/dashboard/ConnectionConfig/APIDetails/getApiEndpoint.ts +8 -0
  521. package/client/src/dashboard/ConnectionConfig/ConnectionConfig.tsx +267 -0
  522. package/client/src/dashboard/ConnectionConfig/ConnectionConfigSync.tsx +123 -0
  523. package/client/src/dashboard/ConnectionConfig/ServerSideFunctions.tsx +46 -0
  524. package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfig.tsx +90 -0
  525. package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigComponents.tsx +47 -0
  526. package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigFooterActions.tsx +137 -0
  527. package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigSetup.tsx +135 -0
  528. package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigActiveSection.ts +12 -0
  529. package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigState.ts +76 -0
  530. package/client/src/dashboard/ConnectionConfig/useConnectionConfigSearchParams.ts +35 -0
  531. package/client/src/dashboard/ConnectionSelector.tsx +58 -0
  532. package/client/src/dashboard/Dashboard/CloseSaveSQLPopup.tsx +81 -0
  533. package/client/src/dashboard/Dashboard/DBS.ts +19 -0
  534. package/client/src/dashboard/Dashboard/Dashboard.tsx +667 -0
  535. package/client/src/dashboard/Dashboard/DashboardCenteredLayoutResizer.tsx +56 -0
  536. package/client/src/dashboard/Dashboard/PALETTE.ts +36 -0
  537. package/client/src/dashboard/Dashboard/ViewRenderer.tsx +498 -0
  538. package/client/src/dashboard/Dashboard/addChart.ts +261 -0
  539. package/client/src/dashboard/Dashboard/addLink.ts +48 -0
  540. package/client/src/dashboard/Dashboard/addWindow.ts +51 -0
  541. package/client/src/dashboard/Dashboard/cardLayout.ts +28 -0
  542. package/client/src/dashboard/Dashboard/cloneWorkspace.ts +102 -0
  543. package/client/src/dashboard/Dashboard/dashboardUtils.ts +377 -0
  544. package/client/src/dashboard/Dashboard/debuggingUtils.ts +112 -0
  545. package/client/src/dashboard/Dashboard/getTables.ts +31 -0
  546. package/client/src/dashboard/Dashboard/getViewRendererUtils.ts +108 -0
  547. package/client/src/dashboard/Dashboard/onLinkTable.ts +45 -0
  548. package/client/src/dashboard/Dashboard/useAddViewToWorkspace.ts +92 -0
  549. package/client/src/dashboard/DashboardMenu/CreateTable.tsx +307 -0
  550. package/client/src/dashboard/DashboardMenu/DashboardHotkeys.tsx +38 -0
  551. package/client/src/dashboard/DashboardMenu/DashboardMenu.tsx +183 -0
  552. package/client/src/dashboard/DashboardMenu/DashboardMenuContent.tsx +203 -0
  553. package/client/src/dashboard/DashboardMenu/DashboardMenuHeader.tsx +86 -0
  554. package/client/src/dashboard/DashboardMenu/DashboardMenuHotkeys.tsx +102 -0
  555. package/client/src/dashboard/DashboardMenu/DashboardMenuResizer.tsx +68 -0
  556. package/client/src/dashboard/DashboardMenu/DashboardMenuSettings.tsx +241 -0
  557. package/client/src/dashboard/DashboardMenu/NewTableMenu.tsx +121 -0
  558. package/client/src/dashboard/DashboardMenu/SavedAgenticWorkflowsAndContainers.tsx +149 -0
  559. package/client/src/dashboard/DashboardMenu/SettingsSection.tsx +22 -0
  560. package/client/src/dashboard/DashboardMenu/TableList.tsx +141 -0
  561. package/client/src/dashboard/DashboardMenu/useTableSizeInfo.ts +98 -0
  562. package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditor.tsx +174 -0
  563. package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditorCustomTables.tsx +149 -0
  564. package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptions.tsx +128 -0
  565. package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptionsMenu.tsx +65 -0
  566. package/client/src/dashboard/DatabaseAccessEditor/TableAccessDetails.tsx +163 -0
  567. package/client/src/dashboard/DatabaseAccessEditor/TableAccessEditor.tsx +229 -0
  568. package/client/src/dashboard/DatabaseAccessEditor/getTableSchemaDriftState.ts +65 -0
  569. package/client/src/dashboard/DatabaseAccessEditor/useDatabaseAccessEditorTables.tsx +99 -0
  570. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControl.tsx +139 -0
  571. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControlRouter.tsx +192 -0
  572. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/AgeFilter.tsx +148 -0
  573. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/GeoFilter.tsx +255 -0
  574. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/ListFilter.tsx +235 -0
  575. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/fetchListFilterOptions.ts +76 -0
  576. package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/NumberOrDateFilter.tsx +206 -0
  577. package/client/src/dashboard/DetailedFilterControl/DetailedFilterControl.tsx +157 -0
  578. package/client/src/dashboard/DetailedFilterControl/FTS_LANGUAGES.ts +35 -0
  579. package/client/src/dashboard/DetailedFilterControl/FilterWrapper.css +7 -0
  580. package/client/src/dashboard/DetailedFilterControl/FilterWrapper.tsx +339 -0
  581. package/client/src/dashboard/DetailedFilterControl/validateFilter.ts +46 -0
  582. package/client/src/dashboard/Feedback.tsx +145 -0
  583. package/client/src/dashboard/FileImporter/FileImporter.tsx +770 -0
  584. package/client/src/dashboard/FileImporter/FileImporterFooter.tsx +100 -0
  585. package/client/src/dashboard/FileImporter/checkCSVColumnDataTypes.tsx +139 -0
  586. package/client/src/dashboard/FileImporter/importFile.ts +303 -0
  587. package/client/src/dashboard/FileImporter/parseCSVFile.ts +123 -0
  588. package/client/src/dashboard/FileImporter/setFile.ts +251 -0
  589. package/client/src/dashboard/FileTableControls/CreateFileColumn.tsx +189 -0
  590. package/client/src/dashboard/FileTableControls/FileColumnConfigControls.tsx +191 -0
  591. package/client/src/dashboard/FileTableControls/FileColumnConfigEditor.tsx +251 -0
  592. package/client/src/dashboard/FileTableControls/FileStorageControls.tsx +294 -0
  593. package/client/src/dashboard/FileTableControls/FileStorageDelete.tsx +106 -0
  594. package/client/src/dashboard/FileTableControls/FileStorageReferencedTablesConfig.tsx +80 -0
  595. package/client/src/dashboard/FileTableControls/FileTableConfigControls.tsx +69 -0
  596. package/client/src/dashboard/FileTableControls/hooks/useFileTableConfigControls.ts +70 -0
  597. package/client/src/dashboard/FileTableControls/hooks/useSetFileStorage.ts +128 -0
  598. package/client/src/dashboard/JSONBColumnEditor.tsx +60 -0
  599. package/client/src/dashboard/LinkMenu.tsx +332 -0
  600. package/client/src/dashboard/Map/DeckGLFeatureEditor.tsx +645 -0
  601. package/client/src/dashboard/Map/DeckGLMap.css +45 -0
  602. package/client/src/dashboard/Map/DeckGLMap.tsx +576 -0
  603. package/client/src/dashboard/Map/DeckGLWrapped.ts +312 -0
  604. package/client/src/dashboard/Map/InMapControls.tsx +137 -0
  605. package/client/src/dashboard/Map/MVTLayerProps.ts +306 -0
  606. package/client/src/dashboard/Map/fitBounds.ts +63 -0
  607. package/client/src/dashboard/Map/mapDrawUtils.ts +129 -0
  608. package/client/src/dashboard/Map/mapUtils.ts +183 -0
  609. package/client/src/dashboard/RTComp.tsx +165 -0
  610. package/client/src/dashboard/RenderFilter.tsx +174 -0
  611. package/client/src/dashboard/SQLEditor/SQLCompletion/CommonMatchImports.ts +366 -0
  612. package/client/src/dashboard/SQLEditor/SQLCompletion/KEYWORDS.ts +448 -0
  613. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreate.ts +294 -0
  614. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreateView.ts +106 -0
  615. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateIndex.ts +220 -0
  616. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreatePolicy.ts +108 -0
  617. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateRule.tsx +99 -0
  618. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTable.ts +336 -0
  619. package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTrigger.ts +84 -0
  620. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/MatchAlter.tsx +258 -0
  621. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterPolicy.ts +50 -0
  622. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterTable.ts +325 -0
  623. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchCreateOrAlterUser.tsx +192 -0
  624. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchComment.ts +86 -0
  625. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchCopy.ts +367 -0
  626. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchDrop.ts +161 -0
  627. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchFirst.ts +471 -0
  628. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchGrant.ts +331 -0
  629. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchInsert.tsx +123 -0
  630. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchLast.ts +10 -0
  631. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchPublication.ts +126 -0
  632. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReassign.ts +35 -0
  633. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReindex.ts +36 -0
  634. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSelect.ts +623 -0
  635. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSet.ts +183 -0
  636. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSubscription.ts +231 -0
  637. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchUpdate.ts +79 -0
  638. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchVacuum.ts +86 -0
  639. package/client/src/dashboard/SQLEditor/SQLCompletion/MatchWith.ts +222 -0
  640. package/client/src/dashboard/SQLEditor/SQLCompletion/MathDelete.ts +18 -0
  641. package/client/src/dashboard/SQLEditor/SQLCompletion/PSQL.ts +136 -0
  642. package/client/src/dashboard/SQLEditor/SQLCompletion/STARTING_KEYWORDS.ts +931 -0
  643. package/client/src/dashboard/SQLEditor/SQLCompletion/TableKWDs.ts +479 -0
  644. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfInsideDollarFunctionDefinition.ts +88 -0
  645. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfUnfinishedParenthesis.ts +74 -0
  646. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getCodeBlock.ts +627 -0
  647. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getQueryReturnType.ts +274 -0
  648. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTableExpressionReturnTypes.ts +243 -0
  649. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTabularExpressions.ts +428 -0
  650. package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTokens.ts +239 -0
  651. package/client/src/dashboard/SQLEditor/SQLCompletion/getExpected.ts +176 -0
  652. package/client/src/dashboard/SQLEditor/SQLCompletion/getJoinSuggestions.ts +193 -0
  653. package/client/src/dashboard/SQLEditor/SQLCompletion/getMatch.ts +62 -0
  654. package/client/src/dashboard/SQLEditor/SQLCompletion/getPGObjects.ts +1270 -0
  655. package/client/src/dashboard/SQLEditor/SQLCompletion/getPrevTokensNoParantheses.ts +234 -0
  656. package/client/src/dashboard/SQLEditor/SQLCompletion/jsonbPathSuggest.ts +188 -0
  657. package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerHover.ts +138 -0
  658. package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerSuggestions.ts +549 -0
  659. package/client/src/dashboard/SQLEditor/SQLCompletion/suggestColumnLike.ts +251 -0
  660. package/client/src/dashboard/SQLEditor/SQLCompletion/suggestCondition.ts +320 -0
  661. package/client/src/dashboard/SQLEditor/SQLCompletion/suggestFuncArgs.ts +105 -0
  662. package/client/src/dashboard/SQLEditor/SQLCompletion/suggestTableLike.ts +104 -0
  663. package/client/src/dashboard/SQLEditor/SQLCompletion/suggestValue.ts +125 -0
  664. package/client/src/dashboard/SQLEditor/SQLCompletion/withKWDs.ts +507 -0
  665. package/client/src/dashboard/SQLEditor/SQLEditorSuggestions.ts +1883 -0
  666. package/client/src/dashboard/SQLEditor/SQLSmartEditor.tsx +124 -0
  667. package/client/src/dashboard/SQLEditor/SQL_SNIPPETS.ts +43 -0
  668. package/client/src/dashboard/SQLEditor/W_SQLEditor.css +15 -0
  669. package/client/src/dashboard/SQLEditor/W_SQLEditor.tsx +746 -0
  670. package/client/src/dashboard/SQLEditor/addSqlEditorFunctions.ts +74 -0
  671. package/client/src/dashboard/SQLEditor/defineCustomMonacoSQLTheme.ts +74 -0
  672. package/client/src/dashboard/SQLEditor/getFormattedSql.ts +154 -0
  673. package/client/src/dashboard/SQLEditor/registerFunctionSuggestions.ts +175 -0
  674. package/client/src/dashboard/SQLEditor/utils/scrollToLineIfNeeded.ts +17 -0
  675. package/client/src/dashboard/SQLEditor/utils/setMonacEditorError.ts +93 -0
  676. package/client/src/dashboard/SampleSchemas.tsx +50 -0
  677. package/client/src/dashboard/SchemaGraph/ERDSchema/ERDSchema.tsx +175 -0
  678. package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacement.ts +115 -0
  679. package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacementV2.ts +343 -0
  680. package/client/src/dashboard/SchemaGraph/ERDSchema/useCanvasPanZoom.ts +54 -0
  681. package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawHiddenSvgForNativeTextSearch.ts +80 -0
  682. package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawSchemaShapes.ts +242 -0
  683. package/client/src/dashboard/SchemaGraph/ERDSchema/useFetchSchemaForDiagram.ts +276 -0
  684. package/client/src/dashboard/SchemaGraph/ERDSchema/usePanShapes.ts +160 -0
  685. package/client/src/dashboard/SchemaGraph/ERDSchema/useSchemaShapes.ts +352 -0
  686. package/client/src/dashboard/SchemaGraph/SchemaGraph.tsx +55 -0
  687. package/client/src/dashboard/SchemaGraph/SchemaGraphControls.tsx +226 -0
  688. package/client/src/dashboard/SchemaGraph/types.ts +29 -0
  689. package/client/src/dashboard/SearchAll/SearchAll.tsx +77 -0
  690. package/client/src/dashboard/SearchAll/SearchAllContent.tsx +63 -0
  691. package/client/src/dashboard/SearchAll/SearchAllHeader.tsx +71 -0
  692. package/client/src/dashboard/SearchAll/SearchMatchRow.tsx +103 -0
  693. package/client/src/dashboard/SearchAll/hooks/useSearchAllState.ts +46 -0
  694. package/client/src/dashboard/SearchAll/hooks/useSearchListProps.tsx +178 -0
  695. package/client/src/dashboard/SearchAll/hooks/useSearchTables.tsx +163 -0
  696. package/client/src/dashboard/SearchAll/hooks/useTablesAndViewsSearchItems.ts +55 -0
  697. package/client/src/dashboard/SilverGrid/SilverGrid.tsx +531 -0
  698. package/client/src/dashboard/SilverGrid/SilverGridChild.tsx +403 -0
  699. package/client/src/dashboard/SilverGrid/SilverGridChildHeader.tsx +235 -0
  700. package/client/src/dashboard/SilverGrid/SilverGridResizer.tsx +129 -0
  701. package/client/src/dashboard/SilverGrid/TreeBuilder.ts +261 -0
  702. package/client/src/dashboard/SmartCard/SmartCard.tsx +218 -0
  703. package/client/src/dashboard/SmartCard/SmartCardActions.tsx +113 -0
  704. package/client/src/dashboard/SmartCard/SmartCardColumn.tsx +49 -0
  705. package/client/src/dashboard/SmartCard/getSelectForFieldConfigs.ts +44 -0
  706. package/client/src/dashboard/SmartCard/parseFieldConfigs.tsx +165 -0
  707. package/client/src/dashboard/SmartCard/useFieldConfigParser.ts +55 -0
  708. package/client/src/dashboard/SmartCard/useSmartCardColumns.ts +46 -0
  709. package/client/src/dashboard/SmartCardList/SmartCardList.tsx +291 -0
  710. package/client/src/dashboard/SmartCardList/SmartCardListHeaderControls.tsx +130 -0
  711. package/client/src/dashboard/SmartCardList/SmartCardListJoinedNewRecords.tsx +97 -0
  712. package/client/src/dashboard/SmartCardList/useSmartCardListState.ts +273 -0
  713. package/client/src/dashboard/SmartFilter/AddJoinFilter.tsx +97 -0
  714. package/client/src/dashboard/SmartFilter/MinimisedFilter.css +13 -0
  715. package/client/src/dashboard/SmartFilter/MinimisedFilter.tsx +208 -0
  716. package/client/src/dashboard/SmartFilter/SmartAddFilter.tsx +324 -0
  717. package/client/src/dashboard/SmartFilter/SmartFilter.tsx +182 -0
  718. package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.css +4 -0
  719. package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.tsx +230 -0
  720. package/client/src/dashboard/SmartFilter/SmartSearch/getSmartSearchRows.ts +277 -0
  721. package/client/src/dashboard/SmartFilter/SmartSearch/onSearchItems.tsx +146 -0
  722. package/client/src/dashboard/SmartFilter/SortByControl.tsx +81 -0
  723. package/client/src/dashboard/SmartFilter/smartFilterUtils.ts +97 -0
  724. package/client/src/dashboard/SmartFilterBar/SmartFilterBar.tsx +178 -0
  725. package/client/src/dashboard/SmartFilterBar/SmartFilterBarFilters.tsx +103 -0
  726. package/client/src/dashboard/SmartFilterBar/SmartFilterBarRightActions.tsx +212 -0
  727. package/client/src/dashboard/SmartFilterBar/SmartFilterBarSearch.tsx +115 -0
  728. package/client/src/dashboard/SmartFilterBar/SmartFilterBarSort.tsx +108 -0
  729. package/client/src/dashboard/SmartFilterBar/useSmartFilterBarState.ts +100 -0
  730. package/client/src/dashboard/SmartForm/ChipArrayEditor.tsx +169 -0
  731. package/client/src/dashboard/SmartForm/InsertButton.tsx +89 -0
  732. package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecords.tsx +155 -0
  733. package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsAddRow.tsx +182 -0
  734. package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsSection.tsx +168 -0
  735. package/client/src/dashboard/SmartForm/JoinedRecords/getJoinFilter.ts +31 -0
  736. package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedRecordsSections.ts +246 -0
  737. package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedSectionFieldConfigs.tsx +120 -0
  738. package/client/src/dashboard/SmartForm/SmartForm.tsx +368 -0
  739. package/client/src/dashboard/SmartForm/SmartFormField/RenderValue/RenderJson.tsx +72 -0
  740. package/client/src/dashboard/SmartForm/SmartFormField/RenderValue.tsx +294 -0
  741. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormField.tsx +349 -0
  742. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldFileSection.tsx +51 -0
  743. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldForeignKey.tsx +253 -0
  744. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedData.tsx +207 -0
  745. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/SmartFormFieldLinkedDataInsert.tsx +165 -0
  746. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/useSmartFormFieldLinkedDataInsert.tsx +77 -0
  747. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataSearch.tsx +91 -0
  748. package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldRightButtons.tsx +110 -0
  749. package/client/src/dashboard/SmartForm/SmartFormField/ViewMoreSmartCardList.tsx +86 -0
  750. package/client/src/dashboard/SmartForm/SmartFormField/fetchColumnValueSuggestions.ts +92 -0
  751. package/client/src/dashboard/SmartForm/SmartFormField/fetchForeignKeyOptions.tsx +348 -0
  752. package/client/src/dashboard/SmartForm/SmartFormField/fieldUtils.ts +228 -0
  753. package/client/src/dashboard/SmartForm/SmartFormField/useNestedInsertDefaultData.ts +28 -0
  754. package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldAsJSON.tsx +87 -0
  755. package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldOnChange.ts +65 -0
  756. package/client/src/dashboard/SmartForm/SmartFormFieldList.tsx +190 -0
  757. package/client/src/dashboard/SmartForm/SmartFormFileSection.tsx +110 -0
  758. package/client/src/dashboard/SmartForm/SmartFormFooter/SmartFormFooterButtons.tsx +133 -0
  759. package/client/src/dashboard/SmartForm/SmartFormFooter/useSmartFormActions.ts +265 -0
  760. package/client/src/dashboard/SmartForm/SmartFormNewRowDataHandler.ts +168 -0
  761. package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPopupWrapper.tsx +92 -0
  762. package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPrevNext.tsx +33 -0
  763. package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormViewAsMarkdown.tsx +83 -0
  764. package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormPrevNext.ts +20 -0
  765. package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormSubTitle.ts +44 -0
  766. package/client/src/dashboard/SmartForm/SmartFormUpperFooter/SmartFormUpperFooter.tsx +198 -0
  767. package/client/src/dashboard/SmartForm/SmartFormUpperFooter/useActiveJoinedRecordsTab.ts +65 -0
  768. package/client/src/dashboard/SmartForm/constants.ts +1 -0
  769. package/client/src/dashboard/SmartForm/useNewRowDataHandler.ts +386 -0
  770. package/client/src/dashboard/SmartForm/useSmartForm.ts +67 -0
  771. package/client/src/dashboard/SmartForm/useSmartFormColumns.ts +127 -0
  772. package/client/src/dashboard/SmartForm/useSmartFormMode.ts +243 -0
  773. package/client/src/dashboard/SmartSelect.tsx +228 -0
  774. package/client/src/dashboard/SmartTable.tsx +383 -0
  775. package/client/src/dashboard/StatusMonitor/StatusMonitor.tsx +41 -0
  776. package/client/src/dashboard/StatusMonitor/StatusMonitorBlockedByPid.tsx +35 -0
  777. package/client/src/dashboard/StatusMonitor/StatusMonitorConnections.tsx +127 -0
  778. package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeader.tsx +122 -0
  779. package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderCpu.tsx +122 -0
  780. package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderMemory.tsx +21 -0
  781. package/client/src/dashboard/StatusMonitor/StatusMonitorProcList.tsx +292 -0
  782. package/client/src/dashboard/StatusMonitor/StatusMonitorProcListControlsHeader.tsx +85 -0
  783. package/client/src/dashboard/TableConfig/ProcessLogs.tsx +65 -0
  784. package/client/src/dashboard/TableConfig/TableConfig.tsx +88 -0
  785. package/client/src/dashboard/TimeSeries.tsx +29 -0
  786. package/client/src/dashboard/UserManager.tsx +54 -0
  787. package/client/src/dashboard/W_Barchart/W_Barchart.tsx +104 -0
  788. package/client/src/dashboard/W_Barchart/fetchSQLBarchartData.ts +7 -0
  789. package/client/src/dashboard/W_Barchart/useBarchartData.ts +176 -0
  790. package/client/src/dashboard/W_Map/OSM/OverpassQuery.tsx +21 -0
  791. package/client/src/dashboard/W_Map/OSM/fetchOSMCountryBoundary.ts +73 -0
  792. package/client/src/dashboard/W_Map/OSM/getOSMData.ts +240 -0
  793. package/client/src/dashboard/W_Map/OSM/osmToGeoJSON.ts +198 -0
  794. package/client/src/dashboard/W_Map/OSM/osmTypes.ts +1856 -0
  795. package/client/src/dashboard/W_Map/W_Map.tsx +747 -0
  796. package/client/src/dashboard/W_Map/W_MapMenu.tsx +188 -0
  797. package/client/src/dashboard/W_Map/controls/MapBasemapOptions.tsx +268 -0
  798. package/client/src/dashboard/W_Map/controls/MapInfoSection.tsx +95 -0
  799. package/client/src/dashboard/W_Map/controls/MapOSMQuery.tsx +174 -0
  800. package/client/src/dashboard/W_Map/controls/MapOpacityMenu.tsx +60 -0
  801. package/client/src/dashboard/W_Map/fetchData/fetchMapLayerData.ts +401 -0
  802. package/client/src/dashboard/W_Map/fetchData/getMapData.ts +161 -0
  803. package/client/src/dashboard/W_Map/fetchData/getMapDataExtent.ts +86 -0
  804. package/client/src/dashboard/W_Map/fetchData/getMapLayerQueries.ts +232 -0
  805. package/client/src/dashboard/W_Map/getMapFeatureStyle.ts +160 -0
  806. package/client/src/dashboard/W_Map/onMapHover.ts +118 -0
  807. package/client/src/dashboard/W_Method/FunctionLabel.tsx +24 -0
  808. package/client/src/dashboard/W_Method/NewMethod.tsx +108 -0
  809. package/client/src/dashboard/W_Method/PublishedMethods.tsx +218 -0
  810. package/client/src/dashboard/W_Method/W_Method.tsx +48 -0
  811. package/client/src/dashboard/W_Method/W_MethodControls.tsx +338 -0
  812. package/client/src/dashboard/W_Method/W_MethodMenu.tsx +162 -0
  813. package/client/src/dashboard/W_QuickMenu.tsx +228 -0
  814. package/client/src/dashboard/W_SQL/CSVRender.tsx +18 -0
  815. package/client/src/dashboard/W_SQL/CopyResultBtn.tsx +246 -0
  816. package/client/src/dashboard/W_SQL/MonacoLanguageRegister.ts +701 -0
  817. package/client/src/dashboard/W_SQL/SQLHotkeys.tsx +23 -0
  818. package/client/src/dashboard/W_SQL/TestSQL.ts +52 -0
  819. package/client/src/dashboard/W_SQL/W_SQL.tsx +679 -0
  820. package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBar.tsx +484 -0
  821. package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBarProcStats.tsx +67 -0
  822. package/client/src/dashboard/W_SQL/W_SQLMenu.tsx +403 -0
  823. package/client/src/dashboard/W_SQL/W_SQLResults.tsx +161 -0
  824. package/client/src/dashboard/W_SQL/customRenderers.tsx +126 -0
  825. package/client/src/dashboard/W_SQL/demoScripts/createTables.ts +262 -0
  826. package/client/src/dashboard/W_SQL/demoScripts/mainTestScripts.ts +269 -0
  827. package/client/src/dashboard/W_SQL/demoScripts/testBugs.ts +596 -0
  828. package/client/src/dashboard/W_SQL/demoScripts/testMiscAndBugs.ts +61 -0
  829. package/client/src/dashboard/W_SQL/demoScripts/testSqlCharts.ts +117 -0
  830. package/client/src/dashboard/W_SQL/getChartableSQL.ts +169 -0
  831. package/client/src/dashboard/W_SQL/getDemoUtils.ts +260 -0
  832. package/client/src/dashboard/W_SQL/getSQLResultTableColumns.ts +56 -0
  833. package/client/src/dashboard/W_SQL/monacoEditorTypes.ts +13 -0
  834. package/client/src/dashboard/W_SQL/parseExplainResult.ts +99 -0
  835. package/client/src/dashboard/W_SQL/parseSQLError.ts +55 -0
  836. package/client/src/dashboard/W_SQL/parseSqlResultCols.ts +96 -0
  837. package/client/src/dashboard/W_SQL/runSQL/getQueryTotalRowCount.ts +38 -0
  838. package/client/src/dashboard/W_SQL/runSQL/runSQL.ts +432 -0
  839. package/client/src/dashboard/W_SQL/runSQLErrorHints.ts +150 -0
  840. package/client/src/dashboard/W_Table/CardView/CardItem/CardItemBody.tsx +151 -0
  841. package/client/src/dashboard/W_Table/CardView/CardItem/CardItemHeader.tsx +150 -0
  842. package/client/src/dashboard/W_Table/CardView/CardItem/CardViewRow.tsx +160 -0
  843. package/client/src/dashboard/W_Table/CardView/CardView.tsx +87 -0
  844. package/client/src/dashboard/W_Table/CardView/CardViewColumn.tsx +82 -0
  845. package/client/src/dashboard/W_Table/CardView/CardViewKanban.tsx +87 -0
  846. package/client/src/dashboard/W_Table/CardView/DragHeader.tsx +46 -0
  847. package/client/src/dashboard/W_Table/CardView/constants.ts +1 -0
  848. package/client/src/dashboard/W_Table/CardView/useCardViewState.ts +50 -0
  849. package/client/src/dashboard/W_Table/CardView/useDragHeader.ts +280 -0
  850. package/client/src/dashboard/W_Table/ColumnMenu/AddColumnMenu.tsx +193 -0
  851. package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/AddComputedColMenu.tsx +650 -0
  852. package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/FunctionColumnList.tsx +75 -0
  853. package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/QuickAddComputedColumn.tsx +129 -0
  854. package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/useAddComputedColumn.ts +175 -0
  855. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumn.tsx +421 -0
  856. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumnFileOptions.tsx +84 -0
  857. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ColumnEditor.tsx +229 -0
  858. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/CreateColumn.tsx +150 -0
  859. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ReferenceEditor.tsx +243 -0
  860. package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/alterColumnUtilts.ts +53 -0
  861. package/client/src/dashboard/W_Table/ColumnMenu/ColorPicker.tsx +251 -0
  862. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ChipStylePalette.tsx +127 -0
  863. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ColumnDisplayFormat.tsx +116 -0
  864. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellIconStyleControls.tsx +140 -0
  865. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellStyleControls.tsx +235 -0
  866. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/NestedColumnRender.tsx +172 -0
  867. package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/columnFormatUtils.tsx +330 -0
  868. package/client/src/dashboard/W_Table/ColumnMenu/ColumnList.tsx +291 -0
  869. package/client/src/dashboard/W_Table/ColumnMenu/ColumnMenu.tsx +537 -0
  870. package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/ColumnQuickStats.tsx +176 -0
  871. package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/useColumnQuickStats.ts +169 -0
  872. package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/ColumnSelect.tsx +54 -0
  873. package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/getColumnListItem.tsx +97 -0
  874. package/client/src/dashboard/W_Table/ColumnMenu/ColumnSortMenu.tsx +146 -0
  875. package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/ColumnStyleControls.tsx +258 -0
  876. package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/getValueColors.ts +101 -0
  877. package/client/src/dashboard/W_Table/ColumnMenu/ColumnsMenu.tsx +178 -0
  878. package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionExtraArguments.tsx +140 -0
  879. package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionSelector.tsx +89 -0
  880. package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/functions.ts +438 -0
  881. package/client/src/dashboard/W_Table/ColumnMenu/JoinPathSelectorV2.tsx +212 -0
  882. package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumn.tsx +295 -0
  883. package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnFooter.tsx +94 -0
  884. package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnSelect.tsx +160 -0
  885. package/client/src/dashboard/W_Table/ColumnMenu/NestedTimechartControls.tsx +167 -0
  886. package/client/src/dashboard/W_Table/ColumnMenu/SummariseColumns.tsx +126 -0
  887. package/client/src/dashboard/W_Table/ColumnMenu/UpdateColumnGlobalConfig.tsx +69 -0
  888. package/client/src/dashboard/W_Table/ColumnMenu/getNestedColumnTable.ts +83 -0
  889. package/client/src/dashboard/W_Table/ColumnMenu/rgba2hex.ts +36 -0
  890. package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathItem.tsx +133 -0
  891. package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathSelector.tsx +100 -0
  892. package/client/src/dashboard/W_Table/JoinPathSelector/getJoinTree.ts +79 -0
  893. package/client/src/dashboard/W_Table/NodeCountChecker.tsx +58 -0
  894. package/client/src/dashboard/W_Table/ProstglesTable.css +64 -0
  895. package/client/src/dashboard/W_Table/QuickFilterGroupsControl.tsx +86 -0
  896. package/client/src/dashboard/W_Table/RowCard.tsx +102 -0
  897. package/client/src/dashboard/W_Table/TableMenu/AddChartMenu.tsx +288 -0
  898. package/client/src/dashboard/W_Table/TableMenu/AutoRefreshMenu.tsx +118 -0
  899. package/client/src/dashboard/W_Table/TableMenu/TableDisplayOptionsJSON.tsx +71 -0
  900. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu.tsx +365 -0
  901. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_AccessRules.tsx +127 -0
  902. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Constraints.tsx +140 -0
  903. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_CurrentQuery.tsx +82 -0
  904. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_DisplayOptions.tsx +266 -0
  905. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Indexes.tsx +179 -0
  906. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Policies.tsx +197 -0
  907. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_TableInfo.tsx +184 -0
  908. package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Triggers.tsx +199 -0
  909. package/client/src/dashboard/W_Table/TableMenu/getAndFixWColumnsConfig.tsx +116 -0
  910. package/client/src/dashboard/W_Table/TableMenu/getChartCols.ts +153 -0
  911. package/client/src/dashboard/W_Table/TableMenu/getTableMeta.ts +205 -0
  912. package/client/src/dashboard/W_Table/TooManyColumnsWarning.tsx +72 -0
  913. package/client/src/dashboard/W_Table/W_Table.tsx +772 -0
  914. package/client/src/dashboard/W_Table/W_Table_Content.tsx +51 -0
  915. package/client/src/dashboard/W_Table/colorBlend.ts +75 -0
  916. package/client/src/dashboard/W_Table/getTableData/getTableData.ts +291 -0
  917. package/client/src/dashboard/W_Table/getTableData/getTableFilter.ts +66 -0
  918. package/client/src/dashboard/W_Table/tableUtils/StyledTableColumn.tsx +322 -0
  919. package/client/src/dashboard/W_Table/tableUtils/getColWInfo.ts +48 -0
  920. package/client/src/dashboard/W_Table/tableUtils/getColWidth.ts +160 -0
  921. package/client/src/dashboard/W_Table/tableUtils/getEditColumn.tsx +143 -0
  922. package/client/src/dashboard/W_Table/tableUtils/getFullColumnConfig.ts +43 -0
  923. package/client/src/dashboard/W_Table/tableUtils/getJoinPaths.ts +89 -0
  924. package/client/src/dashboard/W_Table/tableUtils/getRowFilter.ts +114 -0
  925. package/client/src/dashboard/W_Table/tableUtils/getTableCols.tsx +258 -0
  926. package/client/src/dashboard/W_Table/tableUtils/getTableDataRequestSignature.ts +32 -0
  927. package/client/src/dashboard/W_Table/tableUtils/getTableSelect.ts +235 -0
  928. package/client/src/dashboard/W_Table/tableUtils/kFormatter.ts +12 -0
  929. package/client/src/dashboard/W_Table/tableUtils/onRenderColumn.tsx +107 -0
  930. package/client/src/dashboard/W_Table/tableUtils/prepareColsForRender.ts +69 -0
  931. package/client/src/dashboard/W_Table/tableUtils/tableUtils.ts +298 -0
  932. package/client/src/dashboard/W_TimeChart/AddTimeChartFilter.tsx +347 -0
  933. package/client/src/dashboard/W_TimeChart/W_TimeChart.tsx +405 -0
  934. package/client/src/dashboard/W_TimeChart/W_TimeChartHeaderControls.tsx +140 -0
  935. package/client/src/dashboard/W_TimeChart/W_TimeChartLayerLegend.tsx +99 -0
  936. package/client/src/dashboard/W_TimeChart/W_TimeChartMenu.tsx +228 -0
  937. package/client/src/dashboard/W_TimeChart/fetchData/constants.ts +5 -0
  938. package/client/src/dashboard/W_TimeChart/fetchData/fetchAndSetTimechartLayerData.ts +141 -0
  939. package/client/src/dashboard/W_TimeChart/fetchData/fetchTimechartLayer.ts +291 -0
  940. package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartData.ts +163 -0
  941. package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayers.ts +137 -0
  942. package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayersWithBins.ts +296 -0
  943. package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartSelectParams.ts +41 -0
  944. package/client/src/dashboard/W_TimeChart/fetchData/getTimeLayerDataSignature.ts +22 -0
  945. package/client/src/dashboard/W_TimeChart/fetchData/getTimechartExtentFilter.ts +48 -0
  946. package/client/src/dashboard/Window/ChildWindowLayout.tsx +149 -0
  947. package/client/src/dashboard/Window/Window.tsx +322 -0
  948. package/client/src/dashboard/WindowControls/AddChartLayer.tsx +142 -0
  949. package/client/src/dashboard/WindowControls/ColorByLegend/ColorByLegend.tsx +256 -0
  950. package/client/src/dashboard/WindowControls/ColorByLegend/getGroupByValueColor.ts +50 -0
  951. package/client/src/dashboard/WindowControls/DataLayerManager/DataLayer.tsx +182 -0
  952. package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerDataSource.tsx +243 -0
  953. package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerManager.tsx +157 -0
  954. package/client/src/dashboard/WindowControls/DataLayerManager/LayerColorPicker.tsx +56 -0
  955. package/client/src/dashboard/WindowControls/DataLayerManager/MapLayerStyling.tsx +192 -0
  956. package/client/src/dashboard/WindowControls/DataLayerManager/useSortedLayerQueries.ts +34 -0
  957. package/client/src/dashboard/WindowControls/OSMLayerOptions.tsx +62 -0
  958. package/client/src/dashboard/WindowControls/SQLChartLayerEditor.tsx +38 -0
  959. package/client/src/dashboard/WindowControls/TimeChartLayerOptions.tsx +336 -0
  960. package/client/src/dashboard/WorkspaceMenu/WorkspaceAddBtn.tsx +104 -0
  961. package/client/src/dashboard/WorkspaceMenu/WorkspaceDeleteBtn.tsx +87 -0
  962. package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.css +13 -0
  963. package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.tsx +124 -0
  964. package/client/src/dashboard/WorkspaceMenu/WorkspaceMenuDropDown.tsx +178 -0
  965. package/client/src/dashboard/WorkspaceMenu/WorkspaceSettings.tsx +99 -0
  966. package/client/src/dashboard/WorkspaceMenu/useWorkspaces.ts +78 -0
  967. package/client/src/dashboard/getCrossFilters.ts +251 -0
  968. package/client/src/dashboard/localSettings.ts +94 -0
  969. package/client/src/dashboard/setPan.ts +358 -0
  970. package/client/src/dashboard/shortestPath.ts +137 -0
  971. package/client/src/demo/AppVideoDemo.tsx +132 -0
  972. package/client/src/demo/MousePointer.tsx +39 -0
  973. package/client/src/demo/demoUtils.ts +214 -0
  974. package/client/src/demo/recordDemoUtils.ts +87 -0
  975. package/client/src/demo/scripts/AIAssistantDemo.ts +60 -0
  976. package/client/src/demo/scripts/accessControlDemo.ts +44 -0
  977. package/client/src/demo/scripts/backupDemo.ts +50 -0
  978. package/client/src/demo/scripts/dashboardDemo.ts +215 -0
  979. package/client/src/demo/scripts/fileDemo.ts +24 -0
  980. package/client/src/demo/scripts/schemaDiagramDemo.ts +13 -0
  981. package/client/src/demo/scripts/sqlVideoDemo.ts +539 -0
  982. package/client/src/demo/scripts/videoDemoAccessControlScripts.ts +245 -0
  983. package/client/src/exports.ts +15 -0
  984. package/client/src/hooks/createStore.ts +24 -0
  985. package/client/src/hooks/useDebouncedCallback.ts +27 -0
  986. package/client/src/hooks/useThrottledCallback.ts +41 -0
  987. package/client/src/hooks/useTypedSearchParams.ts +81 -0
  988. package/client/src/i18n/LanguageSelector.tsx +33 -0
  989. package/client/src/i18n/i18nUtils.ts +187 -0
  990. package/client/src/i18n/translations/de.json +453 -0
  991. package/client/src/i18n/translations/es.json +425 -0
  992. package/client/src/i18n/translations/fr.json +425 -0
  993. package/client/src/i18n/translations/hi.json +431 -0
  994. package/client/src/i18n/translations/ru.json +431 -0
  995. package/client/src/i18n/translations/translations.ts +477 -0
  996. package/client/src/i18n/translations/zh.json +423 -0
  997. package/client/src/index.css +57 -0
  998. package/client/src/index.html.ejs +37 -0
  999. package/client/src/index.tsx +17 -0
  1000. package/client/src/pages/Account/Account.tsx +150 -0
  1001. package/client/src/pages/Account/ChangePassword.tsx +96 -0
  1002. package/client/src/pages/Account/Sessions.tsx +248 -0
  1003. package/client/src/pages/Account/Setup2FA.tsx +244 -0
  1004. package/client/src/pages/AccountMenu.tsx +146 -0
  1005. package/client/src/pages/Alerts.tsx +182 -0
  1006. package/client/src/pages/AppContextProvider.tsx +26 -0
  1007. package/client/src/pages/ComponentList.tsx +108 -0
  1008. package/client/src/pages/ElectronSetup/ElectronSetup.tsx +122 -0
  1009. package/client/src/pages/ElectronSetup/ElectronSetupStateDB.tsx +141 -0
  1010. package/client/src/pages/ElectronSetup/useElectronSetup.ts +147 -0
  1011. package/client/src/pages/Login/AuthNotifPopup.tsx +37 -0
  1012. package/client/src/pages/Login/Login.tsx +133 -0
  1013. package/client/src/pages/Login/LoginTotpForm.tsx +72 -0
  1014. package/client/src/pages/Login/LoginWithProviders.tsx +62 -0
  1015. package/client/src/pages/Login/SocialIcons.css +4 -0
  1016. package/client/src/pages/Login/SocialIcons.tsx +85 -0
  1017. package/client/src/pages/NewConnection/NewConnectionForm.tsx +572 -0
  1018. package/client/src/pages/NewConnection/NewConnectionFormFields.tsx +314 -0
  1019. package/client/src/pages/NewConnection/NewConnectionFormOptions.tsx +194 -0
  1020. package/client/src/pages/NewConnection/SchemaFilter.tsx +87 -0
  1021. package/client/src/pages/NewConnection/newConnectionUtils.ts +50 -0
  1022. package/client/src/pages/NonHTTPSWarning.tsx +51 -0
  1023. package/client/src/pages/NotFound.tsx +22 -0
  1024. package/client/src/pages/ProjectConnection/PrglContextProvider.tsx +47 -0
  1025. package/client/src/pages/ProjectConnection/ProjectConnection.tsx +110 -0
  1026. package/client/src/pages/ProjectConnection/ProjectConnectionError.tsx +76 -0
  1027. package/client/src/pages/ProjectConnection/useProjectDb.ts +253 -0
  1028. package/client/src/pages/ProjectLogs.tsx +227 -0
  1029. package/client/src/pages/ServerSettings/AuthProvidersSetup/AuthProvidersSetup.tsx +199 -0
  1030. package/client/src/pages/ServerSettings/AuthProvidersSetup/useProviderProps.ts +39 -0
  1031. package/client/src/pages/ServerSettings/EmailAuthSetup.tsx +209 -0
  1032. package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPAndTemplateSetup.tsx +158 -0
  1033. package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPSetup.tsx +128 -0
  1034. package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailTemplateSetup.tsx +111 -0
  1035. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfig.tsx +41 -0
  1036. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigActions.tsx +187 -0
  1037. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigAuthorizeUrlBtn.tsx +55 -0
  1038. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigCredentials.tsx +81 -0
  1039. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigTopControls.tsx +120 -0
  1040. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/WebMcpConfig.tsx +162 -0
  1041. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/useMcpServerOAuthConfigState.ts +132 -0
  1042. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigButton.tsx +121 -0
  1043. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigEditor.tsx +206 -0
  1044. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigProvider.tsx +67 -0
  1045. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerConfigState.tsx +107 -0
  1046. package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerEnable.ts +131 -0
  1047. package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerFooterActions.tsx +108 -0
  1048. package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerLogs.tsx +46 -0
  1049. package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServersInstall.tsx +81 -0
  1050. package/client/src/pages/ServerSettings/MCPServers/MCPServerHeaderCheckbox.tsx +120 -0
  1051. package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerTools.tsx +95 -0
  1052. package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerToolsGroupToggle.tsx +96 -0
  1053. package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpServerIcons.ts +87 -0
  1054. package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpToolsSelectOptions.tsx +33 -0
  1055. package/client/src/pages/ServerSettings/MCPServers/MCPServers.tsx +140 -0
  1056. package/client/src/pages/ServerSettings/MCPServers/MCPServersHeader.tsx +47 -0
  1057. package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/AddMCPServer.tsx +196 -0
  1058. package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/MCPServersToolbar.tsx +77 -0
  1059. package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/useAddMCPServer.ts +253 -0
  1060. package/client/src/pages/ServerSettings/MCPServers/useMCPChatAllowedTools.ts +25 -0
  1061. package/client/src/pages/ServerSettings/MCPServers/useMCPServersListProps.tsx +118 -0
  1062. package/client/src/pages/ServerSettings/OAuthProviderSetup.tsx +258 -0
  1063. package/client/src/pages/ServerSettings/SecuritySettings.tsx +154 -0
  1064. package/client/src/pages/ServerSettings/ServerSettings.tsx +151 -0
  1065. package/client/src/pages/ServerSettings/Services.tsx +231 -0
  1066. package/client/src/pages/ServerSettings/useEditableData.ts +55 -0
  1067. package/client/src/pages/TopControls.tsx +182 -0
  1068. package/client/src/pages/projectUtils.ts +0 -0
  1069. package/client/src/theme/ThemeSelector.tsx +36 -0
  1070. package/client/src/theme/useAppTheme.ts +47 -0
  1071. package/client/src/theme/useSystemTheme.ts +23 -0
  1072. package/client/src/useAppState/PrglCoreContextProvider.tsx +76 -0
  1073. package/client/src/useAppState/useAppState.ts +92 -0
  1074. package/client/src/useAppState/useDBSClient.ts +104 -0
  1075. package/client/src/useAppState/useServerState.ts +62 -0
  1076. package/client/src/useAppState/useUserData.ts +1 -0
  1077. package/client/src/utils/colorUtils.ts +48 -0
  1078. package/client/src/utils/hashCode.ts +52 -0
  1079. package/client/src/utils/utils.ts +207 -0
  1080. package/client/static/favicon-32x32.png +0 -0
  1081. package/client/static/logos/anthropic.svg +3 -0
  1082. package/client/static/logos/google.svg +25 -0
  1083. package/client/static/logos/ollama.svg +7 -0
  1084. package/client/static/logos/openai.svg +2 -0
  1085. package/client/static/logos/openrouter.svg +1 -0
  1086. package/client/static/mcp-oauth-close.js +5 -0
  1087. package/client/static/prostgles-logo.svg +39 -0
  1088. package/client/static/util.css +2024 -0
  1089. package/client/static/v2.svg +25 -0
  1090. package/client/tsconfig.eslint.json +5 -0
  1091. package/client/tsconfig.json +40 -0
  1092. package/client/tslint.json +5 -0
  1093. package/common/DBGeneratedSchema.ts +953 -0
  1094. package/common/DashboardTypes.ts +533 -0
  1095. package/common/KeyObjMap.ts +100 -0
  1096. package/common/OAuthUtils.ts +285 -0
  1097. package/common/authTypesAndConstants.ts +1 -0
  1098. package/common/columnDisplayFormat.schema.ts +211 -0
  1099. package/common/electronInitTypes.ts +56 -0
  1100. package/common/filterUtils.ts +491 -0
  1101. package/common/getJsonSchemaAsTs.ts +335 -0
  1102. package/common/llmUtils.ts +133 -0
  1103. package/common/managedTableSchema.ts +38 -0
  1104. package/common/mcp/databaseAccessSchema.ts +70 -0
  1105. package/common/mcp/db.mcp.schema.ts +280 -0
  1106. package/common/mcp/documents.mcp.schema.ts +45 -0
  1107. package/common/mcp/documentsServiceInputSchema.ts +129 -0
  1108. package/common/mcp/runCodeInSandboxSchema.ts +85 -0
  1109. package/common/mcp/startAgenticWorkflowSchema.ts +180 -0
  1110. package/common/mcp/tableOptionsJsonbSchema.ts +151 -0
  1111. package/common/mcp/tablePermissionsSchema.ts +101 -0
  1112. package/common/mcp/ui.mcp.schema.ts +496 -0
  1113. package/common/mcp/userInputSchema.ts +87 -0
  1114. package/common/mcp/web.mcp.schema.ts +245 -0
  1115. package/common/mcp/webdev.mcp.schema.ts +138 -0
  1116. package/common/mcpUtils.ts +75 -0
  1117. package/common/prostglesApiTypes.ts +551 -0
  1118. package/common/prostglesMcp.ts +35 -0
  1119. package/common/psql_queries.json +657 -0
  1120. package/common/publishUtils.ts +600 -0
  1121. package/common/tsconfig.json +22 -0
  1122. package/common/utils.ts +525 -0
  1123. package/docker-compose.yml +99 -0
  1124. package/docs/01_Overview.md +25 -0
  1125. package/docs/02_Installation_(Docker).md +37 -0
  1126. package/docs/03_Installation_(Desktop_Version).md +27 -0
  1127. package/docs/04_Navigation_bar.md +37 -0
  1128. package/docs/05_Connections.md +108 -0
  1129. package/docs/06_Connection_dashboard.md +58 -0
  1130. package/docs/07_Import_file.md +15 -0
  1131. package/docs/08_Agentic_workflows.md +27 -0
  1132. package/docs/09_Schema_diagram.md +63 -0
  1133. package/docs/10_SQL_editor.md +69 -0
  1134. package/docs/11_Table_view.md +188 -0
  1135. package/docs/12_Map_view.md +56 -0
  1136. package/docs/13_Timechart_view.md +49 -0
  1137. package/docs/14_AI_Assistant.md +64 -0
  1138. package/docs/15_Connection_configuration.md +20 -0
  1139. package/docs/16_Access_control.md +12 -0
  1140. package/docs/17_File_storage.md +8 -0
  1141. package/docs/18_Backup_and_Restore.md +22 -0
  1142. package/docs/19_API.md +20 -0
  1143. package/docs/20_Server_Settings.md +28 -0
  1144. package/docs/21_Account.md +21 -0
  1145. package/docs/22_Command_Palette.md +10 -0
  1146. package/docs/screenshots/table_timechart.dark.svgif.svg +375 -0
  1147. package/docs/screenshots/table_timechart.svgif.svg +1102 -0
  1148. package/docs/screenshots/timechart.dark.svgif.svg +221 -0
  1149. package/docs/screenshots/timechart.svgif.svg +846 -0
  1150. package/e2e/icon512.png +0 -0
  1151. package/e2e/package-lock.json +401 -0
  1152. package/e2e/package.json +31 -0
  1153. package/e2e/playwright.config.js +65 -0
  1154. package/e2e/playwright.config.ts +32 -0
  1155. package/e2e/test-local.sh +5 -0
  1156. package/e2e/tests/Testing.ts +724 -0
  1157. package/e2e/tests/command_palette.spec.ts +114 -0
  1158. package/e2e/tests/configTest/.env.example +10 -0
  1159. package/e2e/tests/configTest/constants.ts +13 -0
  1160. package/e2e/tests/configTest/functions.ts +14 -0
  1161. package/e2e/tests/configTest/index.ts +84 -0
  1162. package/e2e/tests/configTest/package.json +17 -0
  1163. package/e2e/tests/configTest/tsconfig.json +13 -0
  1164. package/e2e/tests/config_deploy.spec.ts +386 -0
  1165. package/e2e/tests/create_docs.spec.ts +231 -0
  1166. package/e2e/tests/create_load_test_users.spec.ts +47 -0
  1167. package/e2e/tests/demo_video.spec.ts +139 -0
  1168. package/e2e/tests/demo_video_setup.spec.ts +118 -0
  1169. package/e2e/tests/fileBrowserGoToPath.ts +53 -0
  1170. package/e2e/tests/load_test.spec.ts +53 -0
  1171. package/e2e/tests/main.spec.ts +3820 -0
  1172. package/e2e/tests/mockSMTPServer.ts +81 -0
  1173. package/e2e/tests/saveDocs.ts +55 -0
  1174. package/e2e/tests/svgScreenshots/SVG_SCREENSHOT_DETAILS.ts +132 -0
  1175. package/e2e/tests/svgScreenshots/account.svgif.ts +14 -0
  1176. package/e2e/tests/svgScreenshots/aiAssistant.svgif.ts +235 -0
  1177. package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflow.svgif.ts +339 -0
  1178. package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflowGovApi.svgif.ts +116 -0
  1179. package/e2e/tests/svgScreenshots/backupAndRestore.svgif.ts +143 -0
  1180. package/e2e/tests/svgScreenshots/commandPalette.svgif.ts +69 -0
  1181. package/e2e/tests/svgScreenshots/dashboard.svgif.ts +271 -0
  1182. package/e2e/tests/svgScreenshots/electronSetup.svgif.ts +32 -0
  1183. package/e2e/tests/svgScreenshots/fileImporter.svgif.ts +39 -0
  1184. package/e2e/tests/svgScreenshots/getOverviewSvgifSpecs.svgif.ts +288 -0
  1185. package/e2e/tests/svgScreenshots/map.svgif.ts +50 -0
  1186. package/e2e/tests/svgScreenshots/navbar.svgif.ts +22 -0
  1187. package/e2e/tests/svgScreenshots/newConnection.svgif.ts +26 -0
  1188. package/e2e/tests/svgScreenshots/schemaDiagram.svgif.ts +82 -0
  1189. package/e2e/tests/svgScreenshots/sqlEditor.svgif.ts +348 -0
  1190. package/e2e/tests/svgScreenshots/table.svgif.ts +167 -0
  1191. package/e2e/tests/svgScreenshots/tableTimechart.svgif.ts +507 -0
  1192. package/e2e/tests/svgScreenshots/timechart.svgif.ts +138 -0
  1193. package/e2e/tests/svgScreenshots/utils/constants.ts +23 -0
  1194. package/e2e/tests/svgScreenshots/utils/dedent.ts +9 -0
  1195. package/e2e/tests/svgScreenshots/utils/getFilesFromDir.ts +30 -0
  1196. package/e2e/tests/svgScreenshots/utils/getSceneUtils.ts +200 -0
  1197. package/e2e/tests/svgScreenshots/utils/removeOtherElements.ts +26 -0
  1198. package/e2e/tests/svgScreenshots/utils/saveSVGScreenshot.ts +67 -0
  1199. package/e2e/tests/svgScreenshots/utils/saveSVGifs.ts +74 -0
  1200. package/e2e/tests/svgScreenshots/utils/saveSVGs.ts +61 -0
  1201. package/e2e/tests/svgScreenshots/utils/startScreencast.ts +118 -0
  1202. package/e2e/tests/svgScreenshots/utils/svgScreenshotsCompleteReferenced.ts +98 -0
  1203. package/e2e/tests/svgScreenshots/utils/svgifToWebm.ts +196 -0
  1204. package/e2e/tests/svgScreenshots/utils/typeSendAddScenes.ts +86 -0
  1205. package/e2e/tests/testAskLLM/agenticWorkflowToolUses.ts +294 -0
  1206. package/e2e/tests/testAskLLM/createComponentToolUse.ts +49 -0
  1207. package/e2e/tests/testAskLLM/createReceipts.ts +183 -0
  1208. package/e2e/tests/testAskLLM/getAskUserToolUse.ts +36 -0
  1209. package/e2e/tests/testAskLLM/hello.mp3 +0 -0
  1210. package/e2e/tests/testAskLLM/mcpSandboxToolUse.ts +64 -0
  1211. package/e2e/tests/testAskLLM/mockRemoteMcp/Dockerfile +32 -0
  1212. package/e2e/tests/testAskLLM/mockRemoteMcp/package-lock.json +2120 -0
  1213. package/e2e/tests/testAskLLM/mockRemoteMcp/package.json +20 -0
  1214. package/e2e/tests/testAskLLM/mockRemoteMcp/server.ts +144 -0
  1215. package/e2e/tests/testAskLLM/mockRemoteMcp/start-mock-mcp.sh +93 -0
  1216. package/e2e/tests/testAskLLM/sample.pdf +35 -0
  1217. package/e2e/tests/testAskLLM/sampleToolUseData.ts +1413 -0
  1218. package/e2e/tests/testAskLLM/scenarios/geoQuestion.scenario.ts +110 -0
  1219. package/e2e/tests/testAskLLM/scenarios/hygieneRatingsApi.scenario.ts +62 -0
  1220. package/e2e/tests/testAskLLM/scenarios/receiptImport/receiptImport.scenario.ts +53 -0
  1221. package/e2e/tests/testAskLLM/speechToTextTest.ts +101 -0
  1222. package/e2e/tests/testAskLLM/stringify.ts +1 -0
  1223. package/e2e/tests/testAskLLM/testAskLLM.ts +558 -0
  1224. package/e2e/tests/testAskLLM/utils.ts +34 -0
  1225. package/e2e/tests/tsconfig.json +16 -0
  1226. package/e2e/tests/utils/constants.ts +22 -0
  1227. package/e2e/tests/utils/goTo.ts +87 -0
  1228. package/e2e/tests/utils/isPortFree.ts +19 -0
  1229. package/e2e/tests/utils/utils.ts +1319 -0
  1230. package/e2e/tsconfig.json +5 -0
  1231. package/electron/README.md +34 -0
  1232. package/electron/build.sh +74 -0
  1233. package/electron/e2e-electron/electron.spec.tsx +214 -0
  1234. package/electron/e2e-electron/tsconfig.json +10 -0
  1235. package/electron/forge.config.js +26 -0
  1236. package/electron/getProtocolHandler.ts +41 -0
  1237. package/electron/handleErrors.ts +25 -0
  1238. package/electron/icon512.png +0 -0
  1239. package/electron/image.ico +0 -0
  1240. package/electron/images/generate_from_svg.sh +13 -0
  1241. package/electron/images/icon.ico +0 -0
  1242. package/electron/images/icon512.png +0 -0
  1243. package/electron/images/icon512notpadded.png +0 -0
  1244. package/electron/images/loading-effect.css +43 -0
  1245. package/electron/images/prostgles-logo-rounded.svg +46 -0
  1246. package/electron/images/prostgles-logo.svg +39 -0
  1247. package/electron/images/rounded/256x256.png +0 -0
  1248. package/electron/images/rounded/512.png +0 -0
  1249. package/electron/images/rounded/512x512.png +0 -0
  1250. package/electron/images/rounded/64x64.png +0 -0
  1251. package/electron/images/rounded/icon512.png +0 -0
  1252. package/electron/loadingHTML.ts +70 -0
  1253. package/electron/main.ts +125 -0
  1254. package/electron/mainWindow.ts +155 -0
  1255. package/electron/package-lock.json +3916 -0
  1256. package/electron/package.json +111 -0
  1257. package/electron/playwright.config.ts +17 -0
  1258. package/electron/screenCapture.bat +275 -0
  1259. package/electron/scripts/patch-builder.mjs +25 -0
  1260. package/electron/setContextMenu.ts +56 -0
  1261. package/electron/start.sh +10 -0
  1262. package/electron/test-linux-macos.sh +1 -0
  1263. package/electron/test-linux.sh +2 -0
  1264. package/electron/test-setup.js +8 -0
  1265. package/electron/test-w-debug.sh +1 -0
  1266. package/electron/test.sh +1 -0
  1267. package/electron/tsconfig.json +22 -0
  1268. package/electron/win-inno-setup.ts +100 -0
  1269. package/electron/win.js +3 -0
  1270. package/package.json +33 -0
  1271. package/releases/v1.0.0.md +5 -0
  1272. package/releases/v2.0.0.md +25 -0
  1273. package/releases/v2.2.2.md +13 -0
  1274. package/releases/v2.2.3.md +1 -0
  1275. package/releases/v2.2.4.md +1 -0
  1276. package/releases/v2.2.5.md +1 -0
  1277. package/releases/v2.3.1.md +5 -0
  1278. package/releases/v2.3.5.md +7 -0
  1279. package/scripts/check_release_ready.sh +53 -0
  1280. package/scripts/demo/record-local.sh +13 -0
  1281. package/scripts/demo/split-video.sh +6 -0
  1282. package/scripts/get_version.sh +11 -0
  1283. package/scripts/npm_publish_dev.sh +6 -0
  1284. package/scripts/release.sh +35 -0
  1285. package/scripts/start-dev-electron.sh +14 -0
  1286. package/scripts/start-dev.sh +18 -0
  1287. package/scripts/start-prod.sh +5 -0
  1288. package/scripts/test.sh +62 -0
  1289. package/scripts/update_docker_image_versions.sh +28 -0
  1290. package/server/.vscode/settings.json +3 -0
  1291. package/server/eslint.config.mjs +83 -0
  1292. package/server/licenses.json +3821 -0
  1293. package/server/package-lock.json +7252 -0
  1294. package/server/package.json +84 -0
  1295. package/server/sample_schemas/_crypto.sql +95 -0
  1296. package/server/sample_schemas/cleaning.sql +49 -0
  1297. package/server/sample_schemas/cloud_computing.sql +63 -0
  1298. package/server/sample_schemas/countries.sql +29 -0
  1299. package/server/sample_schemas/crypto/index.ts +3 -0
  1300. package/server/sample_schemas/crypto/onMount.ts +802 -0
  1301. package/server/sample_schemas/crypto/package.json +7 -0
  1302. package/server/sample_schemas/crypto/tableConfig.ts +80 -0
  1303. package/server/sample_schemas/crypto/tsconfig.json +12 -0
  1304. package/server/sample_schemas/crypto/workspaceConfig.ts +261 -0
  1305. package/server/sample_schemas/financial.sql +49 -0
  1306. package/server/sample_schemas/food_delivery/connection.ts +1007 -0
  1307. package/server/sample_schemas/food_delivery/databaseConfig.ts +116 -0
  1308. package/server/sample_schemas/food_delivery/index.ts +8 -0
  1309. package/server/sample_schemas/food_delivery/onInit.sql +1507 -0
  1310. package/server/sample_schemas/food_delivery/onMount.ts +149 -0
  1311. package/server/sample_schemas/food_delivery/package.json +4 -0
  1312. package/server/sample_schemas/food_delivery/tsconfig.json +16 -0
  1313. package/server/sample_schemas/food_delivery/workspaceConfig.ts +53 -0
  1314. package/server/sample_schemas/lodging.sql +48 -0
  1315. package/server/sample_schemas/maps.sql +73 -0
  1316. package/server/sample_schemas/property_management/index.ts +2 -0
  1317. package/server/sample_schemas/property_management/onMount.ts +55 -0
  1318. package/server/sample_schemas/property_management/package.json +4 -0
  1319. package/server/sample_schemas/property_management/tsconfig.json +16 -0
  1320. package/server/sample_schemas/property_management/workspaceConfig.ts +92 -0
  1321. package/server/sample_schemas/sales.sql +51 -0
  1322. package/server/sample_schemas/sample.sql +72 -0
  1323. package/server/sample_schemas/testschema.ts +21 -0
  1324. package/server/sample_schemas/weather/index.ts +1 -0
  1325. package/server/sample_schemas/weather/onMount.ts +284 -0
  1326. package/server/sample_schemas/weather/package.json +4 -0
  1327. package/server/sample_schemas/weather/tsconfig.json +16 -0
  1328. package/server/scripts/preparePackage.mjs +18 -0
  1329. package/server/src/BackupManager/BackupManager.ts +297 -0
  1330. package/server/src/BackupManager/checkAutomaticBackup.ts +143 -0
  1331. package/server/src/BackupManager/getInstalledPrograms.ts +203 -0
  1332. package/server/src/BackupManager/pgDump.ts +242 -0
  1333. package/server/src/BackupManager/pgRestore.ts +238 -0
  1334. package/server/src/BackupManager/pipeFromCommand.ts +94 -0
  1335. package/server/src/BackupManager/pipeToCommand.ts +66 -0
  1336. package/server/src/BackupManager/utils.ts +124 -0
  1337. package/server/src/ConnectionManager/ConnectionManager.ts +613 -0
  1338. package/server/src/ConnectionManager/applyStartupSchemaConfig.ts +95 -0
  1339. package/server/src/ConnectionManager/connectionManagerUtils.ts +164 -0
  1340. package/server/src/ConnectionManager/connectionOnReady.ts +76 -0
  1341. package/server/src/ConnectionManager/dbsConnectionOptions.ts +109 -0
  1342. package/server/src/ConnectionManager/getConnectionAuth.ts +37 -0
  1343. package/server/src/ConnectionManager/getConnectionHttpServer.ts +112 -0
  1344. package/server/src/ConnectionManager/getConnectionPublish.ts +119 -0
  1345. package/server/src/ConnectionManager/getConnectionServerFunctions.ts +108 -0
  1346. package/server/src/ConnectionManager/getConnectionSocketPath.ts +12 -0
  1347. package/server/src/ConnectionManager/getHotReloadConfigs.ts +161 -0
  1348. package/server/src/ConnectionManager/getInitiatedPostgresqlPIDs.ts +84 -0
  1349. package/server/src/ConnectionManager/getSchemaConfig.ts +84 -0
  1350. package/server/src/ConnectionManager/initConnectionManager.ts +147 -0
  1351. package/server/src/ConnectionManager/modifyClientSchema.ts +146 -0
  1352. package/server/src/ConnectionManager/parseTableConfig.ts +231 -0
  1353. package/server/src/ConnectionManager/saveCertificates.ts +68 -0
  1354. package/server/src/ConnectionManager/startConnection.ts +353 -0
  1355. package/server/src/ConnectionManager/startConnectionOnRequestHandler.ts +63 -0
  1356. package/server/src/ConnectionManager/syncSchemaConfig.ts +98 -0
  1357. package/server/src/Logger.ts +150 -0
  1358. package/server/src/McpHub/AnthropicMcpHub/McpHub.ts +144 -0
  1359. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/authenticateMcpServer.ts +98 -0
  1360. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/connectToRemoteMCPServer.ts +176 -0
  1361. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/createMcpOAuthProvider.ts +257 -0
  1362. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getMcpOAuthMetadata.ts +112 -0
  1363. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getRemoteMcpServerParameters.ts +82 -0
  1364. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/saveServerInfo.ts +76 -0
  1365. package/server/src/McpHub/AnthropicMcpHub/McpOAuth/updateRemoteMcpAuthorizationCode.ts +100 -0
  1366. package/server/src/McpHub/AnthropicMcpHub/McpTypes.ts +189 -0
  1367. package/server/src/McpHub/AnthropicMcpHub/connectToMCPServer.ts +132 -0
  1368. package/server/src/McpHub/AnthropicMcpHub/createMcpServerHandlers.ts +116 -0
  1369. package/server/src/McpHub/AnthropicMcpHub/installMCPServer.ts +195 -0
  1370. package/server/src/McpHub/AnthropicMcpHub/runShellCommand.ts +53 -0
  1371. package/server/src/McpHub/AnthropicMcpHub/startMcpHub.ts +111 -0
  1372. package/server/src/McpHub/DefaultMCPServers/DefaultMCPServers.ts +153 -0
  1373. package/server/src/McpHub/DefaultMCPServers/mcpGithub.ts +968 -0
  1374. package/server/src/McpHub/DockerSandbox/createBridgeInternalDockerNetwork.ts +35 -0
  1375. package/server/src/McpHub/DockerSandbox/createContainer.spec.ts +195 -0
  1376. package/server/src/McpHub/DockerSandbox/createContainer.ts +125 -0
  1377. package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerContainerAuthRegistry.ts +150 -0
  1378. package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerMCPServerProxy.ts +395 -0
  1379. package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/getDockerGatewayIP.ts +27 -0
  1380. package/server/src/McpHub/DockerSandbox/executeDockerCommand.ts +152 -0
  1381. package/server/src/McpHub/DockerSandbox/getContainerLogs.ts +17 -0
  1382. package/server/src/McpHub/DockerSandbox/getDockerRunArgs.ts +114 -0
  1383. package/server/src/McpHub/DockerSandbox/runContainerWithProxyAccess.ts +99 -0
  1384. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServerTypes.ts +143 -0
  1385. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Db.mcp.ts +281 -0
  1386. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Documents.mcp.ts +89 -0
  1387. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/createAgenticWorkflow.ts +247 -0
  1388. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/assertTablesExistInFutureSchema.ts +14 -0
  1389. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/getValidatedMcpServerToolsAllowed.ts +155 -0
  1390. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/parseDDLStatements.ts +84 -0
  1391. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/quoteIdent.ts +139 -0
  1392. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateAgenticWorkflowDefinitions.ts +102 -0
  1393. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateDatabaseAccessDefinitions.ts +212 -0
  1394. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInput.ts +159 -0
  1395. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInputDefinitions.ts +36 -0
  1396. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/getVolumesFromUserInput.ts +134 -0
  1397. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/startAgenticWorkflowContainer.ts +341 -0
  1398. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/createWorkflowExecutionHandlers.ts +155 -0
  1399. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/getAgentConfigWithDefaults.ts +96 -0
  1400. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/setupOrchestrationToolPermissions.ts +64 -0
  1401. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/addInstrumentationToTsLogic.ts +350 -0
  1402. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/callWorkflowProxy.ts +99 -0
  1403. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.spec.ts +110 -0
  1404. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.ts +576 -0
  1405. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.ts +127 -0
  1406. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.types.ts +72 -0
  1407. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/definitionHandler.ts +104 -0
  1408. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/ensureWorkflowIsExecuted.ts +53 -0
  1409. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/getTsLogicSummary.ts +639 -0
  1410. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/orchestrationToolHandlers.ts +55 -0
  1411. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/tableHandlers.ts +108 -0
  1412. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.spec.ts +26 -0
  1413. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.ts +225 -0
  1414. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getDefineAgenticWorkflowTsWithDbAndMcpTypes.ts +187 -0
  1415. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getOrchestrationContainerFiles.ts +31 -0
  1416. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getToolTypescriptSchemas.ts +84 -0
  1417. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/startAgenticWorkflow.ts +181 -0
  1418. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/fetchTools.ts +48 -0
  1419. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/runCodeInSandboxContainer.ts +133 -0
  1420. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getAgenticToolSchemas.ts +55 -0
  1421. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolProxyAccessInstructions.ts +22 -0
  1422. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolSchemas.ts +46 -0
  1423. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/prostglesUiToolSchemas.ts +23 -0
  1424. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/suggestDashboardsToolSchema.ts +26 -0
  1425. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/startAgent.ts +166 -0
  1426. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/validateCreateDashboards.ts +249 -0
  1427. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Ui.mcp.ts +343 -0
  1428. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/Web.mcp.ts +265 -0
  1429. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.spec.ts +112 -0
  1430. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.ts +263 -0
  1431. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/getDocumentText.ts +34 -0
  1432. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/WebDev.mcp.ts +114 -0
  1433. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponent.ts +94 -0
  1434. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponentQuickFeedbackPreview.ts +53 -0
  1435. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/getWebDevChatAndConnection.ts +12 -0
  1436. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.spec.ts +82 -0
  1437. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.ts +118 -0
  1438. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/utils.ts +30 -0
  1439. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getClientDBHandlersForChat.ts +46 -0
  1440. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getExistingTablesSchema.ts +230 -0
  1441. package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers.ts +30 -0
  1442. package/server/src/McpHub/ProstglesMcpHub/ProstglesMcpHub.ts +244 -0
  1443. package/server/src/McpHub/callMCPServerTool.ts +148 -0
  1444. package/server/src/McpHub/getMcpServerParameters.ts +204 -0
  1445. package/server/src/McpHub/insertMcpServerList.ts +49 -0
  1446. package/server/src/McpHub/reloadMcpServerTools.ts +123 -0
  1447. package/server/src/McpHub/testMCPServerConfig.ts +29 -0
  1448. package/server/src/McpHub/utils.ts +1 -0
  1449. package/server/src/ServiceManager/ServiceManager.spec.ts +27 -0
  1450. package/server/src/ServiceManager/ServiceManager.ts +162 -0
  1451. package/server/src/ServiceManager/ServiceManagerTypes.ts +136 -0
  1452. package/server/src/ServiceManager/buildService.ts +138 -0
  1453. package/server/src/ServiceManager/dockerInspect.ts +33 -0
  1454. package/server/src/ServiceManager/enableService.ts +41 -0
  1455. package/server/src/ServiceManager/getDockerBuildHash.ts +57 -0
  1456. package/server/src/ServiceManager/getSelectedConfigEnvs.ts +47 -0
  1457. package/server/src/ServiceManager/getServiceEndpoints.ts +122 -0
  1458. package/server/src/ServiceManager/initialiseServices.ts +56 -0
  1459. package/server/src/ServiceManager/resolveBinary.ts +41 -0
  1460. package/server/src/ServiceManager/services/documents/documents.service.ts +178 -0
  1461. package/server/src/ServiceManager/services/documents/documents.service.types.ts +43 -0
  1462. package/server/src/ServiceManager/services/documents/src/Dockerfile +29 -0
  1463. package/server/src/ServiceManager/services/documents/src/layout_postprocessor.py +707 -0
  1464. package/server/src/ServiceManager/services/documents/src/requirements.txt +3 -0
  1465. package/server/src/ServiceManager/services/frontendDev/frontendDev.service.ts +19 -0
  1466. package/server/src/ServiceManager/services/frontendDev/src/.prettierrc +3 -0
  1467. package/server/src/ServiceManager/services/frontendDev/src/client/.env.development +1 -0
  1468. package/server/src/ServiceManager/services/frontendDev/src/client/Dockerfile +5 -0
  1469. package/server/src/ServiceManager/services/frontendDev/src/client/README.md +6 -0
  1470. package/server/src/ServiceManager/services/frontendDev/src/client/eslint.config.js +27 -0
  1471. package/server/src/ServiceManager/services/frontendDev/src/client/index.html +13 -0
  1472. package/server/src/ServiceManager/services/frontendDev/src/client/package.json +32 -0
  1473. package/server/src/ServiceManager/services/frontendDev/src/client/public/vite.svg +1 -0
  1474. package/server/src/ServiceManager/services/frontendDev/src/client/src/App.css +42 -0
  1475. package/server/src/ServiceManager/services/frontendDev/src/client/src/App.tsx +19 -0
  1476. package/server/src/ServiceManager/services/frontendDev/src/client/src/api/DBGeneratedSchema.d.ts +33 -0
  1477. package/server/src/ServiceManager/services/frontendDev/src/client/src/api/ProstglesProvider.tsx +61 -0
  1478. package/server/src/ServiceManager/services/frontendDev/src/client/src/assets/react.svg +1 -0
  1479. package/server/src/ServiceManager/services/frontendDev/src/client/src/components/SampleComponent/SampleComponent.tsx +11 -0
  1480. package/server/src/ServiceManager/services/frontendDev/src/client/src/index.css +68 -0
  1481. package/server/src/ServiceManager/services/frontendDev/src/client/src/main.tsx +23 -0
  1482. package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/ComponentPreview.tsx +31 -0
  1483. package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/Home.tsx +36 -0
  1484. package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.app.json +28 -0
  1485. package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.json +7 -0
  1486. package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.node.json +26 -0
  1487. package/server/src/ServiceManager/services/frontendDev/src/client/vite.config.ts +17 -0
  1488. package/server/src/ServiceManager/services/frontendDev/src/e2e/package.json +24 -0
  1489. package/server/src/ServiceManager/services/frontendDev/src/e2e/playwright.config.ts +36 -0
  1490. package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/coverage.ts +67 -0
  1491. package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/main.spec.ts +21 -0
  1492. package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/tsconfig.json +13 -0
  1493. package/server/src/ServiceManager/services/frontendDev/src/e2e/tsconfig.json +13 -0
  1494. package/server/src/ServiceManager/services/frontendDev/src/package.json +15 -0
  1495. package/server/src/ServiceManager/services/frontendDev/src/tsconfig.base.json +32 -0
  1496. package/server/src/ServiceManager/services/speechToText/TRANSCRIBE_OUTPUT_SCHEMA.ts +53 -0
  1497. package/server/src/ServiceManager/services/speechToText/speechToText.service.ts +125 -0
  1498. package/server/src/ServiceManager/services/speechToText/src/Dockerfile +31 -0
  1499. package/server/src/ServiceManager/services/speechToText/src/app.py +115 -0
  1500. package/server/src/ServiceManager/services/speechToText/src/requirements.txt +3 -0
  1501. package/server/src/ServiceManager/services/webSearchSearxng/src/Dockerfile +12 -0
  1502. package/server/src/ServiceManager/services/webSearchSearxng/src/limiter.toml +0 -0
  1503. package/server/src/ServiceManager/services/webSearchSearxng/src/settings.yml +11 -0
  1504. package/server/src/ServiceManager/services/webSearchSearxng/webSearchSearxng.service.ts +36 -0
  1505. package/server/src/ServiceManager/startService.ts +196 -0
  1506. package/server/src/ServiceManager/stopService.ts +23 -0
  1507. package/server/src/ServiceManager/withRetries.ts +19 -0
  1508. package/server/src/authConfig/OAuthProviders/getOAuthLoginProviders.ts +67 -0
  1509. package/server/src/authConfig/OAuthProviders/loginWithProvider.ts +94 -0
  1510. package/server/src/authConfig/authUtils.ts +19 -0
  1511. package/server/src/authConfig/createPasswordlessAdminSessionIfNeeded.ts +86 -0
  1512. package/server/src/authConfig/createPublicUserSessionIfAllowed.ts +48 -0
  1513. package/server/src/authConfig/emailProvider/getEmailAuthProvider.ts +44 -0
  1514. package/server/src/authConfig/emailProvider/getEmailSenderWithMockTest.ts +96 -0
  1515. package/server/src/authConfig/emailProvider/onEmailRegistration.ts +116 -0
  1516. package/server/src/authConfig/getActiveSession.ts +76 -0
  1517. package/server/src/authConfig/getAuth.ts +171 -0
  1518. package/server/src/authConfig/getLogin.ts +206 -0
  1519. package/server/src/authConfig/getUser.ts +108 -0
  1520. package/server/src/authConfig/onMagicLinkOrOTP.ts +171 -0
  1521. package/server/src/authConfig/onUseOrSocketConnected.ts +43 -0
  1522. package/server/src/authConfig/sessionUtils.ts +120 -0
  1523. package/server/src/authConfig/startRateLimitedLoginAttempt.ts +201 -0
  1524. package/server/src/authConfig/subscribeToAuthSetupChanges.ts +144 -0
  1525. package/server/src/authConfig/upsertSession.ts +48 -0
  1526. package/server/src/cli/cli.ts +217 -0
  1527. package/server/src/cli/cliUtils.ts +50 -0
  1528. package/server/src/cloudClients/cloudClients.ts +116 -0
  1529. package/server/src/connectionUtils/getConnectionDetails.ts +76 -0
  1530. package/server/src/connectionUtils/testDBConnection.ts +167 -0
  1531. package/server/src/connectionUtils/validateConnection.ts +114 -0
  1532. package/server/src/createHttpAndIOServers/createHttpServer.ts +147 -0
  1533. package/server/src/createHttpAndIOServers/createIOWebsocketServer.ts +31 -0
  1534. package/server/src/createHttpAndIOServers/getCorsOptions.ts +58 -0
  1535. package/server/src/createHttpAndIOServers/setHttpAppSecurity.ts +124 -0
  1536. package/server/src/electronConfig.ts +223 -0
  1537. package/server/src/envVars.ts +45 -0
  1538. package/server/src/getPSQLQueries.ts +123 -0
  1539. package/server/src/index.ts +273 -0
  1540. package/server/src/init/CSP_DEFAULTS.ts +41 -0
  1541. package/server/src/init/addDevImageProxyRoute.ts +74 -0
  1542. package/server/src/init/cleanupTestDatabases.ts +51 -0
  1543. package/server/src/init/initExpressAndIOServers.ts +127 -0
  1544. package/server/src/init/initUsers.ts +113 -0
  1545. package/server/src/init/insertStateDatabase.ts +72 -0
  1546. package/server/src/init/isRetryableError.ts +50 -0
  1547. package/server/src/init/logOutgoingHttpRequests.ts +15 -0
  1548. package/server/src/init/prostglesOnReady.ts +147 -0
  1549. package/server/src/init/saveTypescriptFilesForProduction.ts +113 -0
  1550. package/server/src/init/setDBSRoutesForElectron.ts +206 -0
  1551. package/server/src/init/startDevHotReloadNotifier.ts +39 -0
  1552. package/server/src/init/startProstgles.ts +220 -0
  1553. package/server/src/init/tryStartProstgles.ts +177 -0
  1554. package/server/src/init/utils.ts +44 -0
  1555. package/server/src/init.sql +1 -0
  1556. package/server/src/methods/getPidStats.ts +336 -0
  1557. package/server/src/methods/getPidStatsFromProc.ts +125 -0
  1558. package/server/src/methods/statusMonitorUtils.ts +148 -0
  1559. package/server/src/publish/getPublishLLM.ts +246 -0
  1560. package/server/src/publish/getPublishLlmChats.ts +73 -0
  1561. package/server/src/publish/publish.ts +398 -0
  1562. package/server/src/schemaConfig.ts +97 -0
  1563. package/server/src/serverFunctions/adminServerFunctions/getAdminServerFunctions.ts +477 -0
  1564. package/server/src/serverFunctions/adminServerFunctions/getAgenticWorkflowFunctions.ts +186 -0
  1565. package/server/src/serverFunctions/adminServerFunctions/getBackupServerFunctions.ts +178 -0
  1566. package/server/src/serverFunctions/adminServerFunctions/getDefineAdminFunction.ts +11 -0
  1567. package/server/src/serverFunctions/adminServerFunctions/getMcpServerFunctions.ts +283 -0
  1568. package/server/src/serverFunctions/adminServerFunctions/getWebAppServerFunctions.ts +228 -0
  1569. package/server/src/serverFunctions/adminServerFunctions/webApp/buildWebApp.ts +38 -0
  1570. package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents copy.ts +188 -0
  1571. package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents.ts +287 -0
  1572. package/server/src/serverFunctions/adminServerFunctions/webApp/getReactRenderTree.ts +180 -0
  1573. package/server/src/serverFunctions/adminServerFunctions/webApp/getTemplatedWebAppConnection.ts +23 -0
  1574. package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.spec.ts +77 -0
  1575. package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.ts +22 -0
  1576. package/server/src/serverFunctions/adminServerFunctions/webApp/readWebAppFiles.ts +45 -0
  1577. package/server/src/serverFunctions/adminServerFunctions/webApp/runDockerForWebApp.ts +56 -0
  1578. package/server/src/serverFunctions/adminServerFunctions/webApp/testWebApp.ts +30 -0
  1579. package/server/src/serverFunctions/adminServerFunctions/webApp/writeWebAppFiles.ts +91 -0
  1580. package/server/src/serverFunctions/applySampleSchema.ts +96 -0
  1581. package/server/src/serverFunctions/askLLM/LLMResponseTypes.ts +315 -0
  1582. package/server/src/serverFunctions/askLLM/agentConstants.ts +42 -0
  1583. package/server/src/serverFunctions/askLLM/askLLM.ts +540 -0
  1584. package/server/src/serverFunctions/askLLM/checkLLMLimit.ts +59 -0
  1585. package/server/src/serverFunctions/askLLM/checkMaxCostLimitForChat.ts +51 -0
  1586. package/server/src/serverFunctions/askLLM/defaultPrompts/base.prompt.ts +26 -0
  1587. package/server/src/serverFunctions/askLLM/defaultPrompts/createAgenticWorkflow.prompt.ts +53 -0
  1588. package/server/src/serverFunctions/askLLM/defaultPrompts/createDashboards.prompt.ts +15 -0
  1589. package/server/src/serverFunctions/askLLM/fetchLLMResponse.ts +105 -0
  1590. package/server/src/serverFunctions/askLLM/getCompactedMessages.ts +101 -0
  1591. package/server/src/serverFunctions/askLLM/getFullPrompt.ts +86 -0
  1592. package/server/src/serverFunctions/askLLM/getLLMRequestBody.ts +368 -0
  1593. package/server/src/serverFunctions/askLLM/getLLMToolsAllowedInThisChat.ts +179 -0
  1594. package/server/src/serverFunctions/askLLM/getLLMUsageCost.ts +91 -0
  1595. package/server/src/serverFunctions/askLLM/getPastMessages.ts +9 -0
  1596. package/server/src/serverFunctions/askLLM/getUserMessageCost.ts +21 -0
  1597. package/server/src/serverFunctions/askLLM/getValidatedAskLLMChatOptions.ts +59 -0
  1598. package/server/src/serverFunctions/askLLM/handleToolUseResultConfirmation.ts +87 -0
  1599. package/server/src/serverFunctions/askLLM/parseLLMResponseObject.ts +206 -0
  1600. package/server/src/serverFunctions/askLLM/prostglesLLMTools/getDbConnectionWithPermissions.ts +94 -0
  1601. package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMCPServerTools.ts +28 -0
  1602. package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMcpToolsWithDynamicDescription.ts +77 -0
  1603. package/server/src/serverFunctions/askLLM/prostglesLLMTools/getTemplateUserConnection.ts +182 -0
  1604. package/server/src/serverFunctions/askLLM/readFetchStream.ts +69 -0
  1605. package/server/src/serverFunctions/askLLM/refreshModels.ts +223 -0
  1606. package/server/src/serverFunctions/askLLM/runApprovedTools/getMostSimilar.ts +55 -0
  1607. package/server/src/serverFunctions/askLLM/runApprovedTools/runAgentGoalTool.ts +116 -0
  1608. package/server/src/serverFunctions/askLLM/runApprovedTools/runApprovedTools.ts +348 -0
  1609. package/server/src/serverFunctions/askLLM/runApprovedTools/validateLastMessageToolUseRequests.ts +33 -0
  1610. package/server/src/serverFunctions/askLLM/setupLLM.ts +176 -0
  1611. package/server/src/serverFunctions/askLLM/setupLLMProviders.ts +186 -0
  1612. package/server/src/serverFunctions/deleteConnection.ts +111 -0
  1613. package/server/src/serverFunctions/getConnectionAndDatabaseConfig.ts +27 -0
  1614. package/server/src/serverFunctions/getNodeTypes.spec.ts +80 -0
  1615. package/server/src/serverFunctions/getNodeTypes.ts +306 -0
  1616. package/server/src/serverFunctions/getServerFunctions.ts +163 -0
  1617. package/server/src/serverFunctions/getServerFunctionsContext.ts +29 -0
  1618. package/server/src/serverFunctions/prostglesSignup.ts +28 -0
  1619. package/server/src/serverFunctions/setFileStorage.ts +107 -0
  1620. package/server/src/serverFunctions/userServerFunctions/approveToolUse.ts +146 -0
  1621. package/server/src/serverFunctions/userServerFunctions/getLLMAccessParams.ts +21 -0
  1622. package/server/src/serverFunctions/userServerFunctions/getUserServerFunctions.ts +260 -0
  1623. package/server/src/tableConfig/tableConfig.ts +374 -0
  1624. package/server/src/tableConfig/tableConfigAccessControl.ts +212 -0
  1625. package/server/src/tableConfig/tableConfigAgenticWorkflow.ts +174 -0
  1626. package/server/src/tableConfig/tableConfigBackups.ts +160 -0
  1627. package/server/src/tableConfig/tableConfigConnections.ts +182 -0
  1628. package/server/src/tableConfig/tableConfigDatabaseConfig.ts +714 -0
  1629. package/server/src/tableConfig/tableConfigGlobalSettings.ts +40 -0
  1630. package/server/src/tableConfig/tableConfigLinks.ts +273 -0
  1631. package/server/src/tableConfig/tableConfigLlm/tableConfigLlm.ts +347 -0
  1632. package/server/src/tableConfig/tableConfigLlm/tableConfigLlmChats.ts +361 -0
  1633. package/server/src/tableConfig/tableConfigLlm/tableConfigLlmExtraRequestData.ts +50 -0
  1634. package/server/src/tableConfig/tableConfigMCPServers.ts +676 -0
  1635. package/server/src/tableConfig/tableConfigMigrations.ts +26 -0
  1636. package/server/src/tableConfig/tableConfigPublishedMethods.ts +120 -0
  1637. package/server/src/tableConfig/tableConfigServices.ts +61 -0
  1638. package/server/src/tableConfig/tableConfigUsers.ts +227 -0
  1639. package/server/src/tableConfig/tableConfigWebApp.ts +17 -0
  1640. package/server/src/tableConfig/tableConfigWindows.ts +164 -0
  1641. package/server/src/tableConfig/tableConfigWorkspaces.ts +100 -0
  1642. package/server/src/tableConfig/tablePermissionsSchema.ts +66 -0
  1643. package/server/src/testElectron.ts +33 -0
  1644. package/server/src/upsertConnection.ts +73 -0
  1645. package/server/src/utils/assertIconExists.ts +24 -0
  1646. package/server/src/utils/isPortFree.ts +40 -0
  1647. package/server/src/utils/tout.ts +7 -0
  1648. package/server/test-runner.mjs +28 -0
  1649. package/server/tsconfig.json +45 -0
  1650. package/server/tslint.json +8 -0
@@ -0,0 +1,846 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 900" data-duration="15000"><style>
2
+
3
+ @keyframes scene-scene-0-anim {
4
+ 0% { visibility: visible; }
5
+ 10% { visibility: visible; }
6
+ 10.1% { visibility: hidden; }
7
+ 100% { visibility: hidden; }
8
+ }
9
+ #scene-0 {
10
+ animation: scene-scene-0-anim 15000ms ease-in-out infinite;
11
+
12
+ }
13
+
14
+ @keyframes scene-scene-1-anim {
15
+ 0% { visibility: hidden; }
16
+ 9.9% { visibility: hidden; }
17
+ 10% { visibility: visible; }
18
+ 20% { visibility: visible; }
19
+ 20.1% { visibility: hidden; }
20
+ 100% { visibility: hidden; }
21
+ }
22
+ #scene-1 {
23
+ animation: scene-scene-1-anim 15000ms ease-in-out infinite;
24
+
25
+ }
26
+
27
+ @keyframes scene-scene-2-anim {
28
+ 0% { visibility: hidden; }
29
+ 19.9% { visibility: hidden; }
30
+ 20% { visibility: visible; }
31
+ 30% { visibility: visible; }
32
+ 30.1% { visibility: hidden; }
33
+ 100% { visibility: hidden; }
34
+ }
35
+ #scene-2 {
36
+ animation: scene-scene-2-anim 15000ms ease-in-out infinite;
37
+
38
+ }
39
+
40
+ @keyframes scene-scene-3-anim {
41
+ 0% { visibility: hidden; }
42
+ 29.9% { visibility: hidden; }
43
+ 30% { visibility: visible; }
44
+ 40% { visibility: visible; }
45
+ 40.1% { visibility: hidden; }
46
+ 100% { visibility: hidden; }
47
+ }
48
+ #scene-3 {
49
+ animation: scene-scene-3-anim 15000ms ease-in-out infinite;
50
+
51
+ }
52
+
53
+ @keyframes scene-scene-4-anim {
54
+ 0% { visibility: hidden; }
55
+ 39.9% { visibility: hidden; }
56
+ 40% { visibility: visible; }
57
+ 50% { visibility: visible; }
58
+ 50.1% { visibility: hidden; }
59
+ 100% { visibility: hidden; }
60
+ }
61
+ #scene-4 {
62
+ animation: scene-scene-4-anim 15000ms ease-in-out infinite;
63
+
64
+ }
65
+
66
+ @keyframes scene-scene-5-anim {
67
+ 0% { visibility: hidden; }
68
+ 49.9% { visibility: hidden; }
69
+ 50% { visibility: visible; }
70
+ 60% { visibility: visible; }
71
+ 60.1% { visibility: hidden; }
72
+ 100% { visibility: hidden; }
73
+ }
74
+ #scene-5 {
75
+ animation: scene-scene-5-anim 15000ms ease-in-out infinite;
76
+
77
+ }
78
+
79
+ @keyframes scene-scene-6-anim {
80
+ 0% { visibility: hidden; }
81
+ 59.9% { visibility: hidden; }
82
+ 60% { visibility: visible; }
83
+ 70% { visibility: visible; }
84
+ 70.1% { visibility: hidden; }
85
+ 100% { visibility: hidden; }
86
+ }
87
+ #scene-6 {
88
+ animation: scene-scene-6-anim 15000ms ease-in-out infinite;
89
+
90
+ }
91
+
92
+ @keyframes scene-scene-7-anim {
93
+ 0% { visibility: hidden; }
94
+ 69.9% { visibility: hidden; }
95
+ 70% { visibility: visible; }
96
+ 80% { visibility: visible; }
97
+ 80.1% { visibility: hidden; }
98
+ 100% { visibility: hidden; }
99
+ }
100
+ #scene-7 {
101
+ animation: scene-scene-7-anim 15000ms ease-in-out infinite;
102
+
103
+ }
104
+
105
+ @keyframes scene-scene-8-anim {
106
+ 0% { visibility: hidden; }
107
+ 79.9% { visibility: hidden; }
108
+ 80% { visibility: visible; }
109
+ 100% { visibility: visible; }
110
+ }
111
+ #scene-8 {
112
+ animation: scene-scene-8-anim 15000ms ease-in-out infinite;
113
+
114
+ }
115
+
116
+ @keyframes animation-progress-bar {
117
+ 0% { transform: translateX(-100%); }
118
+ 100% { transform: translateX(0%); }
119
+ }
120
+
121
+ #progress-bar {
122
+ fill: red;
123
+ opacity: 0.3;
124
+ animation: animation-progress-bar 15000ms ease-in-out infinite;
125
+ }
126
+
127
+ @media (prefers-color-scheme: dark) {
128
+ #progress-bar {
129
+ opacity: 0.5;
130
+ }
131
+ }
132
+
133
+ /* Pause only while SVG is pressed */
134
+ g.paused * {
135
+ animation-play-state: paused;
136
+ }
137
+
138
+ #pointer {
139
+ transform-origin: center;
140
+ fill: #00000036;
141
+ filter: drop-shadow(0 0 2px #000000aa);
142
+ }
143
+
144
+
145
+
146
+
147
+ @media (prefers-color-scheme: dark) {
148
+
149
+ #pointer {
150
+ fill: #eaeaea99;
151
+ filter: drop-shadow(0 0 2px #ffffffaa);
152
+ }
153
+
154
+ }
155
+
156
+ @keyframes cursor-move {
157
+ 0% { opacity: 0; transform: translate(450px, 900px); }
158
+ }
159
+ #pointer {
160
+ animation: cursor-move 15000ms ease-out infinite;
161
+
162
+ }</style><g id="all-scenes"><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-0" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-499330379" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2468827412" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2434173946" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-7058bc36"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
163
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
164
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -106.4,472 L -106.4,272.94 L -106.4,272.94 L -99.51,225.48 L -92.62,202.46 L -85.73,186.38 L -78.84,179.88 L -71.95,162.34 L -65.05,136.42 L -58.16,130.49 L -51.27,164.71 L -44.38,171.5 L -37.49,177.12 L -30.6,179.85 L -23.71,192.28 L -16.81,199 L -9.92,203.02 L -3.03,182.6 L 3.86,135.01 L 10.75,147.9 L 17.64,139.58 L 24.54,140.22 L 31.43,162.23 L 38.32,183.29 L 45.21,189.55 L 52.1,206.62 L 58.99,243.03 L 65.88,195.76 L 72.78,152.3 L 79.67,175.79 L 86.56,175.64 L 93.45,213.08 L 100.34,223.53 L 107.23,213.71 L 114.12,217.58 L 121.02,233.07 L 127.91,250.88 L 134.8,246.57 L 141.69,230.76 L 148.58,230.72 L 155.47,241.48 L 162.37,250.61 L 169.26,256.57 L 176.15,235.13 L 183.04,235.84 L 189.93,215.77 L 196.82,149.37 L 203.71,140.42 L 210.61,109.94 L 217.5,83.39 L 224.39,75.15 L 231.28,107.43 L 238.17,115 L 245.06,123.92 L 251.95,173.18 L 258.85,153.32 L 265.74,129.08 L 272.63,119.73 L 279.52,117.07 L 286.41,132.8 L 293.3,135.11 L 300.19,135.4 L 307.09,129.76 L 313.98,130.64 L 320.87,116.01 L 327.76,112.64 L 334.65,112.99 L 341.54,117.08 L 348.44,117.35 L 355.33,117.55 L 362.22,113.12 L 369.11,113.02 L 376,117.77 L 382.89,115.75 L 389.78,112.77 L 396.68,94.82 L 403.57,97.54 L 410.46,100.37 L 417.35,92.83 L 424.24,101.39 L 431.13,107.37 L 438.02,100.72 L 444.92,105.57 L 451.81,116.68 L 458.7,122.61 L 465.59,120.74 L 472.48,129.19 L 479.37,146.35 L 486.27,154.41 L 493.16,150.99 L 500.05,154.74 L 506.94,144.82 L 513.83,145.01 L 520.72,138.56 L 527.61,148.19 L 534.51,125.35 L 541.4,118.45 L 548.29,125.86 L 555.18,93.59 L 562.07,75.9 L 568.96,69.5 L 575.85,69.39 L 582.75,71.53 L 589.64,74.02 L 596.53,76.05 L 603.42,88.36 L 610.31,83.35 L 617.2,82.59 L 624.1,123.59 L 630.99,114.31 L 637.88,106.77 L 644.77,102.87 L 651.66,106.26 L 658.55,107.98 L 665.44,104.1 L 672.34,73.31 L 679.23,60 L 686.12,64.18 L 693.01,90.95 L 699.9,107.73 L 706.79,102.65 L 713.68,106.19 L 720.58,155.54 L 727.47,163.23 L 734.36,221.85 L 741.25,284.78 L 748.14,314.49 L 755.03,319.28 L 761.93,307.59 L 768.82,283.79 L 775.71,290.4 L 782.6,304.93 L 789.49,309.99 L 796.38,309.07 L 803.27,298.8 L 810.17,294.9 L 817.06,281.83 L 823.95,285.58 L 830.84,301.57 L 837.73,311.49 L 844.62,304.07 L 851.51,288.48 L 858.41,266.69 L 865.3,254.71 L 872.19,237.34 L 879.08,233.96 L 885.97,262.58 L 892.86,298.45 L 899.75,361.61 L 906.65,385.64 L 913.54,390.01 L 920.43,403.48 L 927.32,422 L 934.21,365.55 L 941.1,364.04 L 948,361.2 L 954.89,379.84 L 961.78,367.57 L 968.67,347.66 L 975.56,340.27 L 982.45,346.18 L 989.34,342.77 L 996.24,338.42 L 1003.13,363.64 L 1003.13,472 Z" fill="url(#gradient-499330379)" opacity="1"/><path d="M -106.4,272.94 L -99.51,225.48 L -92.62,202.46 L -85.73,186.38 L -78.84,179.88 L -71.95,162.34 L -65.05,136.42 L -58.16,130.49 L -51.27,164.71 L -44.38,171.5 L -37.49,177.12 L -30.6,179.85 L -23.71,192.28 L -16.81,199 L -9.92,203.02 L -3.03,182.6 L 3.86,135.01 L 10.75,147.9 L 17.64,139.58 L 24.54,140.22 L 31.43,162.23 L 38.32,183.29 L 45.21,189.55 L 52.1,206.62 L 58.99,243.03 L 65.88,195.76 L 72.78,152.3 L 79.67,175.79 L 86.56,175.64 L 93.45,213.08 L 100.34,223.53 L 107.23,213.71 L 114.12,217.58 L 121.02,233.07 L 127.91,250.88 L 134.8,246.57 L 141.69,230.76 L 148.58,230.72 L 155.47,241.48 L 162.37,250.61 L 169.26,256.57 L 176.15,235.13 L 183.04,235.84 L 189.93,215.77 L 196.82,149.37 L 203.71,140.42 L 210.61,109.94 L 217.5,83.39 L 224.39,75.15 L 231.28,107.43 L 238.17,115 L 245.06,123.92 L 251.95,173.18 L 258.85,153.32 L 265.74,129.08 L 272.63,119.73 L 279.52,117.07 L 286.41,132.8 L 293.3,135.11 L 300.19,135.4 L 307.09,129.76 L 313.98,130.64 L 320.87,116.01 L 327.76,112.64 L 334.65,112.99 L 341.54,117.08 L 348.44,117.35 L 355.33,117.55 L 362.22,113.12 L 369.11,113.02 L 376,117.77 L 382.89,115.75 L 389.78,112.77 L 396.68,94.82 L 403.57,97.54 L 410.46,100.37 L 417.35,92.83 L 424.24,101.39 L 431.13,107.37 L 438.02,100.72 L 444.92,105.57 L 451.81,116.68 L 458.7,122.61 L 465.59,120.74 L 472.48,129.19 L 479.37,146.35 L 486.27,154.41 L 493.16,150.99 L 500.05,154.74 L 506.94,144.82 L 513.83,145.01 L 520.72,138.56 L 527.61,148.19 L 534.51,125.35 L 541.4,118.45 L 548.29,125.86 L 555.18,93.59 L 562.07,75.9 L 568.96,69.5 L 575.85,69.39 L 582.75,71.53 L 589.64,74.02 L 596.53,76.05 L 603.42,88.36 L 610.31,83.35 L 617.2,82.59 L 624.1,123.59 L 630.99,114.31 L 637.88,106.77 L 644.77,102.87 L 651.66,106.26 L 658.55,107.98 L 665.44,104.1 L 672.34,73.31 L 679.23,60 L 686.12,64.18 L 693.01,90.95 L 699.9,107.73 L 706.79,102.65 L 713.68,106.19 L 720.58,155.54 L 727.47,163.23 L 734.36,221.85 L 741.25,284.78 L 748.14,314.49 L 755.03,319.28 L 761.93,307.59 L 768.82,283.79 L 775.71,290.4 L 782.6,304.93 L 789.49,309.99 L 796.38,309.07 L 803.27,298.8 L 810.17,294.9 L 817.06,281.83 L 823.95,285.58 L 830.84,301.57 L 837.73,311.49 L 844.62,304.07 L 851.51,288.48 L 858.41,266.69 L 865.3,254.71 L 872.19,237.34 L 879.08,233.96 L 885.97,262.58 L 892.86,298.45 L 899.75,361.61 L 906.65,385.64 L 913.54,390.01 L 920.43,403.48 L 927.32,422 L 934.21,365.55 L 941.1,364.04 L 948,361.2 L 954.89,379.84 L 961.78,367.57 L 968.67,347.66 L 975.56,340.27 L 982.45,346.18 L 989.34,342.77 L 996.24,338.42 L 1003.13,363.64" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -106.4,472 L -106.4,394.24 L -106.4,394.24 L -99.51,359.95 L -92.62,349.67 L -85.73,293.34 L -78.84,220.17 L -71.95,119.2 L -65.05,118.4 L -58.16,113.32 L -51.27,166.59 L -44.38,167.14 L -37.49,171.2 L -30.6,165.04 L -23.71,179.24 L -16.81,217.49 L -9.92,237.77 L -3.03,203.26 L 3.86,151.69 L 10.75,153.88 L 17.64,158.75 L 24.54,154.48 L 31.43,171.88 L 38.32,200.1 L 45.21,193.87 L 52.1,204.21 L 58.99,219.97 L 65.88,165.95 L 72.78,137.36 L 79.67,154.43 L 86.56,142.83 L 93.45,173.29 L 100.34,178.29 L 107.23,178.91 L 114.12,182.86 L 121.02,196.81 L 127.91,209.57 L 134.8,209.7 L 141.69,202.45 L 148.58,209.22 L 155.47,221.43 L 162.37,232.36 L 169.26,234.17 L 176.15,200.86 L 183.04,197.45 L 189.93,183.66 L 196.82,148.12 L 203.71,144.49 L 210.61,132.95 L 217.5,60 L 224.39,60.02 L 231.28,119.8 L 238.17,128 L 245.06,130.18 L 251.95,170.9 L 258.85,159.31 L 265.74,133.04 L 272.63,131.4 L 279.52,138.49 L 286.41,140.16 L 293.3,139.2 L 300.19,145.81 L 307.09,141 L 313.98,149.39 L 320.87,133 L 327.76,126.71 L 334.65,127.93 L 341.54,129.41 L 348.44,137.71 L 355.33,133.91 L 362.22,122.71 L 369.11,108 L 376,109.08 L 382.89,110.04 L 389.78,115.03 L 396.68,96.45 L 403.57,96.79 L 410.46,97.16 L 417.35,90.68 L 424.24,102.9 L 431.13,107.75 L 438.02,109.81 L 444.92,106.29 L 451.81,114.34 L 458.7,127.58 L 465.59,125.55 L 472.48,128.53 L 479.37,136.54 L 486.27,146.3 L 493.16,145.56 L 500.05,144.86 L 506.94,128.9 L 513.83,123.18 L 520.72,113.59 L 527.61,133.47 L 534.51,106.73 L 541.4,109.15 L 548.29,125.12 L 555.18,98.8 L 562.07,88.38 L 568.96,76.13 L 575.85,85.46 L 582.75,88.53 L 589.64,100.5 L 596.53,100.48 L 603.42,108.68 L 610.31,94.23 L 617.2,86.28 L 624.1,144.06 L 630.99,143 L 637.88,128.47 L 644.77,111.12 L 651.66,112.33 L 658.55,121.11 L 665.44,114.45 L 672.34,77.15 L 679.23,70.13 L 686.12,73.3 L 693.01,101.8 L 699.9,119.9 L 706.79,121.29 L 713.68,132.96 L 720.58,197.43 L 727.47,231.05 L 734.36,334.26 L 741.25,364.98 L 748.14,368.11 L 755.03,377.36 L 761.93,351.68 L 768.82,339.43 L 775.71,357.04 L 782.6,360.92 L 789.49,370.7 L 796.38,370.05 L 803.27,354.35 L 810.17,345.14 L 817.06,332.38 L 823.95,340.86 L 830.84,359.66 L 837.73,371.28 L 844.62,361.98 L 851.51,349.48 L 858.41,336.37 L 865.3,301.36 L 872.19,264.89 L 879.08,271.24 L 885.97,287.35 L 892.86,325.98 L 899.75,398.88 L 906.65,421.96 L 913.54,421.15 L 920.43,422 L 927.32,390.29 L 934.21,326.78 L 941.1,321.55 L 948,317.24 L 954.89,325.93 L 961.78,322.58 L 968.67,313.09 L 975.56,304.63 L 982.45,306.36 L 989.34,286.64 L 996.24,276.79 L 1003.13,293.44 L 1003.13,472 Z" fill="url(#gradient-2468827412)" opacity="1"/><path d="M -106.4,394.24 L -99.51,359.95 L -92.62,349.67 L -85.73,293.34 L -78.84,220.17 L -71.95,119.2 L -65.05,118.4 L -58.16,113.32 L -51.27,166.59 L -44.38,167.14 L -37.49,171.2 L -30.6,165.04 L -23.71,179.24 L -16.81,217.49 L -9.92,237.77 L -3.03,203.26 L 3.86,151.69 L 10.75,153.88 L 17.64,158.75 L 24.54,154.48 L 31.43,171.88 L 38.32,200.1 L 45.21,193.87 L 52.1,204.21 L 58.99,219.97 L 65.88,165.95 L 72.78,137.36 L 79.67,154.43 L 86.56,142.83 L 93.45,173.29 L 100.34,178.29 L 107.23,178.91 L 114.12,182.86 L 121.02,196.81 L 127.91,209.57 L 134.8,209.7 L 141.69,202.45 L 148.58,209.22 L 155.47,221.43 L 162.37,232.36 L 169.26,234.17 L 176.15,200.86 L 183.04,197.45 L 189.93,183.66 L 196.82,148.12 L 203.71,144.49 L 210.61,132.95 L 217.5,60 L 224.39,60.02 L 231.28,119.8 L 238.17,128 L 245.06,130.18 L 251.95,170.9 L 258.85,159.31 L 265.74,133.04 L 272.63,131.4 L 279.52,138.49 L 286.41,140.16 L 293.3,139.2 L 300.19,145.81 L 307.09,141 L 313.98,149.39 L 320.87,133 L 327.76,126.71 L 334.65,127.93 L 341.54,129.41 L 348.44,137.71 L 355.33,133.91 L 362.22,122.71 L 369.11,108 L 376,109.08 L 382.89,110.04 L 389.78,115.03 L 396.68,96.45 L 403.57,96.79 L 410.46,97.16 L 417.35,90.68 L 424.24,102.9 L 431.13,107.75 L 438.02,109.81 L 444.92,106.29 L 451.81,114.34 L 458.7,127.58 L 465.59,125.55 L 472.48,128.53 L 479.37,136.54 L 486.27,146.3 L 493.16,145.56 L 500.05,144.86 L 506.94,128.9 L 513.83,123.18 L 520.72,113.59 L 527.61,133.47 L 534.51,106.73 L 541.4,109.15 L 548.29,125.12 L 555.18,98.8 L 562.07,88.38 L 568.96,76.13 L 575.85,85.46 L 582.75,88.53 L 589.64,100.5 L 596.53,100.48 L 603.42,108.68 L 610.31,94.23 L 617.2,86.28 L 624.1,144.06 L 630.99,143 L 637.88,128.47 L 644.77,111.12 L 651.66,112.33 L 658.55,121.11 L 665.44,114.45 L 672.34,77.15 L 679.23,70.13 L 686.12,73.3 L 693.01,101.8 L 699.9,119.9 L 706.79,121.29 L 713.68,132.96 L 720.58,197.43 L 727.47,231.05 L 734.36,334.26 L 741.25,364.98 L 748.14,368.11 L 755.03,377.36 L 761.93,351.68 L 768.82,339.43 L 775.71,357.04 L 782.6,360.92 L 789.49,370.7 L 796.38,370.05 L 803.27,354.35 L 810.17,345.14 L 817.06,332.38 L 823.95,340.86 L 830.84,359.66 L 837.73,371.28 L 844.62,361.98 L 851.51,349.48 L 858.41,336.37 L 865.3,301.36 L 872.19,264.89 L 879.08,271.24 L 885.97,287.35 L 892.86,325.98 L 899.75,398.88 L 906.65,421.96 L 913.54,421.15 L 920.43,422 L 927.32,390.29 L 934.21,326.78 L 941.1,321.55 L 948,317.24 L 954.89,325.93 L 961.78,322.58 L 968.67,313.09 L 975.56,304.63 L 982.45,306.36 L 989.34,286.64 L 996.24,276.79 L 1003.13,293.44" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -106.4,472 L -106.4,326.43 L -106.4,326.43 L -99.51,299.48 L -92.62,280.79 L -85.73,283.73 L -78.84,292.76 L -71.95,304.81 L -65.05,305.73 L -58.16,300.7 L -51.27,314.24 L -44.38,305.87 L -37.49,290.74 L -30.6,286.74 L -23.71,306.53 L -16.81,320.45 L -9.92,326.6 L -3.03,313.97 L 3.86,302.89 L 10.75,310.28 L 17.64,313.69 L 24.54,317.2 L 31.43,346.99 L 38.32,371.01 L 45.21,361.77 L 52.1,367.22 L 58.99,408.85 L 65.88,401.8 L 72.78,382.42 L 79.67,378.5 L 86.56,384.09 L 93.45,388.3 L 100.34,380.7 L 107.23,392.64 L 114.12,382.28 L 121.02,389.12 L 127.91,399.28 L 134.8,398.64 L 141.69,395.37 L 148.58,394.03 L 155.47,403.58 L 162.37,416.73 L 169.26,422 L 176.15,400.75 L 183.04,389.52 L 189.93,400.88 L 196.82,376.92 L 203.71,374.44 L 210.61,361.6 L 217.5,363.75 L 224.39,377.08 L 231.28,377.75 L 238.17,367.12 L 245.06,366.64 L 251.95,400.58 L 258.85,407.05 L 265.74,373.47 L 272.63,360.78 L 279.52,344.77 L 286.41,367.08 L 293.3,360.25 L 300.19,376.26 L 307.09,368.73 L 313.98,367.52 L 320.87,328.55 L 327.76,321.96 L 334.65,337.57 L 341.54,301.87 L 348.44,305.72 L 355.33,308.41 L 362.22,311.2 L 369.11,309.39 L 376,312.72 L 382.89,304.14 L 389.78,312.98 L 396.68,311.49 L 403.57,286.42 L 410.46,284.57 L 417.35,270.91 L 424.24,268.01 L 431.13,283.33 L 438.02,272.99 L 444.92,258.39 L 451.81,256.85 L 458.7,237.06 L 465.59,106.1 L 472.48,118.14 L 479.37,133.85 L 486.27,120.19 L 493.16,84.04 L 500.05,123.24 L 506.94,125.47 L 513.83,137.42 L 520.72,119.14 L 527.61,129.92 L 534.51,135.27 L 541.4,144.74 L 548.29,114.4 L 555.18,83.76 L 562.07,69.51 L 568.96,60 L 575.85,77.02 L 582.75,100.71 L 589.64,97.16 L 596.53,109.21 L 603.42,119.51 L 610.31,121.3 L 617.2,136.01 L 624.1,181.74 L 630.99,176.12 L 637.88,161.12 L 644.77,173.35 L 651.66,183.87 L 658.55,193.62 L 665.44,186.1 L 672.34,170.85 L 679.23,165.07 L 686.12,172.89 L 693.01,179.22 L 699.9,177.36 L 706.79,155.22 L 713.68,157.21 L 720.58,171.24 L 727.47,173.59 L 734.36,189.85 L 741.25,194.86 L 748.14,181.96 L 755.03,212.35 L 761.93,213.37 L 768.82,206.82 L 775.71,223.47 L 782.6,259.63 L 789.49,254.96 L 796.38,255.69 L 803.27,256.97 L 810.17,246.09 L 817.06,248.43 L 823.95,252.98 L 830.84,257.21 L 837.73,262.23 L 844.62,261.74 L 851.51,259.57 L 858.41,239.39 L 865.3,229.31 L 872.19,216.96 L 879.08,217.19 L 885.97,187.05 L 892.86,194.4 L 899.75,249.74 L 906.65,269.15 L 913.54,261.46 L 920.43,276.15 L 927.32,288.74 L 934.21,257.73 L 941.1,234.63 L 948,235.2 L 954.89,225.58 L 961.78,180.17 L 968.67,141.42 L 975.56,143.66 L 982.45,140.27 L 989.34,150.04 L 996.24,168 L 1003.13,179.69 L 1003.13,472 Z" fill="url(#gradient-2434173946)" opacity="1"/><path d="M -106.4,326.43 L -99.51,299.48 L -92.62,280.79 L -85.73,283.73 L -78.84,292.76 L -71.95,304.81 L -65.05,305.73 L -58.16,300.7 L -51.27,314.24 L -44.38,305.87 L -37.49,290.74 L -30.6,286.74 L -23.71,306.53 L -16.81,320.45 L -9.92,326.6 L -3.03,313.97 L 3.86,302.89 L 10.75,310.28 L 17.64,313.69 L 24.54,317.2 L 31.43,346.99 L 38.32,371.01 L 45.21,361.77 L 52.1,367.22 L 58.99,408.85 L 65.88,401.8 L 72.78,382.42 L 79.67,378.5 L 86.56,384.09 L 93.45,388.3 L 100.34,380.7 L 107.23,392.64 L 114.12,382.28 L 121.02,389.12 L 127.91,399.28 L 134.8,398.64 L 141.69,395.37 L 148.58,394.03 L 155.47,403.58 L 162.37,416.73 L 169.26,422 L 176.15,400.75 L 183.04,389.52 L 189.93,400.88 L 196.82,376.92 L 203.71,374.44 L 210.61,361.6 L 217.5,363.75 L 224.39,377.08 L 231.28,377.75 L 238.17,367.12 L 245.06,366.64 L 251.95,400.58 L 258.85,407.05 L 265.74,373.47 L 272.63,360.78 L 279.52,344.77 L 286.41,367.08 L 293.3,360.25 L 300.19,376.26 L 307.09,368.73 L 313.98,367.52 L 320.87,328.55 L 327.76,321.96 L 334.65,337.57 L 341.54,301.87 L 348.44,305.72 L 355.33,308.41 L 362.22,311.2 L 369.11,309.39 L 376,312.72 L 382.89,304.14 L 389.78,312.98 L 396.68,311.49 L 403.57,286.42 L 410.46,284.57 L 417.35,270.91 L 424.24,268.01 L 431.13,283.33 L 438.02,272.99 L 444.92,258.39 L 451.81,256.85 L 458.7,237.06 L 465.59,106.1 L 472.48,118.14 L 479.37,133.85 L 486.27,120.19 L 493.16,84.04 L 500.05,123.24 L 506.94,125.47 L 513.83,137.42 L 520.72,119.14 L 527.61,129.92 L 534.51,135.27 L 541.4,144.74 L 548.29,114.4 L 555.18,83.76 L 562.07,69.51 L 568.96,60 L 575.85,77.02 L 582.75,100.71 L 589.64,97.16 L 596.53,109.21 L 603.42,119.51 L 610.31,121.3 L 617.2,136.01 L 624.1,181.74 L 630.99,176.12 L 637.88,161.12 L 644.77,173.35 L 651.66,183.87 L 658.55,193.62 L 665.44,186.1 L 672.34,170.85 L 679.23,165.07 L 686.12,172.89 L 693.01,179.22 L 699.9,177.36 L 706.79,155.22 L 713.68,157.21 L 720.58,171.24 L 727.47,173.59 L 734.36,189.85 L 741.25,194.86 L 748.14,181.96 L 755.03,212.35 L 761.93,213.37 L 768.82,206.82 L 775.71,223.47 L 782.6,259.63 L 789.49,254.96 L 796.38,255.69 L 803.27,256.97 L 810.17,246.09 L 817.06,248.43 L 823.95,252.98 L 830.84,257.21 L 837.73,262.23 L 844.62,261.74 L 851.51,259.57 L 858.41,239.39 L 865.3,229.31 L 872.19,216.96 L 879.08,217.19 L 885.97,187.05 L 892.86,194.4 L 899.75,249.74 L 906.65,269.15 L 913.54,261.46 L 920.43,276.15 L 927.32,288.74 L 934.21,257.73 L 941.1,234.63 L 948,235.2 L 954.89,225.58 L 961.78,180.17 L 968.67,141.42 L 975.56,143.66 L 982.45,140.27 L 989.34,150.04 L 996.24,168 L 1003.13,179.69" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="63.71875" lengthAdjust="spacing">15:35:50.15</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="73.6181640625" lengthAdjust="spacing">6 Aug 2026</text><text x="231.28004958180122" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">03:00 PM</text><text x="313.9779655522477" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">03:00 AM</text><text x="396.6758815226942" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">03:00 PM</text><text x="479.3737974931407" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">03:00 AM</text><text x="562.0717134635873" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">03:00 PM</text><text x="644.7696294340337" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">03:00 AM</text><text x="727.4675454044803" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">03:00 PM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="69.501953125" lengthAdjust="spacing">08:11:59.360</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="80.6318359375" lengthAdjust="spacing">11 Aug 2026</text><path d="M 424.24,0 L 424.24,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="424.24" cy="101.39" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.24" cy="101.39" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="424.24" cy="102.9" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.24" cy="102.9" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="424.24" cy="268.01" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.24" cy="268.01" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="260.01" width="170.67" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="273.0131103484595" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="164.67236328125" lengthAdjust="spacing">198.607 TAOUSDT BTC</text><rect x="435.5" y="121.39" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="134.38923226324374" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,920.812 ETHUSDT BTC</text><rect x="435.5" y="93.39" width="181.68" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="106.38923226324373" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="175.68035888671875" lengthAdjust="spacing">65,039.76 BTCUSDT BTC</text><rect x="353.84" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="424.24185351284314" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">07:00 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
165
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
166
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 17s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 17s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 17s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 17s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 17s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-7058bc36 {
167
+ --dark-theme-hide: 1;
168
+ --light-theme-hide: 0;
169
+ --rgb244245247rgb262525: rgb(244, 245, 247);
170
+ --rgb244245247rgb545762: rgb(244, 245, 247);
171
+ --rgb210214220rgb000: rgb(210, 214, 220);
172
+ --rgb210214220rgb758599: rgb(210, 214, 220);
173
+ --rgb255255255rgb444444: rgb(255, 255, 255);
174
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
175
+ --rgb255255255rgb363636: rgb(255, 255, 255);
176
+ --rgb255255255rgb393939: rgb(255, 255, 255);
177
+ --rgb255255255rgb303030: rgb(255, 255, 255);
178
+ --rgb240254255rgb03755: rgb(240, 254, 255);
179
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
180
+ --rgb758599rgb229231235: rgb(75, 85, 99);
181
+ --rgb758599rgb180180180: rgb(75, 85, 99);
182
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
183
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
184
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
185
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
186
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
187
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
188
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
189
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
190
+ --rgb229231235rgb262525: rgb(229, 231, 235);
191
+ --rgb229231235rgb758599: rgb(229, 231, 235);
192
+ --rgb249250251rgb333333: rgb(249, 250, 251);
193
+ --rgb223046rgb244245247: rgb(22, 30, 46);
194
+ --blackrgb187187187: black;
195
+ --f9fafb212121: #f9fafb;
196
+ --161e2ef4f5f7: #161e2e;
197
+ --d2d6dc4b5563: #d2d6dc;
198
+ --nonergb303030: none;
199
+ --rgb87863rgb21699181: rgb(87, 8, 63);
200
+ }
201
+ @media (prefers-color-scheme: dark) {
202
+ :root #id-7058bc36 {
203
+ --dark-theme-hide: 0;
204
+ --light-theme-hide: 1;
205
+ --rgb244245247rgb262525: rgb(26, 25, 25);
206
+ --rgb244245247rgb545762: rgb(54, 57, 62);
207
+ --rgb210214220rgb000: rgb(0, 0, 0);
208
+ --rgb210214220rgb758599: rgb(75, 85, 99);
209
+ --rgb255255255rgb444444: rgb(44, 44, 44);
210
+ --rgb255255255rgb363636: rgb(36, 36, 36);
211
+ --rgb255255255rgb393939: rgb(39, 39, 39);
212
+ --rgb255255255rgb303030: rgb(30, 30, 30);
213
+ --rgb240254255rgb03755: rgb(0, 37, 55);
214
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
215
+ --rgb758599rgb229231235: rgb(229, 231, 235);
216
+ --rgb758599rgb180180180: rgb(180, 180, 180);
217
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
218
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
219
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
220
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
221
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
222
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
223
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
224
+ --rgb229231235rgb262525: rgb(26, 25, 25);
225
+ --rgb229231235rgb758599: rgb(75, 85, 99);
226
+ --rgb249250251rgb333333: rgb(33, 33, 33);
227
+ --rgb223046rgb244245247: rgb(244, 245, 247);
228
+ --blackrgb187187187: rgb(187, 187, 187);
229
+ --f9fafb212121: #212121;
230
+ --161e2ef4f5f7: #f4f5f7;
231
+ --d2d6dc4b5563: #4b5563;
232
+ --nonergb303030: rgb(30, 30, 30);
233
+ --rgb87863rgb21699181: rgb(216, 99, 181);
234
+ }
235
+ }
236
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-1" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3755453864" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-1104681207" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2347127274" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-dffc78a4"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
237
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
238
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -99.97,472 L -99.97,177.72 L -99.97,177.72 L -94.82,194.77 L -89.68,224.54 L -84.54,211.6 L -79.4,202.69 L -74.26,233.02 L -69.12,255.55 L -63.98,281.61 L -58.84,281.73 L -53.7,283.75 L -48.56,264.41 L -43.42,274.47 L -38.28,271.67 L -33.14,277.69 L -28,290.67 L -22.86,300.66 L -17.72,312.38 L -12.58,327.2 L -7.44,311.8 L -2.3,316.09 L 2.84,297.13 L 7.98,287.94 L 13.12,292.01 L 18.27,292.95 L 23.41,306.34 L 28.55,307.77 L 33.69,312.9 L 38.83,325.95 L 43.97,335.47 L 49.11,319.52 L 54.25,292.39 L 59.39,304.52 L 64.53,302.05 L 69.67,296.79 L 74.81,294.84 L 79.95,249.6 L 85.09,201.07 L 90.23,163.48 L 95.37,175.87 L 100.51,164.43 L 105.65,133.37 L 110.79,124.35 L 115.93,101.98 L 121.07,83.82 L 126.21,76.58 L 131.36,86.88 L 136.5,143.5 L 141.64,107.42 L 146.78,139.1 L 151.92,132.34 L 157.06,140.12 L 162.2,155.48 L 167.34,209.39 L 172.48,219.67 L 177.62,175.55 L 182.76,199.71 L 187.9,168.91 L 193.04,140.69 L 198.18,139.84 L 203.32,144.41 L 208.46,140.19 L 213.6,136.85 L 218.74,155.1 L 223.88,164.56 L 229.02,164.95 L 234.16,160.98 L 239.3,164.1 L 244.45,162.62 L 249.59,155.11 L 254.73,156.32 L 259.87,159.6 L 265.01,154.22 L 270.15,144.92 L 275.29,129.25 L 280.43,136.73 L 285.57,128.31 L 290.71,132.44 L 295.85,133.55 L 300.99,139.64 L 306.13,137.44 L 311.27,134.08 L 316.41,143.73 L 321.55,143.31 L 326.69,135.03 L 331.83,132.59 L 336.97,133.75 L 342.11,134.7 L 347.25,131.37 L 352.39,136.12 L 357.53,142.83 L 362.68,140.99 L 367.82,132.48 L 372.96,132.07 L 378.1,133.33 L 383.24,119.82 L 388.38,96.95 L 393.52,109.01 L 398.66,115.11 L 403.8,112.6 L 408.94,119.21 L 414.08,108.35 L 419.22,103.01 L 424.36,112.67 L 429.5,121.9 L 434.64,127.39 L 439.78,123.38 L 444.92,116.97 L 450.06,115.79 L 455.2,120.86 L 460.34,125.03 L 465.48,133.77 L 470.62,142.22 L 475.77,147.7 L 480.91,144.35 L 486.05,144.75 L 491.19,142.23 L 496.33,144.06 L 501.47,165.82 L 506.61,174.59 L 511.75,181.78 L 516.89,189.97 L 522.03,188.24 L 527.17,184.06 L 532.31,184.88 L 537.45,189.41 L 542.59,189.71 L 547.73,180.61 L 552.87,171.6 L 558.01,174.01 L 563.15,178.74 L 568.29,158.72 L 573.43,176.56 L 578.57,180.63 L 583.71,180.72 L 588.86,153.01 L 594,146.48 L 599.14,141.23 L 604.28,139.56 L 609.42,150.93 L 614.56,149.94 L 619.7,127.35 L 624.84,86.08 L 629.98,81.06 L 635.12,84.45 L 640.26,73.01 L 645.4,75.16 L 650.54,75.3 L 655.68,72.55 L 660.82,75.76 L 665.96,77.9 L 671.1,81.72 L 676.24,78.7 L 681.38,82.22 L 686.52,83.7 L 691.66,101.01 L 696.8,98.25 L 701.95,100.32 L 707.09,85.38 L 712.23,63.12 L 717.37,120.51 L 722.51,131.44 L 727.65,163.26 L 732.79,123.77 L 737.93,145.8 L 743.07,131.78 L 748.21,117.37 L 753.35,123.18 L 758.49,115.4 L 763.63,121.42 L 768.77,126.35 L 773.91,121.35 L 779.05,131.06 L 784.19,127.88 L 789.33,114.02 L 794.47,84.18 L 799.61,74.32 L 804.75,62.43 L 809.89,60 L 815.03,62.34 L 820.18,71.4 L 825.32,81.42 L 830.46,124.87 L 835.6,124.52 L 840.74,127.22 L 845.88,125.18 L 851.02,112.79 L 856.16,102.7 L 861.3,144.87 L 866.44,159.66 L 871.58,221.62 L 876.72,207.02 L 881.86,195.07 L 887,248.69 L 892.14,312.22 L 897.28,341.28 L 902.42,390.14 L 907.56,407.37 L 912.7,404.55 L 917.84,402.89 L 922.98,422 L 928.12,406.22 L 933.27,386.99 L 938.41,372.56 L 943.55,356.18 L 948.69,364.02 L 953.83,382.61 L 958.97,389.19 L 964.11,396.83 L 964.11,472 Z" fill="url(#gradient-3755453864)" opacity="1"/><path d="M -99.97,177.72 L -94.82,194.77 L -89.68,224.54 L -84.54,211.6 L -79.4,202.69 L -74.26,233.02 L -69.12,255.55 L -63.98,281.61 L -58.84,281.73 L -53.7,283.75 L -48.56,264.41 L -43.42,274.47 L -38.28,271.67 L -33.14,277.69 L -28,290.67 L -22.86,300.66 L -17.72,312.38 L -12.58,327.2 L -7.44,311.8 L -2.3,316.09 L 2.84,297.13 L 7.98,287.94 L 13.12,292.01 L 18.27,292.95 L 23.41,306.34 L 28.55,307.77 L 33.69,312.9 L 38.83,325.95 L 43.97,335.47 L 49.11,319.52 L 54.25,292.39 L 59.39,304.52 L 64.53,302.05 L 69.67,296.79 L 74.81,294.84 L 79.95,249.6 L 85.09,201.07 L 90.23,163.48 L 95.37,175.87 L 100.51,164.43 L 105.65,133.37 L 110.79,124.35 L 115.93,101.98 L 121.07,83.82 L 126.21,76.58 L 131.36,86.88 L 136.5,143.5 L 141.64,107.42 L 146.78,139.1 L 151.92,132.34 L 157.06,140.12 L 162.2,155.48 L 167.34,209.39 L 172.48,219.67 L 177.62,175.55 L 182.76,199.71 L 187.9,168.91 L 193.04,140.69 L 198.18,139.84 L 203.32,144.41 L 208.46,140.19 L 213.6,136.85 L 218.74,155.1 L 223.88,164.56 L 229.02,164.95 L 234.16,160.98 L 239.3,164.1 L 244.45,162.62 L 249.59,155.11 L 254.73,156.32 L 259.87,159.6 L 265.01,154.22 L 270.15,144.92 L 275.29,129.25 L 280.43,136.73 L 285.57,128.31 L 290.71,132.44 L 295.85,133.55 L 300.99,139.64 L 306.13,137.44 L 311.27,134.08 L 316.41,143.73 L 321.55,143.31 L 326.69,135.03 L 331.83,132.59 L 336.97,133.75 L 342.11,134.7 L 347.25,131.37 L 352.39,136.12 L 357.53,142.83 L 362.68,140.99 L 367.82,132.48 L 372.96,132.07 L 378.1,133.33 L 383.24,119.82 L 388.38,96.95 L 393.52,109.01 L 398.66,115.11 L 403.8,112.6 L 408.94,119.21 L 414.08,108.35 L 419.22,103.01 L 424.36,112.67 L 429.5,121.9 L 434.64,127.39 L 439.78,123.38 L 444.92,116.97 L 450.06,115.79 L 455.2,120.86 L 460.34,125.03 L 465.48,133.77 L 470.62,142.22 L 475.77,147.7 L 480.91,144.35 L 486.05,144.75 L 491.19,142.23 L 496.33,144.06 L 501.47,165.82 L 506.61,174.59 L 511.75,181.78 L 516.89,189.97 L 522.03,188.24 L 527.17,184.06 L 532.31,184.88 L 537.45,189.41 L 542.59,189.71 L 547.73,180.61 L 552.87,171.6 L 558.01,174.01 L 563.15,178.74 L 568.29,158.72 L 573.43,176.56 L 578.57,180.63 L 583.71,180.72 L 588.86,153.01 L 594,146.48 L 599.14,141.23 L 604.28,139.56 L 609.42,150.93 L 614.56,149.94 L 619.7,127.35 L 624.84,86.08 L 629.98,81.06 L 635.12,84.45 L 640.26,73.01 L 645.4,75.16 L 650.54,75.3 L 655.68,72.55 L 660.82,75.76 L 665.96,77.9 L 671.1,81.72 L 676.24,78.7 L 681.38,82.22 L 686.52,83.7 L 691.66,101.01 L 696.8,98.25 L 701.95,100.32 L 707.09,85.38 L 712.23,63.12 L 717.37,120.51 L 722.51,131.44 L 727.65,163.26 L 732.79,123.77 L 737.93,145.8 L 743.07,131.78 L 748.21,117.37 L 753.35,123.18 L 758.49,115.4 L 763.63,121.42 L 768.77,126.35 L 773.91,121.35 L 779.05,131.06 L 784.19,127.88 L 789.33,114.02 L 794.47,84.18 L 799.61,74.32 L 804.75,62.43 L 809.89,60 L 815.03,62.34 L 820.18,71.4 L 825.32,81.42 L 830.46,124.87 L 835.6,124.52 L 840.74,127.22 L 845.88,125.18 L 851.02,112.79 L 856.16,102.7 L 861.3,144.87 L 866.44,159.66 L 871.58,221.62 L 876.72,207.02 L 881.86,195.07 L 887,248.69 L 892.14,312.22 L 897.28,341.28 L 902.42,390.14 L 907.56,407.37 L 912.7,404.55 L 917.84,402.89 L 922.98,422 L 928.12,406.22 L 933.27,386.99 L 938.41,372.56 L 943.55,356.18 L 948.69,364.02 L 953.83,382.61 L 958.97,389.19 L 964.11,396.83" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -99.97,472 L -99.97,151.31 L -99.97,151.31 L -94.82,155.51 L -89.68,182.28 L -84.54,162.29 L -79.4,153.61 L -74.26,165.32 L -69.12,178.02 L -63.98,208.25 L -58.84,200.22 L -53.7,197.09 L -48.56,194.29 L -43.42,204.39 L -38.28,201.77 L -33.14,205.65 L -28,215.55 L -22.86,222.7 L -17.72,226.02 L -12.58,240.43 L -7.44,233.87 L -2.3,232.87 L 2.84,222.04 L 7.98,228.69 L 13.12,232.07 L 18.27,233.61 L 23.41,241.06 L 28.55,251.6 L 33.69,255.11 L 38.83,261.74 L 43.97,265.23 L 49.11,255.61 L 54.25,226.74 L 59.39,220.47 L 64.53,214 L 69.67,225.67 L 74.81,217.33 L 79.95,191.86 L 85.09,175.36 L 90.23,155.25 L 95.37,159.8 L 100.51,162.8 L 105.65,147.98 L 110.79,149.12 L 115.93,75.82 L 121.07,60 L 126.21,64.73 L 131.36,71.14 L 136.5,138.96 L 141.64,129.05 L 146.78,151.38 L 151.92,134.77 L 157.06,130.03 L 162.2,160.94 L 167.34,194.1 L 172.48,186.87 L 177.62,164.95 L 182.76,190.4 L 187.9,160.88 L 193.04,136.4 L 198.18,139.35 L 203.32,154.3 L 208.46,161.17 L 213.6,148.15 L 218.74,153.44 L 223.88,159.57 L 229.02,154.31 L 234.16,156.58 L 239.3,164.43 L 244.45,161.09 L 249.59,157.19 L 254.73,157.69 L 259.87,165.79 L 265.01,167.64 L 270.15,158.19 L 275.29,139 L 280.43,143.03 L 285.57,140.26 L 290.71,144.52 L 295.85,141.47 L 300.99,143.58 L 306.13,145.68 L 311.27,150.1 L 316.41,157.5 L 321.55,155.51 L 326.69,143.69 L 331.83,145.45 L 336.97,128.99 L 342.11,123.2 L 347.25,118.71 L 352.39,119.2 L 357.53,125.12 L 362.68,121.93 L 367.82,124.51 L 372.96,127.38 L 378.1,130.08 L 383.24,115.61 L 388.38,100.78 L 393.52,106 L 398.66,111.16 L 403.8,105.73 L 408.94,112.24 L 414.08,107.74 L 419.22,95.89 L 424.36,111.96 L 429.5,118.68 L 434.64,118.7 L 439.78,122.67 L 444.92,124.88 L 450.06,121.06 L 455.2,121.34 L 460.34,116.8 L 465.48,124.82 L 470.62,131.11 L 475.77,148.03 L 480.91,137.18 L 486.05,140.58 L 491.19,140.16 L 496.33,135.86 L 501.47,151.46 L 506.61,149.87 L 511.75,155.15 L 516.89,164.95 L 522.03,161.64 L 527.17,159.81 L 532.31,165.15 L 537.45,161.93 L 542.59,161.48 L 547.73,151.67 L 552.87,136.46 L 558.01,135.62 L 563.15,139.85 L 568.29,112.16 L 573.43,142.12 L 578.57,155.96 L 583.71,142.27 L 588.86,115.8 L 594,123.33 L 599.14,120.71 L 604.28,123.76 L 609.42,140.11 L 614.56,139.67 L 619.7,117.74 L 624.84,103.84 L 629.98,99.56 L 635.12,98.99 L 640.26,86.62 L 645.4,84.84 L 650.54,94.7 L 655.68,97.39 L 660.82,97.76 L 665.96,101.12 L 671.1,109.53 L 676.24,115.83 L 681.38,113.59 L 686.52,111.7 L 691.66,121.75 L 696.8,121.68 L 701.95,117.42 L 707.09,94.07 L 712.23,68.79 L 717.37,125.12 L 722.51,139.91 L 727.65,181.73 L 732.79,146.19 L 737.93,173.1 L 743.07,157.07 L 748.21,130.11 L 753.35,130.49 L 758.49,118.34 L 763.63,121.1 L 768.77,130.4 L 773.91,129.67 L 779.05,141.24 L 784.19,140.55 L 789.33,115.63 L 794.47,89.9 L 799.61,83.83 L 804.75,79.33 L 809.89,78.88 L 815.03,79.2 L 820.18,86.03 L 825.32,90.99 L 830.46,137.23 L 835.6,130.05 L 840.74,138.18 L 845.88,140.77 L 851.02,130.54 L 856.16,125.93 L 861.3,171.17 L 866.44,196.82 L 871.58,242.8 L 876.72,250.81 L 881.86,263.14 L 887,355.7 L 892.14,386.4 L 897.28,397.7 L 902.42,412.31 L 907.56,413.79 L 912.7,403.14 L 917.84,415.36 L 922.98,422 L 928.12,398.6 L 933.27,382.01 L 938.41,379.99 L 943.55,373.54 L 948.69,393.18 L 953.83,399.28 L 958.97,397.77 L 964.11,403.27 L 964.11,472 Z" fill="url(#gradient-1104681207)" opacity="1"/><path d="M -99.97,151.31 L -94.82,155.51 L -89.68,182.28 L -84.54,162.29 L -79.4,153.61 L -74.26,165.32 L -69.12,178.02 L -63.98,208.25 L -58.84,200.22 L -53.7,197.09 L -48.56,194.29 L -43.42,204.39 L -38.28,201.77 L -33.14,205.65 L -28,215.55 L -22.86,222.7 L -17.72,226.02 L -12.58,240.43 L -7.44,233.87 L -2.3,232.87 L 2.84,222.04 L 7.98,228.69 L 13.12,232.07 L 18.27,233.61 L 23.41,241.06 L 28.55,251.6 L 33.69,255.11 L 38.83,261.74 L 43.97,265.23 L 49.11,255.61 L 54.25,226.74 L 59.39,220.47 L 64.53,214 L 69.67,225.67 L 74.81,217.33 L 79.95,191.86 L 85.09,175.36 L 90.23,155.25 L 95.37,159.8 L 100.51,162.8 L 105.65,147.98 L 110.79,149.12 L 115.93,75.82 L 121.07,60 L 126.21,64.73 L 131.36,71.14 L 136.5,138.96 L 141.64,129.05 L 146.78,151.38 L 151.92,134.77 L 157.06,130.03 L 162.2,160.94 L 167.34,194.1 L 172.48,186.87 L 177.62,164.95 L 182.76,190.4 L 187.9,160.88 L 193.04,136.4 L 198.18,139.35 L 203.32,154.3 L 208.46,161.17 L 213.6,148.15 L 218.74,153.44 L 223.88,159.57 L 229.02,154.31 L 234.16,156.58 L 239.3,164.43 L 244.45,161.09 L 249.59,157.19 L 254.73,157.69 L 259.87,165.79 L 265.01,167.64 L 270.15,158.19 L 275.29,139 L 280.43,143.03 L 285.57,140.26 L 290.71,144.52 L 295.85,141.47 L 300.99,143.58 L 306.13,145.68 L 311.27,150.1 L 316.41,157.5 L 321.55,155.51 L 326.69,143.69 L 331.83,145.45 L 336.97,128.99 L 342.11,123.2 L 347.25,118.71 L 352.39,119.2 L 357.53,125.12 L 362.68,121.93 L 367.82,124.51 L 372.96,127.38 L 378.1,130.08 L 383.24,115.61 L 388.38,100.78 L 393.52,106 L 398.66,111.16 L 403.8,105.73 L 408.94,112.24 L 414.08,107.74 L 419.22,95.89 L 424.36,111.96 L 429.5,118.68 L 434.64,118.7 L 439.78,122.67 L 444.92,124.88 L 450.06,121.06 L 455.2,121.34 L 460.34,116.8 L 465.48,124.82 L 470.62,131.11 L 475.77,148.03 L 480.91,137.18 L 486.05,140.58 L 491.19,140.16 L 496.33,135.86 L 501.47,151.46 L 506.61,149.87 L 511.75,155.15 L 516.89,164.95 L 522.03,161.64 L 527.17,159.81 L 532.31,165.15 L 537.45,161.93 L 542.59,161.48 L 547.73,151.67 L 552.87,136.46 L 558.01,135.62 L 563.15,139.85 L 568.29,112.16 L 573.43,142.12 L 578.57,155.96 L 583.71,142.27 L 588.86,115.8 L 594,123.33 L 599.14,120.71 L 604.28,123.76 L 609.42,140.11 L 614.56,139.67 L 619.7,117.74 L 624.84,103.84 L 629.98,99.56 L 635.12,98.99 L 640.26,86.62 L 645.4,84.84 L 650.54,94.7 L 655.68,97.39 L 660.82,97.76 L 665.96,101.12 L 671.1,109.53 L 676.24,115.83 L 681.38,113.59 L 686.52,111.7 L 691.66,121.75 L 696.8,121.68 L 701.95,117.42 L 707.09,94.07 L 712.23,68.79 L 717.37,125.12 L 722.51,139.91 L 727.65,181.73 L 732.79,146.19 L 737.93,173.1 L 743.07,157.07 L 748.21,130.11 L 753.35,130.49 L 758.49,118.34 L 763.63,121.1 L 768.77,130.4 L 773.91,129.67 L 779.05,141.24 L 784.19,140.55 L 789.33,115.63 L 794.47,89.9 L 799.61,83.83 L 804.75,79.33 L 809.89,78.88 L 815.03,79.2 L 820.18,86.03 L 825.32,90.99 L 830.46,137.23 L 835.6,130.05 L 840.74,138.18 L 845.88,140.77 L 851.02,130.54 L 856.16,125.93 L 861.3,171.17 L 866.44,196.82 L 871.58,242.8 L 876.72,250.81 L 881.86,263.14 L 887,355.7 L 892.14,386.4 L 897.28,397.7 L 902.42,412.31 L 907.56,413.79 L 912.7,403.14 L 917.84,415.36 L 922.98,422 L 928.12,398.6 L 933.27,382.01 L 938.41,379.99 L 943.55,373.54 L 948.69,393.18 L 953.83,399.28 L 958.97,397.77 L 964.11,403.27" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -99.97,472 L -99.97,389.35 L -99.97,389.35 L -94.82,374.05 L -89.68,377.87 L -84.54,377.87 L -79.4,381.12 L -74.26,385.56 L -69.12,385.42 L -63.98,389.52 L -58.84,372.77 L -53.7,387.26 L -48.56,395.49 L -43.42,387.94 L -38.28,381.34 L -33.14,381.79 L -28,385.92 L -22.86,390.62 L -17.72,395.48 L -12.58,400.97 L -7.44,396.89 L -2.3,398.3 L 2.84,395.47 L 7.98,393.33 L 13.12,392.64 L 18.27,393.53 L 23.41,399.01 L 28.55,405.85 L 33.69,414.25 L 38.83,416.39 L 43.97,422 L 49.11,418.95 L 54.25,404.09 L 59.39,395.22 L 64.53,387.17 L 69.67,390.16 L 74.81,408.47 L 79.95,391.12 L 85.09,379.44 L 90.23,373.19 L 95.37,377.14 L 100.51,370.64 L 105.65,364.49 L 110.79,358.13 L 115.93,357.8 L 121.07,369.05 L 126.21,380.42 L 131.36,372.53 L 136.5,377.43 L 141.64,376.83 L 146.78,373.74 L 151.92,359.7 L 157.06,364.06 L 162.2,368.44 L 167.34,391.86 L 172.48,407.13 L 177.62,403.71 L 182.76,407.95 L 187.9,380.22 L 193.04,365.66 L 198.18,362.18 L 203.32,358.84 L 208.46,342.14 L 213.6,347.52 L 218.74,362.44 L 223.88,370.91 L 229.02,352.14 L 234.16,367.85 L 239.3,374.2 L 244.45,377.15 L 249.59,371.59 L 254.73,365.01 L 259.87,371.27 L 265.01,362.96 L 270.15,342.74 L 275.29,315.14 L 280.43,314.79 L 285.57,330.18 L 290.71,336.14 L 295.85,339.4 L 300.99,307.76 L 306.13,297.86 L 311.27,304.07 L 316.41,309.09 L 321.55,309.24 L 326.69,309.18 L 331.83,309.94 L 336.97,313.95 L 342.11,311.9 L 347.25,308.43 L 352.39,314.24 L 357.53,312.62 L 362.68,307.88 L 367.82,302.17 L 372.96,308.01 L 378.1,319.37 L 383.24,317.4 L 388.38,307.05 L 393.52,292.38 L 398.66,282.97 L 403.8,284.48 L 408.94,287.24 L 414.08,277.69 L 419.22,267.26 L 424.36,272.73 L 429.5,266.55 L 434.64,290.02 L 439.78,279.26 L 444.92,276.82 L 450.06,272.21 L 455.2,261.24 L 460.34,259.19 L 465.48,257.89 L 470.62,259.51 L 475.77,264.6 L 480.91,214.04 L 486.05,133.84 L 491.19,88.23 L 496.33,113.4 L 501.47,132.26 L 506.61,138.09 L 511.75,138.36 L 516.89,142.4 L 522.03,107.27 L 527.17,80.61 L 532.31,98.25 L 537.45,123.73 L 542.59,131.92 L 547.73,132.86 L 552.87,127.18 L 558.01,147.87 L 563.15,135.56 L 568.29,117.38 L 573.43,130.25 L 578.57,131.45 L 583.71,137.3 L 588.86,136.72 L 594,142.5 L 599.14,164.55 L 604.28,133.22 L 609.42,116 L 614.56,122.34 L 619.7,102.2 L 624.84,76.12 L 629.98,72.9 L 635.12,77.48 L 640.26,60 L 645.4,71.76 L 650.54,75.02 L 655.68,90.1 L 660.82,105.23 L 665.96,106.29 L 671.1,100.95 L 676.24,103.62 L 681.38,114.66 L 686.52,113.51 L 691.66,121.29 L 696.8,127.06 L 701.95,134.32 L 707.09,117.54 L 712.23,121.86 L 717.37,158.81 L 722.51,174.84 L 727.65,195.42 L 732.79,185.68 L 737.93,173.57 L 743.07,167.21 L 748.21,162.66 L 753.35,177.49 L 758.49,176.34 L 763.63,183.86 L 768.77,190.58 L 773.91,194.93 L 779.05,198.6 L 784.19,200.55 L 789.33,178.25 L 794.47,174.89 L 799.61,174.04 L 804.75,171.09 L 809.89,166.52 L 815.03,172.17 L 820.18,180.75 L 825.32,177.94 L 830.46,187.38 L 835.6,185.04 L 840.74,176.64 L 845.88,172.58 L 851.02,145.73 L 856.16,146.78 L 861.3,175.42 L 866.44,175.24 L 871.58,174.44 L 876.72,170.73 L 881.86,183.57 L 887,193.37 L 892.14,192.78 L 897.28,194.15 L 902.42,201.82 L 907.56,188.24 L 912.7,182.45 L 917.84,207.48 L 922.98,222.76 L 928.12,221.26 L 933.27,210.97 L 938.41,211.82 L 943.55,207.57 L 948.69,215.56 L 953.83,236.45 L 958.97,255.91 L 964.11,266.95 L 964.11,472 Z" fill="url(#gradient-2347127274)" opacity="1"/><path d="M -99.97,389.35 L -94.82,374.05 L -89.68,377.87 L -84.54,377.87 L -79.4,381.12 L -74.26,385.56 L -69.12,385.42 L -63.98,389.52 L -58.84,372.77 L -53.7,387.26 L -48.56,395.49 L -43.42,387.94 L -38.28,381.34 L -33.14,381.79 L -28,385.92 L -22.86,390.62 L -17.72,395.48 L -12.58,400.97 L -7.44,396.89 L -2.3,398.3 L 2.84,395.47 L 7.98,393.33 L 13.12,392.64 L 18.27,393.53 L 23.41,399.01 L 28.55,405.85 L 33.69,414.25 L 38.83,416.39 L 43.97,422 L 49.11,418.95 L 54.25,404.09 L 59.39,395.22 L 64.53,387.17 L 69.67,390.16 L 74.81,408.47 L 79.95,391.12 L 85.09,379.44 L 90.23,373.19 L 95.37,377.14 L 100.51,370.64 L 105.65,364.49 L 110.79,358.13 L 115.93,357.8 L 121.07,369.05 L 126.21,380.42 L 131.36,372.53 L 136.5,377.43 L 141.64,376.83 L 146.78,373.74 L 151.92,359.7 L 157.06,364.06 L 162.2,368.44 L 167.34,391.86 L 172.48,407.13 L 177.62,403.71 L 182.76,407.95 L 187.9,380.22 L 193.04,365.66 L 198.18,362.18 L 203.32,358.84 L 208.46,342.14 L 213.6,347.52 L 218.74,362.44 L 223.88,370.91 L 229.02,352.14 L 234.16,367.85 L 239.3,374.2 L 244.45,377.15 L 249.59,371.59 L 254.73,365.01 L 259.87,371.27 L 265.01,362.96 L 270.15,342.74 L 275.29,315.14 L 280.43,314.79 L 285.57,330.18 L 290.71,336.14 L 295.85,339.4 L 300.99,307.76 L 306.13,297.86 L 311.27,304.07 L 316.41,309.09 L 321.55,309.24 L 326.69,309.18 L 331.83,309.94 L 336.97,313.95 L 342.11,311.9 L 347.25,308.43 L 352.39,314.24 L 357.53,312.62 L 362.68,307.88 L 367.82,302.17 L 372.96,308.01 L 378.1,319.37 L 383.24,317.4 L 388.38,307.05 L 393.52,292.38 L 398.66,282.97 L 403.8,284.48 L 408.94,287.24 L 414.08,277.69 L 419.22,267.26 L 424.36,272.73 L 429.5,266.55 L 434.64,290.02 L 439.78,279.26 L 444.92,276.82 L 450.06,272.21 L 455.2,261.24 L 460.34,259.19 L 465.48,257.89 L 470.62,259.51 L 475.77,264.6 L 480.91,214.04 L 486.05,133.84 L 491.19,88.23 L 496.33,113.4 L 501.47,132.26 L 506.61,138.09 L 511.75,138.36 L 516.89,142.4 L 522.03,107.27 L 527.17,80.61 L 532.31,98.25 L 537.45,123.73 L 542.59,131.92 L 547.73,132.86 L 552.87,127.18 L 558.01,147.87 L 563.15,135.56 L 568.29,117.38 L 573.43,130.25 L 578.57,131.45 L 583.71,137.3 L 588.86,136.72 L 594,142.5 L 599.14,164.55 L 604.28,133.22 L 609.42,116 L 614.56,122.34 L 619.7,102.2 L 624.84,76.12 L 629.98,72.9 L 635.12,77.48 L 640.26,60 L 645.4,71.76 L 650.54,75.02 L 655.68,90.1 L 660.82,105.23 L 665.96,106.29 L 671.1,100.95 L 676.24,103.62 L 681.38,114.66 L 686.52,113.51 L 691.66,121.29 L 696.8,127.06 L 701.95,134.32 L 707.09,117.54 L 712.23,121.86 L 717.37,158.81 L 722.51,174.84 L 727.65,195.42 L 732.79,185.68 L 737.93,173.57 L 743.07,167.21 L 748.21,162.66 L 753.35,177.49 L 758.49,176.34 L 763.63,183.86 L 768.77,190.58 L 773.91,194.93 L 779.05,198.6 L 784.19,200.55 L 789.33,178.25 L 794.47,174.89 L 799.61,174.04 L 804.75,171.09 L 809.89,166.52 L 815.03,172.17 L 820.18,180.75 L 825.32,177.94 L 830.46,187.38 L 835.6,185.04 L 840.74,176.64 L 845.88,172.58 L 851.02,145.73 L 856.16,146.78 L 861.3,175.42 L 866.44,175.24 L 871.58,174.44 L 876.72,170.73 L 881.86,183.57 L 887,193.37 L 892.14,192.78 L 897.28,194.15 L 902.42,201.82 L 907.56,188.24 L 912.7,182.45 L 917.84,207.48 L 922.98,222.76 L 928.12,221.26 L 933.27,210.97 L 938.41,211.82 L 943.55,207.57 L 948.69,215.56 L 953.83,236.45 L 958.97,255.91 L 964.11,266.95" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="21.359375" lengthAdjust="spacing">Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="187.90011552466933" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="311.27090901284384" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">08:00 AM</text><text x="434.64170250101836" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="558.0124959891931" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">08:00 AM</text><text x="681.3832894773676" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="846.0000000000001" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="21.359375" lengthAdjust="spacing">Aug</text><text x="846.0000000000001" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 424.36,0 L 424.36,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="424.36" cy="112.67" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.36" cy="112.67" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="424.36" cy="111.96" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.36" cy="111.96" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="424.36" cy="272.73" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.36" cy="272.73" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="264.73" width="170.67" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="277.7275573184397" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="164.67236328125" lengthAdjust="spacing">198.447 TAOUSDT BTC</text><rect x="435.5" y="131.96" width="190.7" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="144.96168317112554" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="184.704345703125" lengthAdjust="spacing">65,057.653 BTCUSDT BTC</text><rect x="435.5" y="103.96" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="116.96168317112554" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,921.358 ETHUSDT BTC</text><rect x="353.95" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="424.36080304367056" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">07:00 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
239
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
240
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 21s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 21s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 21s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 21s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 21s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-dffc78a4 {
241
+ --dark-theme-hide: 1;
242
+ --light-theme-hide: 0;
243
+ --rgb244245247rgb262525: rgb(244, 245, 247);
244
+ --rgb244245247rgb545762: rgb(244, 245, 247);
245
+ --rgb210214220rgb000: rgb(210, 214, 220);
246
+ --rgb210214220rgb758599: rgb(210, 214, 220);
247
+ --rgb255255255rgb444444: rgb(255, 255, 255);
248
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
249
+ --rgb255255255rgb363636: rgb(255, 255, 255);
250
+ --rgb255255255rgb393939: rgb(255, 255, 255);
251
+ --rgb255255255rgb303030: rgb(255, 255, 255);
252
+ --rgb240254255rgb03755: rgb(240, 254, 255);
253
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
254
+ --rgb758599rgb229231235: rgb(75, 85, 99);
255
+ --rgb758599rgb180180180: rgb(75, 85, 99);
256
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
257
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
258
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
259
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
260
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
261
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
262
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
263
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
264
+ --rgb229231235rgb262525: rgb(229, 231, 235);
265
+ --rgb229231235rgb758599: rgb(229, 231, 235);
266
+ --rgb249250251rgb333333: rgb(249, 250, 251);
267
+ --rgb223046rgb244245247: rgb(22, 30, 46);
268
+ --blackrgb187187187: black;
269
+ --f9fafb212121: #f9fafb;
270
+ --161e2ef4f5f7: #161e2e;
271
+ --d2d6dc4b5563: #d2d6dc;
272
+ --nonergb303030: none;
273
+ --rgb87863rgb21699181: rgb(87, 8, 63);
274
+ }
275
+ @media (prefers-color-scheme: dark) {
276
+ :root #id-dffc78a4 {
277
+ --dark-theme-hide: 0;
278
+ --light-theme-hide: 1;
279
+ --rgb244245247rgb262525: rgb(26, 25, 25);
280
+ --rgb244245247rgb545762: rgb(54, 57, 62);
281
+ --rgb210214220rgb000: rgb(0, 0, 0);
282
+ --rgb210214220rgb758599: rgb(75, 85, 99);
283
+ --rgb255255255rgb444444: rgb(44, 44, 44);
284
+ --rgb255255255rgb363636: rgb(36, 36, 36);
285
+ --rgb255255255rgb393939: rgb(39, 39, 39);
286
+ --rgb255255255rgb303030: rgb(30, 30, 30);
287
+ --rgb240254255rgb03755: rgb(0, 37, 55);
288
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
289
+ --rgb758599rgb229231235: rgb(229, 231, 235);
290
+ --rgb758599rgb180180180: rgb(180, 180, 180);
291
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
292
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
293
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
294
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
295
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
296
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
297
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
298
+ --rgb229231235rgb262525: rgb(26, 25, 25);
299
+ --rgb229231235rgb758599: rgb(75, 85, 99);
300
+ --rgb249250251rgb333333: rgb(33, 33, 33);
301
+ --rgb223046rgb244245247: rgb(244, 245, 247);
302
+ --blackrgb187187187: rgb(187, 187, 187);
303
+ --f9fafb212121: #212121;
304
+ --161e2ef4f5f7: #f4f5f7;
305
+ --d2d6dc4b5563: #4b5563;
306
+ --nonergb303030: rgb(30, 30, 30);
307
+ --rgb87863rgb21699181: rgb(216, 99, 181);
308
+ }
309
+ }
310
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-2" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3275704763" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-4179082353" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2187403172" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-9011257c"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
311
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
312
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -73.92,472 L -73.92,263.03 L -73.92,263.03 L -70.09,290.28 L -66.26,306 L -62.42,300.01 L -58.59,282.98 L -54.75,274.36 L -50.92,239.99 L -47.08,185.26 L -43.25,186.55 L -39.42,200.31 L -35.58,151.27 L -31.75,140.47 L -27.91,152.05 L -24.08,62.41 L -20.24,80.85 L -16.41,102.84 L -12.57,82.82 L -8.74,144.67 L -4.91,277.93 L -1.07,190.41 L 2.76,124.67 L 6.6,190.2 L 10.43,238.45 L 14.27,211.15 L 18.1,194.58 L 21.93,226.28 L 25.77,219.75 L 29.6,234.2 L 33.44,243.73 L 37.27,275.54 L 41.11,345.36 L 44.94,403.24 L 48.77,422 L 52.61,370.31 L 56.44,292.84 L 60.28,311.82 L 64.11,333.4 L 67.95,374.05 L 71.78,315.17 L 75.61,261.25 L 79.45,225.77 L 83.28,230.59 L 87.12,224.1 L 90.95,228.68 L 94.79,240.01 L 98.62,232.21 L 102.45,224.83 L 106.29,229.43 L 110.12,203.65 L 113.96,236.37 L 117.79,259.12 L 121.63,258.55 L 125.46,283.31 L 129.3,274.58 L 133.13,278.61 L 136.96,280.96 L 140.8,278.01 L 144.63,264.68 L 148.47,264.59 L 152.3,291.36 L 156.14,282.34 L 159.97,267.31 L 163.8,258.57 L 167.64,259.15 L 171.47,259.14 L 175.31,263.74 L 179.14,269.62 L 182.98,267.18 L 186.81,253.54 L 190.64,260.39 L 194.48,255.44 L 198.31,218.94 L 202.15,201.39 L 205.98,206.34 L 209.82,216.69 L 213.65,222.84 L 217.48,199.26 L 221.32,204.46 L 225.15,212.78 L 228.99,208.49 L 232.82,205.79 L 236.66,220.21 L 240.49,223.9 L 244.32,228.03 L 248.16,230.4 L 251.99,212.14 L 255.83,212.04 L 259.66,216.22 L 263.5,230.31 L 267.33,238.98 L 271.17,235.87 L 275,231.67 L 278.83,214.08 L 282.67,218.23 L 286.5,215.72 L 290.34,206.21 L 294.17,208.32 L 298.01,218.53 L 301.84,218.46 L 305.67,212.43 L 309.51,207.07 L 313.34,209.69 L 317.18,212.07 L 321.01,224.86 L 324.85,230.01 L 328.68,235.46 L 332.51,243.12 L 336.35,214.55 L 340.18,212.61 L 344.02,208.83 L 347.85,211.57 L 351.69,208.16 L 355.52,213.06 L 359.35,212 L 363.19,198.6 L 367.02,168.99 L 370.86,135.37 L 374.69,134.94 L 378.53,154.63 L 382.36,167.01 L 386.2,175.16 L 390.03,172.41 L 393.86,165.11 L 397.7,171.79 L 401.53,187.55 L 405.37,177.47 L 409.2,163.77 L 413.04,155.05 L 416.87,146.23 L 420.7,149.88 L 424.54,155.17 L 428.37,182 L 432.21,187.45 L 436.04,188.98 L 439.88,196.71 L 443.71,203.11 L 447.54,200.05 L 451.38,182.71 L 455.21,175.77 L 459.05,179.7 L 462.88,176.75 L 466.72,173.69 L 470.55,178.84 L 474.38,193.18 L 478.22,191.88 L 482.05,197.91 L 485.89,210.09 L 489.72,216.86 L 493.56,226.01 L 497.39,236.86 L 501.22,248.74 L 505.06,237.45 L 508.89,236.56 L 512.73,235.37 L 516.56,238.06 L 520.4,235.6 L 524.23,230.93 L 528.07,231.98 L 531.9,221.85 L 535.73,248.86 L 539.57,278.66 L 543.4,284.59 L 547.24,297.86 L 551.07,302.7 L 554.91,308.75 L 558.74,322.39 L 562.57,324.88 L 566.41,341.14 L 570.24,330.49 L 574.08,328.15 L 577.91,324.68 L 581.75,316.16 L 585.58,316.57 L 589.41,327.77 L 593.25,331.58 L 597.08,332.02 L 600.92,333.08 L 604.75,331.8 L 608.59,321.14 L 612.42,305.06 L 616.25,294.69 L 620.09,293.18 L 623.92,296.66 L 627.76,301.44 L 631.59,305.66 L 635.43,312.58 L 639.26,268.6 L 643.09,264.46 L 646.93,289.7 L 650.76,319.27 L 654.6,312.59 L 658.43,313.66 L 662.27,318.97 L 666.1,307.68 L 669.94,268.57 L 673.77,240.22 L 677.6,246.98 L 681.44,234.02 L 685.27,230.32 L 689.11,228.35 L 692.94,223.57 L 696.78,228 L 700.61,253.68 L 704.44,246.24 L 708.28,248.57 L 712.11,247.17 L 715.95,210.45 L 719.78,189.19 L 723.62,127.67 L 727.45,96.42 L 731.28,94.29 L 735.12,108.46 L 738.95,113.02 L 742.79,104.12 L 746.62,81.26 L 750.46,87.22 L 754.29,88.55 L 758.12,89.11 L 761.96,80.74 L 765.79,97.51 L 769.63,85.06 L 773.46,81.49 L 777.3,92.16 L 781.13,88.02 L 784.96,87.81 L 788.8,101.47 L 792.63,101.46 L 796.47,104.07 L 800.3,92.12 L 804.14,100.59 L 807.97,107.32 L 811.81,100.37 L 815.64,103.99 L 819.47,109.98 L 823.31,137.28 L 827.14,150.32 L 830.98,135.68 L 834.81,140.18 L 838.65,142.46 L 842.48,142.19 L 846.31,115.32 L 850.15,105.78 L 853.98,66.43 L 857.82,60 L 861.65,178.14 L 865.49,192.42 L 869.32,187.84 L 873.15,229.21 L 876.99,278.6 L 880.82,273.79 L 884.66,204.3 L 888.49,180.1 L 892.33,241.73 L 896.16,236.4 L 899.99,222.33 L 903.83,196.14 L 907.66,238.16 L 911.5,119.02 L 915.33,146.57 L 919.17,235.31 L 923,199.35 L 926.83,149.47 L 930.67,190.58 L 934.5,183.83 L 938.34,184.72 L 942.17,210.65 L 942.17,472 Z" fill="url(#gradient-3275704763)" opacity="1"/><path d="M -73.92,263.03 L -70.09,290.28 L -66.26,306 L -62.42,300.01 L -58.59,282.98 L -54.75,274.36 L -50.92,239.99 L -47.08,185.26 L -43.25,186.55 L -39.42,200.31 L -35.58,151.27 L -31.75,140.47 L -27.91,152.05 L -24.08,62.41 L -20.24,80.85 L -16.41,102.84 L -12.57,82.82 L -8.74,144.67 L -4.91,277.93 L -1.07,190.41 L 2.76,124.67 L 6.6,190.2 L 10.43,238.45 L 14.27,211.15 L 18.1,194.58 L 21.93,226.28 L 25.77,219.75 L 29.6,234.2 L 33.44,243.73 L 37.27,275.54 L 41.11,345.36 L 44.94,403.24 L 48.77,422 L 52.61,370.31 L 56.44,292.84 L 60.28,311.82 L 64.11,333.4 L 67.95,374.05 L 71.78,315.17 L 75.61,261.25 L 79.45,225.77 L 83.28,230.59 L 87.12,224.1 L 90.95,228.68 L 94.79,240.01 L 98.62,232.21 L 102.45,224.83 L 106.29,229.43 L 110.12,203.65 L 113.96,236.37 L 117.79,259.12 L 121.63,258.55 L 125.46,283.31 L 129.3,274.58 L 133.13,278.61 L 136.96,280.96 L 140.8,278.01 L 144.63,264.68 L 148.47,264.59 L 152.3,291.36 L 156.14,282.34 L 159.97,267.31 L 163.8,258.57 L 167.64,259.15 L 171.47,259.14 L 175.31,263.74 L 179.14,269.62 L 182.98,267.18 L 186.81,253.54 L 190.64,260.39 L 194.48,255.44 L 198.31,218.94 L 202.15,201.39 L 205.98,206.34 L 209.82,216.69 L 213.65,222.84 L 217.48,199.26 L 221.32,204.46 L 225.15,212.78 L 228.99,208.49 L 232.82,205.79 L 236.66,220.21 L 240.49,223.9 L 244.32,228.03 L 248.16,230.4 L 251.99,212.14 L 255.83,212.04 L 259.66,216.22 L 263.5,230.31 L 267.33,238.98 L 271.17,235.87 L 275,231.67 L 278.83,214.08 L 282.67,218.23 L 286.5,215.72 L 290.34,206.21 L 294.17,208.32 L 298.01,218.53 L 301.84,218.46 L 305.67,212.43 L 309.51,207.07 L 313.34,209.69 L 317.18,212.07 L 321.01,224.86 L 324.85,230.01 L 328.68,235.46 L 332.51,243.12 L 336.35,214.55 L 340.18,212.61 L 344.02,208.83 L 347.85,211.57 L 351.69,208.16 L 355.52,213.06 L 359.35,212 L 363.19,198.6 L 367.02,168.99 L 370.86,135.37 L 374.69,134.94 L 378.53,154.63 L 382.36,167.01 L 386.2,175.16 L 390.03,172.41 L 393.86,165.11 L 397.7,171.79 L 401.53,187.55 L 405.37,177.47 L 409.2,163.77 L 413.04,155.05 L 416.87,146.23 L 420.7,149.88 L 424.54,155.17 L 428.37,182 L 432.21,187.45 L 436.04,188.98 L 439.88,196.71 L 443.71,203.11 L 447.54,200.05 L 451.38,182.71 L 455.21,175.77 L 459.05,179.7 L 462.88,176.75 L 466.72,173.69 L 470.55,178.84 L 474.38,193.18 L 478.22,191.88 L 482.05,197.91 L 485.89,210.09 L 489.72,216.86 L 493.56,226.01 L 497.39,236.86 L 501.22,248.74 L 505.06,237.45 L 508.89,236.56 L 512.73,235.37 L 516.56,238.06 L 520.4,235.6 L 524.23,230.93 L 528.07,231.98 L 531.9,221.85 L 535.73,248.86 L 539.57,278.66 L 543.4,284.59 L 547.24,297.86 L 551.07,302.7 L 554.91,308.75 L 558.74,322.39 L 562.57,324.88 L 566.41,341.14 L 570.24,330.49 L 574.08,328.15 L 577.91,324.68 L 581.75,316.16 L 585.58,316.57 L 589.41,327.77 L 593.25,331.58 L 597.08,332.02 L 600.92,333.08 L 604.75,331.8 L 608.59,321.14 L 612.42,305.06 L 616.25,294.69 L 620.09,293.18 L 623.92,296.66 L 627.76,301.44 L 631.59,305.66 L 635.43,312.58 L 639.26,268.6 L 643.09,264.46 L 646.93,289.7 L 650.76,319.27 L 654.6,312.59 L 658.43,313.66 L 662.27,318.97 L 666.1,307.68 L 669.94,268.57 L 673.77,240.22 L 677.6,246.98 L 681.44,234.02 L 685.27,230.32 L 689.11,228.35 L 692.94,223.57 L 696.78,228 L 700.61,253.68 L 704.44,246.24 L 708.28,248.57 L 712.11,247.17 L 715.95,210.45 L 719.78,189.19 L 723.62,127.67 L 727.45,96.42 L 731.28,94.29 L 735.12,108.46 L 738.95,113.02 L 742.79,104.12 L 746.62,81.26 L 750.46,87.22 L 754.29,88.55 L 758.12,89.11 L 761.96,80.74 L 765.79,97.51 L 769.63,85.06 L 773.46,81.49 L 777.3,92.16 L 781.13,88.02 L 784.96,87.81 L 788.8,101.47 L 792.63,101.46 L 796.47,104.07 L 800.3,92.12 L 804.14,100.59 L 807.97,107.32 L 811.81,100.37 L 815.64,103.99 L 819.47,109.98 L 823.31,137.28 L 827.14,150.32 L 830.98,135.68 L 834.81,140.18 L 838.65,142.46 L 842.48,142.19 L 846.31,115.32 L 850.15,105.78 L 853.98,66.43 L 857.82,60 L 861.65,178.14 L 865.49,192.42 L 869.32,187.84 L 873.15,229.21 L 876.99,278.6 L 880.82,273.79 L 884.66,204.3 L 888.49,180.1 L 892.33,241.73 L 896.16,236.4 L 899.99,222.33 L 903.83,196.14 L 907.66,238.16 L 911.5,119.02 L 915.33,146.57 L 919.17,235.31 L 923,199.35 L 926.83,149.47 L 930.67,190.58 L 934.5,183.83 L 938.34,184.72 L 942.17,210.65" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -73.92,472 L -73.92,305.97 L -73.92,305.97 L -70.09,327.63 L -66.26,326.65 L -62.42,328.58 L -58.59,331.4 L -54.75,338.09 L -50.92,310.22 L -47.08,288.79 L -43.25,300.74 L -39.42,303.7 L -35.58,158.41 L -31.75,97.58 L -27.91,120.79 L -24.08,60 L -20.24,89.98 L -16.41,113.28 L -12.57,88.56 L -8.74,145.19 L -4.91,310.51 L -1.07,245.63 L 2.76,210.21 L 6.6,298.82 L 10.43,320.51 L 14.27,294.67 L 18.1,272.21 L 21.93,264.01 L 25.77,232.69 L 29.6,280.99 L 33.44,318.67 L 37.27,341.98 L 41.11,408.89 L 44.94,409.4 L 48.77,400.95 L 52.61,382.96 L 56.44,337.22 L 60.28,342.47 L 64.11,378.7 L 67.95,422 L 71.78,356.28 L 75.61,304.09 L 79.45,276.77 L 83.28,267.23 L 87.12,271.74 L 90.95,286.27 L 94.79,310.42 L 98.62,318.65 L 102.45,324.81 L 106.29,336.94 L 110.12,312.27 L 113.96,287.56 L 117.79,313.12 L 121.63,311.88 L 125.46,326.77 L 129.3,327.37 L 133.13,313.36 L 136.96,315.78 L 140.8,318.23 L 144.63,321.69 L 148.47,337 L 152.3,340.22 L 156.14,329.08 L 159.97,332.26 L 163.8,324.11 L 167.64,318.73 L 171.47,318.6 L 175.31,326.58 L 179.14,334.85 L 182.98,348.85 L 186.81,341.94 L 190.64,350.55 L 194.48,333.01 L 198.31,314.57 L 202.15,277.56 L 205.98,278.76 L 209.82,285.45 L 213.65,290.05 L 217.48,277.5 L 221.32,284.85 L 225.15,289.89 L 228.99,292.69 L 232.82,275.01 L 236.66,293.06 L 240.49,283.3 L 244.32,294.82 L 248.16,297.53 L 251.99,290.57 L 255.83,302.29 L 259.66,306.82 L 263.5,321.09 L 267.33,323.22 L 271.17,321.67 L 275,313.16 L 278.83,291.03 L 282.67,287.61 L 286.5,290.94 L 290.34,296.08 L 294.17,250.48 L 298.01,258.28 L 301.84,250.34 L 305.67,230.92 L 309.51,227.77 L 313.34,232.14 L 317.18,222.52 L 321.01,239.68 L 324.85,248.64 L 328.68,241.73 L 332.51,241.58 L 336.35,233.61 L 340.18,243.44 L 344.02,244.01 L 347.85,246.62 L 351.69,254.48 L 355.52,260.63 L 359.35,253.31 L 363.19,233.31 L 367.02,211.84 L 370.86,190.15 L 374.69,184.52 L 378.53,197.52 L 382.36,201.94 L 386.2,218.09 L 390.03,205.9 L 393.86,194.65 L 397.7,203.53 L 401.53,215.52 L 405.37,213.63 L 409.2,207.62 L 413.04,200.11 L 416.87,171.35 L 420.7,180.07 L 424.54,198.71 L 428.37,229.1 L 432.21,230.84 L 436.04,228.92 L 439.88,227.49 L 443.71,232.34 L 447.54,244.52 L 451.38,234.22 L 455.21,244.18 L 459.05,245.02 L 462.88,233.7 L 466.72,237.36 L 470.55,239.55 L 474.38,232.84 L 478.22,223.24 L 482.05,227.56 L 485.89,244.65 L 489.72,244.3 L 493.56,250.91 L 497.39,267.94 L 501.22,304.99 L 505.06,294.29 L 508.89,274.46 L 512.73,273.22 L 516.56,287.11 L 520.4,276.73 L 524.23,277.36 L 528.07,284.48 L 531.9,258.88 L 535.73,282.55 L 539.57,308.88 L 543.4,306.69 L 547.24,304.09 L 551.07,303.92 L 554.91,308.85 L 558.74,324.26 L 562.57,335.43 L 566.41,344.3 L 570.24,332.44 L 574.08,331.53 L 577.91,329.36 L 581.75,325.93 L 585.58,336.96 L 589.41,343.7 L 593.25,336.9 L 597.08,328.47 L 600.92,330.91 L 604.75,332.3 L 608.59,321.37 L 612.42,295.21 L 616.25,278.77 L 620.09,265.47 L 623.92,262.02 L 627.76,278.28 L 631.59,282.44 L 635.43,277.95 L 639.26,208.23 L 643.09,220.52 L 646.93,257.21 L 650.76,313.96 L 654.6,309.44 L 658.43,327.54 L 662.27,308.1 L 666.1,263.79 L 669.94,217.8 L 673.77,228.24 L 677.6,244.05 L 681.44,237.79 L 685.27,237.59 L 689.11,231.82 L 692.94,234.6 L 696.78,249.29 L 700.61,283.7 L 704.44,277.91 L 708.28,277.92 L 712.11,281.59 L 715.95,257.68 L 719.78,197.6 L 723.62,190.16 L 727.45,199.06 L 731.28,181.58 L 735.12,187.27 L 738.95,183.75 L 742.79,182.4 L 746.62,162.74 L 750.46,144.61 L 754.29,152.48 L 758.12,146.41 L 761.96,157.11 L 765.79,188.66 L 769.63,182.76 L 773.46,175.76 L 777.3,181.33 L 781.13,178.98 L 784.96,180.43 L 788.8,195.83 L 792.63,194.91 L 796.47,221.33 L 800.3,221.46 L 804.14,224.73 L 807.97,218.88 L 811.81,216.69 L 815.64,211.85 L 819.47,214.74 L 823.31,226.24 L 827.14,248.11 L 830.98,237.23 L 834.81,236.78 L 838.65,238.87 L 842.48,214.91 L 846.31,175.52 L 850.15,167.24 L 853.98,144.56 L 857.82,78.04 L 861.65,220.5 L 865.49,269.84 L 869.32,264.96 L 873.15,295.72 L 876.99,375.51 L 880.82,383.97 L 884.66,308.09 L 888.49,282.46 L 892.33,365.68 L 896.16,352.76 L 899.99,345.47 L 903.83,296.77 L 907.66,320.37 L 911.5,193.71 L 915.33,209.66 L 919.17,306.23 L 923,269.8 L 926.83,188.34 L 930.67,225.92 L 934.5,245.32 L 938.34,254.24 L 942.17,261.21 L 942.17,472 Z" fill="url(#gradient-4179082353)" opacity="1"/><path d="M -73.92,305.97 L -70.09,327.63 L -66.26,326.65 L -62.42,328.58 L -58.59,331.4 L -54.75,338.09 L -50.92,310.22 L -47.08,288.79 L -43.25,300.74 L -39.42,303.7 L -35.58,158.41 L -31.75,97.58 L -27.91,120.79 L -24.08,60 L -20.24,89.98 L -16.41,113.28 L -12.57,88.56 L -8.74,145.19 L -4.91,310.51 L -1.07,245.63 L 2.76,210.21 L 6.6,298.82 L 10.43,320.51 L 14.27,294.67 L 18.1,272.21 L 21.93,264.01 L 25.77,232.69 L 29.6,280.99 L 33.44,318.67 L 37.27,341.98 L 41.11,408.89 L 44.94,409.4 L 48.77,400.95 L 52.61,382.96 L 56.44,337.22 L 60.28,342.47 L 64.11,378.7 L 67.95,422 L 71.78,356.28 L 75.61,304.09 L 79.45,276.77 L 83.28,267.23 L 87.12,271.74 L 90.95,286.27 L 94.79,310.42 L 98.62,318.65 L 102.45,324.81 L 106.29,336.94 L 110.12,312.27 L 113.96,287.56 L 117.79,313.12 L 121.63,311.88 L 125.46,326.77 L 129.3,327.37 L 133.13,313.36 L 136.96,315.78 L 140.8,318.23 L 144.63,321.69 L 148.47,337 L 152.3,340.22 L 156.14,329.08 L 159.97,332.26 L 163.8,324.11 L 167.64,318.73 L 171.47,318.6 L 175.31,326.58 L 179.14,334.85 L 182.98,348.85 L 186.81,341.94 L 190.64,350.55 L 194.48,333.01 L 198.31,314.57 L 202.15,277.56 L 205.98,278.76 L 209.82,285.45 L 213.65,290.05 L 217.48,277.5 L 221.32,284.85 L 225.15,289.89 L 228.99,292.69 L 232.82,275.01 L 236.66,293.06 L 240.49,283.3 L 244.32,294.82 L 248.16,297.53 L 251.99,290.57 L 255.83,302.29 L 259.66,306.82 L 263.5,321.09 L 267.33,323.22 L 271.17,321.67 L 275,313.16 L 278.83,291.03 L 282.67,287.61 L 286.5,290.94 L 290.34,296.08 L 294.17,250.48 L 298.01,258.28 L 301.84,250.34 L 305.67,230.92 L 309.51,227.77 L 313.34,232.14 L 317.18,222.52 L 321.01,239.68 L 324.85,248.64 L 328.68,241.73 L 332.51,241.58 L 336.35,233.61 L 340.18,243.44 L 344.02,244.01 L 347.85,246.62 L 351.69,254.48 L 355.52,260.63 L 359.35,253.31 L 363.19,233.31 L 367.02,211.84 L 370.86,190.15 L 374.69,184.52 L 378.53,197.52 L 382.36,201.94 L 386.2,218.09 L 390.03,205.9 L 393.86,194.65 L 397.7,203.53 L 401.53,215.52 L 405.37,213.63 L 409.2,207.62 L 413.04,200.11 L 416.87,171.35 L 420.7,180.07 L 424.54,198.71 L 428.37,229.1 L 432.21,230.84 L 436.04,228.92 L 439.88,227.49 L 443.71,232.34 L 447.54,244.52 L 451.38,234.22 L 455.21,244.18 L 459.05,245.02 L 462.88,233.7 L 466.72,237.36 L 470.55,239.55 L 474.38,232.84 L 478.22,223.24 L 482.05,227.56 L 485.89,244.65 L 489.72,244.3 L 493.56,250.91 L 497.39,267.94 L 501.22,304.99 L 505.06,294.29 L 508.89,274.46 L 512.73,273.22 L 516.56,287.11 L 520.4,276.73 L 524.23,277.36 L 528.07,284.48 L 531.9,258.88 L 535.73,282.55 L 539.57,308.88 L 543.4,306.69 L 547.24,304.09 L 551.07,303.92 L 554.91,308.85 L 558.74,324.26 L 562.57,335.43 L 566.41,344.3 L 570.24,332.44 L 574.08,331.53 L 577.91,329.36 L 581.75,325.93 L 585.58,336.96 L 589.41,343.7 L 593.25,336.9 L 597.08,328.47 L 600.92,330.91 L 604.75,332.3 L 608.59,321.37 L 612.42,295.21 L 616.25,278.77 L 620.09,265.47 L 623.92,262.02 L 627.76,278.28 L 631.59,282.44 L 635.43,277.95 L 639.26,208.23 L 643.09,220.52 L 646.93,257.21 L 650.76,313.96 L 654.6,309.44 L 658.43,327.54 L 662.27,308.1 L 666.1,263.79 L 669.94,217.8 L 673.77,228.24 L 677.6,244.05 L 681.44,237.79 L 685.27,237.59 L 689.11,231.82 L 692.94,234.6 L 696.78,249.29 L 700.61,283.7 L 704.44,277.91 L 708.28,277.92 L 712.11,281.59 L 715.95,257.68 L 719.78,197.6 L 723.62,190.16 L 727.45,199.06 L 731.28,181.58 L 735.12,187.27 L 738.95,183.75 L 742.79,182.4 L 746.62,162.74 L 750.46,144.61 L 754.29,152.48 L 758.12,146.41 L 761.96,157.11 L 765.79,188.66 L 769.63,182.76 L 773.46,175.76 L 777.3,181.33 L 781.13,178.98 L 784.96,180.43 L 788.8,195.83 L 792.63,194.91 L 796.47,221.33 L 800.3,221.46 L 804.14,224.73 L 807.97,218.88 L 811.81,216.69 L 815.64,211.85 L 819.47,214.74 L 823.31,226.24 L 827.14,248.11 L 830.98,237.23 L 834.81,236.78 L 838.65,238.87 L 842.48,214.91 L 846.31,175.52 L 850.15,167.24 L 853.98,144.56 L 857.82,78.04 L 861.65,220.5 L 865.49,269.84 L 869.32,264.96 L 873.15,295.72 L 876.99,375.51 L 880.82,383.97 L 884.66,308.09 L 888.49,282.46 L 892.33,365.68 L 896.16,352.76 L 899.99,345.47 L 903.83,296.77 L 907.66,320.37 L 911.5,193.71 L 915.33,209.66 L 919.17,306.23 L 923,269.8 L 926.83,188.34 L 930.67,225.92 L 934.5,245.32 L 938.34,254.24 L 942.17,261.21" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -73.92,472 L -73.92,377.72 L -73.92,377.72 L -70.09,382.78 L -66.26,385.03 L -62.42,383.35 L -58.59,376.41 L -54.75,378.99 L -50.92,376.44 L -47.08,366.71 L -43.25,360.98 L -39.42,369.46 L -35.58,361.72 L -31.75,368.06 L -27.91,379.71 L -24.08,372.52 L -20.24,385.75 L -16.41,389.18 L -12.57,381.43 L -8.74,377.75 L -4.91,389.76 L -1.07,379.2 L 2.76,378.63 L 6.6,389.13 L 10.43,386.32 L 14.27,375.28 L 18.1,365.02 L 21.93,368.56 L 25.77,368.53 L 29.6,373.74 L 33.44,375.55 L 37.27,375.47 L 41.11,393.63 L 44.94,404.13 L 48.77,406.22 L 52.61,422 L 56.44,413.35 L 60.28,408.05 L 64.11,412.62 L 67.95,417.25 L 71.78,403.45 L 75.61,371.08 L 79.45,374.89 L 83.28,370.58 L 87.12,369.96 L 90.95,368.56 L 94.79,370.29 L 98.62,361.57 L 102.45,346.79 L 106.29,351.74 L 110.12,349.79 L 113.96,359.47 L 117.79,368.7 L 121.63,370.34 L 125.46,377.78 L 129.3,378.17 L 133.13,360.71 L 136.96,357.78 L 140.8,374.37 L 144.63,375.47 L 148.47,383.84 L 152.3,378.68 L 156.14,383.4 L 159.97,384.99 L 163.8,379.87 L 167.64,377.44 L 171.47,371.85 L 175.31,372.32 L 179.14,376.23 L 182.98,380.43 L 186.81,375.52 L 190.64,364.55 L 194.48,354.73 L 198.31,345 L 202.15,326.85 L 205.98,317.8 L 209.82,315.86 L 213.65,328.08 L 217.48,336.52 L 221.32,338.14 L 225.15,343.72 L 228.99,342.85 L 232.82,345.81 L 236.66,347.25 L 240.49,317.85 L 244.32,312.06 L 248.16,306.62 L 251.99,303.54 L 255.83,308.59 L 259.66,313.96 L 263.5,313.23 L 267.33,319.36 L 271.17,314.98 L 275,317.89 L 278.83,318.1 L 282.67,314.67 L 286.5,317.61 L 290.34,316.67 L 294.17,320.39 L 298.01,321.89 L 301.84,320.94 L 305.67,317.25 L 309.51,316.31 L 313.34,314.95 L 317.18,318.64 L 321.01,324.21 L 324.85,321.81 L 328.68,317.8 L 332.51,316.76 L 336.35,313.41 L 340.18,309.17 L 344.02,309.6 L 347.85,311.11 L 351.69,319.31 L 355.52,328 L 359.35,325.09 L 363.19,325.6 L 367.02,323.56 L 370.86,317.73 L 374.69,310.79 L 378.53,303.45 L 382.36,295.78 L 386.2,291.5 L 390.03,288.94 L 393.86,288.3 L 397.7,295.16 L 401.53,298.32 L 405.37,290.65 L 409.2,287.99 L 413.04,281.91 L 416.87,277.12 L 420.7,271.98 L 424.54,276.91 L 428.37,283.1 L 432.21,279.11 L 436.04,268.58 L 439.88,294.53 L 443.71,299.98 L 447.54,289.16 L 451.38,283.89 L 455.21,283.22 L 459.05,284.96 L 462.88,282.11 L 466.72,276.86 L 470.55,274.23 L 474.38,262.86 L 478.22,266.46 L 482.05,266.55 L 485.89,269.82 L 489.72,260.57 L 493.56,263.41 L 497.39,270.23 L 501.22,274.49 L 505.06,269.29 L 508.89,253.37 L 512.73,189.51 L 516.56,152.53 L 520.4,130.31 L 524.23,113.74 L 528.07,78.09 L 531.9,103.33 L 535.73,138.72 L 539.57,140.73 L 543.4,138.96 L 547.24,147.89 L 551.07,143.43 L 554.91,154.5 L 558.74,137.37 L 562.57,150.96 L 566.41,148.97 L 570.24,120.61 L 574.08,109.2 L 577.91,103.03 L 581.75,73.58 L 585.58,91.07 L 589.41,120.74 L 593.25,134.6 L 597.08,128.06 L 600.92,142.43 L 604.75,136.57 L 608.59,145.6 L 612.42,135.27 L 616.25,131.87 L 620.09,137.68 L 623.92,154.37 L 627.76,156.48 L 631.59,148.33 L 635.43,137.95 L 639.26,128.35 L 643.09,121.65 L 646.93,137.56 L 650.76,138.11 L 654.6,134.98 L 658.43,143.1 L 662.27,149.7 L 666.1,140.04 L 669.94,147.97 L 673.77,140.62 L 677.6,145.76 L 681.44,154.37 L 685.27,159.33 L 689.11,184.81 L 692.94,158.56 L 696.78,123.04 L 700.61,126.28 L 704.44,120.96 L 708.28,126.63 L 712.11,133.27 L 715.95,122.05 L 719.78,97.65 L 723.62,84.99 L 727.45,82.65 L 731.28,85.99 L 735.12,75.24 L 738.95,85.19 L 742.79,85.19 L 746.62,75.48 L 750.46,60 L 754.29,78.72 L 758.12,80.24 L 761.96,73.35 L 765.79,92.11 L 769.63,93.59 L 773.46,101.95 L 777.3,111.19 L 781.13,114.56 L 784.96,113.29 L 788.8,114.57 L 792.63,109.1 L 796.47,108.11 L 800.3,110.94 L 804.14,111.59 L 807.97,116.06 L 811.81,128.5 L 815.64,126.55 L 819.47,115.72 L 823.31,128.93 L 827.14,128.86 L 830.98,133.64 L 834.81,135.67 L 838.65,143.87 L 842.48,139.92 L 846.31,122.45 L 850.15,127.86 L 853.98,127.85 L 857.82,131.1 L 861.65,159.78 L 865.49,172.9 L 869.32,178.55 L 873.15,186.12 L 876.99,199.07 L 880.82,206.65 L 884.66,203.72 L 888.49,182.57 L 892.33,186.77 L 896.16,175.35 L 899.99,179.54 L 903.83,169.9 L 907.66,178.6 L 911.5,161.76 L 915.33,174.59 L 919.17,195.36 L 923,188.18 L 926.83,179.49 L 930.67,190.69 L 934.5,191.97 L 938.34,194.65 L 942.17,201.42 L 942.17,472 Z" fill="url(#gradient-2187403172)" opacity="1"/><path d="M -73.92,377.72 L -70.09,382.78 L -66.26,385.03 L -62.42,383.35 L -58.59,376.41 L -54.75,378.99 L -50.92,376.44 L -47.08,366.71 L -43.25,360.98 L -39.42,369.46 L -35.58,361.72 L -31.75,368.06 L -27.91,379.71 L -24.08,372.52 L -20.24,385.75 L -16.41,389.18 L -12.57,381.43 L -8.74,377.75 L -4.91,389.76 L -1.07,379.2 L 2.76,378.63 L 6.6,389.13 L 10.43,386.32 L 14.27,375.28 L 18.1,365.02 L 21.93,368.56 L 25.77,368.53 L 29.6,373.74 L 33.44,375.55 L 37.27,375.47 L 41.11,393.63 L 44.94,404.13 L 48.77,406.22 L 52.61,422 L 56.44,413.35 L 60.28,408.05 L 64.11,412.62 L 67.95,417.25 L 71.78,403.45 L 75.61,371.08 L 79.45,374.89 L 83.28,370.58 L 87.12,369.96 L 90.95,368.56 L 94.79,370.29 L 98.62,361.57 L 102.45,346.79 L 106.29,351.74 L 110.12,349.79 L 113.96,359.47 L 117.79,368.7 L 121.63,370.34 L 125.46,377.78 L 129.3,378.17 L 133.13,360.71 L 136.96,357.78 L 140.8,374.37 L 144.63,375.47 L 148.47,383.84 L 152.3,378.68 L 156.14,383.4 L 159.97,384.99 L 163.8,379.87 L 167.64,377.44 L 171.47,371.85 L 175.31,372.32 L 179.14,376.23 L 182.98,380.43 L 186.81,375.52 L 190.64,364.55 L 194.48,354.73 L 198.31,345 L 202.15,326.85 L 205.98,317.8 L 209.82,315.86 L 213.65,328.08 L 217.48,336.52 L 221.32,338.14 L 225.15,343.72 L 228.99,342.85 L 232.82,345.81 L 236.66,347.25 L 240.49,317.85 L 244.32,312.06 L 248.16,306.62 L 251.99,303.54 L 255.83,308.59 L 259.66,313.96 L 263.5,313.23 L 267.33,319.36 L 271.17,314.98 L 275,317.89 L 278.83,318.1 L 282.67,314.67 L 286.5,317.61 L 290.34,316.67 L 294.17,320.39 L 298.01,321.89 L 301.84,320.94 L 305.67,317.25 L 309.51,316.31 L 313.34,314.95 L 317.18,318.64 L 321.01,324.21 L 324.85,321.81 L 328.68,317.8 L 332.51,316.76 L 336.35,313.41 L 340.18,309.17 L 344.02,309.6 L 347.85,311.11 L 351.69,319.31 L 355.52,328 L 359.35,325.09 L 363.19,325.6 L 367.02,323.56 L 370.86,317.73 L 374.69,310.79 L 378.53,303.45 L 382.36,295.78 L 386.2,291.5 L 390.03,288.94 L 393.86,288.3 L 397.7,295.16 L 401.53,298.32 L 405.37,290.65 L 409.2,287.99 L 413.04,281.91 L 416.87,277.12 L 420.7,271.98 L 424.54,276.91 L 428.37,283.1 L 432.21,279.11 L 436.04,268.58 L 439.88,294.53 L 443.71,299.98 L 447.54,289.16 L 451.38,283.89 L 455.21,283.22 L 459.05,284.96 L 462.88,282.11 L 466.72,276.86 L 470.55,274.23 L 474.38,262.86 L 478.22,266.46 L 482.05,266.55 L 485.89,269.82 L 489.72,260.57 L 493.56,263.41 L 497.39,270.23 L 501.22,274.49 L 505.06,269.29 L 508.89,253.37 L 512.73,189.51 L 516.56,152.53 L 520.4,130.31 L 524.23,113.74 L 528.07,78.09 L 531.9,103.33 L 535.73,138.72 L 539.57,140.73 L 543.4,138.96 L 547.24,147.89 L 551.07,143.43 L 554.91,154.5 L 558.74,137.37 L 562.57,150.96 L 566.41,148.97 L 570.24,120.61 L 574.08,109.2 L 577.91,103.03 L 581.75,73.58 L 585.58,91.07 L 589.41,120.74 L 593.25,134.6 L 597.08,128.06 L 600.92,142.43 L 604.75,136.57 L 608.59,145.6 L 612.42,135.27 L 616.25,131.87 L 620.09,137.68 L 623.92,154.37 L 627.76,156.48 L 631.59,148.33 L 635.43,137.95 L 639.26,128.35 L 643.09,121.65 L 646.93,137.56 L 650.76,138.11 L 654.6,134.98 L 658.43,143.1 L 662.27,149.7 L 666.1,140.04 L 669.94,147.97 L 673.77,140.62 L 677.6,145.76 L 681.44,154.37 L 685.27,159.33 L 689.11,184.81 L 692.94,158.56 L 696.78,123.04 L 700.61,126.28 L 704.44,120.96 L 708.28,126.63 L 712.11,133.27 L 715.95,122.05 L 719.78,97.65 L 723.62,84.99 L 727.45,82.65 L 731.28,85.99 L 735.12,75.24 L 738.95,85.19 L 742.79,85.19 L 746.62,75.48 L 750.46,60 L 754.29,78.72 L 758.12,80.24 L 761.96,73.35 L 765.79,92.11 L 769.63,93.59 L 773.46,101.95 L 777.3,111.19 L 781.13,114.56 L 784.96,113.29 L 788.8,114.57 L 792.63,109.1 L 796.47,108.11 L 800.3,110.94 L 804.14,111.59 L 807.97,116.06 L 811.81,128.5 L 815.64,126.55 L 819.47,115.72 L 823.31,128.93 L 827.14,128.86 L 830.98,133.64 L 834.81,135.67 L 838.65,143.87 L 842.48,139.92 L 846.31,122.45 L 850.15,127.86 L 853.98,127.85 L 857.82,131.1 L 861.65,159.78 L 865.49,172.9 L 869.32,178.55 L 873.15,186.12 L 876.99,199.07 L 880.82,206.65 L 884.66,203.72 L 888.49,182.57 L 892.33,186.77 L 896.16,175.35 L 899.99,179.54 L 903.83,169.9 L 907.66,178.6 L 911.5,161.76 L 915.33,174.59 L 919.17,195.36 L 923,188.18 L 926.83,179.49 L 930.67,190.69 L 934.5,191.97 L 938.34,194.65 L 942.17,201.42" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">7 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="148.46685985164254" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">01:00 AM</text><text x="240.4906581982725" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">07:00 AM</text><text x="332.51445654490203" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">01:00 PM</text><text x="424.538254891532" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">07:00 PM</text><text x="516.562053238162" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">01:00 AM</text><text x="608.5858515847915" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">07:00 AM</text><text x="700.6096499314212" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">01:00 PM</text><text x="845.9999999999998" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">9 Aug</text><text x="845.9999999999998" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 420.7,0 L 420.7,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="420.7" cy="149.88" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.7" cy="149.88" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="420.7" cy="180.07" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.7" cy="180.07" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="420.7" cy="271.98" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.7" cy="271.98" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="263.98" width="170.67" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="276.98047706943055" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="164.67236328125" lengthAdjust="spacing">198.863 TAOUSDT BTC</text><rect x="435.5" y="172.07" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="185.07095068522793" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,923.667 ETHUSDT BTC</text><rect x="435.5" y="141.88" width="181.68" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="154.8839060258966" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="175.68035888671875" lengthAdjust="spacing">65,091.76 BTCUSDT BTC</text><rect x="350.3" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="420.70392996042233" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">06:45 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
313
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
314
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 25s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 25s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 25s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 25s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 25s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-9011257c {
315
+ --dark-theme-hide: 1;
316
+ --light-theme-hide: 0;
317
+ --rgb244245247rgb262525: rgb(244, 245, 247);
318
+ --rgb244245247rgb545762: rgb(244, 245, 247);
319
+ --rgb210214220rgb000: rgb(210, 214, 220);
320
+ --rgb210214220rgb758599: rgb(210, 214, 220);
321
+ --rgb255255255rgb444444: rgb(255, 255, 255);
322
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
323
+ --rgb255255255rgb363636: rgb(255, 255, 255);
324
+ --rgb255255255rgb393939: rgb(255, 255, 255);
325
+ --rgb255255255rgb303030: rgb(255, 255, 255);
326
+ --rgb240254255rgb03755: rgb(240, 254, 255);
327
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
328
+ --rgb758599rgb229231235: rgb(75, 85, 99);
329
+ --rgb758599rgb180180180: rgb(75, 85, 99);
330
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
331
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
332
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
333
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
334
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
335
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
336
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
337
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
338
+ --rgb229231235rgb262525: rgb(229, 231, 235);
339
+ --rgb229231235rgb758599: rgb(229, 231, 235);
340
+ --rgb249250251rgb333333: rgb(249, 250, 251);
341
+ --rgb223046rgb244245247: rgb(22, 30, 46);
342
+ --blackrgb187187187: black;
343
+ --f9fafb212121: #f9fafb;
344
+ --161e2ef4f5f7: #161e2e;
345
+ --d2d6dc4b5563: #d2d6dc;
346
+ --nonergb303030: none;
347
+ --rgb87863rgb21699181: rgb(87, 8, 63);
348
+ }
349
+ @media (prefers-color-scheme: dark) {
350
+ :root #id-9011257c {
351
+ --dark-theme-hide: 0;
352
+ --light-theme-hide: 1;
353
+ --rgb244245247rgb262525: rgb(26, 25, 25);
354
+ --rgb244245247rgb545762: rgb(54, 57, 62);
355
+ --rgb210214220rgb000: rgb(0, 0, 0);
356
+ --rgb210214220rgb758599: rgb(75, 85, 99);
357
+ --rgb255255255rgb444444: rgb(44, 44, 44);
358
+ --rgb255255255rgb363636: rgb(36, 36, 36);
359
+ --rgb255255255rgb393939: rgb(39, 39, 39);
360
+ --rgb255255255rgb303030: rgb(30, 30, 30);
361
+ --rgb240254255rgb03755: rgb(0, 37, 55);
362
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
363
+ --rgb758599rgb229231235: rgb(229, 231, 235);
364
+ --rgb758599rgb180180180: rgb(180, 180, 180);
365
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
366
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
367
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
368
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
369
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
370
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
371
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
372
+ --rgb229231235rgb262525: rgb(26, 25, 25);
373
+ --rgb229231235rgb758599: rgb(75, 85, 99);
374
+ --rgb249250251rgb333333: rgb(33, 33, 33);
375
+ --rgb223046rgb244245247: rgb(244, 245, 247);
376
+ --blackrgb187187187: rgb(187, 187, 187);
377
+ --f9fafb212121: #212121;
378
+ --161e2ef4f5f7: #f4f5f7;
379
+ --d2d6dc4b5563: #4b5563;
380
+ --nonergb303030: rgb(30, 30, 30);
381
+ --rgb87863rgb21699181: rgb(216, 99, 181);
382
+ }
383
+ }
384
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-3" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3867835570" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-72365458" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-4230084105" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-41745994"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
385
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
386
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -112.89,472 L -112.89,371.82 L -112.89,371.82 L -107.17,422 L -101.45,349.33 L -95.73,282.79 L -90.01,238.99 L -84.29,244.95 L -78.57,236.93 L -72.85,242.59 L -67.13,256.56 L -61.41,246.95 L -55.69,237.84 L -49.97,243.51 L -44.25,211.7 L -38.53,252.08 L -32.81,280.15 L -27.09,279.45 L -21.37,310.01 L -15.65,299.24 L -9.93,304.21 L -4.21,307.1 L 1.51,303.46 L 7.23,287.01 L 12.95,286.91 L 18.67,319.94 L 24.39,308.81 L 30.11,290.26 L 35.83,279.47 L 41.55,280.19 L 47.27,280.18 L 52.99,285.86 L 58.71,293.11 L 64.43,290.1 L 70.15,273.27 L 75.87,281.72 L 81.59,275.62 L 87.31,230.57 L 93.03,208.91 L 98.75,215.02 L 104.48,227.79 L 110.2,235.38 L 115.92,206.27 L 121.64,212.69 L 127.36,222.97 L 133.08,217.67 L 138.8,214.34 L 144.52,232.13 L 150.24,236.69 L 155.96,241.79 L 161.68,244.7 L 167.4,222.17 L 173.12,222.05 L 178.84,227.21 L 184.56,244.6 L 190.28,255.3 L 196,251.46 L 201.72,246.28 L 207.44,224.57 L 213.16,229.69 L 218.88,226.59 L 224.6,214.85 L 230.32,217.46 L 236.04,230.06 L 241.76,229.97 L 247.48,222.53 L 253.2,215.91 L 258.92,219.15 L 264.64,222.08 L 270.36,237.87 L 276.08,244.22 L 281.8,250.96 L 287.52,260.41 L 293.24,225.15 L 298.96,222.75 L 304.68,218.09 L 310.4,221.47 L 316.12,217.26 L 321.84,223.31 L 327.56,222 L 333.28,205.47 L 339,168.92 L 344.72,127.42 L 350.44,126.9 L 356.16,151.19 L 361.88,166.47 L 367.6,176.53 L 373.32,173.14 L 379.04,164.13 L 384.76,172.38 L 390.48,191.82 L 396.2,179.39 L 401.92,162.48 L 407.64,151.72 L 413.36,140.83 L 419.08,145.34 L 424.8,151.87 L 430.52,184.98 L 436.24,191.7 L 441.96,193.59 L 447.68,203.13 L 453.4,211.02 L 459.12,207.25 L 464.84,185.85 L 470.56,177.29 L 476.28,182.13 L 482,178.5 L 487.72,174.72 L 493.44,181.07 L 499.16,198.77 L 504.88,197.17 L 510.61,204.61 L 516.33,219.65 L 522.05,228 L 527.77,239.29 L 533.49,252.68 L 539.21,267.34 L 544.93,253.41 L 550.65,252.32 L 556.37,250.84 L 562.09,254.17 L 567.81,251.13 L 573.53,245.36 L 579.25,246.66 L 584.97,234.16 L 590.69,267.5 L 596.41,304.27 L 602.13,311.59 L 607.85,327.96 L 613.57,333.94 L 619.29,341.41 L 625.01,358.24 L 630.73,361.31 L 636.45,381.38 L 642.17,368.24 L 647.89,365.34 L 653.61,361.07 L 659.33,350.55 L 665.05,351.06 L 670.77,364.88 L 676.49,369.58 L 682.21,370.12 L 687.93,371.44 L 693.65,369.85 L 699.37,356.7 L 705.09,336.85 L 710.81,324.05 L 716.53,322.2 L 722.25,326.48 L 727.97,332.39 L 733.69,337.59 L 739.41,346.14 L 745.13,291.85 L 750.85,286.75 L 756.57,317.89 L 762.29,354.39 L 768.01,346.15 L 773.73,347.47 L 779.45,354.02 L 785.17,340.09 L 790.89,291.82 L 796.61,256.83 L 802.33,265.17 L 808.05,249.17 L 813.77,244.61 L 819.49,242.17 L 825.21,236.28 L 830.93,241.75 L 836.65,273.44 L 842.37,264.26 L 848.09,267.14 L 853.81,265.41 L 859.53,220.09 L 865.25,193.85 L 870.97,117.92 L 876.69,79.35 L 882.41,76.72 L 888.13,94.21 L 893.85,99.85 L 899.57,88.85 L 905.29,60.65 L 911.01,68 L 916.74,69.64 L 922.46,70.33 L 928.18,60 L 933.9,80.7 L 939.62,65.33 L 945.34,60.93 L 951.06,74.1 L 956.78,68.99 L 962.5,68.73 L 968.22,85.59 L 973.94,85.57 L 979.66,88.79 L 979.66,472 Z" fill="url(#gradient-3867835570)" opacity="1"/><path d="M -112.89,371.82 L -107.17,422 L -101.45,349.33 L -95.73,282.79 L -90.01,238.99 L -84.29,244.95 L -78.57,236.93 L -72.85,242.59 L -67.13,256.56 L -61.41,246.95 L -55.69,237.84 L -49.97,243.51 L -44.25,211.7 L -38.53,252.08 L -32.81,280.15 L -27.09,279.45 L -21.37,310.01 L -15.65,299.24 L -9.93,304.21 L -4.21,307.1 L 1.51,303.46 L 7.23,287.01 L 12.95,286.91 L 18.67,319.94 L 24.39,308.81 L 30.11,290.26 L 35.83,279.47 L 41.55,280.19 L 47.27,280.18 L 52.99,285.86 L 58.71,293.11 L 64.43,290.1 L 70.15,273.27 L 75.87,281.72 L 81.59,275.62 L 87.31,230.57 L 93.03,208.91 L 98.75,215.02 L 104.48,227.79 L 110.2,235.38 L 115.92,206.27 L 121.64,212.69 L 127.36,222.97 L 133.08,217.67 L 138.8,214.34 L 144.52,232.13 L 150.24,236.69 L 155.96,241.79 L 161.68,244.7 L 167.4,222.17 L 173.12,222.05 L 178.84,227.21 L 184.56,244.6 L 190.28,255.3 L 196,251.46 L 201.72,246.28 L 207.44,224.57 L 213.16,229.69 L 218.88,226.59 L 224.6,214.85 L 230.32,217.46 L 236.04,230.06 L 241.76,229.97 L 247.48,222.53 L 253.2,215.91 L 258.92,219.15 L 264.64,222.08 L 270.36,237.87 L 276.08,244.22 L 281.8,250.96 L 287.52,260.41 L 293.24,225.15 L 298.96,222.75 L 304.68,218.09 L 310.4,221.47 L 316.12,217.26 L 321.84,223.31 L 327.56,222 L 333.28,205.47 L 339,168.92 L 344.72,127.42 L 350.44,126.9 L 356.16,151.19 L 361.88,166.47 L 367.6,176.53 L 373.32,173.14 L 379.04,164.13 L 384.76,172.38 L 390.48,191.82 L 396.2,179.39 L 401.92,162.48 L 407.64,151.72 L 413.36,140.83 L 419.08,145.34 L 424.8,151.87 L 430.52,184.98 L 436.24,191.7 L 441.96,193.59 L 447.68,203.13 L 453.4,211.02 L 459.12,207.25 L 464.84,185.85 L 470.56,177.29 L 476.28,182.13 L 482,178.5 L 487.72,174.72 L 493.44,181.07 L 499.16,198.77 L 504.88,197.17 L 510.61,204.61 L 516.33,219.65 L 522.05,228 L 527.77,239.29 L 533.49,252.68 L 539.21,267.34 L 544.93,253.41 L 550.65,252.32 L 556.37,250.84 L 562.09,254.17 L 567.81,251.13 L 573.53,245.36 L 579.25,246.66 L 584.97,234.16 L 590.69,267.5 L 596.41,304.27 L 602.13,311.59 L 607.85,327.96 L 613.57,333.94 L 619.29,341.41 L 625.01,358.24 L 630.73,361.31 L 636.45,381.38 L 642.17,368.24 L 647.89,365.34 L 653.61,361.07 L 659.33,350.55 L 665.05,351.06 L 670.77,364.88 L 676.49,369.58 L 682.21,370.12 L 687.93,371.44 L 693.65,369.85 L 699.37,356.7 L 705.09,336.85 L 710.81,324.05 L 716.53,322.2 L 722.25,326.48 L 727.97,332.39 L 733.69,337.59 L 739.41,346.14 L 745.13,291.85 L 750.85,286.75 L 756.57,317.89 L 762.29,354.39 L 768.01,346.15 L 773.73,347.47 L 779.45,354.02 L 785.17,340.09 L 790.89,291.82 L 796.61,256.83 L 802.33,265.17 L 808.05,249.17 L 813.77,244.61 L 819.49,242.17 L 825.21,236.28 L 830.93,241.75 L 836.65,273.44 L 842.37,264.26 L 848.09,267.14 L 853.81,265.41 L 859.53,220.09 L 865.25,193.85 L 870.97,117.92 L 876.69,79.35 L 882.41,76.72 L 888.13,94.21 L 893.85,99.85 L 899.57,88.85 L 905.29,60.65 L 911.01,68 L 916.74,69.64 L 922.46,70.33 L 928.18,60 L 933.9,80.7 L 939.62,65.33 L 945.34,60.93 L 951.06,74.1 L 956.78,68.99 L 962.5,68.73 L 968.22,85.59 L 973.94,85.57 L 979.66,88.79" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -112.89,472 L -112.89,365.49 L -112.89,365.49 L -107.17,422 L -101.45,336.23 L -95.73,268.12 L -90.01,232.47 L -84.29,220.02 L -78.57,225.91 L -72.85,244.87 L -67.13,276.38 L -61.41,287.12 L -55.69,295.16 L -49.97,310.99 L -44.25,278.8 L -38.53,246.56 L -32.81,279.91 L -27.09,278.29 L -21.37,297.73 L -15.65,298.5 L -9.93,280.23 L -4.21,283.38 L 1.51,286.57 L 7.23,291.09 L 12.95,311.07 L 18.67,315.28 L 24.39,300.73 L 30.11,304.89 L 35.83,294.25 L 41.55,287.22 L 47.27,287.06 L 52.99,297.47 L 58.71,308.27 L 64.43,326.54 L 70.15,317.52 L 75.87,328.76 L 81.59,305.87 L 87.31,281.8 L 93.03,233.51 L 98.75,235.07 L 104.48,243.8 L 110.2,249.81 L 115.92,233.43 L 121.64,243.01 L 127.36,249.59 L 133.08,253.25 L 138.8,230.18 L 144.52,253.73 L 150.24,240.99 L 155.96,256.03 L 161.68,259.57 L 167.4,250.48 L 173.12,265.78 L 178.84,271.69 L 184.56,290.31 L 190.28,293.09 L 196,291.06 L 201.72,279.96 L 207.44,251.08 L 213.16,246.62 L 218.88,250.97 L 224.6,257.67 L 230.32,198.17 L 236.04,208.34 L 241.76,197.97 L 247.48,172.64 L 253.2,168.52 L 258.92,174.23 L 264.64,161.68 L 270.36,184.07 L 276.08,195.76 L 281.8,186.75 L 287.52,186.54 L 293.24,176.14 L 298.96,188.98 L 304.68,189.72 L 310.4,193.12 L 316.12,203.38 L 321.84,211.41 L 327.56,201.86 L 333.28,175.76 L 339,147.73 L 344.72,119.43 L 350.44,112.09 L 356.16,129.05 L 361.88,134.81 L 367.6,155.89 L 373.32,139.99 L 379.04,125.3 L 384.76,136.89 L 390.48,152.54 L 396.2,150.07 L 401.92,142.23 L 407.64,132.43 L 413.36,94.89 L 419.08,106.28 L 424.8,130.61 L 430.52,170.25 L 436.24,172.54 L 441.96,170.02 L 447.68,168.16 L 453.4,174.49 L 459.12,190.38 L 464.84,176.95 L 470.56,189.94 L 476.28,191.04 L 482,176.26 L 487.72,181.04 L 493.44,183.9 L 499.16,175.14 L 504.88,162.61 L 510.61,168.25 L 516.33,190.56 L 522.05,190.1 L 527.77,198.73 L 533.49,220.95 L 539.21,269.29 L 544.93,255.34 L 550.65,229.45 L 556.37,227.83 L 562.09,245.97 L 567.81,232.42 L 573.53,233.24 L 579.25,242.53 L 584.97,209.13 L 590.69,240.02 L 596.41,274.38 L 602.13,271.51 L 607.85,268.12 L 613.57,267.9 L 619.29,274.34 L 625.01,294.45 L 630.73,309.02 L 636.45,320.6 L 642.17,305.12 L 647.89,303.93 L 653.61,301.1 L 659.33,296.63 L 665.05,311.02 L 670.77,319.81 L 676.49,310.94 L 682.21,299.94 L 687.93,303.13 L 693.65,304.94 L 699.37,290.68 L 705.09,256.54 L 710.81,235.09 L 716.53,217.73 L 722.25,213.22 L 727.97,234.44 L 733.69,239.87 L 739.41,234.02 L 745.13,143.02 L 750.85,159.06 L 756.57,206.95 L 762.29,281.01 L 768.01,275.1 L 773.73,298.73 L 779.45,273.36 L 785.17,215.54 L 790.89,155.51 L 796.61,169.13 L 802.33,189.77 L 808.05,181.6 L 813.77,181.34 L 819.49,173.81 L 825.21,177.44 L 830.93,196.61 L 836.65,241.51 L 842.37,233.95 L 848.09,233.98 L 853.81,238.76 L 859.53,207.56 L 865.25,129.15 L 870.97,119.44 L 876.69,131.05 L 882.41,108.25 L 888.13,115.67 L 893.85,111.08 L 899.57,109.31 L 905.29,83.65 L 911.01,60 L 916.74,70.27 L 922.46,62.35 L 928.18,76.31 L 933.9,117.48 L 939.62,109.78 L 945.34,100.66 L 951.06,107.92 L 956.78,104.85 L 962.5,106.75 L 968.22,126.85 L 973.94,125.64 L 979.66,160.12 L 979.66,472 Z" fill="url(#gradient-72365458)" opacity="1"/><path d="M -112.89,365.49 L -107.17,422 L -101.45,336.23 L -95.73,268.12 L -90.01,232.47 L -84.29,220.02 L -78.57,225.91 L -72.85,244.87 L -67.13,276.38 L -61.41,287.12 L -55.69,295.16 L -49.97,310.99 L -44.25,278.8 L -38.53,246.56 L -32.81,279.91 L -27.09,278.29 L -21.37,297.73 L -15.65,298.5 L -9.93,280.23 L -4.21,283.38 L 1.51,286.57 L 7.23,291.09 L 12.95,311.07 L 18.67,315.28 L 24.39,300.73 L 30.11,304.89 L 35.83,294.25 L 41.55,287.22 L 47.27,287.06 L 52.99,297.47 L 58.71,308.27 L 64.43,326.54 L 70.15,317.52 L 75.87,328.76 L 81.59,305.87 L 87.31,281.8 L 93.03,233.51 L 98.75,235.07 L 104.48,243.8 L 110.2,249.81 L 115.92,233.43 L 121.64,243.01 L 127.36,249.59 L 133.08,253.25 L 138.8,230.18 L 144.52,253.73 L 150.24,240.99 L 155.96,256.03 L 161.68,259.57 L 167.4,250.48 L 173.12,265.78 L 178.84,271.69 L 184.56,290.31 L 190.28,293.09 L 196,291.06 L 201.72,279.96 L 207.44,251.08 L 213.16,246.62 L 218.88,250.97 L 224.6,257.67 L 230.32,198.17 L 236.04,208.34 L 241.76,197.97 L 247.48,172.64 L 253.2,168.52 L 258.92,174.23 L 264.64,161.68 L 270.36,184.07 L 276.08,195.76 L 281.8,186.75 L 287.52,186.54 L 293.24,176.14 L 298.96,188.98 L 304.68,189.72 L 310.4,193.12 L 316.12,203.38 L 321.84,211.41 L 327.56,201.86 L 333.28,175.76 L 339,147.73 L 344.72,119.43 L 350.44,112.09 L 356.16,129.05 L 361.88,134.81 L 367.6,155.89 L 373.32,139.99 L 379.04,125.3 L 384.76,136.89 L 390.48,152.54 L 396.2,150.07 L 401.92,142.23 L 407.64,132.43 L 413.36,94.89 L 419.08,106.28 L 424.8,130.61 L 430.52,170.25 L 436.24,172.54 L 441.96,170.02 L 447.68,168.16 L 453.4,174.49 L 459.12,190.38 L 464.84,176.95 L 470.56,189.94 L 476.28,191.04 L 482,176.26 L 487.72,181.04 L 493.44,183.9 L 499.16,175.14 L 504.88,162.61 L 510.61,168.25 L 516.33,190.56 L 522.05,190.1 L 527.77,198.73 L 533.49,220.95 L 539.21,269.29 L 544.93,255.34 L 550.65,229.45 L 556.37,227.83 L 562.09,245.97 L 567.81,232.42 L 573.53,233.24 L 579.25,242.53 L 584.97,209.13 L 590.69,240.02 L 596.41,274.38 L 602.13,271.51 L 607.85,268.12 L 613.57,267.9 L 619.29,274.34 L 625.01,294.45 L 630.73,309.02 L 636.45,320.6 L 642.17,305.12 L 647.89,303.93 L 653.61,301.1 L 659.33,296.63 L 665.05,311.02 L 670.77,319.81 L 676.49,310.94 L 682.21,299.94 L 687.93,303.13 L 693.65,304.94 L 699.37,290.68 L 705.09,256.54 L 710.81,235.09 L 716.53,217.73 L 722.25,213.22 L 727.97,234.44 L 733.69,239.87 L 739.41,234.02 L 745.13,143.02 L 750.85,159.06 L 756.57,206.95 L 762.29,281.01 L 768.01,275.1 L 773.73,298.73 L 779.45,273.36 L 785.17,215.54 L 790.89,155.51 L 796.61,169.13 L 802.33,189.77 L 808.05,181.6 L 813.77,181.34 L 819.49,173.81 L 825.21,177.44 L 830.93,196.61 L 836.65,241.51 L 842.37,233.95 L 848.09,233.98 L 853.81,238.76 L 859.53,207.56 L 865.25,129.15 L 870.97,119.44 L 876.69,131.05 L 882.41,108.25 L 888.13,115.67 L 893.85,111.08 L 899.57,109.31 L 905.29,83.65 L 911.01,60 L 916.74,70.27 L 922.46,62.35 L 928.18,76.31 L 933.9,117.48 L 939.62,109.78 L 945.34,100.66 L 951.06,107.92 L 956.78,104.85 L 962.5,106.75 L 968.22,126.85 L 973.94,125.64 L 979.66,160.12" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -112.89,472 L -112.89,417.31 L -112.89,417.31 L -107.17,422 L -101.45,408.02 L -95.73,375.22 L -90.01,379.08 L -84.29,374.71 L -78.57,374.08 L -72.85,372.66 L -67.13,374.42 L -61.41,365.58 L -55.69,350.61 L -49.97,355.62 L -44.25,353.64 L -38.53,363.46 L -32.81,372.81 L -27.09,374.47 L -21.37,382.01 L -15.65,382.4 L -9.93,364.71 L -4.21,361.74 L 1.51,378.55 L 7.23,379.67 L 12.95,388.15 L 18.67,382.93 L 24.39,387.7 L 30.11,389.32 L 35.83,384.12 L 41.55,381.66 L 47.27,376 L 52.99,376.48 L 58.71,380.44 L 64.43,384.7 L 70.15,379.72 L 75.87,368.6 L 81.59,358.65 L 87.31,348.8 L 93.03,330.4 L 98.75,321.23 L 104.48,319.27 L 110.2,331.65 L 115.92,340.2 L 121.64,341.84 L 127.36,347.5 L 133.08,346.61 L 138.8,349.62 L 144.52,351.08 L 150.24,321.29 L 155.96,315.41 L 161.68,309.91 L 167.4,306.78 L 173.12,311.9 L 178.84,317.34 L 184.56,316.6 L 190.28,322.81 L 196,318.37 L 201.72,321.32 L 207.44,321.53 L 213.16,318.06 L 218.88,321.04 L 224.6,320.09 L 230.32,323.85 L 236.04,325.37 L 241.76,324.41 L 247.48,320.67 L 253.2,319.72 L 258.92,318.34 L 264.64,322.08 L 270.36,327.73 L 276.08,325.3 L 281.8,321.23 L 287.52,320.18 L 293.24,316.78 L 298.96,312.48 L 304.68,312.93 L 310.4,314.45 L 316.12,322.76 L 321.84,331.57 L 327.56,328.62 L 333.28,329.14 L 339,327.07 L 344.72,321.16 L 350.44,314.12 L 356.16,306.69 L 361.88,298.92 L 367.6,294.58 L 373.32,291.99 L 379.04,291.34 L 384.76,298.29 L 390.48,301.49 L 396.2,293.72 L 401.92,291.03 L 407.64,284.87 L 413.36,280.01 L 419.08,274.8 L 424.8,279.8 L 430.52,286.06 L 436.24,282.03 L 441.96,271.35 L 447.68,297.65 L 453.4,303.17 L 459.12,292.21 L 464.84,286.87 L 470.56,286.19 L 476.28,287.95 L 482,285.06 L 487.72,279.75 L 493.44,277.08 L 499.16,265.56 L 504.88,269.2 L 510.61,269.29 L 516.33,272.61 L 522.05,263.24 L 527.77,266.12 L 533.49,273.03 L 539.21,277.34 L 544.93,272.08 L 550.65,255.95 L 556.37,191.24 L 562.09,153.76 L 567.81,131.25 L 573.53,114.45 L 579.25,78.33 L 584.97,103.91 L 590.69,139.76 L 596.41,141.81 L 602.13,140.01 L 607.85,149.06 L 613.57,144.54 L 619.29,155.75 L 625.01,138.4 L 630.73,152.17 L 636.45,150.15 L 642.17,121.42 L 647.89,109.86 L 653.61,103.61 L 659.33,73.76 L 665.05,91.48 L 670.77,121.55 L 676.49,135.6 L 682.21,128.97 L 687.93,143.53 L 693.65,137.59 L 699.37,146.74 L 705.09,136.27 L 710.81,132.82 L 716.53,138.71 L 722.25,155.62 L 727.97,157.76 L 733.69,149.5 L 739.41,138.98 L 745.13,129.26 L 750.85,122.47 L 756.57,138.59 L 762.29,139.15 L 768.01,135.98 L 773.73,144.2 L 779.45,150.9 L 785.17,141.11 L 790.89,149.14 L 796.61,141.69 L 802.33,146.9 L 808.05,155.62 L 813.77,160.65 L 819.49,186.47 L 825.21,159.87 L 830.93,123.88 L 836.65,127.16 L 842.37,121.77 L 848.09,127.51 L 853.81,134.24 L 859.53,122.88 L 865.25,98.15 L 870.97,85.33 L 876.69,82.96 L 882.41,86.34 L 888.13,75.44 L 893.85,85.52 L 899.57,85.52 L 905.29,75.69 L 911.01,60 L 916.74,78.97 L 922.46,80.51 L 928.18,73.53 L 933.9,92.54 L 939.62,94.04 L 945.34,102.51 L 951.06,111.87 L 956.78,115.29 L 962.5,114 L 968.22,115.3 L 973.94,109.75 L 979.66,108.75 L 979.66,472 Z" fill="url(#gradient-4230084105)" opacity="1"/><path d="M -112.89,417.31 L -107.17,422 L -101.45,408.02 L -95.73,375.22 L -90.01,379.08 L -84.29,374.71 L -78.57,374.08 L -72.85,372.66 L -67.13,374.42 L -61.41,365.58 L -55.69,350.61 L -49.97,355.62 L -44.25,353.64 L -38.53,363.46 L -32.81,372.81 L -27.09,374.47 L -21.37,382.01 L -15.65,382.4 L -9.93,364.71 L -4.21,361.74 L 1.51,378.55 L 7.23,379.67 L 12.95,388.15 L 18.67,382.93 L 24.39,387.7 L 30.11,389.32 L 35.83,384.12 L 41.55,381.66 L 47.27,376 L 52.99,376.48 L 58.71,380.44 L 64.43,384.7 L 70.15,379.72 L 75.87,368.6 L 81.59,358.65 L 87.31,348.8 L 93.03,330.4 L 98.75,321.23 L 104.48,319.27 L 110.2,331.65 L 115.92,340.2 L 121.64,341.84 L 127.36,347.5 L 133.08,346.61 L 138.8,349.62 L 144.52,351.08 L 150.24,321.29 L 155.96,315.41 L 161.68,309.91 L 167.4,306.78 L 173.12,311.9 L 178.84,317.34 L 184.56,316.6 L 190.28,322.81 L 196,318.37 L 201.72,321.32 L 207.44,321.53 L 213.16,318.06 L 218.88,321.04 L 224.6,320.09 L 230.32,323.85 L 236.04,325.37 L 241.76,324.41 L 247.48,320.67 L 253.2,319.72 L 258.92,318.34 L 264.64,322.08 L 270.36,327.73 L 276.08,325.3 L 281.8,321.23 L 287.52,320.18 L 293.24,316.78 L 298.96,312.48 L 304.68,312.93 L 310.4,314.45 L 316.12,322.76 L 321.84,331.57 L 327.56,328.62 L 333.28,329.14 L 339,327.07 L 344.72,321.16 L 350.44,314.12 L 356.16,306.69 L 361.88,298.92 L 367.6,294.58 L 373.32,291.99 L 379.04,291.34 L 384.76,298.29 L 390.48,301.49 L 396.2,293.72 L 401.92,291.03 L 407.64,284.87 L 413.36,280.01 L 419.08,274.8 L 424.8,279.8 L 430.52,286.06 L 436.24,282.03 L 441.96,271.35 L 447.68,297.65 L 453.4,303.17 L 459.12,292.21 L 464.84,286.87 L 470.56,286.19 L 476.28,287.95 L 482,285.06 L 487.72,279.75 L 493.44,277.08 L 499.16,265.56 L 504.88,269.2 L 510.61,269.29 L 516.33,272.61 L 522.05,263.24 L 527.77,266.12 L 533.49,273.03 L 539.21,277.34 L 544.93,272.08 L 550.65,255.95 L 556.37,191.24 L 562.09,153.76 L 567.81,131.25 L 573.53,114.45 L 579.25,78.33 L 584.97,103.91 L 590.69,139.76 L 596.41,141.81 L 602.13,140.01 L 607.85,149.06 L 613.57,144.54 L 619.29,155.75 L 625.01,138.4 L 630.73,152.17 L 636.45,150.15 L 642.17,121.42 L 647.89,109.86 L 653.61,103.61 L 659.33,73.76 L 665.05,91.48 L 670.77,121.55 L 676.49,135.6 L 682.21,128.97 L 687.93,143.53 L 693.65,137.59 L 699.37,146.74 L 705.09,136.27 L 710.81,132.82 L 716.53,138.71 L 722.25,155.62 L 727.97,157.76 L 733.69,149.5 L 739.41,138.98 L 745.13,129.26 L 750.85,122.47 L 756.57,138.59 L 762.29,139.15 L 768.01,135.98 L 773.73,144.2 L 779.45,150.9 L 785.17,141.11 L 790.89,149.14 L 796.61,141.69 L 802.33,146.9 L 808.05,155.62 L 813.77,160.65 L 819.49,186.47 L 825.21,159.87 L 830.93,123.88 L 836.65,127.16 L 842.37,121.77 L 848.09,127.51 L 853.81,134.24 L 859.53,122.88 L 865.25,98.15 L 870.97,85.33 L 876.69,82.96 L 882.41,86.34 L 888.13,75.44 L 893.85,85.52 L 899.57,85.52 L 905.29,75.69 L 911.01,60 L 916.74,78.97 L 922.46,80.51 L 928.18,73.53 L 933.9,92.54 L 939.62,94.04 L 945.34,102.51 L 951.06,111.87 L 956.78,115.29 L 962.5,114 L 968.22,115.3 L 973.94,109.75 L 979.66,108.75" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="195.99735670037626" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">09:00 AM</text><text x="333.2807318446387" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">03:00 PM</text><text x="470.5641069889007" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">09:00 PM</text><text x="607.8474821331629" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">03:00 AM</text><text x="745.1308572774255" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">09:00 AM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">9 Aug</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 424.8,0 L 424.8,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="424.8" cy="151.87" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.8" cy="151.87" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="424.8" cy="130.61" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.8" cy="130.61" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="424.8" cy="279.8" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.8" cy="279.8" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="271.8" width="170.67" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="284.8015250701385" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="164.67236328125" lengthAdjust="spacing">198.607 TAOUSDT BTC</text><rect x="435.5" y="150.61" width="190.7" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="163.60554851429504" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="184.704345703125" lengthAdjust="spacing">65,082.113 BTCUSDT BTC</text><rect x="435.5" y="122.61" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="135.60554851429504" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,922.395 ETHUSDT BTC</text><rect x="354.4" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="424.8029819408134" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">07:00 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
387
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
388
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 28s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 28s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 28s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 28s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 28s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-41745994 {
389
+ --dark-theme-hide: 1;
390
+ --light-theme-hide: 0;
391
+ --rgb244245247rgb262525: rgb(244, 245, 247);
392
+ --rgb244245247rgb545762: rgb(244, 245, 247);
393
+ --rgb210214220rgb000: rgb(210, 214, 220);
394
+ --rgb210214220rgb758599: rgb(210, 214, 220);
395
+ --rgb255255255rgb444444: rgb(255, 255, 255);
396
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
397
+ --rgb255255255rgb363636: rgb(255, 255, 255);
398
+ --rgb255255255rgb393939: rgb(255, 255, 255);
399
+ --rgb255255255rgb303030: rgb(255, 255, 255);
400
+ --rgb240254255rgb03755: rgb(240, 254, 255);
401
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
402
+ --rgb758599rgb229231235: rgb(75, 85, 99);
403
+ --rgb758599rgb180180180: rgb(75, 85, 99);
404
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
405
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
406
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
407
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
408
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
409
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
410
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
411
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
412
+ --rgb229231235rgb262525: rgb(229, 231, 235);
413
+ --rgb229231235rgb758599: rgb(229, 231, 235);
414
+ --rgb249250251rgb333333: rgb(249, 250, 251);
415
+ --rgb223046rgb244245247: rgb(22, 30, 46);
416
+ --blackrgb187187187: black;
417
+ --f9fafb212121: #f9fafb;
418
+ --161e2ef4f5f7: #161e2e;
419
+ --d2d6dc4b5563: #d2d6dc;
420
+ --nonergb303030: none;
421
+ --rgb87863rgb21699181: rgb(87, 8, 63);
422
+ }
423
+ @media (prefers-color-scheme: dark) {
424
+ :root #id-41745994 {
425
+ --dark-theme-hide: 0;
426
+ --light-theme-hide: 1;
427
+ --rgb244245247rgb262525: rgb(26, 25, 25);
428
+ --rgb244245247rgb545762: rgb(54, 57, 62);
429
+ --rgb210214220rgb000: rgb(0, 0, 0);
430
+ --rgb210214220rgb758599: rgb(75, 85, 99);
431
+ --rgb255255255rgb444444: rgb(44, 44, 44);
432
+ --rgb255255255rgb363636: rgb(36, 36, 36);
433
+ --rgb255255255rgb393939: rgb(39, 39, 39);
434
+ --rgb255255255rgb303030: rgb(30, 30, 30);
435
+ --rgb240254255rgb03755: rgb(0, 37, 55);
436
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
437
+ --rgb758599rgb229231235: rgb(229, 231, 235);
438
+ --rgb758599rgb180180180: rgb(180, 180, 180);
439
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
440
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
441
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
442
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
443
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
444
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
445
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
446
+ --rgb229231235rgb262525: rgb(26, 25, 25);
447
+ --rgb229231235rgb758599: rgb(75, 85, 99);
448
+ --rgb249250251rgb333333: rgb(33, 33, 33);
449
+ --rgb223046rgb244245247: rgb(244, 245, 247);
450
+ --blackrgb187187187: rgb(187, 187, 187);
451
+ --f9fafb212121: #212121;
452
+ --161e2ef4f5f7: #f4f5f7;
453
+ --d2d6dc4b5563: #4b5563;
454
+ --nonergb303030: rgb(30, 30, 30);
455
+ --rgb87863rgb21699181: rgb(216, 99, 181);
456
+ }
457
+ }
458
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-4" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3750928616" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2976915275" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-1507745338" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-e246652d"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
459
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
460
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -163.61,472 L -163.61,292.38 L -163.61,292.38 L -155.08,277.03 L -146.54,278.06 L -138.01,278.04 L -129.48,286.12 L -120.94,296.44 L -112.41,292.16 L -103.88,268.21 L -95.34,280.24 L -86.81,271.55 L -78.28,207.47 L -69.74,176.66 L -61.21,185.35 L -52.68,203.52 L -44.14,214.32 L -35.61,172.91 L -27.07,182.04 L -18.54,196.66 L -10.01,189.12 L -1.47,184.38 L 7.06,209.69 L 15.59,216.17 L 24.13,223.43 L 32.66,227.58 L 41.19,195.52 L 49.73,195.36 L 58.26,202.7 L 66.79,227.43 L 75.33,242.65 L 83.86,237.18 L 92.39,229.82 L 100.93,198.93 L 109.46,206.22 L 117.99,201.81 L 126.53,185.12 L 135.06,188.83 L 143.59,206.74 L 152.13,206.62 L 160.66,196.03 L 169.19,186.62 L 177.73,191.22 L 186.26,195.4 L 194.79,217.86 L 203.33,226.89 L 211.86,236.48 L 220.4,249.93 L 228.93,199.76 L 237.46,196.35 L 246,189.71 L 254.53,194.53 L 263.06,188.54 L 271.6,197.15 L 280.13,195.28 L 288.66,171.77 L 297.2,119.77 L 305.73,60.74 L 314.26,60 L 322.8,94.56 L 331.33,116.29 L 339.86,130.6 L 348.4,125.78 L 356.93,112.96 L 365.46,124.69 L 374,152.35 L 382.53,134.66 L 391.06,110.61 L 399.6,95.31 L 408.13,79.82 L 416.66,86.23 L 425.2,95.52 L 433.73,142.62 L 442.26,152.19 L 450.8,154.87 L 459.33,168.45 L 467.87,179.67 L 476.4,174.29 L 484.93,143.86 L 493.47,131.68 L 502,138.57 L 510.53,133.4 L 519.07,128.02 L 527.6,137.06 L 536.13,162.24 L 544.67,159.96 L 553.2,170.54 L 561.73,191.93 L 570.27,203.82 L 578.8,219.88 L 587.33,238.92 L 595.87,259.79 L 604.4,239.97 L 612.93,238.41 L 621.47,236.31 L 630,241.04 L 638.53,236.72 L 647.07,228.51 L 655.6,230.37 L 664.13,212.58 L 672.67,260 L 681.2,312.31 L 689.73,322.73 L 698.27,346.02 L 706.8,354.52 L 715.34,365.14 L 723.87,389.09 L 732.4,393.46 L 740.94,422 L 749.47,403.31 L 758,399.19 L 766.54,393.11 L 775.07,378.14 L 783.6,378.87 L 792.14,398.54 L 800.67,405.22 L 809.2,405.99 L 817.74,407.86 L 826.27,405.61 L 834.8,386.89 L 843.34,358.66 L 851.87,340.46 L 860.4,337.81 L 868.94,343.91 L 877.47,352.31 L 886,359.71 L 894.54,371.87 L 903.07,294.65 L 911.6,287.39 L 920.14,331.69 L 928.67,383.61 L 937.2,371.89 L 945.74,373.76 L 954.27,383.09 L 962.81,363.27 L 971.34,294.6 L 979.87,244.83 L 988.41,256.69 L 996.94,233.94 L 1005.47,227.44 L 1014.01,223.98 L 1022.54,215.6 L 1031.07,223.38 L 1031.07,472 Z" fill="url(#gradient-3750928616)" opacity="1"/><path d="M -163.61,292.38 L -155.08,277.03 L -146.54,278.06 L -138.01,278.04 L -129.48,286.12 L -120.94,296.44 L -112.41,292.16 L -103.88,268.21 L -95.34,280.24 L -86.81,271.55 L -78.28,207.47 L -69.74,176.66 L -61.21,185.35 L -52.68,203.52 L -44.14,214.32 L -35.61,172.91 L -27.07,182.04 L -18.54,196.66 L -10.01,189.12 L -1.47,184.38 L 7.06,209.69 L 15.59,216.17 L 24.13,223.43 L 32.66,227.58 L 41.19,195.52 L 49.73,195.36 L 58.26,202.7 L 66.79,227.43 L 75.33,242.65 L 83.86,237.18 L 92.39,229.82 L 100.93,198.93 L 109.46,206.22 L 117.99,201.81 L 126.53,185.12 L 135.06,188.83 L 143.59,206.74 L 152.13,206.62 L 160.66,196.03 L 169.19,186.62 L 177.73,191.22 L 186.26,195.4 L 194.79,217.86 L 203.33,226.89 L 211.86,236.48 L 220.4,249.93 L 228.93,199.76 L 237.46,196.35 L 246,189.71 L 254.53,194.53 L 263.06,188.54 L 271.6,197.15 L 280.13,195.28 L 288.66,171.77 L 297.2,119.77 L 305.73,60.74 L 314.26,60 L 322.8,94.56 L 331.33,116.29 L 339.86,130.6 L 348.4,125.78 L 356.93,112.96 L 365.46,124.69 L 374,152.35 L 382.53,134.66 L 391.06,110.61 L 399.6,95.31 L 408.13,79.82 L 416.66,86.23 L 425.2,95.52 L 433.73,142.62 L 442.26,152.19 L 450.8,154.87 L 459.33,168.45 L 467.87,179.67 L 476.4,174.29 L 484.93,143.86 L 493.47,131.68 L 502,138.57 L 510.53,133.4 L 519.07,128.02 L 527.6,137.06 L 536.13,162.24 L 544.67,159.96 L 553.2,170.54 L 561.73,191.93 L 570.27,203.82 L 578.8,219.88 L 587.33,238.92 L 595.87,259.79 L 604.4,239.97 L 612.93,238.41 L 621.47,236.31 L 630,241.04 L 638.53,236.72 L 647.07,228.51 L 655.6,230.37 L 664.13,212.58 L 672.67,260 L 681.2,312.31 L 689.73,322.73 L 698.27,346.02 L 706.8,354.52 L 715.34,365.14 L 723.87,389.09 L 732.4,393.46 L 740.94,422 L 749.47,403.31 L 758,399.19 L 766.54,393.11 L 775.07,378.14 L 783.6,378.87 L 792.14,398.54 L 800.67,405.22 L 809.2,405.99 L 817.74,407.86 L 826.27,405.61 L 834.8,386.89 L 843.34,358.66 L 851.87,340.46 L 860.4,337.81 L 868.94,343.91 L 877.47,352.31 L 886,359.71 L 894.54,371.87 L 903.07,294.65 L 911.6,287.39 L 920.14,331.69 L 928.67,383.61 L 937.2,371.89 L 945.74,373.76 L 954.27,383.09 L 962.81,363.27 L 971.34,294.6 L 979.87,244.83 L 988.41,256.69 L 996.94,233.94 L 1005.47,227.44 L 1014.01,223.98 L 1022.54,215.6 L 1031.07,223.38" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -163.61,472 L -163.61,385.05 L -163.61,385.05 L -155.08,368.58 L -146.54,357.71 L -138.01,357.45 L -129.48,373.57 L -120.94,390.28 L -112.41,418.57 L -103.88,404.6 L -95.34,422 L -86.81,386.57 L -78.28,349.3 L -69.74,274.56 L -61.21,276.98 L -52.68,290.5 L -44.14,299.79 L -35.61,274.44 L -27.07,289.27 L -18.54,299.45 L -10.01,305.11 L -1.47,269.41 L 7.06,305.86 L 15.59,286.14 L 24.13,309.42 L 32.66,314.9 L 41.19,300.83 L 49.73,324.51 L 58.26,333.66 L 66.79,362.48 L 75.33,366.78 L 83.86,363.65 L 92.39,346.46 L 100.93,301.76 L 109.46,294.86 L 117.99,301.58 L 126.53,311.96 L 135.06,219.85 L 143.59,235.59 L 152.13,219.56 L 160.66,180.34 L 169.19,173.97 L 177.73,182.8 L 186.26,163.37 L 194.79,198.03 L 203.33,216.12 L 211.86,202.18 L 220.4,201.86 L 228.93,185.76 L 237.46,205.63 L 246,206.77 L 254.53,212.04 L 263.06,227.92 L 271.6,240.35 L 280.13,225.57 L 288.66,185.17 L 297.2,141.79 L 305.73,97.98 L 314.26,86.61 L 322.8,112.87 L 331.33,121.79 L 339.86,154.42 L 348.4,129.8 L 356.93,107.07 L 365.46,125 L 374,149.23 L 382.53,145.4 L 391.06,133.27 L 399.6,118.1 L 408.13,60 L 416.66,77.62 L 425.2,115.28 L 433.73,176.65 L 442.26,180.18 L 450.8,176.29 L 459.33,173.41 L 467.87,183.2 L 476.4,207.8 L 484.93,187.01 L 493.47,207.13 L 502,208.82 L 510.53,185.94 L 519.07,193.34 L 527.6,197.78 L 536.13,184.2 L 544.67,164.81 L 553.2,173.55 L 561.73,208.07 L 570.27,207.36 L 578.8,220.72 L 587.33,255.12 L 595.87,329.95 L 604.4,308.35 L 612.93,268.28 L 621.47,265.78 L 630,293.85 L 638.53,272.88 L 647.07,274.14 L 655.6,288.52 L 664.13,236.82 L 672.67,284.64 L 681.2,337.82 L 689.73,333.38 L 698.27,328.14 L 706.8,327.8 L 715.34,337.76 L 723.87,368.89 L 732.4,391.44 L 740.94,409.37 L 749.47,385.41 L 758,383.57 L 766.54,379.19 L 775.07,372.27 L 783.6,394.54 L 792.14,408.15 L 800.67,394.42 L 809.2,377.4 L 817.74,382.33 L 826.27,385.13 L 834.8,363.05 L 843.34,310.2 L 851.87,277 L 860.4,250.13 L 868.94,243.15 L 877.47,276 L 886,284.4 L 894.54,275.35 L 903.07,134.49 L 911.6,159.33 L 920.14,233.44 L 928.67,348.08 L 937.2,338.95 L 945.74,375.52 L 954.27,336.24 L 962.81,246.74 L 971.34,153.82 L 979.87,174.91 L 988.41,206.85 L 996.94,194.21 L 1005.47,193.81 L 1014.01,182.15 L 1022.54,187.78 L 1031.07,217.45 L 1031.07,472 Z" fill="url(#gradient-2976915275)" opacity="1"/><path d="M -163.61,385.05 L -155.08,368.58 L -146.54,357.71 L -138.01,357.45 L -129.48,373.57 L -120.94,390.28 L -112.41,418.57 L -103.88,404.6 L -95.34,422 L -86.81,386.57 L -78.28,349.3 L -69.74,274.56 L -61.21,276.98 L -52.68,290.5 L -44.14,299.79 L -35.61,274.44 L -27.07,289.27 L -18.54,299.45 L -10.01,305.11 L -1.47,269.41 L 7.06,305.86 L 15.59,286.14 L 24.13,309.42 L 32.66,314.9 L 41.19,300.83 L 49.73,324.51 L 58.26,333.66 L 66.79,362.48 L 75.33,366.78 L 83.86,363.65 L 92.39,346.46 L 100.93,301.76 L 109.46,294.86 L 117.99,301.58 L 126.53,311.96 L 135.06,219.85 L 143.59,235.59 L 152.13,219.56 L 160.66,180.34 L 169.19,173.97 L 177.73,182.8 L 186.26,163.37 L 194.79,198.03 L 203.33,216.12 L 211.86,202.18 L 220.4,201.86 L 228.93,185.76 L 237.46,205.63 L 246,206.77 L 254.53,212.04 L 263.06,227.92 L 271.6,240.35 L 280.13,225.57 L 288.66,185.17 L 297.2,141.79 L 305.73,97.98 L 314.26,86.61 L 322.8,112.87 L 331.33,121.79 L 339.86,154.42 L 348.4,129.8 L 356.93,107.07 L 365.46,125 L 374,149.23 L 382.53,145.4 L 391.06,133.27 L 399.6,118.1 L 408.13,60 L 416.66,77.62 L 425.2,115.28 L 433.73,176.65 L 442.26,180.18 L 450.8,176.29 L 459.33,173.41 L 467.87,183.2 L 476.4,207.8 L 484.93,187.01 L 493.47,207.13 L 502,208.82 L 510.53,185.94 L 519.07,193.34 L 527.6,197.78 L 536.13,184.2 L 544.67,164.81 L 553.2,173.55 L 561.73,208.07 L 570.27,207.36 L 578.8,220.72 L 587.33,255.12 L 595.87,329.95 L 604.4,308.35 L 612.93,268.28 L 621.47,265.78 L 630,293.85 L 638.53,272.88 L 647.07,274.14 L 655.6,288.52 L 664.13,236.82 L 672.67,284.64 L 681.2,337.82 L 689.73,333.38 L 698.27,328.14 L 706.8,327.8 L 715.34,337.76 L 723.87,368.89 L 732.4,391.44 L 740.94,409.37 L 749.47,385.41 L 758,383.57 L 766.54,379.19 L 775.07,372.27 L 783.6,394.54 L 792.14,408.15 L 800.67,394.42 L 809.2,377.4 L 817.74,382.33 L 826.27,385.13 L 834.8,363.05 L 843.34,310.2 L 851.87,277 L 860.4,250.13 L 868.94,243.15 L 877.47,276 L 886,284.4 L 894.54,275.35 L 903.07,134.49 L 911.6,159.33 L 920.14,233.44 L 928.67,348.08 L 937.2,338.95 L 945.74,375.52 L 954.27,336.24 L 962.81,246.74 L 971.34,153.82 L 979.87,174.91 L 988.41,206.85 L 996.94,194.21 L 1005.47,193.81 L 1014.01,182.15 L 1022.54,187.78 L 1031.07,217.45" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -163.61,472 L -163.61,422 L -163.61,422 L -155.08,416.04 L -146.54,413.22 L -138.01,406.72 L -129.48,407.27 L -120.94,411.81 L -112.41,416.7 L -103.88,410.99 L -95.34,398.24 L -86.81,386.82 L -78.28,375.52 L -69.74,354.41 L -61.21,343.89 L -52.68,341.64 L -44.14,355.84 L -35.61,365.66 L -27.07,367.54 L -18.54,374.02 L -10.01,373.01 L -1.47,376.46 L 7.06,378.13 L 15.59,343.95 L 24.13,337.22 L 32.66,330.9 L 41.19,327.31 L 49.73,333.18 L 58.26,339.43 L 66.79,338.58 L 75.33,345.7 L 83.86,340.61 L 92.39,344 L 100.93,344.24 L 109.46,340.25 L 117.99,343.67 L 126.53,342.58 L 135.06,346.9 L 143.59,348.64 L 152.13,347.54 L 160.66,343.25 L 169.19,342.16 L 177.73,340.58 L 186.26,344.86 L 194.79,351.35 L 203.33,348.55 L 211.86,343.89 L 220.4,342.68 L 228.93,338.79 L 237.46,333.86 L 246,334.36 L 254.53,336.11 L 263.06,345.64 L 271.6,355.75 L 280.13,352.36 L 288.66,352.96 L 297.2,350.59 L 305.73,343.8 L 314.26,335.74 L 322.8,327.21 L 331.33,318.29 L 339.86,313.32 L 348.4,310.35 L 356.93,309.6 L 365.46,317.57 L 374,321.25 L 382.53,312.33 L 391.06,309.24 L 399.6,302.17 L 408.13,296.6 L 416.66,290.63 L 425.2,296.36 L 433.73,303.55 L 442.26,298.92 L 450.8,286.67 L 459.33,316.84 L 467.87,323.18 L 476.4,310.6 L 484.93,304.48 L 493.47,303.7 L 502,305.71 L 510.53,302.4 L 519.07,296.3 L 527.6,293.24 L 536.13,280.02 L 544.67,284.21 L 553.2,284.31 L 561.73,288.12 L 570.27,277.36 L 578.8,280.67 L 587.33,288.6 L 595.87,293.54 L 604.4,287.51 L 612.93,269 L 621.47,194.76 L 630,151.77 L 638.53,125.95 L 647.07,106.68 L 655.6,65.24 L 664.13,94.58 L 672.67,135.72 L 681.2,138.06 L 689.73,136 L 698.27,146.38 L 706.8,141.2 L 715.34,154.06 L 723.87,134.15 L 732.4,149.95 L 740.94,147.64 L 749.47,114.67 L 758,101.41 L 766.54,94.24 L 775.07,60 L 783.6,80.33 L 792.14,114.82 L 800.67,130.94 L 809.2,123.33 L 817.74,140.03 L 826.27,133.22 L 834.8,143.72 L 843.34,131.71 L 851.87,127.75 L 860.4,134.51 L 868.94,153.91 L 877.47,156.36 L 886,146.89 L 894.54,134.82 L 903.07,123.66 L 911.6,115.88 L 920.14,134.37 L 928.67,135.01 L 937.2,131.37 L 945.74,140.81 L 954.27,148.49 L 962.81,137.25 L 971.34,146.47 L 979.87,137.93 L 988.41,143.9 L 996.94,153.91 L 1005.47,159.68 L 1014.01,189.3 L 1022.54,158.78 L 1031.07,117.49 L 1031.07,472 Z" fill="url(#gradient-1507745338)" opacity="1"/><path d="M -163.61,422 L -155.08,416.04 L -146.54,413.22 L -138.01,406.72 L -129.48,407.27 L -120.94,411.81 L -112.41,416.7 L -103.88,410.99 L -95.34,398.24 L -86.81,386.82 L -78.28,375.52 L -69.74,354.41 L -61.21,343.89 L -52.68,341.64 L -44.14,355.84 L -35.61,365.66 L -27.07,367.54 L -18.54,374.02 L -10.01,373.01 L -1.47,376.46 L 7.06,378.13 L 15.59,343.95 L 24.13,337.22 L 32.66,330.9 L 41.19,327.31 L 49.73,333.18 L 58.26,339.43 L 66.79,338.58 L 75.33,345.7 L 83.86,340.61 L 92.39,344 L 100.93,344.24 L 109.46,340.25 L 117.99,343.67 L 126.53,342.58 L 135.06,346.9 L 143.59,348.64 L 152.13,347.54 L 160.66,343.25 L 169.19,342.16 L 177.73,340.58 L 186.26,344.86 L 194.79,351.35 L 203.33,348.55 L 211.86,343.89 L 220.4,342.68 L 228.93,338.79 L 237.46,333.86 L 246,334.36 L 254.53,336.11 L 263.06,345.64 L 271.6,355.75 L 280.13,352.36 L 288.66,352.96 L 297.2,350.59 L 305.73,343.8 L 314.26,335.74 L 322.8,327.21 L 331.33,318.29 L 339.86,313.32 L 348.4,310.35 L 356.93,309.6 L 365.46,317.57 L 374,321.25 L 382.53,312.33 L 391.06,309.24 L 399.6,302.17 L 408.13,296.6 L 416.66,290.63 L 425.2,296.36 L 433.73,303.55 L 442.26,298.92 L 450.8,286.67 L 459.33,316.84 L 467.87,323.18 L 476.4,310.6 L 484.93,304.48 L 493.47,303.7 L 502,305.71 L 510.53,302.4 L 519.07,296.3 L 527.6,293.24 L 536.13,280.02 L 544.67,284.21 L 553.2,284.31 L 561.73,288.12 L 570.27,277.36 L 578.8,280.67 L 587.33,288.6 L 595.87,293.54 L 604.4,287.51 L 612.93,269 L 621.47,194.76 L 630,151.77 L 638.53,125.95 L 647.07,106.68 L 655.6,65.24 L 664.13,94.58 L 672.67,135.72 L 681.2,138.06 L 689.73,136 L 698.27,146.38 L 706.8,141.2 L 715.34,154.06 L 723.87,134.15 L 732.4,149.95 L 740.94,147.64 L 749.47,114.67 L 758,101.41 L 766.54,94.24 L 775.07,60 L 783.6,80.33 L 792.14,114.82 L 800.67,130.94 L 809.2,123.33 L 817.74,140.03 L 826.27,133.22 L 834.8,143.72 L 843.34,131.71 L 851.87,127.75 L 860.4,134.51 L 868.94,153.91 L 877.47,156.36 L 886,146.89 L 894.54,134.82 L 903.07,123.66 L 911.6,115.88 L 920.14,134.37 L 928.67,135.01 L 937.2,131.37 L 945.74,140.81 L 954.27,148.49 L 962.81,137.25 L 971.34,146.47 L 979.87,137.93 L 988.41,143.9 L 996.94,153.91 L 1005.47,159.68 L 1014.01,189.3 L 1022.54,158.78 L 1031.07,117.49" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="70.392578125" lengthAdjust="spacing">08:35:38.219</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="73.6181640625" lengthAdjust="spacing">8 Aug 2026</text><text x="254.52896694459696" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">02:00 PM</text><text x="356.93033175247774" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">05:00 PM</text><text x="459.3316965603585" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="561.7330613682398" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.484375" lengthAdjust="spacing">11:00 PM</text><text x="664.1344261761215" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">02:00 AM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="70.392578125" lengthAdjust="spacing">07:19:40.879</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="73.6181640625" lengthAdjust="spacing">9 Aug 2026</text><path d="M 425.2,0 L 425.2,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="425.2" cy="95.52" r="5" fill="white" stroke="white" opacity="1"/><circle cx="425.2" cy="95.52" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="425.2" cy="115.28" r="5" fill="white" stroke="white" opacity="1"/><circle cx="425.2" cy="115.28" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="425.2" cy="296.36" r="5" fill="white" stroke="white" opacity="1"/><circle cx="425.2" cy="296.36" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="288.36" width="170.67" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="301.36426655663274" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="164.67236328125" lengthAdjust="spacing">198.607 TAOUSDT BTC</text><rect x="435.5" y="115.52" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="128.51763516748434" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,922.395 ETHUSDT BTC</text><rect x="435.5" y="87.52" width="190.7" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="100.51763516748434" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="184.704345703125" lengthAdjust="spacing">65,082.113 BTCUSDT BTC</text><rect x="354.79" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="425.1979082910657" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">07:00 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
461
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
462
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 32s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 32s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 32s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 32s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 32s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-e246652d {
463
+ --dark-theme-hide: 1;
464
+ --light-theme-hide: 0;
465
+ --rgb244245247rgb262525: rgb(244, 245, 247);
466
+ --rgb244245247rgb545762: rgb(244, 245, 247);
467
+ --rgb210214220rgb000: rgb(210, 214, 220);
468
+ --rgb210214220rgb758599: rgb(210, 214, 220);
469
+ --rgb255255255rgb444444: rgb(255, 255, 255);
470
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
471
+ --rgb255255255rgb363636: rgb(255, 255, 255);
472
+ --rgb255255255rgb393939: rgb(255, 255, 255);
473
+ --rgb255255255rgb303030: rgb(255, 255, 255);
474
+ --rgb240254255rgb03755: rgb(240, 254, 255);
475
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
476
+ --rgb758599rgb229231235: rgb(75, 85, 99);
477
+ --rgb758599rgb180180180: rgb(75, 85, 99);
478
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
479
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
480
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
481
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
482
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
483
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
484
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
485
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
486
+ --rgb229231235rgb262525: rgb(229, 231, 235);
487
+ --rgb229231235rgb758599: rgb(229, 231, 235);
488
+ --rgb249250251rgb333333: rgb(249, 250, 251);
489
+ --rgb223046rgb244245247: rgb(22, 30, 46);
490
+ --blackrgb187187187: black;
491
+ --f9fafb212121: #f9fafb;
492
+ --161e2ef4f5f7: #161e2e;
493
+ --d2d6dc4b5563: #d2d6dc;
494
+ --nonergb303030: none;
495
+ --rgb87863rgb21699181: rgb(87, 8, 63);
496
+ }
497
+ @media (prefers-color-scheme: dark) {
498
+ :root #id-e246652d {
499
+ --dark-theme-hide: 0;
500
+ --light-theme-hide: 1;
501
+ --rgb244245247rgb262525: rgb(26, 25, 25);
502
+ --rgb244245247rgb545762: rgb(54, 57, 62);
503
+ --rgb210214220rgb000: rgb(0, 0, 0);
504
+ --rgb210214220rgb758599: rgb(75, 85, 99);
505
+ --rgb255255255rgb444444: rgb(44, 44, 44);
506
+ --rgb255255255rgb363636: rgb(36, 36, 36);
507
+ --rgb255255255rgb393939: rgb(39, 39, 39);
508
+ --rgb255255255rgb303030: rgb(30, 30, 30);
509
+ --rgb240254255rgb03755: rgb(0, 37, 55);
510
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
511
+ --rgb758599rgb229231235: rgb(229, 231, 235);
512
+ --rgb758599rgb180180180: rgb(180, 180, 180);
513
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
514
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
515
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
516
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
517
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
518
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
519
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
520
+ --rgb229231235rgb262525: rgb(26, 25, 25);
521
+ --rgb229231235rgb758599: rgb(75, 85, 99);
522
+ --rgb249250251rgb333333: rgb(33, 33, 33);
523
+ --rgb223046rgb244245247: rgb(244, 245, 247);
524
+ --blackrgb187187187: rgb(187, 187, 187);
525
+ --f9fafb212121: #212121;
526
+ --161e2ef4f5f7: #f4f5f7;
527
+ --d2d6dc4b5563: #4b5563;
528
+ --nonergb303030: rgb(30, 30, 30);
529
+ --rgb87863rgb21699181: rgb(216, 99, 181);
530
+ }
531
+ }
532
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-5" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3639751783" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-3609426856" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-2318834122" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-47817f37"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
533
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
534
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -83.43,472 L -83.43,235.93 L -83.43,235.93 L -79.19,234.93 L -74.94,232.78 L -70.7,230.84 L -66.46,230.83 L -62.21,222.19 L -57.97,207.24 L -53.72,198.9 L -49.48,194.76 L -45.24,204.97 L -40.99,205.24 L -36.75,210.26 L -32.51,204.14 L -28.26,202.55 L -24.02,201.93 L -19.78,187.86 L -15.53,188.31 L -11.29,187.62 L -7.05,182.66 L -2.8,194.72 L 1.44,196.38 L 5.68,198.03 L 9.93,211.45 L 14.17,212.4 L 18.41,212.91 L 22.66,208.79 L 26.9,199.84 L 31.14,201.72 L 35.39,201.86 L 39.63,189.52 L 43.87,183 L 48.12,188.21 L 52.36,196.62 L 56.61,195.17 L 60.85,193.43 L 65.09,191.59 L 69.34,197.31 L 73.58,200.5 L 77.82,193.6 L 82.07,206.66 L 86.31,220.74 L 90.55,224.34 L 94.8,225.14 L 99.04,225.26 L 103.28,225.6 L 107.53,238.24 L 111.77,233.55 L 116.01,229.95 L 120.26,238.91 L 124.5,257.79 L 128.74,241.16 L 132.99,172.4 L 137.23,210.33 L 141.47,220.4 L 145.72,212.83 L 149.96,195.95 L 154.21,185.19 L 158.45,196.21 L 162.69,183.48 L 166.94,196.45 L 171.18,198.38 L 175.42,193.45 L 179.67,197.24 L 183.91,189.26 L 188.15,194.02 L 192.4,189.71 L 196.64,197.31 L 200.88,201.09 L 205.13,197.71 L 209.37,202.78 L 213.61,197.12 L 217.86,191.19 L 222.1,191.09 L 226.34,175.84 L 230.59,161 L 234.83,157.52 L 239.07,130.5 L 243.32,100.26 L 247.56,65.21 L 251.8,60 L 256.05,104.53 L 260.29,83.17 L 264.54,69.14 L 268.78,75.43 L 273.02,92.55 L 277.27,114.6 L 281.51,113.41 L 285.75,120.66 L 290,132.66 L 294.24,125.62 L 298.48,130.74 L 302.73,139.98 L 306.97,146.64 L 311.21,149.71 L 315.46,131.91 L 319.7,122.79 L 323.94,123.14 L 328.19,119.53 L 332.43,127.31 L 336.67,133.12 L 340.92,129.1 L 345.16,139.28 L 349.4,159.98 L 353.65,166.43 L 357.89,149.38 L 362.14,151.03 L 366.38,145.86 L 370.62,131.38 L 374.87,126.48 L 379.11,129.38 L 383.35,107.81 L 387.6,101.12 L 391.84,112.14 L 396.08,109.31 L 400.33,98.93 L 404.57,84.93 L 408.81,97.1 L 413.06,94.83 L 417.3,99.12 L 421.54,104.24 L 425.79,100.59 L 430.03,105.24 L 434.27,117.31 L 438.52,130.59 L 442.76,151.95 L 447,167.12 L 451.25,166.05 L 455.49,153.97 L 459.73,155.33 L 463.98,155.48 L 468.22,161.84 L 472.47,165.22 L 476.71,166.26 L 480.95,168.88 L 485.2,183.88 L 489.44,182.31 L 493.68,183.53 L 497.93,183.31 L 502.17,186.22 L 506.41,177.57 L 510.66,170.93 L 514.9,168.74 L 519.14,150 L 523.39,134.24 L 527.63,142.19 L 531.87,138.5 L 536.12,139.59 L 540.36,136.34 L 544.6,150.12 L 548.85,152.31 L 553.09,135.88 L 557.33,142.71 L 561.58,146.31 L 565.82,136.31 L 570.07,136.28 L 574.31,137.86 L 578.55,138.09 L 582.8,142.24 L 587.04,154.4 L 591.28,169.02 L 595.53,167.5 L 599.77,165.83 L 604.01,173.12 L 608.26,159.12 L 612.5,163.98 L 616.74,170.71 L 620.99,168.53 L 625.23,185.4 L 629.47,184.31 L 633.72,196.59 L 637.96,201.21 L 642.2,204.31 L 646.45,206.9 L 650.69,202.81 L 654.93,211.05 L 659.18,220.66 L 663.42,225.45 L 667.66,226.66 L 671.91,236.6 L 676.15,245.05 L 680.4,253.57 L 684.64,254 L 688.88,256.78 L 693.13,241.62 L 697.37,231.79 L 701.61,237.71 L 705.86,252.64 L 710.1,227.95 L 714.34,226.34 L 718.59,228.12 L 722.83,236.02 L 727.07,237.16 L 731.32,239.79 L 735.56,239.84 L 739.8,234.36 L 744.05,233.83 L 748.29,233.79 L 752.53,234.78 L 756.78,234.4 L 761.02,221.43 L 765.26,224.52 L 769.51,227.19 L 773.75,235.4 L 777.99,222.74 L 782.24,209.33 L 786.48,214.5 L 790.73,213.72 L 794.97,215.31 L 799.21,242.17 L 803.46,307.45 L 807.7,302.47 L 811.94,298.69 L 816.19,304.28 L 820.43,295.86 L 824.67,323.76 L 828.92,313.79 L 833.16,326.12 L 837.4,344.16 L 841.65,325.67 L 845.89,341.17 L 850.13,341.47 L 854.38,336.16 L 858.62,342.53 L 862.86,345.09 L 867.11,359.69 L 871.35,382.07 L 875.59,376.93 L 879.84,352.64 L 884.08,363.83 L 888.33,366.12 L 892.57,393.43 L 896.81,422 L 901.06,387.84 L 905.3,390.19 L 909.54,384.22 L 913.79,391.41 L 918.03,374.19 L 922.27,374.67 L 926.52,377.36 L 930.76,386.74 L 935,385.69 L 939.25,375.66 L 943.49,361.1 L 947.73,360.88 L 947.73,472 Z" fill="url(#gradient-3639751783)" opacity="1"/><path d="M -83.43,235.93 L -79.19,234.93 L -74.94,232.78 L -70.7,230.84 L -66.46,230.83 L -62.21,222.19 L -57.97,207.24 L -53.72,198.9 L -49.48,194.76 L -45.24,204.97 L -40.99,205.24 L -36.75,210.26 L -32.51,204.14 L -28.26,202.55 L -24.02,201.93 L -19.78,187.86 L -15.53,188.31 L -11.29,187.62 L -7.05,182.66 L -2.8,194.72 L 1.44,196.38 L 5.68,198.03 L 9.93,211.45 L 14.17,212.4 L 18.41,212.91 L 22.66,208.79 L 26.9,199.84 L 31.14,201.72 L 35.39,201.86 L 39.63,189.52 L 43.87,183 L 48.12,188.21 L 52.36,196.62 L 56.61,195.17 L 60.85,193.43 L 65.09,191.59 L 69.34,197.31 L 73.58,200.5 L 77.82,193.6 L 82.07,206.66 L 86.31,220.74 L 90.55,224.34 L 94.8,225.14 L 99.04,225.26 L 103.28,225.6 L 107.53,238.24 L 111.77,233.55 L 116.01,229.95 L 120.26,238.91 L 124.5,257.79 L 128.74,241.16 L 132.99,172.4 L 137.23,210.33 L 141.47,220.4 L 145.72,212.83 L 149.96,195.95 L 154.21,185.19 L 158.45,196.21 L 162.69,183.48 L 166.94,196.45 L 171.18,198.38 L 175.42,193.45 L 179.67,197.24 L 183.91,189.26 L 188.15,194.02 L 192.4,189.71 L 196.64,197.31 L 200.88,201.09 L 205.13,197.71 L 209.37,202.78 L 213.61,197.12 L 217.86,191.19 L 222.1,191.09 L 226.34,175.84 L 230.59,161 L 234.83,157.52 L 239.07,130.5 L 243.32,100.26 L 247.56,65.21 L 251.8,60 L 256.05,104.53 L 260.29,83.17 L 264.54,69.14 L 268.78,75.43 L 273.02,92.55 L 277.27,114.6 L 281.51,113.41 L 285.75,120.66 L 290,132.66 L 294.24,125.62 L 298.48,130.74 L 302.73,139.98 L 306.97,146.64 L 311.21,149.71 L 315.46,131.91 L 319.7,122.79 L 323.94,123.14 L 328.19,119.53 L 332.43,127.31 L 336.67,133.12 L 340.92,129.1 L 345.16,139.28 L 349.4,159.98 L 353.65,166.43 L 357.89,149.38 L 362.14,151.03 L 366.38,145.86 L 370.62,131.38 L 374.87,126.48 L 379.11,129.38 L 383.35,107.81 L 387.6,101.12 L 391.84,112.14 L 396.08,109.31 L 400.33,98.93 L 404.57,84.93 L 408.81,97.1 L 413.06,94.83 L 417.3,99.12 L 421.54,104.24 L 425.79,100.59 L 430.03,105.24 L 434.27,117.31 L 438.52,130.59 L 442.76,151.95 L 447,167.12 L 451.25,166.05 L 455.49,153.97 L 459.73,155.33 L 463.98,155.48 L 468.22,161.84 L 472.47,165.22 L 476.71,166.26 L 480.95,168.88 L 485.2,183.88 L 489.44,182.31 L 493.68,183.53 L 497.93,183.31 L 502.17,186.22 L 506.41,177.57 L 510.66,170.93 L 514.9,168.74 L 519.14,150 L 523.39,134.24 L 527.63,142.19 L 531.87,138.5 L 536.12,139.59 L 540.36,136.34 L 544.6,150.12 L 548.85,152.31 L 553.09,135.88 L 557.33,142.71 L 561.58,146.31 L 565.82,136.31 L 570.07,136.28 L 574.31,137.86 L 578.55,138.09 L 582.8,142.24 L 587.04,154.4 L 591.28,169.02 L 595.53,167.5 L 599.77,165.83 L 604.01,173.12 L 608.26,159.12 L 612.5,163.98 L 616.74,170.71 L 620.99,168.53 L 625.23,185.4 L 629.47,184.31 L 633.72,196.59 L 637.96,201.21 L 642.2,204.31 L 646.45,206.9 L 650.69,202.81 L 654.93,211.05 L 659.18,220.66 L 663.42,225.45 L 667.66,226.66 L 671.91,236.6 L 676.15,245.05 L 680.4,253.57 L 684.64,254 L 688.88,256.78 L 693.13,241.62 L 697.37,231.79 L 701.61,237.71 L 705.86,252.64 L 710.1,227.95 L 714.34,226.34 L 718.59,228.12 L 722.83,236.02 L 727.07,237.16 L 731.32,239.79 L 735.56,239.84 L 739.8,234.36 L 744.05,233.83 L 748.29,233.79 L 752.53,234.78 L 756.78,234.4 L 761.02,221.43 L 765.26,224.52 L 769.51,227.19 L 773.75,235.4 L 777.99,222.74 L 782.24,209.33 L 786.48,214.5 L 790.73,213.72 L 794.97,215.31 L 799.21,242.17 L 803.46,307.45 L 807.7,302.47 L 811.94,298.69 L 816.19,304.28 L 820.43,295.86 L 824.67,323.76 L 828.92,313.79 L 833.16,326.12 L 837.4,344.16 L 841.65,325.67 L 845.89,341.17 L 850.13,341.47 L 854.38,336.16 L 858.62,342.53 L 862.86,345.09 L 867.11,359.69 L 871.35,382.07 L 875.59,376.93 L 879.84,352.64 L 884.08,363.83 L 888.33,366.12 L 892.57,393.43 L 896.81,422 L 901.06,387.84 L 905.3,390.19 L 909.54,384.22 L 913.79,391.41 L 918.03,374.19 L 922.27,374.67 L 926.52,377.36 L 930.76,386.74 L 935,385.69 L 939.25,375.66 L 943.49,361.1 L 947.73,360.88" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -83.43,472 L -83.43,370.08 L -83.43,370.08 L -79.19,370.31 L -74.94,361.78 L -70.7,355.96 L -66.46,356.3 L -62.21,340.71 L -57.97,323.7 L -53.72,305.34 L -49.48,295.91 L -45.24,303.2 L -40.99,291.39 L -36.75,310.6 L -32.51,305.85 L -28.26,306.93 L -24.02,311.67 L -19.78,308.23 L -15.53,324.27 L -11.29,321.67 L -7.05,218.63 L -2.8,230.83 L 1.44,240.94 L 5.68,233.32 L 9.93,252.3 L 14.17,249.87 L 18.41,248.85 L 22.66,232.75 L 26.9,207.95 L 31.14,209.7 L 35.39,198.41 L 39.63,169.14 L 43.87,179.2 L 48.12,189.54 L 52.36,190.27 L 56.61,200.27 L 60.85,195.19 L 65.09,188.86 L 69.34,176.99 L 73.58,182.08 L 77.82,169.59 L 82.07,186.71 L 86.31,218.29 L 90.55,222.92 L 94.8,219.42 L 99.04,227.61 L 103.28,232.7 L 107.53,230.94 L 111.77,213.88 L 116.01,194.96 L 120.26,204.9 L 124.5,221.51 L 128.74,212.47 L 132.99,170.39 L 137.23,203.26 L 141.47,219.14 L 145.72,222.75 L 149.96,219.31 L 154.21,207.61 L 158.45,216.93 L 162.69,199.14 L 166.94,236.88 L 171.18,227.95 L 175.42,211.74 L 179.67,228.35 L 183.91,228.8 L 188.15,241.45 L 192.4,243.26 L 196.64,256.93 L 200.88,251.45 L 205.13,240.72 L 209.37,248.29 L 213.61,235.52 L 217.86,222.98 L 222.1,202.92 L 226.34,194.17 L 230.59,194 L 234.83,183.1 L 239.07,151.12 L 243.32,132.65 L 247.56,89.49 L 251.8,99.09 L 256.05,152.82 L 260.29,116.32 L 264.54,91.69 L 268.78,100.84 L 273.02,115.59 L 277.27,142.59 L 281.51,125.87 L 285.75,119.94 L 290,144.34 L 294.24,145.3 L 298.48,168.29 L 302.73,169.82 L 306.97,164.91 L 311.21,168.13 L 315.46,134.46 L 319.7,129.94 L 323.94,129.43 L 328.19,117 L 332.43,121.01 L 336.67,138.35 L 340.92,135.25 L 345.16,145.19 L 349.4,155.92 L 353.65,169.71 L 357.89,162.53 L 362.14,164.91 L 366.38,160.89 L 370.62,151.4 L 374.87,153.89 L 379.11,150.44 L 383.35,138.13 L 387.6,136.66 L 391.84,142.48 L 396.08,119.88 L 400.33,95.7 L 404.57,60 L 408.81,76.95 L 413.06,86.49 L 417.3,88.64 L 421.54,107.96 L 425.79,124.63 L 430.03,123.04 L 434.27,143.27 L 438.52,167.22 L 442.76,194.9 L 447,204.56 L 451.25,204.45 L 455.49,189.31 L 459.73,183.04 L 463.98,187.73 L 468.22,189.42 L 472.47,188.52 L 476.71,185.47 L 480.95,185.64 L 485.2,186.32 L 489.44,187.5 L 493.68,192.7 L 497.93,205.24 L 502.17,226.43 L 506.41,217.89 L 510.66,211.57 L 514.9,206.65 L 519.14,194.45 L 523.39,195.24 L 527.63,218.46 L 531.87,216.26 L 536.12,219.25 L 540.36,208.35 L 544.6,223.66 L 548.85,226.82 L 553.09,202.19 L 557.33,194.45 L 561.58,196.65 L 565.82,192.25 L 570.07,209.59 L 574.31,212.64 L 578.55,211.12 L 582.8,209.76 L 587.04,206.31 L 591.28,204.85 L 595.53,198.18 L 599.77,185.3 L 604.01,198.12 L 608.26,169.82 L 612.5,164.85 L 616.74,173.1 L 620.99,183.89 L 625.23,200.83 L 629.47,204.34 L 633.72,219.14 L 637.96,233.2 L 642.2,230.15 L 646.45,215.41 L 650.69,209.08 L 654.93,220.66 L 659.18,232.92 L 663.42,239.31 L 667.66,246.14 L 671.91,249.59 L 676.15,295.68 L 680.4,322.63 L 684.64,333.59 L 688.88,349.46 L 693.13,336.81 L 697.37,302.35 L 701.61,304.67 L 705.86,301.5 L 710.1,264.9 L 714.34,262.69 L 718.59,263.48 L 722.83,266.25 L 727.07,292.18 L 731.32,306.3 L 735.56,321.56 L 739.8,274.44 L 744.05,277.44 L 748.29,279.75 L 752.53,285.06 L 756.78,291.16 L 761.02,275.29 L 765.26,279.41 L 769.51,277.66 L 773.75,312.97 L 777.99,296.42 L 782.24,240.6 L 786.48,247.04 L 790.73,251.34 L 794.97,248.34 L 799.21,284.84 L 803.46,342.74 L 807.7,347.09 L 811.94,342.85 L 816.19,338.28 L 820.43,333.99 L 824.67,353.02 L 828.92,328.51 L 833.16,344.49 L 837.4,339.35 L 841.65,316.64 L 845.89,342.52 L 850.13,331.9 L 854.38,325.12 L 858.62,330.94 L 862.86,342.57 L 867.11,354.55 L 871.35,366.81 L 875.59,383.75 L 879.84,366.64 L 884.08,372.12 L 888.33,388.1 L 892.57,421.55 L 896.81,422 L 901.06,405.79 L 905.3,405.33 L 909.54,386.18 L 913.79,388.67 L 918.03,389.63 L 922.27,381.78 L 926.52,383.81 L 930.76,393.64 L 935,395 L 939.25,385.56 L 943.49,366.13 L 947.73,357.71 L 947.73,472 Z" fill="url(#gradient-3609426856)" opacity="1"/><path d="M -83.43,370.08 L -79.19,370.31 L -74.94,361.78 L -70.7,355.96 L -66.46,356.3 L -62.21,340.71 L -57.97,323.7 L -53.72,305.34 L -49.48,295.91 L -45.24,303.2 L -40.99,291.39 L -36.75,310.6 L -32.51,305.85 L -28.26,306.93 L -24.02,311.67 L -19.78,308.23 L -15.53,324.27 L -11.29,321.67 L -7.05,218.63 L -2.8,230.83 L 1.44,240.94 L 5.68,233.32 L 9.93,252.3 L 14.17,249.87 L 18.41,248.85 L 22.66,232.75 L 26.9,207.95 L 31.14,209.7 L 35.39,198.41 L 39.63,169.14 L 43.87,179.2 L 48.12,189.54 L 52.36,190.27 L 56.61,200.27 L 60.85,195.19 L 65.09,188.86 L 69.34,176.99 L 73.58,182.08 L 77.82,169.59 L 82.07,186.71 L 86.31,218.29 L 90.55,222.92 L 94.8,219.42 L 99.04,227.61 L 103.28,232.7 L 107.53,230.94 L 111.77,213.88 L 116.01,194.96 L 120.26,204.9 L 124.5,221.51 L 128.74,212.47 L 132.99,170.39 L 137.23,203.26 L 141.47,219.14 L 145.72,222.75 L 149.96,219.31 L 154.21,207.61 L 158.45,216.93 L 162.69,199.14 L 166.94,236.88 L 171.18,227.95 L 175.42,211.74 L 179.67,228.35 L 183.91,228.8 L 188.15,241.45 L 192.4,243.26 L 196.64,256.93 L 200.88,251.45 L 205.13,240.72 L 209.37,248.29 L 213.61,235.52 L 217.86,222.98 L 222.1,202.92 L 226.34,194.17 L 230.59,194 L 234.83,183.1 L 239.07,151.12 L 243.32,132.65 L 247.56,89.49 L 251.8,99.09 L 256.05,152.82 L 260.29,116.32 L 264.54,91.69 L 268.78,100.84 L 273.02,115.59 L 277.27,142.59 L 281.51,125.87 L 285.75,119.94 L 290,144.34 L 294.24,145.3 L 298.48,168.29 L 302.73,169.82 L 306.97,164.91 L 311.21,168.13 L 315.46,134.46 L 319.7,129.94 L 323.94,129.43 L 328.19,117 L 332.43,121.01 L 336.67,138.35 L 340.92,135.25 L 345.16,145.19 L 349.4,155.92 L 353.65,169.71 L 357.89,162.53 L 362.14,164.91 L 366.38,160.89 L 370.62,151.4 L 374.87,153.89 L 379.11,150.44 L 383.35,138.13 L 387.6,136.66 L 391.84,142.48 L 396.08,119.88 L 400.33,95.7 L 404.57,60 L 408.81,76.95 L 413.06,86.49 L 417.3,88.64 L 421.54,107.96 L 425.79,124.63 L 430.03,123.04 L 434.27,143.27 L 438.52,167.22 L 442.76,194.9 L 447,204.56 L 451.25,204.45 L 455.49,189.31 L 459.73,183.04 L 463.98,187.73 L 468.22,189.42 L 472.47,188.52 L 476.71,185.47 L 480.95,185.64 L 485.2,186.32 L 489.44,187.5 L 493.68,192.7 L 497.93,205.24 L 502.17,226.43 L 506.41,217.89 L 510.66,211.57 L 514.9,206.65 L 519.14,194.45 L 523.39,195.24 L 527.63,218.46 L 531.87,216.26 L 536.12,219.25 L 540.36,208.35 L 544.6,223.66 L 548.85,226.82 L 553.09,202.19 L 557.33,194.45 L 561.58,196.65 L 565.82,192.25 L 570.07,209.59 L 574.31,212.64 L 578.55,211.12 L 582.8,209.76 L 587.04,206.31 L 591.28,204.85 L 595.53,198.18 L 599.77,185.3 L 604.01,198.12 L 608.26,169.82 L 612.5,164.85 L 616.74,173.1 L 620.99,183.89 L 625.23,200.83 L 629.47,204.34 L 633.72,219.14 L 637.96,233.2 L 642.2,230.15 L 646.45,215.41 L 650.69,209.08 L 654.93,220.66 L 659.18,232.92 L 663.42,239.31 L 667.66,246.14 L 671.91,249.59 L 676.15,295.68 L 680.4,322.63 L 684.64,333.59 L 688.88,349.46 L 693.13,336.81 L 697.37,302.35 L 701.61,304.67 L 705.86,301.5 L 710.1,264.9 L 714.34,262.69 L 718.59,263.48 L 722.83,266.25 L 727.07,292.18 L 731.32,306.3 L 735.56,321.56 L 739.8,274.44 L 744.05,277.44 L 748.29,279.75 L 752.53,285.06 L 756.78,291.16 L 761.02,275.29 L 765.26,279.41 L 769.51,277.66 L 773.75,312.97 L 777.99,296.42 L 782.24,240.6 L 786.48,247.04 L 790.73,251.34 L 794.97,248.34 L 799.21,284.84 L 803.46,342.74 L 807.7,347.09 L 811.94,342.85 L 816.19,338.28 L 820.43,333.99 L 824.67,353.02 L 828.92,328.51 L 833.16,344.49 L 837.4,339.35 L 841.65,316.64 L 845.89,342.52 L 850.13,331.9 L 854.38,325.12 L 858.62,330.94 L 862.86,342.57 L 867.11,354.55 L 871.35,366.81 L 875.59,383.75 L 879.84,366.64 L 884.08,372.12 L 888.33,388.1 L 892.57,421.55 L 896.81,422 L 901.06,405.79 L 905.3,405.33 L 909.54,386.18 L 913.79,388.67 L 918.03,389.63 L 922.27,381.78 L 926.52,383.81 L 930.76,393.64 L 935,395 L 939.25,385.56 L 943.49,366.13 L 947.73,357.71" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -83.43,472 L -83.43,399.33 L -83.43,399.33 L -79.19,401.18 L -74.94,397.91 L -70.7,400.15 L -66.46,405.43 L -62.21,405.22 L -57.97,404.18 L -53.72,404.24 L -49.48,403.25 L -45.24,401.95 L -40.99,397.64 L -36.75,397.53 L -32.51,400.97 L -28.26,403.15 L -24.02,405.49 L -19.78,402.82 L -15.53,401.51 L -11.29,401.29 L -7.05,404.4 L -2.8,407.23 L 1.44,409.74 L 5.68,411.32 L 9.93,407.94 L 14.17,408.49 L 18.41,406.63 L 22.66,405.98 L 26.9,411.1 L 31.14,406.2 L 35.39,400.91 L 39.63,400.97 L 43.87,403.96 L 48.12,400.58 L 52.36,399.55 L 56.61,396.12 L 60.85,400.64 L 65.09,401.56 L 69.34,403.36 L 73.58,406.25 L 77.82,404.34 L 82.07,410.94 L 86.31,413.61 L 90.55,413.06 L 94.8,410.83 L 99.04,407.67 L 103.28,408.92 L 107.53,405.43 L 111.77,403.42 L 116.01,401.56 L 120.26,404.51 L 124.5,404.45 L 128.74,397.04 L 132.99,396.77 L 137.23,396.99 L 141.47,398.02 L 145.72,391.87 L 149.96,389.9 L 154.21,392.03 L 158.45,390.56 L 162.69,390.72 L 166.94,394.37 L 171.18,390.5 L 175.42,390.88 L 179.67,400.64 L 183.91,396.88 L 188.15,407.78 L 192.4,412.14 L 196.64,416.99 L 200.88,422 L 205.13,414.7 L 209.37,408.16 L 213.61,411.97 L 217.86,421.18 L 222.1,416.88 L 226.34,411.16 L 230.59,415.46 L 234.83,419.17 L 239.07,409.96 L 243.32,405.71 L 247.56,404.07 L 251.8,399.55 L 256.05,406.47 L 260.29,399.11 L 264.54,394.1 L 268.78,387.45 L 273.02,382.38 L 277.27,387.78 L 281.51,379.39 L 285.75,370.01 L 290,375.46 L 294.24,371.54 L 298.48,364.07 L 302.73,367.4 L 306.97,367.4 L 311.21,364.35 L 315.46,361.95 L 319.7,361.73 L 323.94,362 L 328.19,362.11 L 332.43,361.19 L 336.67,363.04 L 340.92,374.65 L 345.16,376.72 L 349.4,377.75 L 353.65,376.23 L 357.89,373.83 L 362.14,372.63 L 366.38,363.09 L 370.62,359.55 L 374.87,360.04 L 379.11,364.84 L 383.35,359.11 L 387.6,355.19 L 391.84,352.74 L 396.08,350.29 L 400.33,349.74 L 404.57,344.62 L 408.81,343.53 L 413.06,346.74 L 417.3,335.46 L 421.54,333.88 L 425.79,340.15 L 430.03,349.31 L 434.27,347.56 L 438.52,350.56 L 442.76,354.86 L 447,357.81 L 451.25,356.77 L 455.49,355.68 L 459.73,333.88 L 463.98,318.52 L 468.22,333.67 L 472.47,349.47 L 476.71,363.86 L 480.95,374.37 L 485.2,373.5 L 489.44,377.42 L 493.68,377.32 L 497.93,380.09 L 502.17,369.36 L 506.41,360.31 L 510.66,359.28 L 514.9,358.68 L 519.14,353.94 L 523.39,353.99 L 527.63,351.38 L 531.87,355.95 L 536.12,356.44 L 540.36,353.01 L 544.6,358.68 L 548.85,359.44 L 553.09,357.75 L 557.33,348.6 L 561.58,352.68 L 565.82,347.13 L 570.07,345.98 L 574.31,343.69 L 578.55,343.37 L 582.8,342.33 L 587.04,339.93 L 591.28,332.96 L 595.53,318.3 L 599.77,326.15 L 604.01,332.85 L 608.26,324.67 L 612.5,335.14 L 616.74,333.23 L 620.99,327.56 L 625.23,332.25 L 629.47,336.06 L 633.72,339.66 L 637.96,331.21 L 642.2,321.95 L 646.45,324.51 L 650.69,321.24 L 654.93,322.06 L 659.18,328.87 L 663.42,328.82 L 667.66,329.2 L 671.91,339.55 L 676.15,339.93 L 680.4,340.21 L 684.64,342.11 L 688.88,344.4 L 693.13,340.86 L 697.37,332.9 L 701.61,330.94 L 705.86,327.84 L 710.1,319.17 L 714.34,290.18 L 718.59,260.43 L 722.83,205.44 L 727.07,200.48 L 731.32,166.48 L 735.56,198.47 L 739.8,144.57 L 744.05,137.11 L 748.29,131.5 L 752.53,146.7 L 756.78,138.25 L 761.02,136.24 L 765.26,70.52 L 769.51,62.67 L 773.75,71.17 L 777.99,60 L 782.24,72.81 L 786.48,101.52 L 790.73,126.54 L 794.97,145.99 L 799.21,150.35 L 803.46,154.6 L 807.7,142.5 L 811.94,161.52 L 816.19,155.47 L 820.43,139.18 L 824.67,152.15 L 828.92,160.65 L 833.16,161.68 L 837.4,171.71 L 841.65,156.45 L 845.89,148.72 L 850.13,160.76 L 854.38,161.47 L 858.62,166.21 L 862.86,170.95 L 867.11,180.7 L 871.35,138.69 L 875.59,151.44 L 879.84,155.09 L 884.08,148.06 L 888.33,169.42 L 892.57,185.39 L 896.81,179.12 L 901.06,161.96 L 905.3,153.35 L 909.54,143.59 L 913.79,110.52 L 918.03,120.05 L 922.27,105.72 L 926.52,111.17 L 930.76,108.88 L 935,89.86 L 939.25,113.89 L 943.49,95.86 L 947.73,76.78 L 947.73,472 Z" fill="url(#gradient-2318834122)" opacity="1"/><path d="M -83.43,399.33 L -79.19,401.18 L -74.94,397.91 L -70.7,400.15 L -66.46,405.43 L -62.21,405.22 L -57.97,404.18 L -53.72,404.24 L -49.48,403.25 L -45.24,401.95 L -40.99,397.64 L -36.75,397.53 L -32.51,400.97 L -28.26,403.15 L -24.02,405.49 L -19.78,402.82 L -15.53,401.51 L -11.29,401.29 L -7.05,404.4 L -2.8,407.23 L 1.44,409.74 L 5.68,411.32 L 9.93,407.94 L 14.17,408.49 L 18.41,406.63 L 22.66,405.98 L 26.9,411.1 L 31.14,406.2 L 35.39,400.91 L 39.63,400.97 L 43.87,403.96 L 48.12,400.58 L 52.36,399.55 L 56.61,396.12 L 60.85,400.64 L 65.09,401.56 L 69.34,403.36 L 73.58,406.25 L 77.82,404.34 L 82.07,410.94 L 86.31,413.61 L 90.55,413.06 L 94.8,410.83 L 99.04,407.67 L 103.28,408.92 L 107.53,405.43 L 111.77,403.42 L 116.01,401.56 L 120.26,404.51 L 124.5,404.45 L 128.74,397.04 L 132.99,396.77 L 137.23,396.99 L 141.47,398.02 L 145.72,391.87 L 149.96,389.9 L 154.21,392.03 L 158.45,390.56 L 162.69,390.72 L 166.94,394.37 L 171.18,390.5 L 175.42,390.88 L 179.67,400.64 L 183.91,396.88 L 188.15,407.78 L 192.4,412.14 L 196.64,416.99 L 200.88,422 L 205.13,414.7 L 209.37,408.16 L 213.61,411.97 L 217.86,421.18 L 222.1,416.88 L 226.34,411.16 L 230.59,415.46 L 234.83,419.17 L 239.07,409.96 L 243.32,405.71 L 247.56,404.07 L 251.8,399.55 L 256.05,406.47 L 260.29,399.11 L 264.54,394.1 L 268.78,387.45 L 273.02,382.38 L 277.27,387.78 L 281.51,379.39 L 285.75,370.01 L 290,375.46 L 294.24,371.54 L 298.48,364.07 L 302.73,367.4 L 306.97,367.4 L 311.21,364.35 L 315.46,361.95 L 319.7,361.73 L 323.94,362 L 328.19,362.11 L 332.43,361.19 L 336.67,363.04 L 340.92,374.65 L 345.16,376.72 L 349.4,377.75 L 353.65,376.23 L 357.89,373.83 L 362.14,372.63 L 366.38,363.09 L 370.62,359.55 L 374.87,360.04 L 379.11,364.84 L 383.35,359.11 L 387.6,355.19 L 391.84,352.74 L 396.08,350.29 L 400.33,349.74 L 404.57,344.62 L 408.81,343.53 L 413.06,346.74 L 417.3,335.46 L 421.54,333.88 L 425.79,340.15 L 430.03,349.31 L 434.27,347.56 L 438.52,350.56 L 442.76,354.86 L 447,357.81 L 451.25,356.77 L 455.49,355.68 L 459.73,333.88 L 463.98,318.52 L 468.22,333.67 L 472.47,349.47 L 476.71,363.86 L 480.95,374.37 L 485.2,373.5 L 489.44,377.42 L 493.68,377.32 L 497.93,380.09 L 502.17,369.36 L 506.41,360.31 L 510.66,359.28 L 514.9,358.68 L 519.14,353.94 L 523.39,353.99 L 527.63,351.38 L 531.87,355.95 L 536.12,356.44 L 540.36,353.01 L 544.6,358.68 L 548.85,359.44 L 553.09,357.75 L 557.33,348.6 L 561.58,352.68 L 565.82,347.13 L 570.07,345.98 L 574.31,343.69 L 578.55,343.37 L 582.8,342.33 L 587.04,339.93 L 591.28,332.96 L 595.53,318.3 L 599.77,326.15 L 604.01,332.85 L 608.26,324.67 L 612.5,335.14 L 616.74,333.23 L 620.99,327.56 L 625.23,332.25 L 629.47,336.06 L 633.72,339.66 L 637.96,331.21 L 642.2,321.95 L 646.45,324.51 L 650.69,321.24 L 654.93,322.06 L 659.18,328.87 L 663.42,328.82 L 667.66,329.2 L 671.91,339.55 L 676.15,339.93 L 680.4,340.21 L 684.64,342.11 L 688.88,344.4 L 693.13,340.86 L 697.37,332.9 L 701.61,330.94 L 705.86,327.84 L 710.1,319.17 L 714.34,290.18 L 718.59,260.43 L 722.83,205.44 L 727.07,200.48 L 731.32,166.48 L 735.56,198.47 L 739.8,144.57 L 744.05,137.11 L 748.29,131.5 L 752.53,146.7 L 756.78,138.25 L 761.02,136.24 L 765.26,70.52 L 769.51,62.67 L 773.75,71.17 L 777.99,60 L 782.24,72.81 L 786.48,101.52 L 790.73,126.54 L 794.97,145.99 L 799.21,150.35 L 803.46,154.6 L 807.7,142.5 L 811.94,161.52 L 816.19,155.47 L 820.43,139.18 L 824.67,152.15 L 828.92,160.65 L 833.16,161.68 L 837.4,171.71 L 841.65,156.45 L 845.89,148.72 L 850.13,160.76 L 854.38,161.47 L 858.62,166.21 L 862.86,170.95 L 867.11,180.7 L 871.35,138.69 L 875.59,151.44 L 879.84,155.09 L 884.08,148.06 L 888.33,169.42 L 892.57,185.39 L 896.81,179.12 L 901.06,161.96 L 905.3,153.35 L 909.54,143.59 L 913.79,110.52 L 918.03,120.05 L 922.27,105.72 L 926.52,111.17 L 930.76,108.88 L 935,89.86 L 939.25,113.89 L 943.49,95.86 L 947.73,76.78" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="171.17892735316946" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">02:00 PM</text><text x="273.0221840815493" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">04:00 PM</text><text x="374.865440809931" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">06:00 PM</text><text x="476.70869753830993" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="578.5519542666907" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">10:00 PM</text><text x="680.3952109950706" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.705078125" lengthAdjust="spacing">12:00 AM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">9 Aug</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 421.54,0 L 421.54,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="421.54" cy="104.24" r="5" fill="white" stroke="white" opacity="1"/><circle cx="421.54" cy="104.24" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="421.54" cy="107.96" r="5" fill="white" stroke="white" opacity="1"/><circle cx="421.54" cy="107.96" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="421.54" cy="333.88" r="5" fill="white" stroke="white" opacity="1"/><circle cx="421.54" cy="333.88" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="325.88" width="161.65" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="338.88408851422605" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="155.6483154296875" lengthAdjust="spacing">199.04 TAOUSDT BTC</text><rect x="435.5" y="124.24" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="137.24137931034474" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,923.186 ETHUSDT BTC</text><rect x="435.5" y="96.24" width="181.68" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="109.24137931034474" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="175.68035888671875" lengthAdjust="spacing">65,086.14 BTCUSDT BTC</text><rect x="351.14" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="421.5436001437711" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">06:55 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
535
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
536
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 36s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 36s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 36s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 36s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 36s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-47817f37 {
537
+ --dark-theme-hide: 1;
538
+ --light-theme-hide: 0;
539
+ --rgb244245247rgb262525: rgb(244, 245, 247);
540
+ --rgb244245247rgb545762: rgb(244, 245, 247);
541
+ --rgb210214220rgb000: rgb(210, 214, 220);
542
+ --rgb210214220rgb758599: rgb(210, 214, 220);
543
+ --rgb255255255rgb444444: rgb(255, 255, 255);
544
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
545
+ --rgb255255255rgb363636: rgb(255, 255, 255);
546
+ --rgb255255255rgb393939: rgb(255, 255, 255);
547
+ --rgb255255255rgb303030: rgb(255, 255, 255);
548
+ --rgb240254255rgb03755: rgb(240, 254, 255);
549
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
550
+ --rgb758599rgb229231235: rgb(75, 85, 99);
551
+ --rgb758599rgb180180180: rgb(75, 85, 99);
552
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
553
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
554
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
555
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
556
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
557
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
558
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
559
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
560
+ --rgb229231235rgb262525: rgb(229, 231, 235);
561
+ --rgb229231235rgb758599: rgb(229, 231, 235);
562
+ --rgb249250251rgb333333: rgb(249, 250, 251);
563
+ --rgb223046rgb244245247: rgb(22, 30, 46);
564
+ --blackrgb187187187: black;
565
+ --f9fafb212121: #f9fafb;
566
+ --161e2ef4f5f7: #161e2e;
567
+ --d2d6dc4b5563: #d2d6dc;
568
+ --nonergb303030: none;
569
+ --rgb87863rgb21699181: rgb(87, 8, 63);
570
+ }
571
+ @media (prefers-color-scheme: dark) {
572
+ :root #id-47817f37 {
573
+ --dark-theme-hide: 0;
574
+ --light-theme-hide: 1;
575
+ --rgb244245247rgb262525: rgb(26, 25, 25);
576
+ --rgb244245247rgb545762: rgb(54, 57, 62);
577
+ --rgb210214220rgb000: rgb(0, 0, 0);
578
+ --rgb210214220rgb758599: rgb(75, 85, 99);
579
+ --rgb255255255rgb444444: rgb(44, 44, 44);
580
+ --rgb255255255rgb363636: rgb(36, 36, 36);
581
+ --rgb255255255rgb393939: rgb(39, 39, 39);
582
+ --rgb255255255rgb303030: rgb(30, 30, 30);
583
+ --rgb240254255rgb03755: rgb(0, 37, 55);
584
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
585
+ --rgb758599rgb229231235: rgb(229, 231, 235);
586
+ --rgb758599rgb180180180: rgb(180, 180, 180);
587
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
588
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
589
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
590
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
591
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
592
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
593
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
594
+ --rgb229231235rgb262525: rgb(26, 25, 25);
595
+ --rgb229231235rgb758599: rgb(75, 85, 99);
596
+ --rgb249250251rgb333333: rgb(33, 33, 33);
597
+ --rgb223046rgb244245247: rgb(244, 245, 247);
598
+ --blackrgb187187187: rgb(187, 187, 187);
599
+ --f9fafb212121: #212121;
600
+ --161e2ef4f5f7: #f4f5f7;
601
+ --d2d6dc4b5563: #4b5563;
602
+ --nonergb303030: rgb(30, 30, 30);
603
+ --rgb87863rgb21699181: rgb(216, 99, 181);
604
+ }
605
+ }
606
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-6" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-3635766603" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-1795745660" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-1427421891" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-788bfa90"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
607
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
608
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -124.09,472 L -124.09,257.75 L -124.09,257.75 L -117.76,255.2 L -111.43,252.5 L -105.1,260.88 L -98.77,265.54 L -92.44,255.45 L -86.11,274.55 L -79.77,295.15 L -73.44,300.43 L -67.11,301.59 L -60.78,301.76 L -54.45,302.27 L -48.12,320.76 L -41.79,313.89 L -35.46,308.62 L -29.13,321.74 L -22.8,349.36 L -16.47,325.02 L -10.14,224.43 L -3.81,279.92 L 2.52,294.65 L 8.85,283.58 L 15.18,258.88 L 21.51,243.14 L 27.84,259.26 L 34.17,240.65 L 40.5,259.61 L 46.84,262.44 L 53.17,255.23 L 59.5,260.77 L 65.83,249.1 L 72.16,256.06 L 78.49,249.75 L 84.82,260.88 L 91.15,266.4 L 97.48,261.46 L 103.81,268.87 L 110.14,260.6 L 116.47,251.92 L 122.8,251.77 L 129.13,229.47 L 135.46,207.76 L 141.79,202.66 L 148.12,163.14 L 154.45,118.9 L 160.78,67.62 L 167.12,60 L 173.45,125.15 L 179.78,93.9 L 186.11,73.37 L 192.44,82.57 L 198.77,107.62 L 205.1,139.88 L 211.43,138.14 L 217.76,148.73 L 224.09,166.29 L 230.42,156 L 236.75,163.49 L 243.08,177.01 L 249.41,186.75 L 255.74,191.24 L 262.07,165.2 L 268.4,151.86 L 274.73,152.37 L 281.06,147.09 L 287.39,158.47 L 293.73,166.97 L 300.06,161.09 L 306.39,175.98 L 312.72,206.27 L 319.05,215.7 L 325.38,190.76 L 331.71,193.18 L 338.04,185.61 L 344.37,164.42 L 350.7,157.26 L 357.03,161.5 L 363.36,129.94 L 369.69,120.16 L 376.02,136.27 L 382.35,132.14 L 388.68,116.95 L 395.01,96.47 L 401.34,114.28 L 407.67,110.95 L 414,117.23 L 420.34,124.72 L 426.67,119.37 L 433,126.19 L 439.33,143.84 L 445.66,163.26 L 451.99,194.51 L 458.32,216.71 L 464.65,215.15 L 470.98,197.47 L 477.31,199.46 L 483.64,199.68 L 489.97,208.99 L 496.3,213.94 L 502.63,215.45 L 508.96,219.28 L 515.29,241.23 L 521.62,238.93 L 527.95,240.72 L 534.28,240.39 L 540.62,244.66 L 546.95,232 L 553.28,222.28 L 559.61,219.08 L 565.94,191.66 L 572.27,168.61 L 578.6,180.24 L 584.93,174.84 L 591.26,176.43 L 597.59,171.69 L 603.92,191.84 L 610.25,195.04 L 616.58,171.01 L 622.91,180.99 L 629.24,186.27 L 635.57,171.64 L 641.9,171.59 L 648.23,173.91 L 654.56,174.23 L 660.89,180.31 L 667.23,198.1 L 673.56,219.48 L 679.89,217.27 L 686.22,214.82 L 692.55,225.49 L 698.88,205.01 L 705.21,212.12 L 711.54,221.96 L 717.87,218.78 L 724.2,243.45 L 730.53,241.86 L 736.86,259.82 L 743.19,266.58 L 749.52,271.12 L 755.85,274.9 L 762.18,268.92 L 768.51,280.98 L 774.84,295.03 L 781.17,302.04 L 787.51,303.81 L 793.84,318.36 L 800.17,330.72 L 806.5,343.18 L 812.83,343.81 L 819.16,347.87 L 825.49,325.7 L 831.82,311.32 L 838.15,319.97 L 844.48,341.82 L 850.81,305.7 L 857.14,303.35 L 863.47,305.95 L 869.8,317.5 L 876.13,319.17 L 882.46,323.03 L 888.79,323.1 L 895.12,315.08 L 901.45,314.3 L 907.78,314.25 L 914.12,315.69 L 920.45,315.13 L 926.78,296.16 L 933.11,300.68 L 939.44,304.59 L 945.77,316.59 L 952.1,298.08 L 958.43,278.46 L 964.76,286.02 L 971.09,284.89 L 977.42,287.21 L 983.75,326.51 L 990.08,422 L 990.08,472 Z" fill="url(#gradient-3635766603)" opacity="1"/><path d="M -124.09,257.75 L -117.76,255.2 L -111.43,252.5 L -105.1,260.88 L -98.77,265.54 L -92.44,255.45 L -86.11,274.55 L -79.77,295.15 L -73.44,300.43 L -67.11,301.59 L -60.78,301.76 L -54.45,302.27 L -48.12,320.76 L -41.79,313.89 L -35.46,308.62 L -29.13,321.74 L -22.8,349.36 L -16.47,325.02 L -10.14,224.43 L -3.81,279.92 L 2.52,294.65 L 8.85,283.58 L 15.18,258.88 L 21.51,243.14 L 27.84,259.26 L 34.17,240.65 L 40.5,259.61 L 46.84,262.44 L 53.17,255.23 L 59.5,260.77 L 65.83,249.1 L 72.16,256.06 L 78.49,249.75 L 84.82,260.88 L 91.15,266.4 L 97.48,261.46 L 103.81,268.87 L 110.14,260.6 L 116.47,251.92 L 122.8,251.77 L 129.13,229.47 L 135.46,207.76 L 141.79,202.66 L 148.12,163.14 L 154.45,118.9 L 160.78,67.62 L 167.12,60 L 173.45,125.15 L 179.78,93.9 L 186.11,73.37 L 192.44,82.57 L 198.77,107.62 L 205.1,139.88 L 211.43,138.14 L 217.76,148.73 L 224.09,166.29 L 230.42,156 L 236.75,163.49 L 243.08,177.01 L 249.41,186.75 L 255.74,191.24 L 262.07,165.2 L 268.4,151.86 L 274.73,152.37 L 281.06,147.09 L 287.39,158.47 L 293.73,166.97 L 300.06,161.09 L 306.39,175.98 L 312.72,206.27 L 319.05,215.7 L 325.38,190.76 L 331.71,193.18 L 338.04,185.61 L 344.37,164.42 L 350.7,157.26 L 357.03,161.5 L 363.36,129.94 L 369.69,120.16 L 376.02,136.27 L 382.35,132.14 L 388.68,116.95 L 395.01,96.47 L 401.34,114.28 L 407.67,110.95 L 414,117.23 L 420.34,124.72 L 426.67,119.37 L 433,126.19 L 439.33,143.84 L 445.66,163.26 L 451.99,194.51 L 458.32,216.71 L 464.65,215.15 L 470.98,197.47 L 477.31,199.46 L 483.64,199.68 L 489.97,208.99 L 496.3,213.94 L 502.63,215.45 L 508.96,219.28 L 515.29,241.23 L 521.62,238.93 L 527.95,240.72 L 534.28,240.39 L 540.62,244.66 L 546.95,232 L 553.28,222.28 L 559.61,219.08 L 565.94,191.66 L 572.27,168.61 L 578.6,180.24 L 584.93,174.84 L 591.26,176.43 L 597.59,171.69 L 603.92,191.84 L 610.25,195.04 L 616.58,171.01 L 622.91,180.99 L 629.24,186.27 L 635.57,171.64 L 641.9,171.59 L 648.23,173.91 L 654.56,174.23 L 660.89,180.31 L 667.23,198.1 L 673.56,219.48 L 679.89,217.27 L 686.22,214.82 L 692.55,225.49 L 698.88,205.01 L 705.21,212.12 L 711.54,221.96 L 717.87,218.78 L 724.2,243.45 L 730.53,241.86 L 736.86,259.82 L 743.19,266.58 L 749.52,271.12 L 755.85,274.9 L 762.18,268.92 L 768.51,280.98 L 774.84,295.03 L 781.17,302.04 L 787.51,303.81 L 793.84,318.36 L 800.17,330.72 L 806.5,343.18 L 812.83,343.81 L 819.16,347.87 L 825.49,325.7 L 831.82,311.32 L 838.15,319.97 L 844.48,341.82 L 850.81,305.7 L 857.14,303.35 L 863.47,305.95 L 869.8,317.5 L 876.13,319.17 L 882.46,323.03 L 888.79,323.1 L 895.12,315.08 L 901.45,314.3 L 907.78,314.25 L 914.12,315.69 L 920.45,315.13 L 926.78,296.16 L 933.11,300.68 L 939.44,304.59 L 945.77,316.59 L 952.1,298.08 L 958.43,278.46 L 964.76,286.02 L 971.09,284.89 L 977.42,287.21 L 983.75,326.51 L 990.08,422" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -124.09,472 L -124.09,235.42 L -124.09,235.42 L -117.76,229.06 L -111.43,221.15 L -105.1,206.31 L -98.77,212.67 L -92.44,197.06 L -86.11,218.46 L -79.77,257.96 L -73.44,263.75 L -67.11,259.37 L -60.78,269.61 L -54.45,275.97 L -48.12,273.78 L -41.79,252.44 L -35.46,228.78 L -29.13,241.21 L -22.8,261.98 L -16.47,250.68 L -10.14,198.05 L -3.81,239.16 L 2.52,259.02 L 8.85,263.54 L 15.18,259.23 L 21.51,244.6 L 27.84,256.26 L 34.17,234.01 L 40.5,281.2 L 46.84,270.04 L 53.17,249.76 L 59.5,270.53 L 65.83,271.1 L 72.16,286.92 L 78.49,289.18 L 84.82,306.28 L 91.15,299.43 L 97.48,286 L 103.81,295.47 L 110.14,279.5 L 116.47,263.82 L 122.8,238.74 L 129.13,227.79 L 135.46,227.58 L 141.79,213.94 L 148.12,173.96 L 154.45,150.85 L 160.78,96.88 L 167.12,108.89 L 173.45,176.07 L 179.78,130.44 L 186.11,99.63 L 192.44,111.08 L 198.77,129.52 L 205.1,163.29 L 211.43,142.38 L 217.76,134.96 L 224.09,165.48 L 230.42,166.68 L 236.75,195.43 L 243.08,197.34 L 249.41,191.19 L 255.74,195.22 L 262.07,153.11 L 268.4,147.46 L 274.73,146.83 L 281.06,131.28 L 287.39,136.3 L 293.73,157.99 L 300.06,154.1 L 306.39,166.54 L 312.72,179.96 L 319.05,197.2 L 325.38,188.23 L 331.71,191.19 L 338.04,186.18 L 344.37,174.31 L 350.7,177.42 L 357.03,173.11 L 363.36,157.71 L 369.69,155.87 L 376.02,163.15 L 382.35,134.89 L 388.68,104.65 L 395.01,60 L 401.34,81.19 L 407.67,93.13 L 414,95.82 L 420.34,119.98 L 426.67,140.82 L 433,138.84 L 439.33,164.14 L 445.66,194.09 L 451.99,228.71 L 458.32,240.79 L 464.65,240.65 L 470.98,221.71 L 477.31,213.87 L 483.64,219.73 L 489.97,221.85 L 496.3,220.72 L 502.63,216.91 L 508.96,217.12 L 515.29,217.97 L 521.62,219.45 L 527.95,225.95 L 534.28,241.64 L 540.62,268.13 L 546.95,257.46 L 553.28,249.55 L 559.61,243.4 L 565.94,228.14 L 572.27,229.13 L 578.6,258.17 L 584.93,255.41 L 591.26,259.16 L 597.59,245.52 L 603.92,264.67 L 610.25,268.62 L 616.58,237.82 L 622.91,228.14 L 629.24,230.9 L 635.57,225.39 L 641.9,247.08 L 648.23,250.89 L 654.56,248.98 L 660.89,247.29 L 667.23,242.98 L 673.56,241.14 L 679.89,232.8 L 686.22,216.7 L 692.55,232.73 L 698.88,197.34 L 705.21,191.12 L 711.54,201.44 L 717.87,214.93 L 724.2,236.13 L 730.53,240.51 L 736.86,259.02 L 743.19,276.61 L 749.52,272.79 L 755.85,254.35 L 762.18,246.44 L 768.51,260.92 L 774.84,276.25 L 781.17,284.24 L 787.51,292.78 L 793.84,297.09 L 800.17,354.74 L 806.5,388.44 L 812.83,402.15 L 819.16,422 L 825.49,406.17 L 831.82,363.08 L 838.15,365.98 L 844.48,362.02 L 850.81,316.24 L 857.14,313.48 L 863.47,314.47 L 869.8,317.94 L 876.13,350.36 L 882.46,368.02 L 888.79,387.1 L 895.12,328.18 L 901.45,331.92 L 907.78,334.82 L 914.12,341.46 L 920.45,349.09 L 926.78,329.24 L 933.11,334.4 L 939.44,332.21 L 945.77,376.36 L 952.1,355.66 L 958.43,285.86 L 964.76,293.92 L 971.09,299.28 L 977.42,295.54 L 983.75,341.18 L 990.08,413.59 L 990.08,472 Z" fill="url(#gradient-1795745660)" opacity="1"/><path d="M -124.09,235.42 L -117.76,229.06 L -111.43,221.15 L -105.1,206.31 L -98.77,212.67 L -92.44,197.06 L -86.11,218.46 L -79.77,257.96 L -73.44,263.75 L -67.11,259.37 L -60.78,269.61 L -54.45,275.97 L -48.12,273.78 L -41.79,252.44 L -35.46,228.78 L -29.13,241.21 L -22.8,261.98 L -16.47,250.68 L -10.14,198.05 L -3.81,239.16 L 2.52,259.02 L 8.85,263.54 L 15.18,259.23 L 21.51,244.6 L 27.84,256.26 L 34.17,234.01 L 40.5,281.2 L 46.84,270.04 L 53.17,249.76 L 59.5,270.53 L 65.83,271.1 L 72.16,286.92 L 78.49,289.18 L 84.82,306.28 L 91.15,299.43 L 97.48,286 L 103.81,295.47 L 110.14,279.5 L 116.47,263.82 L 122.8,238.74 L 129.13,227.79 L 135.46,227.58 L 141.79,213.94 L 148.12,173.96 L 154.45,150.85 L 160.78,96.88 L 167.12,108.89 L 173.45,176.07 L 179.78,130.44 L 186.11,99.63 L 192.44,111.08 L 198.77,129.52 L 205.1,163.29 L 211.43,142.38 L 217.76,134.96 L 224.09,165.48 L 230.42,166.68 L 236.75,195.43 L 243.08,197.34 L 249.41,191.19 L 255.74,195.22 L 262.07,153.11 L 268.4,147.46 L 274.73,146.83 L 281.06,131.28 L 287.39,136.3 L 293.73,157.99 L 300.06,154.1 L 306.39,166.54 L 312.72,179.96 L 319.05,197.2 L 325.38,188.23 L 331.71,191.19 L 338.04,186.18 L 344.37,174.31 L 350.7,177.42 L 357.03,173.11 L 363.36,157.71 L 369.69,155.87 L 376.02,163.15 L 382.35,134.89 L 388.68,104.65 L 395.01,60 L 401.34,81.19 L 407.67,93.13 L 414,95.82 L 420.34,119.98 L 426.67,140.82 L 433,138.84 L 439.33,164.14 L 445.66,194.09 L 451.99,228.71 L 458.32,240.79 L 464.65,240.65 L 470.98,221.71 L 477.31,213.87 L 483.64,219.73 L 489.97,221.85 L 496.3,220.72 L 502.63,216.91 L 508.96,217.12 L 515.29,217.97 L 521.62,219.45 L 527.95,225.95 L 534.28,241.64 L 540.62,268.13 L 546.95,257.46 L 553.28,249.55 L 559.61,243.4 L 565.94,228.14 L 572.27,229.13 L 578.6,258.17 L 584.93,255.41 L 591.26,259.16 L 597.59,245.52 L 603.92,264.67 L 610.25,268.62 L 616.58,237.82 L 622.91,228.14 L 629.24,230.9 L 635.57,225.39 L 641.9,247.08 L 648.23,250.89 L 654.56,248.98 L 660.89,247.29 L 667.23,242.98 L 673.56,241.14 L 679.89,232.8 L 686.22,216.7 L 692.55,232.73 L 698.88,197.34 L 705.21,191.12 L 711.54,201.44 L 717.87,214.93 L 724.2,236.13 L 730.53,240.51 L 736.86,259.02 L 743.19,276.61 L 749.52,272.79 L 755.85,254.35 L 762.18,246.44 L 768.51,260.92 L 774.84,276.25 L 781.17,284.24 L 787.51,292.78 L 793.84,297.09 L 800.17,354.74 L 806.5,388.44 L 812.83,402.15 L 819.16,422 L 825.49,406.17 L 831.82,363.08 L 838.15,365.98 L 844.48,362.02 L 850.81,316.24 L 857.14,313.48 L 863.47,314.47 L 869.8,317.94 L 876.13,350.36 L 882.46,368.02 L 888.79,387.1 L 895.12,328.18 L 901.45,331.92 L 907.78,334.82 L 914.12,341.46 L 920.45,349.09 L 926.78,329.24 L 933.11,334.4 L 939.44,332.21 L 945.77,376.36 L 952.1,355.66 L 958.43,285.86 L 964.76,293.92 L 971.09,299.28 L 977.42,295.54 L 983.75,341.18 L 990.08,413.59" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -124.09,472 L -124.09,396.12 L -124.09,396.12 L -117.76,400.64 L -111.43,401.56 L -105.1,403.36 L -98.77,406.25 L -92.44,404.34 L -86.11,410.94 L -79.77,413.61 L -73.44,413.06 L -67.11,410.83 L -60.78,407.67 L -54.45,408.92 L -48.12,405.43 L -41.79,403.42 L -35.46,401.56 L -29.13,404.51 L -22.8,404.45 L -16.47,397.04 L -10.14,396.77 L -3.81,396.99 L 2.52,398.02 L 8.85,391.87 L 15.18,389.9 L 21.51,392.03 L 27.84,390.56 L 34.17,390.72 L 40.5,394.37 L 46.84,390.5 L 53.17,390.88 L 59.5,400.64 L 65.83,396.88 L 72.16,407.78 L 78.49,412.14 L 84.82,416.99 L 91.15,422 L 97.48,414.7 L 103.81,408.16 L 110.14,411.97 L 116.47,421.18 L 122.8,416.88 L 129.13,411.16 L 135.46,415.46 L 141.79,419.17 L 148.12,409.96 L 154.45,405.71 L 160.78,404.07 L 167.12,399.55 L 173.45,406.47 L 179.78,399.11 L 186.11,394.1 L 192.44,387.45 L 198.77,382.38 L 205.1,387.78 L 211.43,379.39 L 217.76,370.01 L 224.09,375.46 L 230.42,371.54 L 236.75,364.07 L 243.08,367.4 L 249.41,367.4 L 255.74,364.35 L 262.07,361.95 L 268.4,361.73 L 274.73,362 L 281.06,362.11 L 287.39,361.19 L 293.73,363.04 L 300.06,374.65 L 306.39,376.72 L 312.72,377.75 L 319.05,376.23 L 325.38,373.83 L 331.71,372.63 L 338.04,363.09 L 344.37,359.55 L 350.7,360.04 L 357.03,364.84 L 363.36,359.11 L 369.69,355.19 L 376.02,352.74 L 382.35,350.29 L 388.68,349.74 L 395.01,344.62 L 401.34,343.53 L 407.67,346.74 L 414,335.46 L 420.34,333.88 L 426.67,340.15 L 433,349.31 L 439.33,347.56 L 445.66,350.56 L 451.99,354.86 L 458.32,357.81 L 464.65,356.77 L 470.98,355.68 L 477.31,333.88 L 483.64,318.52 L 489.97,333.67 L 496.3,349.47 L 502.63,363.86 L 508.96,374.37 L 515.29,373.5 L 521.62,377.42 L 527.95,377.32 L 534.28,380.09 L 540.62,369.36 L 546.95,360.31 L 553.28,359.28 L 559.61,358.68 L 565.94,353.94 L 572.27,353.99 L 578.6,351.38 L 584.93,355.95 L 591.26,356.44 L 597.59,353.01 L 603.92,358.68 L 610.25,359.44 L 616.58,357.75 L 622.91,348.6 L 629.24,352.68 L 635.57,347.13 L 641.9,345.98 L 648.23,343.69 L 654.56,343.37 L 660.89,342.33 L 667.23,339.93 L 673.56,332.96 L 679.89,318.3 L 686.22,326.15 L 692.55,332.85 L 698.88,324.67 L 705.21,335.14 L 711.54,333.23 L 717.87,327.56 L 724.2,332.25 L 730.53,336.06 L 736.86,339.66 L 743.19,331.21 L 749.52,321.95 L 755.85,324.51 L 762.18,321.24 L 768.51,322.06 L 774.84,328.87 L 781.17,328.82 L 787.51,329.2 L 793.84,339.55 L 800.17,339.93 L 806.5,340.21 L 812.83,342.11 L 819.16,344.4 L 825.49,340.86 L 831.82,332.9 L 838.15,330.94 L 844.48,327.84 L 850.81,319.17 L 857.14,290.18 L 863.47,260.43 L 869.8,205.44 L 876.13,200.48 L 882.46,166.48 L 888.79,198.47 L 895.12,144.57 L 901.45,137.11 L 907.78,131.5 L 914.12,146.7 L 920.45,138.25 L 926.78,136.24 L 933.11,70.52 L 939.44,62.67 L 945.77,71.17 L 952.1,60 L 958.43,72.81 L 964.76,101.52 L 971.09,126.54 L 977.42,145.99 L 983.75,150.35 L 990.08,154.6 L 990.08,472 Z" fill="url(#gradient-1427421891)" opacity="1"/><path d="M -124.09,396.12 L -117.76,400.64 L -111.43,401.56 L -105.1,403.36 L -98.77,406.25 L -92.44,404.34 L -86.11,410.94 L -79.77,413.61 L -73.44,413.06 L -67.11,410.83 L -60.78,407.67 L -54.45,408.92 L -48.12,405.43 L -41.79,403.42 L -35.46,401.56 L -29.13,404.51 L -22.8,404.45 L -16.47,397.04 L -10.14,396.77 L -3.81,396.99 L 2.52,398.02 L 8.85,391.87 L 15.18,389.9 L 21.51,392.03 L 27.84,390.56 L 34.17,390.72 L 40.5,394.37 L 46.84,390.5 L 53.17,390.88 L 59.5,400.64 L 65.83,396.88 L 72.16,407.78 L 78.49,412.14 L 84.82,416.99 L 91.15,422 L 97.48,414.7 L 103.81,408.16 L 110.14,411.97 L 116.47,421.18 L 122.8,416.88 L 129.13,411.16 L 135.46,415.46 L 141.79,419.17 L 148.12,409.96 L 154.45,405.71 L 160.78,404.07 L 167.12,399.55 L 173.45,406.47 L 179.78,399.11 L 186.11,394.1 L 192.44,387.45 L 198.77,382.38 L 205.1,387.78 L 211.43,379.39 L 217.76,370.01 L 224.09,375.46 L 230.42,371.54 L 236.75,364.07 L 243.08,367.4 L 249.41,367.4 L 255.74,364.35 L 262.07,361.95 L 268.4,361.73 L 274.73,362 L 281.06,362.11 L 287.39,361.19 L 293.73,363.04 L 300.06,374.65 L 306.39,376.72 L 312.72,377.75 L 319.05,376.23 L 325.38,373.83 L 331.71,372.63 L 338.04,363.09 L 344.37,359.55 L 350.7,360.04 L 357.03,364.84 L 363.36,359.11 L 369.69,355.19 L 376.02,352.74 L 382.35,350.29 L 388.68,349.74 L 395.01,344.62 L 401.34,343.53 L 407.67,346.74 L 414,335.46 L 420.34,333.88 L 426.67,340.15 L 433,349.31 L 439.33,347.56 L 445.66,350.56 L 451.99,354.86 L 458.32,357.81 L 464.65,356.77 L 470.98,355.68 L 477.31,333.88 L 483.64,318.52 L 489.97,333.67 L 496.3,349.47 L 502.63,363.86 L 508.96,374.37 L 515.29,373.5 L 521.62,377.42 L 527.95,377.32 L 534.28,380.09 L 540.62,369.36 L 546.95,360.31 L 553.28,359.28 L 559.61,358.68 L 565.94,353.94 L 572.27,353.99 L 578.6,351.38 L 584.93,355.95 L 591.26,356.44 L 597.59,353.01 L 603.92,358.68 L 610.25,359.44 L 616.58,357.75 L 622.91,348.6 L 629.24,352.68 L 635.57,347.13 L 641.9,345.98 L 648.23,343.69 L 654.56,343.37 L 660.89,342.33 L 667.23,339.93 L 673.56,332.96 L 679.89,318.3 L 686.22,326.15 L 692.55,332.85 L 698.88,324.67 L 705.21,335.14 L 711.54,333.23 L 717.87,327.56 L 724.2,332.25 L 730.53,336.06 L 736.86,339.66 L 743.19,331.21 L 749.52,321.95 L 755.85,324.51 L 762.18,321.24 L 768.51,322.06 L 774.84,328.87 L 781.17,328.82 L 787.51,329.2 L 793.84,339.55 L 800.17,339.93 L 806.5,340.21 L 812.83,342.11 L 819.16,344.4 L 825.49,340.86 L 831.82,332.9 L 838.15,330.94 L 844.48,327.84 L 850.81,319.17 L 857.14,290.18 L 863.47,260.43 L 869.8,205.44 L 876.13,200.48 L 882.46,166.48 L 888.79,198.47 L 895.12,144.57 L 901.45,137.11 L 907.78,131.5 L 914.12,146.7 L 920.45,138.25 L 926.78,136.24 L 933.11,70.52 L 939.44,62.67 L 945.77,71.17 L 952.1,60 L 958.43,72.81 L 964.76,101.52 L 971.09,126.54 L 977.42,145.99 L 983.75,150.35 L 990.08,154.6" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="198.76756541691884" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">04:00 PM</text><text x="274.7337082547274" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">05:00 PM</text><text x="350.69985109253776" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">06:00 PM</text><text x="426.6659939303463" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">07:00 PM</text><text x="502.63213676815485" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="578.5982796059643" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">09:00 PM</text><text x="654.5644224437738" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">10:00 PM</text><text x="730.5305652815832" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="50.484375" lengthAdjust="spacing">11:00 PM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">9 Aug</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 420.34,0 L 420.34,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="420.34" cy="124.72" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.34" cy="124.72" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="420.34" cy="119.98" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.34" cy="119.98" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="420.34" cy="333.88" r="5" fill="white" stroke="white" opacity="1"/><circle cx="420.34" cy="333.88" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="325.88" width="161.65" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="338.88408851422605" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="155.6483154296875" lengthAdjust="spacing">199.04 TAOUSDT BTC</text><rect x="435.5" y="139.98" width="181.68" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="152.98009367681797" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="175.68035888671875" lengthAdjust="spacing">65,086.14 BTCUSDT BTC</text><rect x="435.5" y="111.98" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="124.98009367681797" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,923.186 ETHUSDT BTC</text><rect x="349.93" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="420.3354820271952" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">06:55 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
609
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
610
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 40s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 40s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 40s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 40s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 40s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-788bfa90 {
611
+ --dark-theme-hide: 1;
612
+ --light-theme-hide: 0;
613
+ --rgb244245247rgb262525: rgb(244, 245, 247);
614
+ --rgb244245247rgb545762: rgb(244, 245, 247);
615
+ --rgb210214220rgb000: rgb(210, 214, 220);
616
+ --rgb210214220rgb758599: rgb(210, 214, 220);
617
+ --rgb255255255rgb444444: rgb(255, 255, 255);
618
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
619
+ --rgb255255255rgb363636: rgb(255, 255, 255);
620
+ --rgb255255255rgb393939: rgb(255, 255, 255);
621
+ --rgb255255255rgb303030: rgb(255, 255, 255);
622
+ --rgb240254255rgb03755: rgb(240, 254, 255);
623
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
624
+ --rgb758599rgb229231235: rgb(75, 85, 99);
625
+ --rgb758599rgb180180180: rgb(75, 85, 99);
626
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
627
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
628
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
629
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
630
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
631
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
632
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
633
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
634
+ --rgb229231235rgb262525: rgb(229, 231, 235);
635
+ --rgb229231235rgb758599: rgb(229, 231, 235);
636
+ --rgb249250251rgb333333: rgb(249, 250, 251);
637
+ --rgb223046rgb244245247: rgb(22, 30, 46);
638
+ --blackrgb187187187: black;
639
+ --f9fafb212121: #f9fafb;
640
+ --161e2ef4f5f7: #161e2e;
641
+ --d2d6dc4b5563: #d2d6dc;
642
+ --nonergb303030: none;
643
+ --rgb87863rgb21699181: rgb(87, 8, 63);
644
+ }
645
+ @media (prefers-color-scheme: dark) {
646
+ :root #id-788bfa90 {
647
+ --dark-theme-hide: 0;
648
+ --light-theme-hide: 1;
649
+ --rgb244245247rgb262525: rgb(26, 25, 25);
650
+ --rgb244245247rgb545762: rgb(54, 57, 62);
651
+ --rgb210214220rgb000: rgb(0, 0, 0);
652
+ --rgb210214220rgb758599: rgb(75, 85, 99);
653
+ --rgb255255255rgb444444: rgb(44, 44, 44);
654
+ --rgb255255255rgb363636: rgb(36, 36, 36);
655
+ --rgb255255255rgb393939: rgb(39, 39, 39);
656
+ --rgb255255255rgb303030: rgb(30, 30, 30);
657
+ --rgb240254255rgb03755: rgb(0, 37, 55);
658
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
659
+ --rgb758599rgb229231235: rgb(229, 231, 235);
660
+ --rgb758599rgb180180180: rgb(180, 180, 180);
661
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
662
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
663
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
664
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
665
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
666
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
667
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
668
+ --rgb229231235rgb262525: rgb(26, 25, 25);
669
+ --rgb229231235rgb758599: rgb(75, 85, 99);
670
+ --rgb249250251rgb333333: rgb(33, 33, 33);
671
+ --rgb223046rgb244245247: rgb(244, 245, 247);
672
+ --blackrgb187187187: rgb(187, 187, 187);
673
+ --f9fafb212121: #212121;
674
+ --161e2ef4f5f7: #f4f5f7;
675
+ --d2d6dc4b5563: #4b5563;
676
+ --nonergb303030: rgb(30, 30, 30);
677
+ --rgb87863rgb21699181: rgb(216, 99, 181);
678
+ }
679
+ }
680
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-7" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-2439178763" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-1797436671" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-107636343" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-6f583148"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
681
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
682
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -185.88,472 L -185.88,310.1 L -185.88,310.1 L -176.44,290.31 L -167,310.57 L -157.55,287.17 L -148.11,311.02 L -138.66,314.57 L -129.22,305.5 L -119.78,312.48 L -110.33,297.79 L -100.89,306.55 L -91.44,298.62 L -82,312.6 L -72.56,319.55 L -63.11,313.33 L -53.67,322.66 L -44.22,312.25 L -34.78,301.34 L -25.34,301.15 L -15.89,273.11 L -6.45,245.81 L 3,239.4 L 12.44,189.7 L 21.88,134.06 L 31.33,69.58 L 40.77,60 L 50.22,141.93 L 59.66,102.63 L 69.1,76.81 L 78.55,88.39 L 87.99,119.88 L 97.44,160.45 L 106.88,158.26 L 116.32,171.58 L 125.77,193.66 L 135.21,180.72 L 144.66,190.14 L 154.1,207.14 L 163.54,219.38 L 172.99,225.03 L 182.43,192.3 L 191.88,175.52 L 201.32,176.15 L 210.76,169.52 L 220.21,183.83 L 229.65,194.52 L 239.1,187.13 L 248.54,205.84 L 257.98,243.93 L 267.43,255.8 L 276.87,224.43 L 286.32,227.47 L 295.76,217.96 L 305.21,191.31 L 314.65,182.31 L 324.09,187.63 L 333.54,147.95 L 342.98,135.65 L 352.43,155.92 L 361.87,150.71 L 371.31,131.62 L 380.76,105.86 L 390.2,128.26 L 399.65,124.07 L 409.09,131.97 L 418.53,141.39 L 427.98,134.66 L 437.42,143.23 L 446.87,165.43 L 456.31,189.85 L 465.75,229.15 L 475.2,257.07 L 484.64,255.1 L 494.09,232.86 L 503.53,235.37 L 512.97,235.66 L 522.42,247.36 L 531.86,253.58 L 541.31,255.48 L 550.75,260.3 L 560.19,287.9 L 569.64,285.01 L 579.08,287.26 L 588.53,286.85 L 597.97,292.21 L 607.41,276.29 L 616.86,264.08 L 626.3,260.05 L 635.75,225.57 L 645.19,196.58 L 654.63,211.2 L 664.08,204.41 L 673.52,206.41 L 682.97,200.45 L 692.41,225.79 L 701.85,229.82 L 711.3,199.59 L 720.74,212.15 L 730.19,218.78 L 739.63,200.38 L 749.07,200.32 L 758.52,203.24 L 767.96,203.65 L 777.41,211.3 L 786.85,233.66 L 796.29,260.55 L 805.74,257.76 L 815.18,254.69 L 824.63,268.1 L 834.07,242.35 L 843.51,251.29 L 852.96,263.66 L 862.4,259.67 L 871.85,290.69 L 881.29,288.69 L 890.73,311.27 L 900.18,319.77 L 909.62,325.48 L 919.07,330.24 L 928.51,322.72 L 937.95,337.88 L 947.4,355.55 L 956.84,364.37 L 966.29,366.59 L 975.73,384.89 L 985.17,400.43 L 994.62,416.1 L 1004.06,416.89 L 1013.51,422 L 1022.95,394.12 L 1032.39,376.04 L 1041.84,386.92 L 1051.28,414.39 L 1051.28,472 Z" fill="url(#gradient-2439178763)" opacity="1"/><path d="M -185.88,310.1 L -176.44,290.31 L -167,310.57 L -157.55,287.17 L -148.11,311.02 L -138.66,314.57 L -129.22,305.5 L -119.78,312.48 L -110.33,297.79 L -100.89,306.55 L -91.44,298.62 L -82,312.6 L -72.56,319.55 L -63.11,313.33 L -53.67,322.66 L -44.22,312.25 L -34.78,301.34 L -25.34,301.15 L -15.89,273.11 L -6.45,245.81 L 3,239.4 L 12.44,189.7 L 21.88,134.06 L 31.33,69.58 L 40.77,60 L 50.22,141.93 L 59.66,102.63 L 69.1,76.81 L 78.55,88.39 L 87.99,119.88 L 97.44,160.45 L 106.88,158.26 L 116.32,171.58 L 125.77,193.66 L 135.21,180.72 L 144.66,190.14 L 154.1,207.14 L 163.54,219.38 L 172.99,225.03 L 182.43,192.3 L 191.88,175.52 L 201.32,176.15 L 210.76,169.52 L 220.21,183.83 L 229.65,194.52 L 239.1,187.13 L 248.54,205.84 L 257.98,243.93 L 267.43,255.8 L 276.87,224.43 L 286.32,227.47 L 295.76,217.96 L 305.21,191.31 L 314.65,182.31 L 324.09,187.63 L 333.54,147.95 L 342.98,135.65 L 352.43,155.92 L 361.87,150.71 L 371.31,131.62 L 380.76,105.86 L 390.2,128.26 L 399.65,124.07 L 409.09,131.97 L 418.53,141.39 L 427.98,134.66 L 437.42,143.23 L 446.87,165.43 L 456.31,189.85 L 465.75,229.15 L 475.2,257.07 L 484.64,255.1 L 494.09,232.86 L 503.53,235.37 L 512.97,235.66 L 522.42,247.36 L 531.86,253.58 L 541.31,255.48 L 550.75,260.3 L 560.19,287.9 L 569.64,285.01 L 579.08,287.26 L 588.53,286.85 L 597.97,292.21 L 607.41,276.29 L 616.86,264.08 L 626.3,260.05 L 635.75,225.57 L 645.19,196.58 L 654.63,211.2 L 664.08,204.41 L 673.52,206.41 L 682.97,200.45 L 692.41,225.79 L 701.85,229.82 L 711.3,199.59 L 720.74,212.15 L 730.19,218.78 L 739.63,200.38 L 749.07,200.32 L 758.52,203.24 L 767.96,203.65 L 777.41,211.3 L 786.85,233.66 L 796.29,260.55 L 805.74,257.76 L 815.18,254.69 L 824.63,268.1 L 834.07,242.35 L 843.51,251.29 L 852.96,263.66 L 862.4,259.67 L 871.85,290.69 L 881.29,288.69 L 890.73,311.27 L 900.18,319.77 L 909.62,325.48 L 919.07,330.24 L 928.51,322.72 L 937.95,337.88 L 947.4,355.55 L 956.84,364.37 L 966.29,366.59 L 975.73,384.89 L 985.17,400.43 L 994.62,416.1 L 1004.06,416.89 L 1013.51,422 L 1022.95,394.12 L 1032.39,376.04 L 1041.84,386.92 L 1051.28,414.39" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -185.88,472 L -185.88,259.23 L -185.88,259.23 L -176.44,244.6 L -167,256.26 L -157.55,234.01 L -148.11,281.2 L -138.66,270.04 L -129.22,249.76 L -119.78,270.53 L -110.33,271.1 L -100.89,286.92 L -91.44,289.18 L -82,306.28 L -72.56,299.43 L -63.11,286 L -53.67,295.47 L -44.22,279.5 L -34.78,263.82 L -25.34,238.74 L -15.89,227.79 L -6.45,227.58 L 3,213.94 L 12.44,173.96 L 21.88,150.85 L 31.33,96.88 L 40.77,108.89 L 50.22,176.07 L 59.66,130.44 L 69.1,99.63 L 78.55,111.08 L 87.99,129.52 L 97.44,163.29 L 106.88,142.38 L 116.32,134.96 L 125.77,165.48 L 135.21,166.68 L 144.66,195.43 L 154.1,197.34 L 163.54,191.19 L 172.99,195.22 L 182.43,153.11 L 191.88,147.46 L 201.32,146.83 L 210.76,131.28 L 220.21,136.3 L 229.65,157.99 L 239.1,154.1 L 248.54,166.54 L 257.98,179.96 L 267.43,197.2 L 276.87,188.23 L 286.32,191.19 L 295.76,186.18 L 305.21,174.31 L 314.65,177.42 L 324.09,173.11 L 333.54,157.71 L 342.98,155.87 L 352.43,163.15 L 361.87,134.89 L 371.31,104.65 L 380.76,60 L 390.2,81.19 L 399.65,93.13 L 409.09,95.82 L 418.53,119.98 L 427.98,140.82 L 437.42,138.84 L 446.87,164.14 L 456.31,194.09 L 465.75,228.71 L 475.2,240.79 L 484.64,240.65 L 494.09,221.71 L 503.53,213.87 L 512.97,219.73 L 522.42,221.85 L 531.86,220.72 L 541.31,216.91 L 550.75,217.12 L 560.19,217.97 L 569.64,219.45 L 579.08,225.95 L 588.53,241.64 L 597.97,268.13 L 607.41,257.46 L 616.86,249.55 L 626.3,243.4 L 635.75,228.14 L 645.19,229.13 L 654.63,258.17 L 664.08,255.41 L 673.52,259.16 L 682.97,245.52 L 692.41,264.67 L 701.85,268.62 L 711.3,237.82 L 720.74,228.14 L 730.19,230.9 L 739.63,225.39 L 749.07,247.08 L 758.52,250.89 L 767.96,248.98 L 777.41,247.29 L 786.85,242.98 L 796.29,241.14 L 805.74,232.8 L 815.18,216.7 L 824.63,232.73 L 834.07,197.34 L 843.51,191.12 L 852.96,201.44 L 862.4,214.93 L 871.85,236.13 L 881.29,240.51 L 890.73,259.02 L 900.18,276.61 L 909.62,272.79 L 919.07,254.35 L 928.51,246.44 L 937.95,260.92 L 947.4,276.25 L 956.84,284.24 L 966.29,292.78 L 975.73,297.09 L 985.17,354.74 L 994.62,388.44 L 1004.06,402.15 L 1013.51,422 L 1022.95,406.17 L 1032.39,363.08 L 1041.84,365.98 L 1051.28,362.02 L 1051.28,472 Z" fill="url(#gradient-1797436671)" opacity="1"/><path d="M -185.88,259.23 L -176.44,244.6 L -167,256.26 L -157.55,234.01 L -148.11,281.2 L -138.66,270.04 L -129.22,249.76 L -119.78,270.53 L -110.33,271.1 L -100.89,286.92 L -91.44,289.18 L -82,306.28 L -72.56,299.43 L -63.11,286 L -53.67,295.47 L -44.22,279.5 L -34.78,263.82 L -25.34,238.74 L -15.89,227.79 L -6.45,227.58 L 3,213.94 L 12.44,173.96 L 21.88,150.85 L 31.33,96.88 L 40.77,108.89 L 50.22,176.07 L 59.66,130.44 L 69.1,99.63 L 78.55,111.08 L 87.99,129.52 L 97.44,163.29 L 106.88,142.38 L 116.32,134.96 L 125.77,165.48 L 135.21,166.68 L 144.66,195.43 L 154.1,197.34 L 163.54,191.19 L 172.99,195.22 L 182.43,153.11 L 191.88,147.46 L 201.32,146.83 L 210.76,131.28 L 220.21,136.3 L 229.65,157.99 L 239.1,154.1 L 248.54,166.54 L 257.98,179.96 L 267.43,197.2 L 276.87,188.23 L 286.32,191.19 L 295.76,186.18 L 305.21,174.31 L 314.65,177.42 L 324.09,173.11 L 333.54,157.71 L 342.98,155.87 L 352.43,163.15 L 361.87,134.89 L 371.31,104.65 L 380.76,60 L 390.2,81.19 L 399.65,93.13 L 409.09,95.82 L 418.53,119.98 L 427.98,140.82 L 437.42,138.84 L 446.87,164.14 L 456.31,194.09 L 465.75,228.71 L 475.2,240.79 L 484.64,240.65 L 494.09,221.71 L 503.53,213.87 L 512.97,219.73 L 522.42,221.85 L 531.86,220.72 L 541.31,216.91 L 550.75,217.12 L 560.19,217.97 L 569.64,219.45 L 579.08,225.95 L 588.53,241.64 L 597.97,268.13 L 607.41,257.46 L 616.86,249.55 L 626.3,243.4 L 635.75,228.14 L 645.19,229.13 L 654.63,258.17 L 664.08,255.41 L 673.52,259.16 L 682.97,245.52 L 692.41,264.67 L 701.85,268.62 L 711.3,237.82 L 720.74,228.14 L 730.19,230.9 L 739.63,225.39 L 749.07,247.08 L 758.52,250.89 L 767.96,248.98 L 777.41,247.29 L 786.85,242.98 L 796.29,241.14 L 805.74,232.8 L 815.18,216.7 L 824.63,232.73 L 834.07,197.34 L 843.51,191.12 L 852.96,201.44 L 862.4,214.93 L 871.85,236.13 L 881.29,240.51 L 890.73,259.02 L 900.18,276.61 L 909.62,272.79 L 919.07,254.35 L 928.51,246.44 L 937.95,260.92 L 947.4,276.25 L 956.84,284.24 L 966.29,292.78 L 975.73,297.09 L 985.17,354.74 L 994.62,388.44 L 1004.06,402.15 L 1013.51,422 L 1022.95,406.17 L 1032.39,363.08 L 1041.84,365.98 L 1051.28,362.02" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -185.88,472 L -185.88,309.96 L -185.88,309.96 L -176.44,317.38 L -167,312.24 L -157.55,312.81 L -148.11,325.56 L -138.66,312.05 L -129.22,313.38 L -119.78,347.43 L -110.33,334.31 L -100.89,372.35 L -91.44,387.57 L -82,404.5 L -72.56,422 L -63.11,396.51 L -53.67,373.68 L -44.22,387 L -34.78,419.15 L -25.34,404.12 L -15.89,384.15 L -6.45,399.17 L 3,412.11 L 12.44,379.96 L 21.88,365.12 L 31.33,359.42 L 40.77,343.63 L 50.22,367.79 L 59.66,342.11 L 69.1,324.6 L 78.55,301.4 L 87.99,283.71 L 97.44,302.54 L 106.88,273.24 L 116.32,240.52 L 125.77,259.55 L 135.21,245.85 L 144.66,219.79 L 154.1,231.39 L 163.54,231.39 L 172.99,220.74 L 182.43,212.37 L 191.88,211.61 L 201.32,212.56 L 210.76,212.94 L 220.21,209.71 L 229.65,216.18 L 239.1,256.69 L 248.54,263.92 L 257.98,267.54 L 267.43,262.21 L 276.87,253.84 L 286.32,249.66 L 295.76,216.37 L 305.21,204 L 314.65,205.71 L 324.09,222.45 L 333.54,202.48 L 342.98,188.78 L 352.43,180.22 L 361.87,171.66 L 371.31,169.76 L 380.76,151.88 L 390.2,148.07 L 399.65,159.3 L 409.09,119.92 L 418.53,114.4 L 427.98,136.28 L 437.42,168.24 L 446.87,162.15 L 456.31,172.61 L 465.75,187.64 L 475.2,197.91 L 484.64,194.3 L 494.09,190.5 L 503.53,114.4 L 512.97,60.76 L 522.42,113.64 L 531.86,168.81 L 541.31,219.03 L 550.75,255.74 L 560.19,252.7 L 569.64,266.4 L 579.08,266.01 L 588.53,275.72 L 597.97,238.24 L 607.41,206.66 L 616.86,203.05 L 626.3,200.96 L 635.75,184.41 L 645.19,184.6 L 654.63,175.47 L 664.08,191.45 L 673.52,193.16 L 682.97,181.17 L 692.41,200.96 L 701.85,203.62 L 711.3,197.72 L 720.74,165.77 L 730.19,180.03 L 739.63,160.63 L 749.07,156.63 L 758.52,148.65 L 767.96,147.5 L 777.41,143.89 L 786.85,135.52 L 796.29,111.17 L 805.74,60 L 815.18,87.39 L 824.63,110.79 L 834.07,82.26 L 843.51,118.78 L 852.96,112.12 L 862.4,92.34 L 871.85,108.7 L 881.29,122.01 L 890.73,134.57 L 900.18,105.08 L 909.62,72.75 L 919.07,81.69 L 928.51,70.27 L 937.95,73.13 L 947.4,96.9 L 956.84,96.71 L 966.29,98.05 L 975.73,134.19 L 985.17,135.52 L 994.62,136.47 L 1004.06,143.13 L 1013.51,151.12 L 1022.95,138.75 L 1032.39,110.98 L 1041.84,104.13 L 1051.28,93.29 L 1051.28,472 Z" fill="url(#gradient-107636343)" opacity="1"/><path d="M -185.88,309.96 L -176.44,317.38 L -167,312.24 L -157.55,312.81 L -148.11,325.56 L -138.66,312.05 L -129.22,313.38 L -119.78,347.43 L -110.33,334.31 L -100.89,372.35 L -91.44,387.57 L -82,404.5 L -72.56,422 L -63.11,396.51 L -53.67,373.68 L -44.22,387 L -34.78,419.15 L -25.34,404.12 L -15.89,384.15 L -6.45,399.17 L 3,412.11 L 12.44,379.96 L 21.88,365.12 L 31.33,359.42 L 40.77,343.63 L 50.22,367.79 L 59.66,342.11 L 69.1,324.6 L 78.55,301.4 L 87.99,283.71 L 97.44,302.54 L 106.88,273.24 L 116.32,240.52 L 125.77,259.55 L 135.21,245.85 L 144.66,219.79 L 154.1,231.39 L 163.54,231.39 L 172.99,220.74 L 182.43,212.37 L 191.88,211.61 L 201.32,212.56 L 210.76,212.94 L 220.21,209.71 L 229.65,216.18 L 239.1,256.69 L 248.54,263.92 L 257.98,267.54 L 267.43,262.21 L 276.87,253.84 L 286.32,249.66 L 295.76,216.37 L 305.21,204 L 314.65,205.71 L 324.09,222.45 L 333.54,202.48 L 342.98,188.78 L 352.43,180.22 L 361.87,171.66 L 371.31,169.76 L 380.76,151.88 L 390.2,148.07 L 399.65,159.3 L 409.09,119.92 L 418.53,114.4 L 427.98,136.28 L 437.42,168.24 L 446.87,162.15 L 456.31,172.61 L 465.75,187.64 L 475.2,197.91 L 484.64,194.3 L 494.09,190.5 L 503.53,114.4 L 512.97,60.76 L 522.42,113.64 L 531.86,168.81 L 541.31,219.03 L 550.75,255.74 L 560.19,252.7 L 569.64,266.4 L 579.08,266.01 L 588.53,275.72 L 597.97,238.24 L 607.41,206.66 L 616.86,203.05 L 626.3,200.96 L 635.75,184.41 L 645.19,184.6 L 654.63,175.47 L 664.08,191.45 L 673.52,193.16 L 682.97,181.17 L 692.41,200.96 L 701.85,203.62 L 711.3,197.72 L 720.74,165.77 L 730.19,180.03 L 739.63,160.63 L 749.07,156.63 L 758.52,148.65 L 767.96,147.5 L 777.41,143.89 L 786.85,135.52 L 796.29,111.17 L 805.74,60 L 815.18,87.39 L 824.63,110.79 L 834.07,82.26 L 843.51,118.78 L 852.96,112.12 L 862.4,92.34 L 871.85,108.7 L 881.29,122.01 L 890.73,134.57 L 900.18,105.08 L 909.62,72.75 L 919.07,81.69 L 928.51,70.27 L 937.95,73.13 L 947.4,96.9 L 956.84,96.71 L 966.29,98.05 L 975.73,134.19 L 985.17,135.52 L 994.62,136.47 L 1004.06,143.13 L 1013.51,151.12 L 1022.95,138.75 L 1032.39,110.98 L 1041.84,104.13 L 1051.28,93.29" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="201.3208594490734" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">05:00 PM</text><text x="314.6490275190645" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">06:00 PM</text><text x="427.9771955890519" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">07:00 PM</text><text x="541.3053636590375" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:00 PM</text><text x="654.6335317290268" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">09:00 PM</text><text x="767.9616997990161" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">10:00 PM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 427.98,0 L 427.98,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="427.98" cy="134.66" r="5" fill="white" stroke="white" opacity="1"/><circle cx="427.98" cy="134.66" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="427.98" cy="140.82" r="5" fill="white" stroke="white" opacity="1"/><circle cx="427.98" cy="140.82" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="427.98" cy="136.28" r="5" fill="white" stroke="white" opacity="1"/><circle cx="427.98" cy="136.28" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="435.5" y="156.28" width="182.32" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="#E91E63" stroke-width="2" opacity="1"/><text x="438.5" y="169.28060956384618" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="176.32037353515625" lengthAdjust="spacing">1,922.596 ETHUSDT BTC</text><rect x="435.5" y="128.28" width="161.65" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(57 185 121)" stroke-width="2" opacity="1"/><text x="438.5" y="141.28060956384618" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="155.6483154296875" lengthAdjust="spacing">198.81 TAOUSDT BTC</text><rect x="435.5" y="100.28" width="181.68" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="rgb(189 171 0)" stroke-width="2" opacity="1"/><text x="438.5" y="113.28060956384618" text-anchor="start" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="175.68035888671875" lengthAdjust="spacing">65,090.38 BTCUSDT BTC</text><rect x="357.57" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="427.9771955890519" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">07:00 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
683
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
684
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 44s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 44s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 44s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 44s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 44s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-6f583148 {
685
+ --dark-theme-hide: 1;
686
+ --light-theme-hide: 0;
687
+ --rgb244245247rgb262525: rgb(244, 245, 247);
688
+ --rgb244245247rgb545762: rgb(244, 245, 247);
689
+ --rgb210214220rgb000: rgb(210, 214, 220);
690
+ --rgb210214220rgb758599: rgb(210, 214, 220);
691
+ --rgb255255255rgb444444: rgb(255, 255, 255);
692
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
693
+ --rgb255255255rgb363636: rgb(255, 255, 255);
694
+ --rgb255255255rgb393939: rgb(255, 255, 255);
695
+ --rgb255255255rgb303030: rgb(255, 255, 255);
696
+ --rgb240254255rgb03755: rgb(240, 254, 255);
697
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
698
+ --rgb758599rgb229231235: rgb(75, 85, 99);
699
+ --rgb758599rgb180180180: rgb(75, 85, 99);
700
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
701
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
702
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
703
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
704
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
705
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
706
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
707
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
708
+ --rgb229231235rgb262525: rgb(229, 231, 235);
709
+ --rgb229231235rgb758599: rgb(229, 231, 235);
710
+ --rgb249250251rgb333333: rgb(249, 250, 251);
711
+ --rgb223046rgb244245247: rgb(22, 30, 46);
712
+ --blackrgb187187187: black;
713
+ --f9fafb212121: #f9fafb;
714
+ --161e2ef4f5f7: #161e2e;
715
+ --d2d6dc4b5563: #d2d6dc;
716
+ --nonergb303030: none;
717
+ --rgb87863rgb21699181: rgb(87, 8, 63);
718
+ }
719
+ @media (prefers-color-scheme: dark) {
720
+ :root #id-6f583148 {
721
+ --dark-theme-hide: 0;
722
+ --light-theme-hide: 1;
723
+ --rgb244245247rgb262525: rgb(26, 25, 25);
724
+ --rgb244245247rgb545762: rgb(54, 57, 62);
725
+ --rgb210214220rgb000: rgb(0, 0, 0);
726
+ --rgb210214220rgb758599: rgb(75, 85, 99);
727
+ --rgb255255255rgb444444: rgb(44, 44, 44);
728
+ --rgb255255255rgb363636: rgb(36, 36, 36);
729
+ --rgb255255255rgb393939: rgb(39, 39, 39);
730
+ --rgb255255255rgb303030: rgb(30, 30, 30);
731
+ --rgb240254255rgb03755: rgb(0, 37, 55);
732
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
733
+ --rgb758599rgb229231235: rgb(229, 231, 235);
734
+ --rgb758599rgb180180180: rgb(180, 180, 180);
735
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
736
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
737
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
738
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
739
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
740
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
741
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
742
+ --rgb229231235rgb262525: rgb(26, 25, 25);
743
+ --rgb229231235rgb758599: rgb(75, 85, 99);
744
+ --rgb249250251rgb333333: rgb(33, 33, 33);
745
+ --rgb223046rgb244245247: rgb(244, 245, 247);
746
+ --blackrgb187187187: rgb(187, 187, 187);
747
+ --f9fafb212121: #212121;
748
+ --161e2ef4f5f7: #f4f5f7;
749
+ --d2d6dc4b5563: #4b5563;
750
+ --nonergb303030: rgb(30, 30, 30);
751
+ --rgb87863rgb21699181: rgb(216, 99, 181);
752
+ }
753
+ }
754
+ </style></svg><svg xmlns="http://www.w3.org/2000/svg" width="900" height="900" viewBox="0 0 900 900" id="scene-8" style="position: absolute; top: 0px; left: 0px; z-index: 9999;"><defs><linearGradient id="gradient-1078747482" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(189, 171, 0)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(189, 171, 0)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(189, 171, 0)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(189, 171, 0)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(189, 171, 0)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(189, 171, 0)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(189, 171, 0)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-298365434" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(233, 30, 99)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(233, 30, 99)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(233, 30, 99)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(233, 30, 99)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(233, 30, 99)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(233, 30, 99)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(233, 30, 99)" stop-opacity="0"/></linearGradient><linearGradient id="gradient-3945600806" x1="0" y1="60" x2="0" y2="472" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="rgb(57, 185, 121)" stop-opacity="0.5"/><stop offset="0.2" stop-color="rgb(57, 185, 121)" stop-opacity="0.4"/><stop offset="0.3" stop-color="rgb(57, 185, 121)" stop-opacity="0.3"/><stop offset="0.4" stop-color="rgb(57, 185, 121)" stop-opacity="0.2"/><stop offset="0.5" stop-color="rgb(57, 185, 121)" stop-opacity="0.1"/><stop offset="0.7" stop-color="rgb(57, 185, 121)" stop-opacity="0.02"/><stop offset="0.8" stop-color="rgb(57, 185, 121)" stop-opacity="0"/></linearGradient><style type="text/css"/></defs><g style="clip-path: inset(0px) view-box;" id="id-ce737f28"><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb244245247rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="App"><g><rect x="0" y="0" width="900" height="900" rx="0" ry="0" fill="var(--rgb210214220rgb000)" style="animation: auto ease 0s 1 normal none running none;"/><g><g><use href="#c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"/><g><g><g><g><rect x="1" y="63" width="898" height="837" rx="0" ry="0" fill="var(--rgb229231235rgb262525)" style="animation: auto ease 0s 1 normal none running none;"/><g><g data-command="SilverGridChild" style="clip-path: inset(79px 17px 295px round 8px) view-box;"><rect x="17" y="79" width="866" height="526" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,79 H883 V132 H17 V79 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(79px 144px 769px 21px) view-box;"><g><rect x="21" y="81" width="287.640625" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(93px 615.359px 781px 29px) view-box;"><g><g><g style="transform: translate(29px, 94px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
755
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
756
+ </svg></g><g role="presentation" style="clip-path: inset(94px 847px 782px 29px) view-box;"><rect x="29" y="94" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(93px 615.359px 781px 61px) view-box;"><text x="61" y="112" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="223.640625" lengthAdjust="spacing">Major Assets Price Comparison</text></g></g></g></g></g><g><rect x="806" y="89.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 59.1px 785.1px 821.1px) view-box;"><rect x="821.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 95.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(95.1px 27.1px 785.1px 853.1px) view-box;"><rect x="853.1" y="95.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="89" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="131.5" x2="883" y2="131.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g data-command="W_TimeChart"><rect x="17" y="133" width="866" height="472" rx="0" ry="0" fill="var(--rgb255255255rgb393939)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(133px 17px 295px) view-box;"><g transform="translate(17, 133)" style="clip-path: inset(0px 0px 162px) view-box;"><g transform="translate(0, 0) scale(1,1)"><path d="M -274.51,472 L -274.51,411.52 L -274.51,411.52 L -260.42,396.32 L -246.33,396.05 L -232.24,356.98 L -218.15,318.93 L -204.06,310 L -189.97,240.73 L -175.89,163.21 L -161.8,73.35 L -147.71,60 L -133.62,174.17 L -119.53,119.41 L -105.44,83.43 L -91.35,99.56 L -77.26,143.45 L -63.18,199.98 L -49.09,196.93 L -35,215.5 L -20.91,246.26 L -6.82,228.23 L 7.27,241.35 L 21.36,265.04 L 35.45,282.11 L 49.54,289.97 L 63.62,244.36 L 77.71,220.98 L 91.8,221.86 L 105.89,212.62 L 119.98,232.56 L 134.07,247.45 L 148.16,237.15 L 162.25,263.23 L 176.33,316.32 L 190.42,332.85 L 204.51,289.13 L 218.6,293.38 L 232.69,280.12 L 246.78,242.99 L 260.87,230.44 L 274.96,237.86 L 289.05,182.57 L 303.13,165.42 L 317.22,193.66 L 331.31,186.41 L 345.4,159.8 L 359.49,123.91 L 373.58,155.12 L 387.67,149.28 L 401.76,160.29 L 415.84,173.42 L 429.93,164.05 L 444.02,175.98 L 458.11,206.92 L 472.2,240.96 L 486.29,295.72 L 500.38,334.62 L 514.47,331.88 L 528.55,300.89 L 542.64,304.38 L 556.73,304.78 L 570.82,321.09 L 584.91,329.75 L 599,332.41 L 613.09,339.12 L 627.18,377.58 L 641.27,373.56 L 655.35,376.69 L 669.44,376.12 L 683.53,383.59 L 697.62,361.4 L 711.71,344.38 L 725.8,338.77 L 739.89,290.73 L 753.98,250.33 L 768.06,270.7 L 782.15,261.24 L 796.24,264.03 L 810.33,255.72 L 824.42,291.03 L 838.51,296.65 L 852.6,254.53 L 866.69,272.03 L 880.78,281.27 L 894.86,255.63 L 908.95,255.54 L 923.04,259.61 L 937.13,260.18 L 951.22,270.84 L 965.31,302 L 979.4,339.48 L 993.49,335.59 L 1007.57,331.3 L 1021.66,350 L 1035.75,314.11 L 1049.84,326.57 L 1063.93,343.81 L 1078.02,338.24 L 1092.11,381.47 L 1106.2,378.68 L 1120.29,410.15 L 1134.37,422 L 1134.37,472 Z" fill="url(#gradient-1078747482)" opacity="1"/><path d="M -274.51,411.52 L -260.42,396.32 L -246.33,396.05 L -232.24,356.98 L -218.15,318.93 L -204.06,310 L -189.97,240.73 L -175.89,163.21 L -161.8,73.35 L -147.71,60 L -133.62,174.17 L -119.53,119.41 L -105.44,83.43 L -91.35,99.56 L -77.26,143.45 L -63.18,199.98 L -49.09,196.93 L -35,215.5 L -20.91,246.26 L -6.82,228.23 L 7.27,241.35 L 21.36,265.04 L 35.45,282.11 L 49.54,289.97 L 63.62,244.36 L 77.71,220.98 L 91.8,221.86 L 105.89,212.62 L 119.98,232.56 L 134.07,247.45 L 148.16,237.15 L 162.25,263.23 L 176.33,316.32 L 190.42,332.85 L 204.51,289.13 L 218.6,293.38 L 232.69,280.12 L 246.78,242.99 L 260.87,230.44 L 274.96,237.86 L 289.05,182.57 L 303.13,165.42 L 317.22,193.66 L 331.31,186.41 L 345.4,159.8 L 359.49,123.91 L 373.58,155.12 L 387.67,149.28 L 401.76,160.29 L 415.84,173.42 L 429.93,164.05 L 444.02,175.98 L 458.11,206.92 L 472.2,240.96 L 486.29,295.72 L 500.38,334.62 L 514.47,331.88 L 528.55,300.89 L 542.64,304.38 L 556.73,304.78 L 570.82,321.09 L 584.91,329.75 L 599,332.41 L 613.09,339.12 L 627.18,377.58 L 641.27,373.56 L 655.35,376.69 L 669.44,376.12 L 683.53,383.59 L 697.62,361.4 L 711.71,344.38 L 725.8,338.77 L 739.89,290.73 L 753.98,250.33 L 768.06,270.7 L 782.15,261.24 L 796.24,264.03 L 810.33,255.72 L 824.42,291.03 L 838.51,296.65 L 852.6,254.53 L 866.69,272.03 L 880.78,281.27 L 894.86,255.63 L 908.95,255.54 L 923.04,259.61 L 937.13,260.18 L 951.22,270.84 L 965.31,302 L 979.4,339.48 L 993.49,335.59 L 1007.57,331.3 L 1021.66,350 L 1035.75,314.11 L 1049.84,326.57 L 1063.93,343.81 L 1078.02,338.24 L 1092.11,381.47 L 1106.2,378.68 L 1120.29,410.15 L 1134.37,422" fill="none" stroke="rgb(189 171 0)" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -274.51,472 L -274.51,422 L -274.51,422 L -260.42,396.13 L -246.33,354.77 L -232.24,336.71 L -218.15,336.36 L -204.06,313.88 L -189.97,247.93 L -175.89,209.83 L -161.8,120.82 L -147.71,140.63 L -133.62,251.43 L -119.53,176.16 L -105.44,125.36 L -91.35,144.24 L -77.26,174.65 L -63.18,230.34 L -49.09,195.85 L -35,183.62 L -20.91,233.95 L -6.82,235.93 L 7.27,283.35 L 21.36,286.5 L 35.45,276.36 L 49.54,283 L 63.62,213.56 L 77.71,204.24 L 91.8,203.19 L 105.89,177.56 L 119.98,185.83 L 134.07,221.6 L 148.16,215.19 L 162.25,235.7 L 176.33,257.84 L 190.42,286.26 L 204.51,271.47 L 218.6,276.36 L 232.69,268.09 L 246.78,248.51 L 260.87,253.64 L 274.96,246.53 L 289.05,221.13 L 303.13,218.11 L 317.22,230.11 L 331.31,183.5 L 345.4,133.64 L 359.49,60 L 373.58,94.95 L 387.67,114.64 L 401.76,119.07 L 415.84,158.92 L 429.93,193.29 L 444.02,190.03 L 458.11,231.74 L 472.2,281.14 L 486.29,338.23 L 500.38,358.15 L 514.47,357.92 L 528.55,326.69 L 542.64,313.76 L 556.73,323.43 L 570.82,326.93 L 584.91,325.06 L 599,318.77 L 613.09,319.12 L 627.18,320.52 L 641.27,322.97 L 655.35,333.68 L 669.44,359.55 L 683.53,403.24 L 697.62,385.65 L 711.71,372.6 L 725.8,362.46 L 739.89,337.3 L 753.98,338.93 L 768.06,386.81 L 782.15,382.27 L 796.24,388.44 L 810.33,365.96 L 824.42,397.53 L 838.51,404.06 L 852.6,353.26 L 866.69,337.3 L 880.78,341.84 L 894.86,332.75 L 908.95,368.52 L 923.04,374.81 L 937.13,371.67 L 951.22,368.87 L 965.31,361.76 L 979.4,358.73 L 993.49,344.99 L 1007.57,318.42 L 1021.66,344.87 L 1035.75,286.5 L 1049.84,276.24 L 1063.93,293.26 L 1078.02,315.51 L 1092.11,350.46 L 1106.2,357.69 L 1120.29,388.21 L 1134.37,417.22 L 1134.37,472 Z" fill="url(#gradient-298365434)" opacity="1"/><path d="M -274.51,422 L -260.42,396.13 L -246.33,354.77 L -232.24,336.71 L -218.15,336.36 L -204.06,313.88 L -189.97,247.93 L -175.89,209.83 L -161.8,120.82 L -147.71,140.63 L -133.62,251.43 L -119.53,176.16 L -105.44,125.36 L -91.35,144.24 L -77.26,174.65 L -63.18,230.34 L -49.09,195.85 L -35,183.62 L -20.91,233.95 L -6.82,235.93 L 7.27,283.35 L 21.36,286.5 L 35.45,276.36 L 49.54,283 L 63.62,213.56 L 77.71,204.24 L 91.8,203.19 L 105.89,177.56 L 119.98,185.83 L 134.07,221.6 L 148.16,215.19 L 162.25,235.7 L 176.33,257.84 L 190.42,286.26 L 204.51,271.47 L 218.6,276.36 L 232.69,268.09 L 246.78,248.51 L 260.87,253.64 L 274.96,246.53 L 289.05,221.13 L 303.13,218.11 L 317.22,230.11 L 331.31,183.5 L 345.4,133.64 L 359.49,60 L 373.58,94.95 L 387.67,114.64 L 401.76,119.07 L 415.84,158.92 L 429.93,193.29 L 444.02,190.03 L 458.11,231.74 L 472.2,281.14 L 486.29,338.23 L 500.38,358.15 L 514.47,357.92 L 528.55,326.69 L 542.64,313.76 L 556.73,323.43 L 570.82,326.93 L 584.91,325.06 L 599,318.77 L 613.09,319.12 L 627.18,320.52 L 641.27,322.97 L 655.35,333.68 L 669.44,359.55 L 683.53,403.24 L 697.62,385.65 L 711.71,372.6 L 725.8,362.46 L 739.89,337.3 L 753.98,338.93 L 768.06,386.81 L 782.15,382.27 L 796.24,388.44 L 810.33,365.96 L 824.42,397.53 L 838.51,404.06 L 852.6,353.26 L 866.69,337.3 L 880.78,341.84 L 894.86,332.75 L 908.95,368.52 L 923.04,374.81 L 937.13,371.67 L 951.22,368.87 L 965.31,361.76 L 979.4,358.73 L 993.49,344.99 L 1007.57,318.42 L 1021.66,344.87 L 1035.75,286.5 L 1049.84,276.24 L 1063.93,293.26 L 1078.02,315.51 L 1092.11,350.46 L 1106.2,357.69 L 1120.29,388.21 L 1134.37,417.22" fill="none" stroke="#E91E63" stroke-width="2" opacity="1" stroke-linecap="round"/><path d="M -274.51,472 L -274.51,389.6 L -274.51,389.6 L -260.42,422 L -246.33,406.85 L -232.24,386.72 L -218.15,401.87 L -204.06,414.91 L -189.97,382.5 L -175.89,367.55 L -161.8,361.79 L -147.71,345.88 L -133.62,370.23 L -119.53,344.35 L -105.44,326.71 L -91.35,303.31 L -77.26,285.48 L -63.18,304.47 L -49.09,274.94 L -35,241.96 L -20.91,261.13 L -6.82,247.33 L 7.27,221.06 L 21.36,232.76 L 35.45,232.76 L 49.54,222.02 L 63.62,213.58 L 77.71,212.81 L 91.8,213.77 L 105.89,214.16 L 119.98,210.9 L 134.07,217.42 L 148.16,258.26 L 162.25,265.54 L 176.33,269.19 L 190.42,263.82 L 204.51,255.38 L 218.6,251.16 L 232.69,217.61 L 246.78,205.15 L 260.87,206.87 L 274.96,223.74 L 289.05,203.61 L 303.13,189.81 L 317.22,181.18 L 331.31,172.55 L 345.4,170.63 L 359.49,152.61 L 373.58,148.77 L 387.67,160.09 L 401.76,120.4 L 415.84,114.84 L 429.93,136.89 L 444.02,169.1 L 458.11,162.96 L 472.2,173.51 L 486.29,188.66 L 500.38,199.01 L 514.47,195.37 L 528.55,191.53 L 542.64,114.84 L 556.73,60.77 L 570.82,114.07 L 584.91,169.67 L 599,220.29 L 613.09,257.3 L 627.18,254.23 L 641.27,268.03 L 655.35,267.65 L 669.44,277.43 L 683.53,239.66 L 697.62,207.83 L 711.71,204.19 L 725.8,202.08 L 739.89,185.4 L 753.98,185.59 L 768.06,176.38 L 782.15,192.49 L 796.24,194.22 L 810.33,182.14 L 824.42,202.08 L 838.51,204.76 L 852.6,198.82 L 866.69,166.61 L 880.78,180.99 L 894.86,161.43 L 908.95,157.4 L 923.04,149.35 L 937.13,148.2 L 951.22,144.56 L 965.31,136.12 L 979.4,111.58 L 993.49,60 L 1007.57,87.61 L 1021.66,111.19 L 1035.75,82.43 L 1049.84,119.25 L 1063.93,112.54 L 1078.02,92.6 L 1092.11,109.08 L 1106.2,122.51 L 1120.29,135.16 L 1134.37,105.44 L 1134.37,472 Z" fill="url(#gradient-3945600806)" opacity="1"/><path d="M -274.51,389.6 L -260.42,422 L -246.33,406.85 L -232.24,386.72 L -218.15,401.87 L -204.06,414.91 L -189.97,382.5 L -175.89,367.55 L -161.8,361.79 L -147.71,345.88 L -133.62,370.23 L -119.53,344.35 L -105.44,326.71 L -91.35,303.31 L -77.26,285.48 L -63.18,304.47 L -49.09,274.94 L -35,241.96 L -20.91,261.13 L -6.82,247.33 L 7.27,221.06 L 21.36,232.76 L 35.45,232.76 L 49.54,222.02 L 63.62,213.58 L 77.71,212.81 L 91.8,213.77 L 105.89,214.16 L 119.98,210.9 L 134.07,217.42 L 148.16,258.26 L 162.25,265.54 L 176.33,269.19 L 190.42,263.82 L 204.51,255.38 L 218.6,251.16 L 232.69,217.61 L 246.78,205.15 L 260.87,206.87 L 274.96,223.74 L 289.05,203.61 L 303.13,189.81 L 317.22,181.18 L 331.31,172.55 L 345.4,170.63 L 359.49,152.61 L 373.58,148.77 L 387.67,160.09 L 401.76,120.4 L 415.84,114.84 L 429.93,136.89 L 444.02,169.1 L 458.11,162.96 L 472.2,173.51 L 486.29,188.66 L 500.38,199.01 L 514.47,195.37 L 528.55,191.53 L 542.64,114.84 L 556.73,60.77 L 570.82,114.07 L 584.91,169.67 L 599,220.29 L 613.09,257.3 L 627.18,254.23 L 641.27,268.03 L 655.35,267.65 L 669.44,277.43 L 683.53,239.66 L 697.62,207.83 L 711.71,204.19 L 725.8,202.08 L 739.89,185.4 L 753.98,185.59 L 768.06,176.38 L 782.15,192.49 L 796.24,194.22 L 810.33,182.14 L 824.42,202.08 L 838.51,204.76 L 852.6,198.82 L 866.69,166.61 L 880.78,180.99 L 894.86,161.43 L 908.95,157.4 L 923.04,149.35 L 937.13,148.2 L 951.22,144.56 L 965.31,136.12 L 979.4,111.58 L 993.49,60 L 1007.57,87.61 L 1021.66,111.19 L 1035.75,82.43 L 1049.84,119.25 L 1063.93,112.54 L 1078.02,92.6 L 1092.11,109.08 L 1106.2,122.51 L 1120.29,135.16 L 1134.37,105.44" fill="none" stroke="rgb(57 185 121)" stroke-width="2" opacity="1" stroke-linecap="round"/><text x="70" y="452" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="70" y="467" text-anchor="start" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><text x="153.79253716718813" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">05:22 PM</text><text x="238.32541719981236" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">05:52 PM</text><text x="322.8582972324366" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">06:22 PM</text><text x="407.39117726506083" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">06:52 PM</text><text x="491.9240572976869" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">07:22 PM</text><text x="576.4569373303129" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">07:52 PM</text><text x="660.9898173629372" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:22 PM</text><text x="745.5226973955596" y="447" text-anchor="middle" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="51.375" lengthAdjust="spacing">08:52 PM</text><text x="846" y="452" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 12px Arial;" textLength="30.703125" lengthAdjust="spacing">8 Aug</text><text x="846" y="467" text-anchor="end" fill="var(--blackrgb187187187)" opacity="1" dominant-baseline="middle" style="font: 600 14px Arial;" textLength="31.3583984375" lengthAdjust="spacing">2026</text><path d="M 424.5,0 L 424.5,442" fill="none" stroke="#cecece" stroke-width="1" opacity="1" stroke-linecap="round"/><circle cx="424.5" cy="167.66" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.5" cy="167.66" r="3" fill="rgb(189 171 0)" stroke="rgb(189 171 0)" opacity="1"/><circle cx="424.5" cy="180.03" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.5" cy="180.03" r="3" fill="#E91E63" stroke="#E91E63" opacity="1"/><circle cx="424.5" cy="128.38" r="5" fill="white" stroke="white" opacity="1"/><circle cx="424.5" cy="128.38" r="3" fill="rgb(57 185 121)" stroke="rgb(57 185 121)" opacity="1"/><rect x="354.09" y="449" width="140.81" height="24" rx="3" ry="3" fill="var(--f9fafb212121)" stroke="var(--d2d6dc4b5563)" stroke-width="1" opacity="1"/><text x="424.5" y="462" text-anchor="middle" fill="var(--161e2ef4f5f7)" opacity="1" dominant-baseline="middle" textLength="134.8125" lengthAdjust="spacing">06:58 PM 2026-8-8</text></g></g></g><use href="#c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"/><use href="#c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"/></g></g></g><g data-command="SilverGridChild" style="clip-path: inset(621px 17px 16px round 8px) view-box;"><rect x="17" y="621" width="866" height="263" rx="8" ry="8" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><path d="M17,621 H883 V674 H17 V621 Z" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="clip-path: inset(621px 152.391px 227px 21px) view-box;"><g><rect x="21" y="623" width="156.609375" height="50" rx="0" ry="0" fill="var(--rgb255255255rgb363636)" style="animation: auto ease 0s 1 normal none running none;"/><g style="clip-path: inset(635px 746.391px 239px 29px) view-box;"><g><g><g style="transform: translate(29px, 636px); color: var(--rgb758599rgb180180180);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
757
+ <path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill:currentcolor"/>
758
+ </svg></g><g role="presentation" style="clip-path: inset(636px 847px 240px 29px) view-box;"><rect x="29" y="636" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(635px 746.391px 239px 61px) view-box;"><text x="61" y="654" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 26px; white-space: nowrap; text-transform: none;" textLength="92.609375" lengthAdjust="spacing">Latest Prices</text></g></g></g></g></g><use href="#c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"/><g><rect x="806" y="631.40625" width="1" height="31.1875" rx="0" ry="0" fill="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.fullscreen" style="opacity: 0;"><g style="transform: translate(821.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 59.1px 243.1px 821.1px) view-box;"><rect x="821.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="815" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="dashboard.window.close" style="opacity: 0;"><g style="transform: translate(853.1px, 637.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 27.1px 243.1px 853.1px) view-box;"><rect x="853.1" y="637.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="847" y="631" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><line x1="17" y1="673.5" x2="883" y2="673.5" stroke="var(--rgb229231235rgb758599)" stroke-width="1"/></g><g><g><g style="clip-path: inset(674px 17px 16px) view-box;"><g style="clip-path: inset(674px 17px 16px) view-box;"><g role="table"><rect x="17" y="674" width="866" height="210" rx="0" ry="0" fill="var(--rgb255255255rgb303030)" style="animation: auto ease 0s 1 normal none running none;"/><g data-command="TableBody" role="rowgroup"><g><g role="row"><rect x="17" y="716" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(716px 833px 139px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 729.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(729.1px 851.1px 151.1px 29.1px) view-box;"><rect x="29.1" y="729.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="717" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,716 H67 V761 H17 V716 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="716.5" x2="67" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="716" x2="66.5" y2="761" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 713px 139px 67px) view-box;"><text x="74" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="59.89778137207031" lengthAdjust="spacing">BTCUSDT</text><path d="M67,716 H187 V761 H67 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="716.5" x2="187" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 573px 139px 187px) view-box;"><text x="249.94" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="70.15972900390625" lengthAdjust="spacing">$63,981.10</text><path d="M187,716 H327 V761 H187 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="716.5" x2="327" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 393px 139px 327px) view-box;"><g><text x="334" y="739" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 48s</text></g><path d="M327,716 H507 V761 H327 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="716.5" x2="507" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(716px 293px 139px 507px) view-box;"><g><text x="557.06" y="739" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">10,080</text></g><path d="M507,716 H607 V761 H507 V716 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="716.5" x2="607" y2="716.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="761" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(761px 833px 94px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 774.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(774.1px 851.1px 106.1px 29.1px) view-box;"><rect x="29.1" y="774.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="762" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,761 H67 V806 H17 V761 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="761.5" x2="67" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="761" x2="66.5" y2="806" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 713px 94px 67px) view-box;"><text x="74" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.03778076171875" lengthAdjust="spacing">SOLUSDT</text><path d="M67,761 H187 V806 H67 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="761.5" x2="187" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 573px 94px 187px) view-box;"><text x="277.06" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">$76.50</text><path d="M187,761 H327 V806 H187 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="761.5" x2="327" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 393px 94px 327px) view-box;"><g><text x="334" y="784" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 48s</text></g><path d="M327,761 H507 V806 H327 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="761.5" x2="507" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(761px 293px 94px 507px) view-box;"><g><text x="557.06" y="784" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">40,320</text></g><path d="M507,761 H607 V806 H507 V761 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="761.5" x2="607" y2="761.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="806" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(806px 833px 49px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 819.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(819.1px 851.1px 61.1px 29.1px) view-box;"><rect x="29.1" y="819.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="807" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,806 H67 V851 H17 V806 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="806.5" x2="67" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="806" x2="66.5" y2="851" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 713px 49px 67px) view-box;"><text x="74" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="61.60577392578125" lengthAdjust="spacing">TAOUSDT</text><path d="M67,806 H187 V851 H67 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="806.5" x2="187" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 573px 49px 187px) view-box;"><text x="269.17" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$201.45</text><path d="M187,806 H327 V851 H187 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="806.5" x2="327" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 393px 49px 327px) view-box;"><g><text x="334" y="829" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 48s</text></g><path d="M327,806 H507 V851 H327 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="806.5" x2="507" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(806px 293px 49px 507px) view-box;"><g><text x="557.06" y="829" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">60,480</text></g><path d="M507,806 H607 V851 H507 V806 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="806.5" x2="607" y2="806.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="851" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(851px 833px 4px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 864.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(864.1px 851.1px 16.1px 29.1px) view-box;"><rect x="29.1" y="864.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="852" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,851 H67 V896 H17 V851 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="851.5" x2="67" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="851" x2="66.5" y2="896" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 713px 4px 67px) view-box;"><text x="74" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.87977600097656" lengthAdjust="spacing">BNBUSDT</text><path d="M67,851 H187 V896 H67 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="851.5" x2="187" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 573px 4px 187px) view-box;"><text x="269.17" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="50.828125" lengthAdjust="spacing">$613.82</text><path d="M187,851 H327 V896 H187 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="851.5" x2="327" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 393px 4px 327px) view-box;"><g><text x="334" y="874" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 48s</text></g><path d="M327,851 H507 V896 H327 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="851.5" x2="507" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(851px 293px 4px 507px) view-box;"><g><text x="557.06" y="874" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">30,240</text></g><path d="M507,851 H607 V896 H507 V851 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="851.5" x2="607" y2="851.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g><g role="row"><rect x="17" y="896" width="866" height="45" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none;"/><g role="cell" style="clip-path: inset(896px 833px 0px 17px) view-box;"><g data-command="dashboard.window.viewEditRow" style="opacity: 0;"><g style="transform: translate(29.1px, 909.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(909.1px 851.1px 0px 29.1px) view-box;"><rect x="29.1" y="909.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="897" width="44" height="44" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><path d="M17,896 H67 V941 H17 V896 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="17" y1="896.5" x2="67" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/><line x1="66.5" y1="896" x2="66.5" y2="941" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 713px 0px 67px) view-box;"><text x="74" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="60.457794189453125" lengthAdjust="spacing">ETHUSDT</text><path d="M67,896 H187 V941 H67 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="67" y1="896.5" x2="187" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 573px 0px 187px) view-box;"><text x="257.83" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="62.263763427734375" lengthAdjust="spacing">$1,908.00</text><path d="M187,896 H327 V941 H187 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="187" y1="896.5" x2="327" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 393px 0px 327px) view-box;"><g><text x="334" y="919" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="64.703125" lengthAdjust="spacing">10min 48s</text></g><path d="M327,896 H507 V941 H327 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="327" y1="896.5" x2="507" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g role="cell" style="clip-path: inset(896px 293px 0px 507px) view-box;"><g><text x="557.06" y="919" fill="var(--rgb87863rgb21699181)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 20px; white-space: normal; text-transform: none;" textLength="43.02783203125" lengthAdjust="spacing">20,160</text></g><path d="M507,896 H607 V941 H507 V896 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="507" y1="896.5" x2="607" y2="896.5" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></g><use href="#c-div_p-1_FlexRow_flex-row_gap-1_ai-center"/></g><use href="#c-div_noselect_f-0_flex-row_shadow_bg-color-1" data-command="TableHeader"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><style xmlns="http://www.w3.org/1999/xhtml" type="text/css">:root #id-ce737f28 {
759
+ --dark-theme-hide: 1;
760
+ --light-theme-hide: 0;
761
+ --rgb244245247rgb262525: rgb(244, 245, 247);
762
+ --rgb244245247rgb545762: rgb(244, 245, 247);
763
+ --rgb210214220rgb000: rgb(210, 214, 220);
764
+ --rgb210214220rgb758599: rgb(210, 214, 220);
765
+ --rgb255255255rgb444444: rgb(255, 255, 255);
766
+ --rgb255255255rgb255255255: rgb(255, 255, 255);
767
+ --rgb255255255rgb363636: rgb(255, 255, 255);
768
+ --rgb255255255rgb393939: rgb(255, 255, 255);
769
+ --rgb255255255rgb303030: rgb(255, 255, 255);
770
+ --rgb240254255rgb03755: rgb(240, 254, 255);
771
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.22);
772
+ --rgb758599rgb229231235: rgb(75, 85, 99);
773
+ --rgb758599rgb180180180: rgb(75, 85, 99);
774
+ --fontFamily-3551640753: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
775
+ --rgb63131248rgb14114217: rgb(63, 131, 248);
776
+ --rgb63131248rgb255255255: rgb(63, 131, 248);
777
+ --rgb63131248rgb91164255: rgb(63, 131, 248);
778
+ --rgb63131248rgb195221253: rgb(63, 131, 248);
779
+ --rgb253232232rgba8900023: rgb(253, 232, 232);
780
+ --rgb2003030rgb2359393: rgb(200, 30, 30);
781
+ --rgb225239254rgba079163049: rgb(225, 239, 254);
782
+ --rgb229231235rgb262525: rgb(229, 231, 235);
783
+ --rgb229231235rgb758599: rgb(229, 231, 235);
784
+ --rgb249250251rgb333333: rgb(249, 250, 251);
785
+ --rgb223046rgb244245247: rgb(22, 30, 46);
786
+ --blackrgb187187187: black;
787
+ --f9fafb212121: #f9fafb;
788
+ --d2d6dc4b5563: #d2d6dc;
789
+ --161e2ef4f5f7: #161e2e;
790
+ --nonergb303030: none;
791
+ --rgb87863rgb21699181: rgb(87, 8, 63);
792
+ }
793
+ @media (prefers-color-scheme: dark) {
794
+ :root #id-ce737f28 {
795
+ --dark-theme-hide: 0;
796
+ --light-theme-hide: 1;
797
+ --rgb244245247rgb262525: rgb(26, 25, 25);
798
+ --rgb244245247rgb545762: rgb(54, 57, 62);
799
+ --rgb210214220rgb000: rgb(0, 0, 0);
800
+ --rgb210214220rgb758599: rgb(75, 85, 99);
801
+ --rgb255255255rgb444444: rgb(44, 44, 44);
802
+ --rgb255255255rgb363636: rgb(36, 36, 36);
803
+ --rgb255255255rgb393939: rgb(39, 39, 39);
804
+ --rgb255255255rgb303030: rgb(30, 30, 30);
805
+ --rgb240254255rgb03755: rgb(0, 37, 55);
806
+ --rgba125125125022rgba125125125038: rgba(125, 125, 125, 0.38);
807
+ --rgb758599rgb229231235: rgb(229, 231, 235);
808
+ --rgb758599rgb180180180: rgb(180, 180, 180);
809
+ --rgb63131248rgb14114217: rgb(14, 114, 217);
810
+ --rgb63131248rgb255255255: rgb(255, 255, 255);
811
+ --rgb63131248rgb91164255: rgb(91, 164, 255);
812
+ --rgb63131248rgb195221253: rgb(195, 221, 253);
813
+ --rgb253232232rgba8900023: rgba(89, 0, 0, 0.23);
814
+ --rgb2003030rgb2359393: rgb(235, 93, 93);
815
+ --rgb225239254rgba079163049: rgba(0, 79, 163, 0.49);
816
+ --rgb229231235rgb262525: rgb(26, 25, 25);
817
+ --rgb229231235rgb758599: rgb(75, 85, 99);
818
+ --rgb249250251rgb333333: rgb(33, 33, 33);
819
+ --rgb223046rgb244245247: rgb(244, 245, 247);
820
+ --blackrgb187187187: rgb(187, 187, 187);
821
+ --f9fafb212121: #212121;
822
+ --d2d6dc4b5563: #4b5563;
823
+ --161e2ef4f5f7: #f4f5f7;
824
+ --nonergb303030: rgb(30, 30, 30);
825
+ --rgb87863rgb21699181: rgb(216, 99, 181);
826
+ }
827
+ }
828
+ </style></svg><rect id="progress-bar" x="0" y="898" height="2" width="900px" rx="2.5" ry="2.5"/><set attributeName="class" to="paused" begin="mousedown" end="mouseup"/><circle r="10" opacity="0" id="pointer"/></g><defs><g style="clip-path: inset(0px 0px 839px) view-box;" id="c-div_TopHeader_f-0_flex-row__min-h-0_min-w-0_o-hidden"><g><rect x="0" y="0" width="900" height="61" rx="0" ry="0" fill="var(--rgb255255255rgb444444)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g><g data-command="dashboard.menu"><rect x="8.5" y="10" width="41" height="41" rx="4" ry="4" fill="var(--rgb240254255rgb03755)" stroke-width="1px" stroke="rgb(58, 216, 227)" style="animation: auto ease 0s 1 normal none running none;"/><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 9.5249998 9.5250003" height="36" width="36" x="11" y="12.5">
829
+ <style>
830
+ @media (prefers-color-scheme: dark) {
831
+ <!-- #path3881-head {
832
+ fill: green !important;
833
+ }
834
+
835
+ #path3887-eye {
836
+ fill: #ff0000 !important;
837
+ } -->
838
+ }
839
+ </style>
840
+ <g transform="translate(0,-287.47498)" id="layer1">
841
+ <path style="fill:#0087ab;stroke-width:0.10478402" id="path3881-head" d="m 6.5209966,295.25712 c 0.2175402,-0.46431 1.6420322,-2.2511 1.3456182,-4.2915 -0.085217,-0.58659 -2.1619067,-1.59449 -2.2268491,-1.64218 -0.01022,-0.008 -0.1325362,-0.0996 -0.1694292,-0.13795 -0.197562,-0.2055 -0.499117,-0.62298 -0.8304557,-0.82041 -0.1525898,-0.0909 -0.7394033,-0.0609 -1.0268278,0.11432 l -1.879837,1.08657 c -0.4703536,0.4665 0.1139504,1.07392 0.2268207,1.30469 0.1128704,0.23077 0.803662,0.95627 0.803662,0.95627 v 0 c -0.1433145,0.0653 -0.3911698,-0.0575 -0.6915708,-0.27496 0,0 -0.8432496,-0.80366 -0.8823501,-0.87005 -0.039101,-0.0664 -0.1564018,-0.20484 -0.23460266,-0.47082 0,0 -0.0384912,-0.0917 -0.0544209,-0.51555 -0.0159297,-0.42388 0.69813926,-0.64516 0.80535536,-0.72619 0.107216,-0.081 1.4441719,-0.86378 1.8275182,-1.11029 0.3833462,-0.24651 0.8880668,-0.20266 1.1387453,-0.0444 l 2.8538119,1.69411 c 0.2716598,0.15804 1.3866918,1.14066 1.421482,1.86382 0.081505,1.69417 -1.2190224,2.93746 -1.8472163,4.27428 -0.6281939,1.33683 1.1838142,0.58699 1.2737198,0.43944 l 0.259057,0.27303 c -0.8972105,0.56378 -1.9304095,0.39775 -2.0611443,0.33679 -0.1307347,-0.0609 -0.2768897,-0.88205 -0.051087,-1.439 z"/>
842
+ <path style="fill: #bc0000;fill-opacity:1;fill-rule:evenodd;stroke-width:0.07858816;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.60294118;" id="path3887-eye" d="m 6.2908378,290.63597 c 0.030281,-0.0145 0.067771,-0.0145 0.09805,0 0.9624569,0.37529 0.8624334,0.39198 0.8624334,1.21858 0,0.0285 -0.018608,0.0549 -0.049026,0.0694 -0.9558494,-0.4203 -0.9974496,-0.45611 -0.9114585,-1.28795 z"/>
843
+ </g>
844
+ </svg></g><g><g data-command="dashboard.goToConnConfig" style="clip-path: inset(9.5px 801px 848.5px 57px round 6px) view-box;"><rect x="58" y="10.5" width="40" height="40" rx="6" ry="6" fill="var(--rgba125125125022rgba125125125038)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(65.9px, 18.4px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M4 7C4 4.79 7.58 3 12 3S20 4.79 20 7 16.42 11 12 11 4 9.21 4 7M12.08 18L12 18C7.58 18 4 16.21 4 14V17C4 19.21 7.58 21 12 21C12.1 21 12.2 21 12.29 21C12.11 20.36 12 19.69 12 19C12 18.66 12.03 18.33 12.08 18M20 12.08C20 12.05 20 12.03 20 12V9C20 11.21 16.42 13 12 13S4 11.21 4 9V12C4 14.21 7.58 16 12 16C12.23 16 12.46 16 12.69 16C13.82 13.63 16.22 12 19 12C19.34 12 19.67 12.03 20 12.08M23.8 20.4C23.9 20.4 23.9 20.5 23.8 20.6L22.8 22.3C22.7 22.4 22.6 22.4 22.5 22.4L21.3 22C21 22.2 20.8 22.3 20.5 22.5L20.3 23.8C20.3 23.9 20.2 24 20.1 24H18.1C18 24 17.9 23.9 17.8 23.8L17.6 22.5C17.3 22.4 17 22.2 16.8 22L15.6 22.5C15.5 22.5 15.4 22.5 15.3 22.4L14.3 20.7C14.2 20.6 14.3 20.5 14.4 20.4L15.5 19.6V18.6L14.4 17.8C14.3 17.7 14.3 17.6 14.3 17.5L15.3 15.8C15.4 15.7 15.5 15.7 15.6 15.7L16.8 16.2C17.1 16 17.3 15.9 17.6 15.7L17.8 14.4C17.8 14.3 17.9 14.2 18.1 14.2H20.1C20.2 14.2 20.3 14.3 20.3 14.4L20.5 15.7C20.8 15.8 21.1 16 21.4 16.2L22.6 15.7C22.7 15.7 22.9 15.7 22.9 15.8L23.9 17.5C24 17.6 23.9 17.7 23.8 17.8L22.7 18.6V19.6L23.8 20.4M20.5 19C20.5 18.2 19.8 17.5 19 17.5S17.5 18.2 17.5 19 18.2 20.5 19 20.5 20.5 19.8 20.5 19Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 809.9px 857.4px 65.9px) view-box;"><rect x="65.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g></g></g><g data-command="ConnectionSelector"><rect x="106" y="10.5" width="104.203125" height="40" rx="8" ry="8" fill="var(--rgba125125125022rgba125125125038)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(117.9px, 18.4px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M12,3C7.58,3 4,4.79 4,7C4,9.21 7.58,11 12,11C16.42,11 20,9.21 20,7C20,4.79 16.42,3 12,3M4,9V12C4,14.21 7.58,16 12,16C16.42,16 20,14.21 20,12V9C20,11.21 16.42,13 12,13C7.58,13 4,11.21 4,9M4,14V17C4,19.21 7.58,21 12,21C16.42,21 20,19.21 20,17V14C20,16.21 16.42,18 12,18C7.58,18 4,16.21 4,14Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 757.9px 857.4px 117.9px) view-box;"><rect x="117.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g><g style="clip-path: inset(21.5px 702.797px 860.5px 149px) view-box;"><text x="149" y="36.5" fill="var(--rgb758599rgb229231235)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="500" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 18px; white-space: nowrap; text-transform: none;" textLength="48.203125" lengthAdjust="spacing">crypto</text></g></g></g><g style="clip-path: inset(0px 216px 839px 234.203px) view-box;"><g data-command="WorkspaceMenu.list" style="clip-path: inset(0px 373.422px 839px 234.203px) view-box;"><g data-key="default"><g><g style="clip-path: inset(25px 682.406px 859px 163.203px) view-box;"><text x="163.2" y="39" fill="var(--rgb758599rgb229231235)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="500" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 16px; white-space: nowrap; text-transform: none;" textLength="54.69610595703125" lengthAdjust="spacing">default</text></g><path d="M146.2,8 H234.59 V61 H146.2 V8 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="146.203125" y1="8.5" x2="234.59375" y2="8.5" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/><line x1="234.09375" y1="8" x2="234.09375" y2="61" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/><line x1="146.203125" y1="59" x2="234.59375" y2="59" stroke="rgba(0, 0, 0, 0)" stroke-width="4"/><line x1="146.703125" y1="8" x2="146.703125" y2="61" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/></g></g><g data-key="Multi-Asset Price Comparison"><g><g><g style="transform: translate(251.59px, 17px); color: var(--rgb758599rgb229231235);"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="presentation" width="24" height="24">
845
+ <path d="M3,14L3.5,14.07L8.07,9.5C7.89,8.85 8.06,8.11 8.59,7.59C9.37,6.8 10.63,6.8 11.41,7.59C11.94,8.11 12.11,8.85 11.93,9.5L14.5,12.07L15,12C15.18,12 15.35,12 15.5,12.07L19.07,8.5C19,8.35 19,8.18 19,8A2,2 0 0,1 21,6A2,2 0 0,1 23,8A2,2 0 0,1 21,10C20.82,10 20.65,10 20.5,9.93L16.93,13.5C17,13.65 17,13.82 17,14A2,2 0 0,1 15,16A2,2 0 0,1 13,14L13.07,13.5L10.5,10.93C10.18,11 9.82,11 9.5,10.93L4.93,15.5L5,16A2,2 0 0,1 3,18A2,2 0 0,1 1,16A2,2 0 0,1 3,14Z" style="fill:currentcolor"/>
846
+ </svg></g><g role="presentation" style="clip-path: inset(17px 624.406px 859px 251.594px) view-box;"><rect x="251.59" y="17" width="24" height="24" fill="transparent"/></g></g><g style="clip-path: inset(21px 389.969px 863px 283.594px) view-box;"><text x="283.59" y="35" fill="var(--rgb758599rgb229231235)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="600" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 16px; white-space: nowrap; text-transform: none;" textLength="226.4375" lengthAdjust="spacing">Multi-Asset Price Comparison</text></g><path d="M234.59,0 H527.03 V61 H234.59 V0 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="234.59375" y1="0.5" x2="527.03125" y2="0.5" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/><line x1="526.53125" y1="0" x2="526.53125" y2="61" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/><line x1="234.59375" y1="59" x2="527.03125" y2="59" stroke="rgb(0, 161, 255)" stroke-width="4"/><line x1="235.09375" y1="0" x2="235.09375" y2="61" stroke="rgba(0, 0, 0, 0)" stroke-width="1"/></g></g></g><g><g data-command="WorkspaceMenuDropDown"><g style="transform: translate(535.48px, 18.4px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 340.322px 857.4px 535.478px) view-box;"><rect x="535.48" y="18.4" width="24.2" height="24.2" fill="transparent"/></g><rect x="527.578125" y="10.5" width="40" height="40" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g></g><g data-command="WorkspaceMenu.toggleWorkspaceLayoutMode"><rect x="568.578125" y="14.5" width="115.421875" height="32" rx="7" ry="7" fill="var(--rgb63131248rgb14114217)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(577.68px, 20.6px); color: var(--rgb255255255rgb255255255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M21 13.1C20.9 13.1 20.7 13.2 20.6 13.3L19.6 14.3L21.7 16.4L22.7 15.4C22.9 15.2 22.9 14.8 22.7 14.6L21.4 13.3C21.3 13.2 21.2 13.1 21 13.1M19.1 14.9L13 20.9V23H15.1L21.2 16.9L19.1 14.9M21 9H13V3H21V9M13 18.06V11H21V11.1C20.24 11.1 19.57 11.5 19.19 11.89L13 18.06M11 13H3V3H11V13M11 21H3V15H11V21Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(20.6px 302.522px 859.6px 577.678px) view-box;"><rect x="577.68" y="20.6" width="19.8" height="19.8" fill="transparent"/></g><g style="clip-path: inset(23.5px 226px 862.5px 603.578px) view-box;"><text x="603.58" y="35.5" fill="rgb(255, 255, 255)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 14px; white-space: nowrap; text-transform: none;" textLength="70.5677490234375" lengthAdjust="spacing">Edit layout</text></g></g></g><g style="clip-path: inset(2.5px 0px 841.5px 700px) view-box;"><g data-command="Alerts"><g><g><rect x="708" y="10.5" width="40" height="40" rx="6" ry="6" fill="var(--rgb253232232rgba8900023)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(715.9px, 18.4px); color: var(--rgb2003030rgb2359393);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M19 17V11.8C18.5 11.9 18 12 17.5 12H17V18H7V11C7 8.2 9.2 6 12 6C12.1 4.7 12.7 3.6 13.5 2.7C13.2 2.3 12.6 2 12 2C10.9 2 10 2.9 10 4V4.3C7 5.2 5 7.9 5 11V17L3 19V20H21V19L19 17M10 21C10 22.1 10.9 23 12 23S14 22.1 14 21H10M21 6.5C21 8.4 19.4 10 17.5 10S14 8.4 14 6.5 15.6 3 17.5 3 21 4.6 21 6.5" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 159.9px 857.4px 715.9px) view-box;"><rect x="715.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g></g></g></g><g data-command="AskLLM"><rect x="756" y="10.5" width="40" height="40" rx="6" ry="6" fill="var(--rgb225239254rgba079163049)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(763.9px, 18.4px); color: var(--rgb63131248rgb255255255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M19,2H5A2,2 0 0,0 3,4V18A2,2 0 0,0 5,20H9L12,23L15,20H19A2,2 0 0,0 21,18V4A2,2 0 0,0 19,2M13.88,12.88L12,17L10.12,12.88L6,11L10.12,9.12L12,5L13.88,9.12L18,11" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 111.9px 857.4px 763.9px) view-box;"><rect x="763.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g></g><g><g data-command="Feedback"><rect x="804" y="10.5" width="40" height="40" rx="6" ry="6" fill="var(--rgba125125125022rgba125125125038)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(811.9px, 18.4px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2M20 16H5.2L4 17.2V4H20V16M18 14V6H13V14L15.5 12.5L18 14" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 63.9px 857.4px 811.9px) view-box;"><rect x="811.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g></g></g><g data-command="dashboard.goToConnections" style="clip-path: inset(9.5px 7px 848.5px 851px round 6px) view-box;"><rect x="852" y="10.5" width="40" height="40" rx="6" ry="6" fill="var(--rgba125125125022rgba125125125038)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(859.9px, 18.4px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 22px; height: 22px; transform: scale(1.1);" width="22" height="22"><path d="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(18.4px 15.9px 857.4px 859.9px) view-box;"><rect x="859.9" y="18.4" width="24.2" height="24.2" fill="transparent"/></g></g></g></g></g><g style="clip-path: inset(142px 764.094px 744px 110px) view-box;" id="c-span_text-ellipsis"><text x="110" y="154" fill="var(--rgb63131248rgb195221253)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: 14px; white-space: nowrap; text-transform: none;" textLength="25.967941284179688" lengthAdjust="spacing">BTC</text></g><g data-command="TimeChartLayerOptions.yAxis" id="c-div__PopupMenu_triggerWrapper_h-fit_w-fit"><g><g data-command="TimeChartLayerOptions.aggFunc"><use href="#c-span_text-ellipsis"/><rect x="109" y="133" width="32" height="32" rx="7" ry="7" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g></g></g><g id="c-div_W_TimeChart_TopBar_gap-0_relative_f-1_m-auto__FlexRow_flex-row_ai-center"><g data-command="ChartLayerManager"><g style="transform: translate(23.1px, 139.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M12,16L19.36,10.27L21,9L12,2L3,9L4.63,10.27M12,18.54L4.62,12.81L3,14.07L12,21.07L21,14.07L19.37,12.8L12,18.54Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(139.1px 857.1px 741.1px 23.1px) view-box;"><rect x="23.1" y="139.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="17" y="133" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g data-command="W_TimeChart.resetExtent"><g style="transform: translate(55.1px, 139.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M12.5,8C9.85,8 7.45,9 5.6,10.6L2,7V16H11L7.38,12.38C8.77,11.22 10.54,10.5 12.5,10.5C16.04,10.5 19.05,12.81 20.1,16L22.47,15.22C21.08,11.03 17.15,8 12.5,8Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(139.1px 825.1px 741.1px 55.1px) view-box;"><rect x="55.1" y="139.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="49" y="133" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g style="clip-path: inset(133px 359.328px 735px 81px) view-box;"><g><g><g data-command="DataLayerDataSourceInfo"><g style="transform: translate(81.1px, 139.1px); color: var(--rgb63131248rgb91164255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(139.1px 799.1px 741.1px 81.1px) view-box;"><rect x="81.1" y="139.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="81" y="139" width="20" height="20" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g></g><use href="#c-div__PopupMenu_triggerWrapper_h-fit_w-fit" data-command="TimeChartLayerOptions.yAxis"/><g><g><g><rect x="165.5" y="136.5" width="25" height="25" rx="6" ry="6" fill="rgb(189, 171, 0)" stroke-width="1px" stroke="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/></g><g><text x="199" y="155" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="68.359375" lengthAdjust="spacing">BTCUSDT</text></g></g><g><g><rect x="283.859375" y="136.5" width="25" height="25" rx="6" ry="6" fill="rgb(233, 30, 99)" stroke-width="1px" stroke="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/></g><g><text x="317.36" y="155" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="69" lengthAdjust="spacing">ETHUSDT</text></g></g><g><g><rect x="402.859375" y="136.5" width="25" height="25" rx="6" ry="6" fill="rgb(57, 185, 121)" stroke-width="1px" stroke="var(--rgb210214220rgb758599)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/></g><g><text x="436.36" y="155" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="16px" font-weight="400" font-style="normal" letter-spacing="normal" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="70.3125" lengthAdjust="spacing">TAOUSDT</text></g></g></g><g><g style="transform: translate(518.87px, 140.2px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 16px; height: 16px; transform: scale(1.1);" width="16" height="16"><path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(140.2px 363.528px 742.2px 518.872px) view-box;"><rect x="518.87" y="140.2" width="17.6" height="17.6" fill="transparent"/></g><rect x="514.671875" y="136" width="26" height="26" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g></g></g></g><g data-command="W_TimeChart.AddTimeChartFilter" id="c-button__f-0_flex-row_gap-p5_ai-center_btn_btn-default_btn-size-small_btn-color-default_ws-nowrap_w-fit"><g style="transform: translate(857.1px, 139.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M12 12V19.88C12.04 20.18 11.94 20.5 11.71 20.71C11.32 21.1 10.69 21.1 10.3 20.71L8.29 18.7C8.06 18.47 7.96 18.16 8 17.87V12H7.97L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3H17C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L12.03 12H12M15 17H18V14H20V17H23V19H20V22H18V19H15V17Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(139.1px 23.1px 741.1px 857.1px) view-box;"><rect x="857.1" y="139.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="851" y="133" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g><g id="c-div_AddTimeChartFilter_FlexRow_flex-row_gap-1_ai-center"><use href="#c-button__f-0_flex-row_gap-p5_ai-center_btn_btn-default_btn-size-small_btn-color-default_ws-nowrap_w-fit" data-command="W_TimeChart.AddTimeChartFilter"/></g><g style="clip-path: inset(629px 102px 235px 747.609px) view-box;" id="c-div_silver-grid-item-header--icon_flex-row_f-0_o-hidden_f-1_ai-center"><g data-command="Window.W_QuickMenu" style="clip-path: inset(631px 112.391px 237px 747.609px round 8px) view-box;"><g data-command="dashboard.window.toggleFilterBar"><rect x="755.609375" y="631" width="32" height="32" rx="6" ry="6" fill="var(--rgb225239254rgba079163049)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/><g style="transform: translate(761.71px, 637.1px); color: var(--rgb63131248rgb255255255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(637.1px 118.491px 243.1px 761.709px) view-box;"><rect x="761.71" y="637.1" width="19.8" height="19.8" fill="transparent"/></g></g></g></g><g id="c-div_p-1_FlexRow_flex-row_gap-1_ai-center"><g data-command="dashboard.window.rowInsert" data-key="futures"><rect x="33" y="836" width="32" height="32" rx="6" ry="6" fill="var(--rgb63131248rgb14114217)" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g style="transform: translate(39.1px, 842.1px); color: var(--rgb255255255rgb255255255);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(842.1px 841.1px 38.1px 39.1px) view-box;"><rect x="39.1" y="842.1" width="19.8" height="19.8" fill="transparent"/></g></g></g><g data-command="TableHeader" role="row" id="c-div_noselect_f-0_flex-row_shadow_bg-color-1"><rect x="17" y="674" width="866" height="42" rx="0" ry="0" fill="var(--rgb249250251rgb333333)" style="animation: auto ease 0s 1 normal none running none; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 1.5px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 1px 1px);"/><g data-key="edit_row" role="columnheader" style="clip-path: inset(674px 833px 184px 17px) view-box;"><g><g><g style="clip-path: inset(681px 844px 187px 24px) view-box;"><g data-command="AddColumnMenu"><g style="transform: translate(30.1px, 687.1px); color: var(--rgb758599rgb229231235);"><svg viewBox="0 0 24 24" role="presentation" class=" f-0 " style="width: 18px; height: 18px; transform: scale(1.1);" width="18" height="18"><path d="M11,2A2,2 0 0,1 13,4V20A2,2 0 0,1 11,22H2V2H11M4,10V14H11V10H4M4,16V20H11V16H4M4,4V8H11V4H4M15,11H18V8H20V11H23V13H20V16H18V13H15V11Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(687.1px 850.1px 193.1px 30.1px) view-box;"><rect x="30.1" y="687.1" width="19.8" height="19.8" fill="transparent"/></g><rect x="24" y="681" width="32" height="32" rx="6" ry="6" fill="none" stroke-width="1px" stroke="rgba(0, 0, 0, 0)" style="animation: auto ease 0s 1 normal none running none;"/></g></g></g></g><g data-command="TableHeader.resizeHandle"><rect x="51" y="674" width="30" height="42" fill="transparent"/></g><path d="M17,674 H67 V716 H17 V674 Z" fill="var(--nonergb303030)" style="animation: auto ease 0s 1 normal none running none;"/><line x1="66.5" y1="674" x2="66.5" y2="716" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g data-key="symbol" role="columnheader" style="clip-path: inset(674px 713px 184px 67px) view-box;"><g><g><g style="clip-path: inset(686px 748.984px 196px 74px) view-box;"><g><text x="99" y="699" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="0.7px" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="52.015625" lengthAdjust="spacing">Symbol</text><g style="transform: translate(74px, 686px); color: var(--rgb223046rgb244245247);"><svg viewBox="0 0 24 24" role="presentation" class="f-0" style="width: 1.125rem; height: 1.125rem;" width="18" height="18"><path d="M3.9,12C3.9,10.29 5.29,8.9 7,8.9H11V7H7A5,5 0 0,0 2,12A5,5 0 0,0 7,17H11V15.1H7C5.29,15.1 3.9,13.71 3.9,12M8,13H16V11H8V13M17,7H13V8.9H17C18.71,8.9 20.1,10.29 20.1,12C20.1,13.71 18.71,15.1 17,15.1H13V17H17A5,5 0 0,0 22,12A5,5 0 0,0 17,7Z" style="fill: currentcolor;"/></svg></g><g role="presentation" style="clip-path: inset(686px 808px 196px 74px) view-box;"><rect x="74" y="686" width="18" height="18" fill="transparent"/></g></g></g></g></g><g data-command="TableHeader.resizeHandle"><rect x="171" y="674" width="30" height="42" fill="transparent"/></g><path d="M67,674 H187 V716 H67 V674 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="186.5" y1="674" x2="186.5" y2="716" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g data-key="price" role="columnheader" style="clip-path: inset(674px 573px 184px 187px) view-box;"><g><g><g style="clip-path: inset(687px 581px 197px 282.656px) view-box;"><text x="282.66" y="700" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="0.7px" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="36.34375" lengthAdjust="spacing">Price</text></g></g></g><g data-command="TableHeader.resizeHandle"><rect x="311" y="674" width="30" height="42" fill="transparent"/></g><path d="M187,674 H327 V716 H187 V674 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="326.5" y1="674" x2="326.5" y2="716" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g data-key="timestamp" role="columnheader" style="clip-path: inset(674px 393px 184px 327px) view-box;"><g><text x="499" y="695" font-family="var(--fontFamily-3551640753)" font-size="14px" fill="var(--rgb223046rgb244245247)" text-anchor="middle" dominant-baseline="middle" textLength="13.859375" lengthAdjust="spacing">▼</text><g><g style="clip-path: inset(687px 487.438px 197px 334px) view-box;"><text x="334" y="700" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="0.7px" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="78.5625" lengthAdjust="spacing">Timestamp</text></g></g></g><g data-command="TableHeader.resizeHandle"><rect x="491" y="674" width="30" height="42" fill="transparent"/></g><path d="M327,674 H507 V716 H327 V674 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="506.5" y1="674" x2="506.5" y2="716" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g><g data-key="id" role="columnheader" style="clip-path: inset(674px 293px 184px 507px) view-box;"><g><g><g style="clip-path: inset(687px 301px 197px 585.156px) view-box;"><text x="585.16" y="700" fill="var(--rgb223046rgb244245247)" font-family="var(--fontFamily-3551640753)" font-size="14px" font-weight="500" font-style="normal" letter-spacing="0.7px" text-decoration="none" text-anchor="start" style="line-height: normal; white-space: normal; text-transform: none;" textLength="13.84375" lengthAdjust="spacing">Id</text></g></g></g><g data-command="TableHeader.resizeHandle"><rect x="576" y="674" width="30" height="42" fill="transparent"/></g><path d="M507,674 H607 V716 H507 V674 Z" fill="none" style="animation: auto ease 0s 1 normal none running none;"/><line x1="606.5" y1="674" x2="606.5" y2="716" stroke="var(--rgb244245247rgb545762)" stroke-width="1"/></g></g></defs></svg>