cli-claw-kit 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +245 -0
  3. package/config/default-groups.json +1 -0
  4. package/config/global-agents-md.template.md +37 -0
  5. package/config/mount-allowlist.json +11 -0
  6. package/container/Dockerfile +160 -0
  7. package/container/agent-runner/dist/.tsbuildinfo +1 -0
  8. package/container/agent-runner/dist/agent-definitions.js +22 -0
  9. package/container/agent-runner/dist/channel-prefixes.js +16 -0
  10. package/container/agent-runner/dist/codex-config.js +29 -0
  11. package/container/agent-runner/dist/image-detector.js +96 -0
  12. package/container/agent-runner/dist/index.js +2587 -0
  13. package/container/agent-runner/dist/mcp-tools.js +1076 -0
  14. package/container/agent-runner/dist/stream-event.types.js +5 -0
  15. package/container/agent-runner/dist/stream-processor.js +867 -0
  16. package/container/agent-runner/dist/types.js +6 -0
  17. package/container/agent-runner/dist/utils.js +115 -0
  18. package/container/agent-runner/package.json +36 -0
  19. package/container/agent-runner/prompts/security-rules.md +31 -0
  20. package/container/agent-runner/src/agent-definitions.ts +27 -0
  21. package/container/agent-runner/src/channel-prefixes.ts +16 -0
  22. package/container/agent-runner/src/codex-config.ts +40 -0
  23. package/container/agent-runner/src/image-detector.ts +116 -0
  24. package/container/agent-runner/src/index.ts +3107 -0
  25. package/container/agent-runner/src/mcp-tools.ts +1295 -0
  26. package/container/agent-runner/src/stream-event.types.ts +10 -0
  27. package/container/agent-runner/src/stream-processor.ts +932 -0
  28. package/container/agent-runner/src/types.ts +75 -0
  29. package/container/agent-runner/src/utils.ts +114 -0
  30. package/container/agent-runner/tsconfig.json +17 -0
  31. package/container/build.sh +28 -0
  32. package/container/entrypoint.sh +64 -0
  33. package/container/skills/agent-browser/SKILL.md +159 -0
  34. package/container/skills/install-skill/SKILL.md +64 -0
  35. package/container/skills/post-test-cleanup/SKILL.md +121 -0
  36. package/dist/.tsbuildinfo +1 -0
  37. package/dist/agent-output-parser.js +459 -0
  38. package/dist/app-root.js +52 -0
  39. package/dist/assistant-meta-footer.js +1 -0
  40. package/dist/auth.js +91 -0
  41. package/dist/billing.js +694 -0
  42. package/dist/channel-prefixes.js +16 -0
  43. package/dist/cli.js +86 -0
  44. package/dist/commands.js +79 -0
  45. package/dist/config.js +120 -0
  46. package/dist/container-runner.js +981 -0
  47. package/dist/daily-summary.js +210 -0
  48. package/dist/db.js +3683 -0
  49. package/dist/dingtalk.js +1347 -0
  50. package/dist/feishu-markdown-style.js +97 -0
  51. package/dist/feishu-streaming-card.js +1875 -0
  52. package/dist/feishu.js +1628 -0
  53. package/dist/file-manager.js +270 -0
  54. package/dist/group-queue.js +1070 -0
  55. package/dist/group-runtime.js +35 -0
  56. package/dist/host-workspace-cwd.js +85 -0
  57. package/dist/im-channel.js +384 -0
  58. package/dist/im-command-utils.js +142 -0
  59. package/dist/im-downloader.js +45 -0
  60. package/dist/im-manager.js +527 -0
  61. package/dist/im-utils.js +53 -0
  62. package/dist/image-detector.js +96 -0
  63. package/dist/index.js +5828 -0
  64. package/dist/logger.js +22 -0
  65. package/dist/mcp-utils.js +66 -0
  66. package/dist/message-attachments.js +69 -0
  67. package/dist/message-notifier.js +36 -0
  68. package/dist/middleware/auth.js +85 -0
  69. package/dist/mount-security.js +315 -0
  70. package/dist/permissions.js +67 -0
  71. package/dist/project-memory.js +6 -0
  72. package/dist/provider-pool.js +189 -0
  73. package/dist/qq.js +826 -0
  74. package/dist/reset-admin.js +42 -0
  75. package/dist/routes/admin.js +543 -0
  76. package/dist/routes/agent-definitions.js +241 -0
  77. package/dist/routes/agents.js +533 -0
  78. package/dist/routes/auth.js +675 -0
  79. package/dist/routes/billing.js +490 -0
  80. package/dist/routes/browse.js +210 -0
  81. package/dist/routes/bug-report.js +387 -0
  82. package/dist/routes/config.js +1868 -0
  83. package/dist/routes/files.js +671 -0
  84. package/dist/routes/groups.js +1367 -0
  85. package/dist/routes/mcp-servers.js +320 -0
  86. package/dist/routes/memory.js +523 -0
  87. package/dist/routes/monitor.js +307 -0
  88. package/dist/routes/skills.js +777 -0
  89. package/dist/routes/tasks.js +509 -0
  90. package/dist/routes/usage.js +64 -0
  91. package/dist/routes/workspace-config.js +458 -0
  92. package/dist/runtime-build.js +112 -0
  93. package/dist/runtime-command-handler.js +189 -0
  94. package/dist/runtime-command-registry.js +1 -0
  95. package/dist/runtime-config.js +1777 -0
  96. package/dist/runtime-identity.js +52 -0
  97. package/dist/schemas.js +590 -0
  98. package/dist/script-runner.js +64 -0
  99. package/dist/sdk-query.js +82 -0
  100. package/dist/skill-utils.js +145 -0
  101. package/dist/sqlite-compat.js +19 -0
  102. package/dist/stream-event.types.js +5 -0
  103. package/dist/streaming-runtime-meta.js +29 -0
  104. package/dist/task-scheduler.js +695 -0
  105. package/dist/task-utils.js +13 -0
  106. package/dist/telegram-pairing.js +59 -0
  107. package/dist/telegram.js +897 -0
  108. package/dist/terminal-manager.js +307 -0
  109. package/dist/tool-step-display.js +1 -0
  110. package/dist/types.js +1 -0
  111. package/dist/utils.js +85 -0
  112. package/dist/web-context.js +161 -0
  113. package/dist/web.js +1377 -0
  114. package/dist/wechat-crypto.js +182 -0
  115. package/dist/wechat.js +589 -0
  116. package/dist/workspace-runtime-reset.js +35 -0
  117. package/package.json +107 -0
  118. package/shared/assistant-meta-footer.ts +127 -0
  119. package/shared/channel-prefixes.ts +16 -0
  120. package/shared/dist/assistant-meta-footer.d.ts +29 -0
  121. package/shared/dist/assistant-meta-footer.js +85 -0
  122. package/shared/dist/channel-prefixes.d.ts +4 -0
  123. package/shared/dist/channel-prefixes.js +16 -0
  124. package/shared/dist/image-detector.d.ts +20 -0
  125. package/shared/dist/image-detector.js +96 -0
  126. package/shared/dist/runtime-command-registry.d.ts +38 -0
  127. package/shared/dist/runtime-command-registry.js +185 -0
  128. package/shared/dist/stream-event.d.ts +65 -0
  129. package/shared/dist/stream-event.js +8 -0
  130. package/shared/dist/tool-step-display.d.ts +4 -0
  131. package/shared/dist/tool-step-display.js +11 -0
  132. package/shared/image-detector.ts +116 -0
  133. package/shared/runtime-command-registry.ts +252 -0
  134. package/shared/stream-event.ts +67 -0
  135. package/shared/tool-step-display.ts +21 -0
  136. package/shared/tsconfig.json +24 -0
  137. package/web/dist/assets/BillingPage-B1wBR_o-.js +52 -0
  138. package/web/dist/assets/ChatPage-6GBZ9nXN.css +32 -0
  139. package/web/dist/assets/ChatPage-BOJcXtaj.js +161 -0
  140. package/web/dist/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  141. package/web/dist/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  142. package/web/dist/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  143. package/web/dist/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  144. package/web/dist/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  145. package/web/dist/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  146. package/web/dist/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  147. package/web/dist/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  148. package/web/dist/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  149. package/web/dist/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  150. package/web/dist/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  151. package/web/dist/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  152. package/web/dist/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  153. package/web/dist/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  154. package/web/dist/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  155. package/web/dist/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  156. package/web/dist/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  157. package/web/dist/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  158. package/web/dist/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  159. package/web/dist/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  160. package/web/dist/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  161. package/web/dist/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  162. package/web/dist/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  163. package/web/dist/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  164. package/web/dist/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  165. package/web/dist/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  166. package/web/dist/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  167. package/web/dist/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  168. package/web/dist/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  169. package/web/dist/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  170. package/web/dist/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  171. package/web/dist/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  172. package/web/dist/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  173. package/web/dist/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  174. package/web/dist/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  175. package/web/dist/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  176. package/web/dist/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  177. package/web/dist/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  178. package/web/dist/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  179. package/web/dist/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  180. package/web/dist/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  181. package/web/dist/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  182. package/web/dist/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  183. package/web/dist/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  184. package/web/dist/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  185. package/web/dist/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  186. package/web/dist/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  187. package/web/dist/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  188. package/web/dist/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  189. package/web/dist/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  190. package/web/dist/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  191. package/web/dist/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  192. package/web/dist/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  193. package/web/dist/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  194. package/web/dist/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  195. package/web/dist/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  196. package/web/dist/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  197. package/web/dist/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  198. package/web/dist/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  199. package/web/dist/assets/SettingsPage-DoY7FoZ_.js +153 -0
  200. package/web/dist/assets/ShareImageDialog-C1ga8b7l.js +22 -0
  201. package/web/dist/assets/TasksPage-CRivnNsx.js +14 -0
  202. package/web/dist/assets/_basePickBy-Bf-bSoS9.js +1 -0
  203. package/web/dist/assets/_baseUniq-zAOaCuKw.js +1 -0
  204. package/web/dist/assets/arc-Dm9mVQ9U.js +1 -0
  205. package/web/dist/assets/architectureDiagram-2XIMDMQ5-BLmzX1wr.js +36 -0
  206. package/web/dist/assets/band-CquvqAHh.js +1 -0
  207. package/web/dist/assets/blockDiagram-WCTKOSBZ-B9pcqm3j.js +132 -0
  208. package/web/dist/assets/c4Diagram-IC4MRINW-Cytx1q3b.js +10 -0
  209. package/web/dist/assets/channel-BOVj73LR.js +1 -0
  210. package/web/dist/assets/channel-meta-CQD0Pei-.js +41 -0
  211. package/web/dist/assets/chunk-4BX2VUAB-0ToDr6RE.js +1 -0
  212. package/web/dist/assets/chunk-55IACEB6-DQDjnXfS.js +1 -0
  213. package/web/dist/assets/chunk-FMBD7UC4-Di8ABm6c.js +15 -0
  214. package/web/dist/assets/chunk-JSJVCQXG-BZQN6rnX.js +1 -0
  215. package/web/dist/assets/chunk-KX2RTZJC-zBbcpaN_.js +1 -0
  216. package/web/dist/assets/chunk-NQ4KR5QH-BCrLoU88.js +220 -0
  217. package/web/dist/assets/chunk-QZHKN3VN-Bqk8juan.js +1 -0
  218. package/web/dist/assets/chunk-WL4C6EOR-D2YX-MHY.js +189 -0
  219. package/web/dist/assets/classDiagram-VBA2DB6C-DUUoMyaK.js +1 -0
  220. package/web/dist/assets/classDiagram-v2-RAHNMMFH-DUUoMyaK.js +1 -0
  221. package/web/dist/assets/clone-BmaCesfa.js +1 -0
  222. package/web/dist/assets/cose-bilkent-S5V4N54A-CTsv6qQA.js +1 -0
  223. package/web/dist/assets/cytoscape.esm-BQaXIfA_.js +331 -0
  224. package/web/dist/assets/dagre-KLK3FWXG-Ci4Jh9nu.js +4 -0
  225. package/web/dist/assets/defaultLocale-DX6XiGOO.js +1 -0
  226. package/web/dist/assets/diagram-E7M64L7V-BFRnfTI2.js +24 -0
  227. package/web/dist/assets/diagram-IFDJBPK2-B7Zhnp0b.js +43 -0
  228. package/web/dist/assets/diagram-P4PSJMXO-BVyP7nwq.js +24 -0
  229. package/web/dist/assets/erDiagram-INFDFZHY-NorKdTOF.js +70 -0
  230. package/web/dist/assets/error-CGD5mp5f.js +1 -0
  231. package/web/dist/assets/flowDiagram-PKNHOUZH-Ch97nABF.js +162 -0
  232. package/web/dist/assets/ganttDiagram-A5KZAMGK-BQ2pLWsy.js +292 -0
  233. package/web/dist/assets/gitGraphDiagram-K3NZZRJ6-bcvnBsD2.js +65 -0
  234. package/web/dist/assets/graph-CeAEckur.js +1 -0
  235. package/web/dist/assets/index-CPnL1_qC.js +768 -0
  236. package/web/dist/assets/index-DVevCbcO.css +10 -0
  237. package/web/dist/assets/infoDiagram-LFFYTUFH-CcsrFdj-.js +2 -0
  238. package/web/dist/assets/init-Dmth1JHB.js +1 -0
  239. package/web/dist/assets/ishikawaDiagram-PHBUUO56-1upyMfHN.js +70 -0
  240. package/web/dist/assets/journeyDiagram-4ABVD52K-CKUi-V0c.js +139 -0
  241. package/web/dist/assets/kanban-definition-K7BYSVSG-DOnQwXfL.js +89 -0
  242. package/web/dist/assets/layout-BmMMqTnJ.js +1 -0
  243. package/web/dist/assets/linear-DiaJloY5.js +1 -0
  244. package/web/dist/assets/mermaid.core-BWLV1B2v.js +254 -0
  245. package/web/dist/assets/mindmap-definition-YRQLILUH-BeAKHVWP.js +68 -0
  246. package/web/dist/assets/ordinal-DILIJJjt.js +1 -0
  247. package/web/dist/assets/pieDiagram-SKSYHLDU-DfiMSfWo.js +30 -0
  248. package/web/dist/assets/quadrantDiagram-337W2JSQ-wZxZOJxd.js +7 -0
  249. package/web/dist/assets/requirementDiagram-Z7DCOOCP-BK4HHm17.js +73 -0
  250. package/web/dist/assets/sankeyDiagram-WA2Y5GQK-BX6t2avX.js +10 -0
  251. package/web/dist/assets/sequenceDiagram-2WXFIKYE-BPQlkbAa.js +145 -0
  252. package/web/dist/assets/sheet-rI0FfB1g.js +6 -0
  253. package/web/dist/assets/sliders-horizontal-CuijWFNK.js +6 -0
  254. package/web/dist/assets/sparkles-BsMYXJoT.js +11 -0
  255. package/web/dist/assets/square-0CqMX1Q3.js +11 -0
  256. package/web/dist/assets/stateDiagram-RAJIS63D-DxkV0Vwd.js +1 -0
  257. package/web/dist/assets/stateDiagram-v2-FVOUBMTO-qLYoiOPe.js +1 -0
  258. package/web/dist/assets/step-D51IIHGA.js +1 -0
  259. package/web/dist/assets/tasks-D8JjBTwx.js +1 -0
  260. package/web/dist/assets/time-O8zIGux3.js +1 -0
  261. package/web/dist/assets/timeline-definition-YZTLITO2-kNp1DyFc.js +61 -0
  262. package/web/dist/assets/treemap-KZPCXAKY-CkrClVhk.js +162 -0
  263. package/web/dist/assets/utils-KGAn0XTg.js +11 -0
  264. package/web/dist/assets/vennDiagram-LZ73GAT5-CgdzEZz4.js +34 -0
  265. package/web/dist/assets/xychartDiagram-JWTSCODW-DfYGPfNB.js +7 -0
  266. package/web/dist/assets/zap-_hKJYy7J.js +6 -0
  267. package/web/dist/favicon.svg +332 -0
  268. package/web/dist/fonts/AlibabaPuHuiTi-3-55-Regular.woff2 +0 -0
  269. package/web/dist/fonts/AlibabaPuHuiTi-3-65-Medium.woff2 +0 -0
  270. package/web/dist/fonts/AlibabaPuHuiTi-3-75-SemiBold.woff2 +0 -0
  271. package/web/dist/fonts/DMSans-latin-ext.woff2 +0 -0
  272. package/web/dist/fonts/DMSans-latin.woff2 +0 -0
  273. package/web/dist/icons/README.md +20 -0
  274. package/web/dist/icons/apple-touch-icon-180.png +0 -0
  275. package/web/dist/icons/icon-128.png +0 -0
  276. package/web/dist/icons/icon-144.png +0 -0
  277. package/web/dist/icons/icon-152.png +0 -0
  278. package/web/dist/icons/icon-192.png +0 -0
  279. package/web/dist/icons/icon-192.svg +332 -0
  280. package/web/dist/icons/icon-384.png +0 -0
  281. package/web/dist/icons/icon-48.png +0 -0
  282. package/web/dist/icons/icon-512-maskable.png +0 -0
  283. package/web/dist/icons/icon-512.png +0 -0
  284. package/web/dist/icons/icon-512.svg +332 -0
  285. package/web/dist/icons/icon-72.png +0 -0
  286. package/web/dist/icons/icon-96.png +0 -0
  287. package/web/dist/icons/loading-logo.svg +332 -0
  288. package/web/dist/icons/logo-1024.png +0 -0
  289. package/web/dist/icons/logo-icon.svg +332 -0
  290. package/web/dist/icons/logo-text.svg +332 -0
  291. package/web/dist/index.html +30 -0
  292. package/web/dist/manifest.webmanifest +1 -0
  293. package/web/dist/registerSW.js +1 -0
  294. package/web/dist/sw.js +1 -0
  295. package/web/dist/workbox-08d6266a.js +1 -0
@@ -0,0 +1,332 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="640" height="640" viewBox="0 0 48 48" shape-rendering="crispEdges">
2
+ <rect x="16" y="7" width="15" height="1" fill="#06262b"/>
3
+ <rect x="15" y="8" width="17" height="1" fill="#06262b"/>
4
+ <rect x="12" y="9" width="23" height="1" fill="#06262b"/>
5
+ <rect x="11" y="10" width="2" height="1" fill="#06262b"/>
6
+ <rect x="13" y="10" width="4" height="1" fill="#38cfc1"/>
7
+ <rect x="17" y="10" width="4" height="1" fill="#a8fff0"/>
8
+ <rect x="21" y="10" width="1" height="1" fill="#1aa79c"/>
9
+ <rect x="22" y="10" width="10" height="1" fill="#a8fff0"/>
10
+ <rect x="32" y="10" width="1" height="1" fill="#1aa79c"/>
11
+ <rect x="33" y="10" width="2" height="1" fill="#a8fff0"/>
12
+ <rect x="35" y="10" width="2" height="1" fill="#06262b"/>
13
+ <rect x="39" y="10" width="1" height="1" fill="#1aa79c"/>
14
+ <rect x="10" y="11" width="1" height="1" fill="#06262b"/>
15
+ <rect x="11" y="11" width="1" height="1" fill="#38cfc1"/>
16
+ <rect x="12" y="11" width="4" height="1" fill="#1aa79c"/>
17
+ <rect x="16" y="11" width="1" height="1" fill="#06262b"/>
18
+ <rect x="17" y="11" width="2" height="1" fill="#38cfc1"/>
19
+ <rect x="19" y="11" width="1" height="1" fill="#a8fff0"/>
20
+ <rect x="20" y="11" width="1" height="1" fill="#06262b"/>
21
+ <rect x="21" y="11" width="1" height="1" fill="#a8fff0"/>
22
+ <rect x="22" y="11" width="1" height="1" fill="#1aa79c"/>
23
+ <rect x="23" y="11" width="10" height="1" fill="#a8fff0"/>
24
+ <rect x="33" y="11" width="1" height="1" fill="#1aa79c"/>
25
+ <rect x="34" y="11" width="2" height="1" fill="#a8fff0"/>
26
+ <rect x="36" y="11" width="1" height="1" fill="#06262b"/>
27
+ <rect x="39" y="11" width="2" height="1" fill="#1aa79c"/>
28
+ <rect x="9" y="12" width="1" height="1" fill="#06262b"/>
29
+ <rect x="10" y="12" width="1" height="1" fill="#38cfc1"/>
30
+ <rect x="11" y="12" width="6" height="1" fill="#1aa79c"/>
31
+ <rect x="17" y="12" width="1" height="1" fill="#06262b"/>
32
+ <rect x="18" y="12" width="2" height="1" fill="#38cfc1"/>
33
+ <rect x="20" y="12" width="1" height="1" fill="#06262b"/>
34
+ <rect x="21" y="12" width="1" height="1" fill="#a8fff0"/>
35
+ <rect x="22" y="12" width="1" height="1" fill="#1aa79c"/>
36
+ <rect x="23" y="12" width="10" height="1" fill="#38cfc1"/>
37
+ <rect x="33" y="12" width="1" height="1" fill="#1aa79c"/>
38
+ <rect x="34" y="12" width="2" height="1" fill="#a8fff0"/>
39
+ <rect x="36" y="12" width="2" height="1" fill="#06262b"/>
40
+ <rect x="39" y="12" width="1" height="1" fill="#06262b"/>
41
+ <rect x="9" y="13" width="1" height="1" fill="#06262b"/>
42
+ <rect x="10" y="13" width="7" height="1" fill="#1aa79c"/>
43
+ <rect x="17" y="13" width="1" height="1" fill="#06262b"/>
44
+ <rect x="18" y="13" width="3" height="1" fill="#38cfc1"/>
45
+ <rect x="21" y="13" width="2" height="1" fill="#a8fff0"/>
46
+ <rect x="23" y="13" width="11" height="1" fill="#1aa79c"/>
47
+ <rect x="34" y="13" width="3" height="1" fill="#a8fff0"/>
48
+ <rect x="37" y="13" width="1" height="1" fill="#06262b"/>
49
+ <rect x="39" y="13" width="1" height="1" fill="#06262b"/>
50
+ <rect x="8" y="14" width="1" height="1" fill="#06262b"/>
51
+ <rect x="9" y="14" width="1" height="1" fill="#38cfc1"/>
52
+ <rect x="10" y="14" width="8" height="1" fill="#1aa79c"/>
53
+ <rect x="18" y="14" width="1" height="1" fill="#06262b"/>
54
+ <rect x="19" y="14" width="2" height="1" fill="#a8fff0"/>
55
+ <rect x="21" y="14" width="16" height="1" fill="#38cfc1"/>
56
+ <rect x="37" y="14" width="1" height="1" fill="#a8fff0"/>
57
+ <rect x="38" y="14" width="2" height="1" fill="#06262b"/>
58
+ <rect x="8" y="15" width="1" height="1" fill="#06262b"/>
59
+ <rect x="9" y="15" width="9" height="1" fill="#1aa79c"/>
60
+ <rect x="18" y="15" width="1" height="1" fill="#06262b"/>
61
+ <rect x="19" y="15" width="1" height="1" fill="#a8fff0"/>
62
+ <rect x="20" y="15" width="3" height="1" fill="#38cfc1"/>
63
+ <rect x="23" y="15" width="12" height="1" fill="#06262b"/>
64
+ <rect x="35" y="15" width="3" height="1" fill="#38cfc1"/>
65
+ <rect x="38" y="15" width="2" height="1" fill="#06262b"/>
66
+ <rect x="6" y="16" width="2" height="1" fill="#a8fff0"/>
67
+ <rect x="8" y="16" width="1" height="1" fill="#06262b"/>
68
+ <rect x="9" y="16" width="9" height="1" fill="#1aa79c"/>
69
+ <rect x="18" y="16" width="1" height="1" fill="#06262b"/>
70
+ <rect x="19" y="16" width="1" height="1" fill="#a8fff0"/>
71
+ <rect x="20" y="16" width="2" height="1" fill="#38cfc1"/>
72
+ <rect x="22" y="16" width="14" height="1" fill="#06262b"/>
73
+ <rect x="36" y="16" width="2" height="1" fill="#38cfc1"/>
74
+ <rect x="38" y="16" width="2" height="1" fill="#06262b"/>
75
+ <rect x="6" y="17" width="2" height="1" fill="#06262b"/>
76
+ <rect x="8" y="17" width="1" height="1" fill="#38cfc1"/>
77
+ <rect x="9" y="17" width="2" height="1" fill="#1aa79c"/>
78
+ <rect x="11" y="17" width="4" height="1" fill="#06262b"/>
79
+ <rect x="15" y="17" width="3" height="1" fill="#1aa79c"/>
80
+ <rect x="18" y="17" width="1" height="1" fill="#06262b"/>
81
+ <rect x="19" y="17" width="1" height="1" fill="#a8fff0"/>
82
+ <rect x="20" y="17" width="1" height="1" fill="#38cfc1"/>
83
+ <rect x="21" y="17" width="2" height="1" fill="#06262b"/>
84
+ <rect x="23" y="17" width="10" height="1" fill="#0d5f60"/>
85
+ <rect x="33" y="17" width="1" height="1" fill="#38cfc1"/>
86
+ <rect x="34" y="17" width="1" height="1" fill="#0d5f60"/>
87
+ <rect x="35" y="17" width="2" height="1" fill="#06262b"/>
88
+ <rect x="37" y="17" width="1" height="1" fill="#38cfc1"/>
89
+ <rect x="38" y="17" width="3" height="1" fill="#06262b"/>
90
+ <rect x="6" y="18" width="2" height="1" fill="#06262b"/>
91
+ <rect x="8" y="18" width="2" height="1" fill="#1aa79c"/>
92
+ <rect x="10" y="18" width="6" height="1" fill="#06262b"/>
93
+ <rect x="16" y="18" width="2" height="1" fill="#1aa79c"/>
94
+ <rect x="18" y="18" width="1" height="1" fill="#06262b"/>
95
+ <rect x="19" y="18" width="1" height="1" fill="#a8fff0"/>
96
+ <rect x="20" y="18" width="1" height="1" fill="#38cfc1"/>
97
+ <rect x="21" y="18" width="1" height="1" fill="#06262b"/>
98
+ <rect x="22" y="18" width="12" height="1" fill="#0d5f60"/>
99
+ <rect x="34" y="18" width="1" height="1" fill="#38cfc1"/>
100
+ <rect x="35" y="18" width="1" height="1" fill="#0d5f60"/>
101
+ <rect x="36" y="18" width="1" height="1" fill="#06262b"/>
102
+ <rect x="37" y="18" width="1" height="1" fill="#38cfc1"/>
103
+ <rect x="38" y="18" width="3" height="1" fill="#06262b"/>
104
+ <rect x="6" y="19" width="2" height="1" fill="#06262b"/>
105
+ <rect x="8" y="19" width="2" height="1" fill="#1aa79c"/>
106
+ <rect x="10" y="19" width="1" height="1" fill="#06262b"/>
107
+ <rect x="11" y="19" width="4" height="1" fill="#1aa79c"/>
108
+ <rect x="15" y="19" width="1" height="1" fill="#06262b"/>
109
+ <rect x="16" y="19" width="2" height="1" fill="#1aa79c"/>
110
+ <rect x="18" y="19" width="1" height="1" fill="#06262b"/>
111
+ <rect x="19" y="19" width="1" height="1" fill="#a8fff0"/>
112
+ <rect x="20" y="19" width="1" height="1" fill="#38cfc1"/>
113
+ <rect x="21" y="19" width="1" height="1" fill="#06262b"/>
114
+ <rect x="22" y="19" width="2" height="1" fill="#0d5f60"/>
115
+ <rect x="24" y="19" width="2" height="1" fill="#a8fff0"/>
116
+ <rect x="26" y="19" width="10" height="1" fill="#0d5f60"/>
117
+ <rect x="36" y="19" width="1" height="1" fill="#06262b"/>
118
+ <rect x="37" y="19" width="1" height="1" fill="#38cfc1"/>
119
+ <rect x="38" y="19" width="1" height="1" fill="#06262b"/>
120
+ <rect x="39" y="19" width="1" height="1" fill="#38cfc1"/>
121
+ <rect x="40" y="19" width="2" height="1" fill="#06262b"/>
122
+ <rect x="6" y="20" width="2" height="1" fill="#06262b"/>
123
+ <rect x="8" y="20" width="2" height="1" fill="#1aa79c"/>
124
+ <rect x="10" y="20" width="1" height="1" fill="#06262b"/>
125
+ <rect x="11" y="20" width="4" height="1" fill="#1aa79c"/>
126
+ <rect x="15" y="20" width="4" height="1" fill="#06262b"/>
127
+ <rect x="19" y="20" width="1" height="1" fill="#a8fff0"/>
128
+ <rect x="20" y="20" width="1" height="1" fill="#38cfc1"/>
129
+ <rect x="21" y="20" width="1" height="1" fill="#06262b"/>
130
+ <rect x="22" y="20" width="3" height="1" fill="#0d5f60"/>
131
+ <rect x="25" y="20" width="2" height="1" fill="#a8fff0"/>
132
+ <rect x="27" y="20" width="9" height="1" fill="#0d5f60"/>
133
+ <rect x="36" y="20" width="1" height="1" fill="#06262b"/>
134
+ <rect x="37" y="20" width="1" height="1" fill="#38cfc1"/>
135
+ <rect x="38" y="20" width="1" height="1" fill="#06262b"/>
136
+ <rect x="39" y="20" width="1" height="1" fill="#a8fff0"/>
137
+ <rect x="40" y="20" width="2" height="1" fill="#06262b"/>
138
+ <rect x="6" y="21" width="2" height="1" fill="#06262b"/>
139
+ <rect x="8" y="21" width="2" height="1" fill="#1aa79c"/>
140
+ <rect x="10" y="21" width="1" height="1" fill="#06262b"/>
141
+ <rect x="11" y="21" width="4" height="1" fill="#1aa79c"/>
142
+ <rect x="15" y="21" width="4" height="1" fill="#06262b"/>
143
+ <rect x="19" y="21" width="2" height="1" fill="#38cfc1"/>
144
+ <rect x="21" y="21" width="1" height="1" fill="#06262b"/>
145
+ <rect x="22" y="21" width="3" height="1" fill="#0d5f60"/>
146
+ <rect x="25" y="21" width="2" height="1" fill="#a8fff0"/>
147
+ <rect x="27" y="21" width="9" height="1" fill="#0d5f60"/>
148
+ <rect x="36" y="21" width="1" height="1" fill="#06262b"/>
149
+ <rect x="37" y="21" width="1" height="1" fill="#38cfc1"/>
150
+ <rect x="38" y="21" width="1" height="1" fill="#06262b"/>
151
+ <rect x="39" y="21" width="1" height="1" fill="#a8fff0"/>
152
+ <rect x="40" y="21" width="2" height="1" fill="#06262b"/>
153
+ <rect x="6" y="22" width="2" height="1" fill="#06262b"/>
154
+ <rect x="8" y="22" width="2" height="1" fill="#1aa79c"/>
155
+ <rect x="10" y="22" width="1" height="1" fill="#06262b"/>
156
+ <rect x="11" y="22" width="8" height="1" fill="#1aa79c"/>
157
+ <rect x="19" y="22" width="2" height="1" fill="#38cfc1"/>
158
+ <rect x="21" y="22" width="1" height="1" fill="#06262b"/>
159
+ <rect x="22" y="22" width="4" height="1" fill="#0d5f60"/>
160
+ <rect x="26" y="22" width="2" height="1" fill="#a8fff0"/>
161
+ <rect x="28" y="22" width="8" height="1" fill="#0d5f60"/>
162
+ <rect x="36" y="22" width="1" height="1" fill="#06262b"/>
163
+ <rect x="37" y="22" width="1" height="1" fill="#38cfc1"/>
164
+ <rect x="38" y="22" width="1" height="1" fill="#06262b"/>
165
+ <rect x="39" y="22" width="1" height="1" fill="#38cfc1"/>
166
+ <rect x="40" y="22" width="2" height="1" fill="#06262b"/>
167
+ <rect x="6" y="23" width="2" height="1" fill="#06262b"/>
168
+ <rect x="8" y="23" width="2" height="1" fill="#1aa79c"/>
169
+ <rect x="10" y="23" width="1" height="1" fill="#06262b"/>
170
+ <rect x="11" y="23" width="8" height="1" fill="#1aa79c"/>
171
+ <rect x="19" y="23" width="2" height="1" fill="#38cfc1"/>
172
+ <rect x="21" y="23" width="1" height="1" fill="#06262b"/>
173
+ <rect x="22" y="23" width="5" height="1" fill="#0d5f60"/>
174
+ <rect x="27" y="23" width="2" height="1" fill="#a8fff0"/>
175
+ <rect x="29" y="23" width="7" height="1" fill="#0d5f60"/>
176
+ <rect x="36" y="23" width="1" height="1" fill="#06262b"/>
177
+ <rect x="37" y="23" width="1" height="1" fill="#38cfc1"/>
178
+ <rect x="38" y="23" width="1" height="1" fill="#06262b"/>
179
+ <rect x="39" y="23" width="1" height="1" fill="#38cfc1"/>
180
+ <rect x="40" y="23" width="2" height="1" fill="#06262b"/>
181
+ <rect x="6" y="24" width="2" height="1" fill="#06262b"/>
182
+ <rect x="8" y="24" width="2" height="1" fill="#1aa79c"/>
183
+ <rect x="10" y="24" width="1" height="1" fill="#06262b"/>
184
+ <rect x="11" y="24" width="8" height="1" fill="#1aa79c"/>
185
+ <rect x="19" y="24" width="2" height="1" fill="#38cfc1"/>
186
+ <rect x="21" y="24" width="1" height="1" fill="#06262b"/>
187
+ <rect x="22" y="24" width="4" height="1" fill="#0d5f60"/>
188
+ <rect x="26" y="24" width="2" height="1" fill="#a8fff0"/>
189
+ <rect x="28" y="24" width="8" height="1" fill="#0d5f60"/>
190
+ <rect x="36" y="24" width="1" height="1" fill="#06262b"/>
191
+ <rect x="37" y="24" width="1" height="1" fill="#38cfc1"/>
192
+ <rect x="38" y="24" width="1" height="1" fill="#06262b"/>
193
+ <rect x="39" y="24" width="1" height="1" fill="#38cfc1"/>
194
+ <rect x="40" y="24" width="2" height="1" fill="#06262b"/>
195
+ <rect x="6" y="25" width="2" height="1" fill="#06262b"/>
196
+ <rect x="8" y="25" width="2" height="1" fill="#1aa79c"/>
197
+ <rect x="10" y="25" width="1" height="1" fill="#06262b"/>
198
+ <rect x="11" y="25" width="8" height="1" fill="#1aa79c"/>
199
+ <rect x="19" y="25" width="2" height="1" fill="#38cfc1"/>
200
+ <rect x="21" y="25" width="1" height="1" fill="#06262b"/>
201
+ <rect x="22" y="25" width="3" height="1" fill="#0d5f60"/>
202
+ <rect x="25" y="25" width="2" height="1" fill="#a8fff0"/>
203
+ <rect x="27" y="25" width="9" height="1" fill="#0d5f60"/>
204
+ <rect x="36" y="25" width="1" height="1" fill="#06262b"/>
205
+ <rect x="37" y="25" width="1" height="1" fill="#38cfc1"/>
206
+ <rect x="38" y="25" width="1" height="1" fill="#06262b"/>
207
+ <rect x="39" y="25" width="1" height="1" fill="#1aa79c"/>
208
+ <rect x="40" y="25" width="2" height="1" fill="#06262b"/>
209
+ <rect x="6" y="26" width="2" height="1" fill="#06262b"/>
210
+ <rect x="8" y="26" width="2" height="1" fill="#1aa79c"/>
211
+ <rect x="10" y="26" width="1" height="1" fill="#06262b"/>
212
+ <rect x="11" y="26" width="4" height="1" fill="#1aa79c"/>
213
+ <rect x="15" y="26" width="4" height="1" fill="#06262b"/>
214
+ <rect x="19" y="26" width="1" height="1" fill="#a8fff0"/>
215
+ <rect x="20" y="26" width="1" height="1" fill="#38cfc1"/>
216
+ <rect x="21" y="26" width="1" height="1" fill="#06262b"/>
217
+ <rect x="22" y="26" width="2" height="1" fill="#0d5f60"/>
218
+ <rect x="24" y="26" width="2" height="1" fill="#a8fff0"/>
219
+ <rect x="26" y="26" width="3" height="1" fill="#0d5f60"/>
220
+ <rect x="29" y="26" width="5" height="1" fill="#a8fff0"/>
221
+ <rect x="34" y="26" width="2" height="1" fill="#0d5f60"/>
222
+ <rect x="36" y="26" width="1" height="1" fill="#06262b"/>
223
+ <rect x="37" y="26" width="1" height="1" fill="#38cfc1"/>
224
+ <rect x="38" y="26" width="1" height="1" fill="#06262b"/>
225
+ <rect x="39" y="26" width="1" height="1" fill="#1aa79c"/>
226
+ <rect x="40" y="26" width="2" height="1" fill="#06262b"/>
227
+ <rect x="6" y="27" width="2" height="1" fill="#06262b"/>
228
+ <rect x="8" y="27" width="2" height="1" fill="#1aa79c"/>
229
+ <rect x="10" y="27" width="1" height="1" fill="#06262b"/>
230
+ <rect x="11" y="27" width="4" height="1" fill="#1aa79c"/>
231
+ <rect x="15" y="27" width="1" height="1" fill="#06262b"/>
232
+ <rect x="16" y="27" width="2" height="1" fill="#1aa79c"/>
233
+ <rect x="18" y="27" width="1" height="1" fill="#06262b"/>
234
+ <rect x="19" y="27" width="1" height="1" fill="#a8fff0"/>
235
+ <rect x="20" y="27" width="1" height="1" fill="#38cfc1"/>
236
+ <rect x="21" y="27" width="1" height="1" fill="#06262b"/>
237
+ <rect x="22" y="27" width="14" height="1" fill="#0d5f60"/>
238
+ <rect x="36" y="27" width="1" height="1" fill="#06262b"/>
239
+ <rect x="37" y="27" width="1" height="1" fill="#38cfc1"/>
240
+ <rect x="38" y="27" width="1" height="1" fill="#06262b"/>
241
+ <rect x="39" y="27" width="1" height="1" fill="#1aa79c"/>
242
+ <rect x="40" y="27" width="2" height="1" fill="#06262b"/>
243
+ <rect x="6" y="28" width="2" height="1" fill="#06262b"/>
244
+ <rect x="8" y="28" width="2" height="1" fill="#1aa79c"/>
245
+ <rect x="10" y="28" width="6" height="1" fill="#06262b"/>
246
+ <rect x="16" y="28" width="2" height="1" fill="#1aa79c"/>
247
+ <rect x="18" y="28" width="1" height="1" fill="#06262b"/>
248
+ <rect x="19" y="28" width="1" height="1" fill="#a8fff0"/>
249
+ <rect x="20" y="28" width="1" height="1" fill="#38cfc1"/>
250
+ <rect x="21" y="28" width="1" height="1" fill="#06262b"/>
251
+ <rect x="22" y="28" width="14" height="1" fill="#0d5f60"/>
252
+ <rect x="36" y="28" width="1" height="1" fill="#06262b"/>
253
+ <rect x="37" y="28" width="1" height="1" fill="#38cfc1"/>
254
+ <rect x="38" y="28" width="3" height="1" fill="#06262b"/>
255
+ <rect x="6" y="29" width="2" height="1" fill="#06262b"/>
256
+ <rect x="8" y="29" width="3" height="1" fill="#1aa79c"/>
257
+ <rect x="11" y="29" width="4" height="1" fill="#06262b"/>
258
+ <rect x="15" y="29" width="3" height="1" fill="#1aa79c"/>
259
+ <rect x="18" y="29" width="1" height="1" fill="#06262b"/>
260
+ <rect x="19" y="29" width="1" height="1" fill="#a8fff0"/>
261
+ <rect x="20" y="29" width="1" height="1" fill="#38cfc1"/>
262
+ <rect x="21" y="29" width="2" height="1" fill="#06262b"/>
263
+ <rect x="23" y="29" width="12" height="1" fill="#0d5f60"/>
264
+ <rect x="35" y="29" width="2" height="1" fill="#06262b"/>
265
+ <rect x="37" y="29" width="1" height="1" fill="#38cfc1"/>
266
+ <rect x="38" y="29" width="1" height="1" fill="#06262b"/>
267
+ <rect x="6" y="30" width="2" height="1" fill="#06262b"/>
268
+ <rect x="8" y="30" width="10" height="1" fill="#1aa79c"/>
269
+ <rect x="18" y="30" width="1" height="1" fill="#06262b"/>
270
+ <rect x="19" y="30" width="1" height="1" fill="#a8fff0"/>
271
+ <rect x="20" y="30" width="2" height="1" fill="#38cfc1"/>
272
+ <rect x="22" y="30" width="14" height="1" fill="#06262b"/>
273
+ <rect x="36" y="30" width="2" height="1" fill="#38cfc1"/>
274
+ <rect x="38" y="30" width="1" height="1" fill="#06262b"/>
275
+ <rect x="8" y="31" width="1" height="1" fill="#06262b"/>
276
+ <rect x="9" y="31" width="9" height="1" fill="#1aa79c"/>
277
+ <rect x="18" y="31" width="1" height="1" fill="#06262b"/>
278
+ <rect x="19" y="31" width="1" height="1" fill="#a8fff0"/>
279
+ <rect x="20" y="31" width="2" height="1" fill="#38cfc1"/>
280
+ <rect x="22" y="31" width="14" height="1" fill="#06262b"/>
281
+ <rect x="36" y="31" width="2" height="1" fill="#38cfc1"/>
282
+ <rect x="38" y="31" width="1" height="1" fill="#06262b"/>
283
+ <rect x="8" y="32" width="1" height="1" fill="#06262b"/>
284
+ <rect x="9" y="32" width="9" height="1" fill="#1aa79c"/>
285
+ <rect x="18" y="32" width="1" height="1" fill="#06262b"/>
286
+ <rect x="19" y="32" width="2" height="1" fill="#1aa79c"/>
287
+ <rect x="21" y="32" width="2" height="1" fill="#38cfc1"/>
288
+ <rect x="23" y="32" width="11" height="1" fill="#a8fff0"/>
289
+ <rect x="34" y="32" width="1" height="1" fill="#0d5f60"/>
290
+ <rect x="35" y="32" width="2" height="1" fill="#38cfc1"/>
291
+ <rect x="37" y="32" width="1" height="1" fill="#1aa79c"/>
292
+ <rect x="38" y="32" width="1" height="1" fill="#06262b"/>
293
+ <rect x="9" y="33" width="1" height="1" fill="#06262b"/>
294
+ <rect x="10" y="33" width="7" height="1" fill="#1aa79c"/>
295
+ <rect x="17" y="33" width="1" height="1" fill="#06262b"/>
296
+ <rect x="18" y="33" width="2" height="1" fill="#1aa79c"/>
297
+ <rect x="20" y="33" width="2" height="1" fill="#06262b"/>
298
+ <rect x="22" y="33" width="12" height="1" fill="#38cfc1"/>
299
+ <rect x="34" y="33" width="1" height="1" fill="#0d5f60"/>
300
+ <rect x="35" y="33" width="1" height="1" fill="#38cfc1"/>
301
+ <rect x="36" y="33" width="1" height="1" fill="#1aa79c"/>
302
+ <rect x="37" y="33" width="1" height="1" fill="#06262b"/>
303
+ <rect x="9" y="34" width="2" height="1" fill="#06262b"/>
304
+ <rect x="11" y="34" width="5" height="1" fill="#1aa79c"/>
305
+ <rect x="16" y="34" width="1" height="1" fill="#06262b"/>
306
+ <rect x="17" y="34" width="5" height="1" fill="#1aa79c"/>
307
+ <rect x="22" y="34" width="1" height="1" fill="#0d5f60"/>
308
+ <rect x="23" y="34" width="10" height="1" fill="#1aa79c"/>
309
+ <rect x="33" y="34" width="1" height="1" fill="#0d5f60"/>
310
+ <rect x="34" y="34" width="1" height="1" fill="#1aa79c"/>
311
+ <rect x="35" y="34" width="2" height="1" fill="#06262b"/>
312
+ <rect x="10" y="35" width="26" height="1" fill="#06262b"/>
313
+ <rect x="10" y="36" width="6" height="1" fill="#38cfc1"/>
314
+ <rect x="16" y="36" width="16" height="1" fill="#06262b"/>
315
+ <rect x="32" y="36" width="4" height="1" fill="#38cfc1"/>
316
+ <rect x="16" y="37" width="16" height="1" fill="#06262b"/>
317
+ <rect x="16" y="38" width="1" height="1" fill="#06262b"/>
318
+ <rect x="17" y="38" width="5" height="1" fill="#1aa79c"/>
319
+ <rect x="22" y="38" width="1" height="1" fill="#38cfc1"/>
320
+ <rect x="23" y="38" width="1" height="1" fill="#06262b"/>
321
+ <rect x="24" y="38" width="1" height="1" fill="#38cfc1"/>
322
+ <rect x="25" y="38" width="1" height="1" fill="#06262b"/>
323
+ <rect x="26" y="38" width="1" height="1" fill="#38cfc1"/>
324
+ <rect x="27" y="38" width="1" height="1" fill="#06262b"/>
325
+ <rect x="28" y="38" width="2" height="1" fill="#38cfc1"/>
326
+ <rect x="30" y="38" width="2" height="1" fill="#06262b"/>
327
+ <rect x="17" y="39" width="2" height="1" fill="#06262b"/>
328
+ <rect x="19" y="39" width="3" height="1" fill="#1aa79c"/>
329
+ <rect x="22" y="39" width="7" height="1" fill="#38cfc1"/>
330
+ <rect x="29" y="39" width="2" height="1" fill="#06262b"/>
331
+ <rect x="18" y="40" width="12" height="1" fill="#06262b"/>
332
+ </svg>
Binary file
Binary file
Binary file