lean4monaco 1.0.46 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (209) hide show
  1. package/README.md +75 -0
  2. package/dist/JuliaMono-Regular.ttf +0 -0
  3. package/dist/css/custom.css +7 -1
  4. package/dist/infowebview.d.ts +3 -4
  5. package/dist/infowebview.js +4 -4
  6. package/dist/lean4-infoview/codicon.ttf +0 -0
  7. package/dist/lean4-infoview/esm-shims/react-dom.d.ts +5 -0
  8. package/dist/lean4-infoview/esm-shims/react-jsx-runtime.d.ts +5 -0
  9. package/dist/lean4-infoview/esm-shims/react.d.ts +5 -0
  10. package/dist/lean4-infoview/index.css +4161 -0
  11. package/dist/lean4-infoview/index.d.ts +16 -0
  12. package/dist/lean4-infoview/index.development.js +37312 -0
  13. package/dist/lean4-infoview/index.production.min.js +1528 -0
  14. package/dist/lean4-infoview/infoview/collapsing.d.ts +12 -0
  15. package/dist/lean4-infoview/infoview/contexts.d.ts +10 -0
  16. package/dist/lean4-infoview/infoview/editorConnection.d.ts +22 -0
  17. package/dist/lean4-infoview/infoview/errors.d.ts +14 -0
  18. package/dist/lean4-infoview/infoview/event.d.ts +33 -0
  19. package/dist/lean4-infoview/infoview/goalLocation.d.ts +61 -0
  20. package/dist/lean4-infoview/infoview/goals.d.ts +46 -0
  21. package/dist/lean4-infoview/infoview/info.d.ts +18 -0
  22. package/dist/lean4-infoview/infoview/infos.d.ts +2 -0
  23. package/dist/lean4-infoview/infoview/interactiveCode.d.ts +19 -0
  24. package/dist/lean4-infoview/infoview/main.d.ts +13 -0
  25. package/dist/lean4-infoview/infoview/messages.d.ts +19 -0
  26. package/dist/lean4-infoview/infoview/rpcSessions.d.ts +11 -0
  27. package/dist/lean4-infoview/infoview/serverVersion.d.ts +10 -0
  28. package/dist/lean4-infoview/infoview/tooltips.d.ts +32 -0
  29. package/dist/lean4-infoview/infoview/traceExplorer.d.ts +11 -0
  30. package/dist/lean4-infoview/infoview/userWidget.d.ts +39 -0
  31. package/dist/lean4-infoview/infoview/util.d.ts +144 -0
  32. package/dist/lean4-infoview/loader.d.ts +20 -0
  33. package/dist/lean4-infoview/loader.development.js +1006 -0
  34. package/dist/lean4-infoview/loader.production.min.js +1 -0
  35. package/dist/lean4-infoview/react-dom.development.js +30537 -0
  36. package/dist/lean4-infoview/react-dom.production.min.js +21 -0
  37. package/dist/lean4-infoview/react-jsx-runtime.development.js +1362 -0
  38. package/dist/lean4-infoview/react-jsx-runtime.production.min.js +1 -0
  39. package/dist/lean4-infoview/react.development.js +2823 -0
  40. package/dist/lean4-infoview/react.production.min.js +1 -0
  41. package/dist/leanmonaco.js +5 -4
  42. package/dist/monaco-lean4/vscode-lean4/package.json +944 -0
  43. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +9 -0
  44. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +20 -0
  45. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.d.ts +12 -0
  46. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.js +40 -0
  47. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +20 -0
  48. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +79 -0
  49. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.d.ts +13 -0
  50. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.js +29 -0
  51. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +28 -0
  52. package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +124 -0
  53. package/dist/monaco-lean4/vscode-lean4/src/config.d.ts +33 -0
  54. package/dist/monaco-lean4/vscode-lean4/src/config.js +119 -0
  55. package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +27 -0
  56. package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +133 -0
  57. package/dist/monaco-lean4/vscode-lean4/src/infoview.d.ts +69 -0
  58. package/dist/monaco-lean4/vscode-lean4/src/infoview.js +711 -0
  59. package/dist/monaco-lean4/vscode-lean4/src/leanclient.d.ts +67 -0
  60. package/dist/monaco-lean4/vscode-lean4/src/leanclient.js +443 -0
  61. package/dist/monaco-lean4/vscode-lean4/src/rpc.d.ts +16 -0
  62. package/dist/monaco-lean4/vscode-lean4/src/rpc.js +102 -0
  63. package/dist/monaco-lean4/vscode-lean4/src/taskgutter.d.ts +11 -0
  64. package/dist/monaco-lean4/vscode-lean4/src/taskgutter.js +130 -0
  65. package/dist/monaco-lean4/vscode-lean4/src/utils/batch.d.ts +37 -0
  66. package/dist/monaco-lean4/vscode-lean4/src/utils/batch.js +203 -0
  67. package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.d.ts +41 -0
  68. package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.js +205 -0
  69. package/dist/monaco-lean4/vscode-lean4/src/utils/converters.d.ts +16 -0
  70. package/dist/monaco-lean4/vscode-lean4/src/utils/converters.js +129 -0
  71. package/dist/monaco-lean4/vscode-lean4/src/utils/elan.d.ts +3 -0
  72. package/dist/monaco-lean4/vscode-lean4/src/utils/elan.js +4 -0
  73. package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.d.ts +21 -0
  74. package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.js +53 -0
  75. package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.d.ts +35 -0
  76. package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.js +136 -0
  77. package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.d.ts +17 -0
  78. package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.js +36 -0
  79. package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +37 -0
  80. package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.js +210 -0
  81. package/dist/monaco-lean4/vscode-lean4/src/utils/logger.d.ts +7 -0
  82. package/dist/monaco-lean4/vscode-lean4/src/utils/logger.js +20 -0
  83. package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.d.ts +24 -0
  84. package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.js +110 -0
  85. package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.d.ts +9 -0
  86. package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.js +125 -0
  87. package/dist/monacoleanclient.d.ts +1 -2
  88. package/dist/monacoleanclient.js +3 -3
  89. package/dist/vscode-lean4/lean4-infoview/package.json +25 -23
  90. package/dist/vscode-lean4/lean4-infoview/src/infoview/highlightjs.css +210 -0
  91. package/dist/vscode-lean4/lean4-infoview/tsconfig.json +6 -2
  92. package/dist/vscode-lean4/lean4-infoview-api/package.json +1 -1
  93. package/dist/vscode-lean4/lean4-unicode-input/package.json +1 -1
  94. package/dist/vscode-lean4/lean4-unicode-input/src/abbreviations.json +12 -12
  95. package/dist/vscode-lean4/lean4-unicode-input-component/package.json +2 -2
  96. package/dist/vscode-lean4/package-lock.json +6129 -3245
  97. package/dist/vscode-lean4/vscode-lean4/language-configuration.json +1 -1
  98. package/dist/vscode-lean4/vscode-lean4/loogleview/static/index.css +19 -16
  99. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-dark.svg +91 -0
  100. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-dark.svg +114 -0
  101. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-light.svg +114 -0
  102. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-dark.svg +109 -0
  103. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-light.svg +109 -0
  104. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-dark.svg +100 -0
  105. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-light.svg +100 -0
  106. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-dark.svg +123 -0
  107. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-light.svg +123 -0
  108. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-dark.svg +109 -0
  109. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-light.svg +109 -0
  110. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-light.svg +91 -0
  111. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-dark.svg +123 -0
  112. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-light.svg +123 -0
  113. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-dark.svg +118 -0
  114. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-light.svg +118 -0
  115. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-dark.svg +138 -0
  116. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-dark.svg +160 -0
  117. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-light.svg +160 -0
  118. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-dark.svg +158 -0
  119. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-light.svg +158 -0
  120. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-light.svg +138 -0
  121. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-dark.svg +169 -0
  122. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-light.svg +169 -0
  123. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-dark.svg +147 -0
  124. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-dark.svg +170 -0
  125. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-light.svg +170 -0
  126. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-dark.svg +167 -0
  127. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-light.svg +167 -0
  128. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-light.svg +147 -0
  129. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-dark.svg +179 -0
  130. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-light.svg +179 -0
  131. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-dark.svg +165 -0
  132. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-dark.svg +187 -0
  133. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-light.svg +187 -0
  134. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-dark.svg +185 -0
  135. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-light.svg +185 -0
  136. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-light.svg +165 -0
  137. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-dark.svg +196 -0
  138. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-light.svg +196 -0
  139. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-dark.svg +184 -0
  140. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-dark.svg +206 -0
  141. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-light.svg +206 -0
  142. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-dark.svg +204 -0
  143. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-light.svg +204 -0
  144. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-light.svg +184 -0
  145. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-dark.svg +215 -0
  146. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-light.svg +215 -0
  147. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-dark.svg +132 -0
  148. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-dark.svg +154 -0
  149. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-light.svg +154 -0
  150. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-dark.svg +152 -0
  151. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-light.svg +152 -0
  152. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-light.svg +132 -0
  153. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-dark.svg +163 -0
  154. package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-light.svg +163 -0
  155. package/dist/vscode-lean4/vscode-lean4/moogleview/static/index.css +198 -0
  156. package/dist/vscode-lean4/vscode-lean4/moogleview/tsconfig.json +10 -0
  157. package/dist/vscode-lean4/vscode-lean4/package.json +638 -18
  158. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +2 -2
  159. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +2 -2
  160. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +2 -3
  161. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +3 -5
  162. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +1 -2
  163. package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +4 -8
  164. package/dist/vscode-lean4/vscode-lean4/src/config.d.ts +14 -1
  165. package/dist/vscode-lean4/vscode-lean4/src/config.js +56 -5
  166. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.d.ts +36 -5
  167. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.js +59 -23
  168. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.d.ts +22 -17
  169. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.js +182 -119
  170. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +33 -20
  171. package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +235 -89
  172. package/dist/vscode-lean4/vscode-lean4/src/infoview.d.ts +7 -18
  173. package/dist/vscode-lean4/vscode-lean4/src/infoview.js +217 -102
  174. package/dist/vscode-lean4/vscode-lean4/src/leanclient.d.ts +12 -7
  175. package/dist/vscode-lean4/vscode-lean4/src/leanclient.js +187 -64
  176. package/dist/vscode-lean4/vscode-lean4/src/taskgutter.d.ts +35 -3
  177. package/dist/vscode-lean4/vscode-lean4/src/taskgutter.js +533 -93
  178. package/dist/vscode-lean4/vscode-lean4/src/utils/batch.d.ts +12 -4
  179. package/dist/vscode-lean4/vscode-lean4/src/utils/batch.js +78 -72
  180. package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.d.ts +9 -9
  181. package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.js +121 -77
  182. package/dist/vscode-lean4/vscode-lean4/src/utils/converters.d.ts +15 -0
  183. package/dist/vscode-lean4/vscode-lean4/src/utils/converters.js +9 -0
  184. package/dist/vscode-lean4/vscode-lean4/src/utils/elan.d.ts +179 -1
  185. package/dist/vscode-lean4/vscode-lean4/src/utils/elan.js +422 -3
  186. package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.d.ts +3 -1
  187. package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.js +11 -11
  188. package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.d.ts +2 -0
  189. package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.js +17 -0
  190. package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.d.ts +2 -0
  191. package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.js +35 -0
  192. package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.d.ts +34 -0
  193. package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.js +249 -0
  194. package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.d.ts +83 -0
  195. package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.js +323 -0
  196. package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +41 -12
  197. package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.js +245 -128
  198. package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.d.ts +27 -22
  199. package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.js +177 -82
  200. package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.d.ts +11 -4
  201. package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.js +18 -16
  202. package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.d.ts +1 -0
  203. package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.js +2 -0
  204. package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.d.ts +3 -0
  205. package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.js +22 -0
  206. package/dist/vscode-lean4/vscode-lean4/tsconfig.json +2 -1
  207. package/dist/vscode-lean4/vscode-lean4/webview/tsconfig.json +3 -1
  208. package/dist/vscode.css +7 -0
  209. package/package.json +7 -5
@@ -0,0 +1,206 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="goals-accomplished-tada-i-passthrough-dark.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1">
17
+ <clipPath
18
+ clipPathUnits="userSpaceOnUse"
19
+ id="clipPath2">
20
+ <rect
21
+ style="fill:none"
22
+ id="rect4"
23
+ width="16"
24
+ height="16"
25
+ x="0"
26
+ y="0" />
27
+ </clipPath>
28
+ <clipPath
29
+ clipPathUnits="userSpaceOnUse"
30
+ id="clipPath4">
31
+ <rect
32
+ style="fill:none"
33
+ id="rect5"
34
+ width="16"
35
+ height="16"
36
+ x="0"
37
+ y="0" />
38
+ </clipPath>
39
+ <clipPath
40
+ clipPathUnits="userSpaceOnUse"
41
+ id="clipPath5">
42
+ <rect
43
+ style="fill:none"
44
+ id="rect6"
45
+ width="16"
46
+ height="16"
47
+ x="0"
48
+ y="0" />
49
+ </clipPath>
50
+ <clipPath
51
+ clipPathUnits="userSpaceOnUse"
52
+ id="clipPath6">
53
+ <rect
54
+ style="fill:none"
55
+ id="rect7"
56
+ width="16"
57
+ height="16"
58
+ x="0"
59
+ y="0" />
60
+ </clipPath>
61
+ <clipPath
62
+ clipPathUnits="userSpaceOnUse"
63
+ id="clipPath15">
64
+ <rect
65
+ style="display:inline;fill:none;stroke-width:1.00098"
66
+ id="rect15"
67
+ width="16"
68
+ height="16"
69
+ x="0"
70
+ y="0" />
71
+ </clipPath>
72
+ <clipPath
73
+ clipPathUnits="userSpaceOnUse"
74
+ id="clipPath14">
75
+ <rect
76
+ style="display:inline;fill:none;stroke-width:1.00098"
77
+ id="rect14"
78
+ width="16"
79
+ height="16"
80
+ x="0"
81
+ y="0" />
82
+ </clipPath>
83
+ <clipPath
84
+ clipPathUnits="userSpaceOnUse"
85
+ id="clipPath13">
86
+ <rect
87
+ style="display:inline;fill:none;stroke-width:1.00098"
88
+ id="rect13"
89
+ width="16"
90
+ height="16"
91
+ x="0"
92
+ y="0" />
93
+ </clipPath>
94
+ <clipPath
95
+ clipPathUnits="userSpaceOnUse"
96
+ id="clipPath12">
97
+ <rect
98
+ style="display:inline;fill:none;stroke-width:1.00098"
99
+ id="rect12"
100
+ width="16"
101
+ height="16"
102
+ x="0"
103
+ y="0" />
104
+ </clipPath>
105
+ </defs>
106
+ <sodipodi:namedview
107
+ id="namedview1"
108
+ pagecolor="#ffffff"
109
+ bordercolor="#000000"
110
+ borderopacity="0.25"
111
+ inkscape:showpageshadow="2"
112
+ inkscape:pageopacity="0.0"
113
+ inkscape:pagecheckerboard="0"
114
+ inkscape:deskcolor="#d1d1d1"
115
+ inkscape:zoom="32"
116
+ inkscape:cx="18.140625"
117
+ inkscape:cy="8.921875"
118
+ inkscape:window-width="1918"
119
+ inkscape:window-height="2128"
120
+ inkscape:window-x="0"
121
+ inkscape:window-y="0"
122
+ inkscape:window-maximized="0"
123
+ inkscape:current-layer="svg1" />
124
+ <rect
125
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.30379"
126
+ id="rect1-7"
127
+ width="1"
128
+ height="2.3373294"
129
+ x="7.5"
130
+ y="-0.082031257"
131
+ inkscape:transform-center-x="-0.3125"
132
+ inkscape:transform-center-y="2.7202962"
133
+ clip-path="url(#clipPath6)"
134
+ transform="scale(1,0.88674101)" />
135
+ <rect
136
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.6605"
137
+ id="rect1"
138
+ width="1"
139
+ height="3.7912476"
140
+ x="7.5"
141
+ y="13.002536"
142
+ inkscape:transform-center-x="-0.3125"
143
+ inkscape:transform-center-y="3.3201495"
144
+ clip-path="url(#clipPath4)"
145
+ transform="matrix(1,0,0,0.66723066,0,5.3243094)" />
146
+ <g
147
+ id="g14"
148
+ transform="matrix(0.10934699,0,0,0.10934699,1.0016457,1.0005279)">
149
+ <path
150
+ d="m 72.59,58.36 c -0.65,1.18 -1.3,2.37 -1.92,3.55 l -0.52,0.98 -0.05,0.08 c 1.83,2.43 3.4,5.04 4.64,7.69 0.18,0.37 0.35,0.75 0.52,1.13 1.77,-0.52 3.55,-0.81 5.29,-0.88 -1.31,-3.47 -3.33,-7.07 -6.3,-10.71 -0.52,-0.63 -1.09,-1.23 -1.66,-1.84 z"
151
+ style="fill:#fcc21b"
152
+ id="path1" />
153
+ <path
154
+ d="m 77.93,85.16 c -0.37,0 -0.75,0.02 -1.13,0.06 -2.07,6.54 -8.79,9.4 -15.89,8.52 C 49.76,92.37 39.53,83.89 36.1,73.24 35.4,71.11 35.16,68.99 35.08,66.73 34.88,60.91 36,54.68 41.83,52.27 l 0.07,-0.03 c 0.19,-0.08 0.38,-0.13 0.57,-0.19 C 42.05,51.42 41.62,50.76 41.21,50.03 40.63,49 40.28,47.91 40.07,46.85 33.82,49.03 30.01,54.55 27.34,60.63 24.79,66.45 8.22,111.2 8.22,111.2 l -2.22,6 c -0.76,2.08 -1.94,4.17 -1.94,6.44 0,2.65 2.36,4.46 5.02,3.72 1.78,-0.5 3.74,-1.42 5.55,-2.14 3.83,-1.56 10.93,-4.63 10.93,-4.63 l 29.68,-12.22 c 0,0 14.31,-5.18 20.33,-10.85 2.92,-2.75 5.26,-6.71 6.29,-11.44 -0.21,-0.11 -0.43,-0.23 -0.65,-0.32 -1,-0.41 -2.07,-0.6 -3.28,-0.6 z"
155
+ style="fill:#fcc21b"
156
+ id="path2" />
157
+ <path
158
+ d="m 55.68,47.54 c 0.77,1.47 1.62,3.14 1.94,5.21 1.42,0.6 2.78,1.32 4.07,2.17 0.45,-1.44 0.92,-2.86 1.41,-4.31 -0.21,-0.13 -0.42,-0.28 -0.63,-0.4 -2.11,-1.2 -4.48,-2.22 -6.95,-2.98 0.06,0.11 0.11,0.2 0.16,0.31 z"
159
+ style="fill:#fcc21b"
160
+ id="path3-5" />
161
+ <path
162
+ d="m 111.93,31.98 c -0.16,1 -0.12,2.42 0.04,3.4 0.17,1.1 0.42,2.27 0.82,3.31 0.57,1.46 1.27,0.95 2.7,0.75 0.99,-0.13 1.91,-0.06 2.89,-0.26 1.03,-0.21 2.05,-0.48 3.08,-0.68 2.42,-0.46 3.63,-1 3.12,-3.55 -0.37,-1.84 -0.98,-3.67 -1.46,-5.49 -0.44,-0.39 -1.29,-0.17 -1.81,-0.05 -0.92,0.21 -1.83,0.26 -2.75,0.42 -1.66,0.27 -3.4,0.47 -5.03,0.86 -0.83,0.18 -1.47,0.43 -1.6,1.29 z"
163
+ style="fill:#d7598b"
164
+ id="path4-3" />
165
+ <path
166
+ d="m 98.87,62 c 0.38,0.87 1.31,0.65 2.22,0.85 2.02,0.46 4.07,0.41 6.14,0.41 0.77,0 2.72,0.29 3.27,-0.4 0.44,-0.56 0.06,-1.67 0,-2.32 -0.08,-0.85 -0.16,-1.69 -0.24,-2.54 -0.04,-0.4 0.03,-3.02 -0.31,-3.24 -0.58,-0.39 -1.68,-0.2 -2.34,-0.19 -1.21,0.04 -2.4,0.19 -3.63,0.19 -1.59,0 -3.31,0.02 -4.85,0.4 -0.54,1.43 -0.39,2.92 -0.39,4.49 0,0.73 -0.16,1.67 0.13,2.35 z"
167
+ style="fill:#40c0e7"
168
+ id="path5-5" />
169
+ <path
170
+ d="m 91.92,105.19 c -0.83,-1.23 -1.24,-2.88 -3.09,-2.7 -1.74,0.17 -3.28,1.55 -4.81,2.3 -0.99,0.48 -1.71,1.34 -1.91,2.42 -0.23,1.23 0.28,2.21 0.87,3.26 0.44,0.79 0.73,1.7 1.08,2.53 0.36,0.86 0.91,1.63 1.28,2.48 0.25,0.6 0.17,0.55 0.72,0.76 0.28,0.1 0.74,0.18 1.04,0.19 1.75,0.05 3.65,-1.72 4.92,-2.76 1.02,-0.82 3.06,-1.34 2.85,-2.89 -0.15,-1.15 -0.95,-2.26 -1.5,-3.25 -0.46,-0.81 -0.95,-1.59 -1.45,-2.34 z"
171
+ style="fill:#d7598b"
172
+ id="path6" />
173
+ <path
174
+ d="m 111.46,113.59 c -0.23,-0.15 -0.45,-0.24 -0.65,-0.27 -1.06,-0.19 -1.76,1.09 -2.6,1.92 -1.01,0.97 -2.21,1.74 -3.13,2.8 -0.99,1.16 -0.22,2.2 0.8,2.82 1.11,0.67 2.1,1.51 3.2,2.21 0.98,0.63 1.77,1.19 2.86,0.51 0.99,-0.62 1.54,-1.71 2.22,-2.62 1.26,-1.7 3.41,-3.07 1.3,-4.94 -1.18,-1.05 -2.7,-1.57 -4,-2.43 z"
175
+ style="fill:#40c0e7"
176
+ id="path7" />
177
+ <path
178
+ d="M 9,55.06 C 9.05,54.6 10.35,50.92 9.96,50.81 9.07,50.59 8.23,50.17 7.33,49.93 6.29,49.66 5.22,49.45 4.25,48.97 3.08,48.39 2.36,48.68 1.87,49.33 1.18,50.25 0.96,51.9 0.63,52.91 0.37,53.7 0.21,54.6 0.77,55.16 c 0.64,0.63 1.7,0.99 2.53,1.26 1.04,0.34 2.2,0.94 3.27,1.04 1.46,0.16 2.28,-1.16 2.43,-2.4 z"
179
+ style="fill:#40c0e7"
180
+ id="path8" />
181
+ <path
182
+ d="m 68.63,19.54 c 1.3,0.58 2.56,0.91 3.89,1.29 0.47,0.14 0.77,0.37 1.26,0.11 0.63,-0.32 1.33,-1.43 1.68,-2.04 0.83,-1.51 1.44,-3 2.01,-4.59 0.31,-0.85 1.23,-2.23 1,-3.13 C 78.27,10.42 77.17,9.95 76.55,9.62 75.72,9.19 74.93,8.61 74.09,8.24 73.01,7.77 71.53,7.26 70.37,7.09 c -0.64,-0.1 -1.09,0.16 -1.44,0.57 -0.32,0.37 -0.56,0.86 -0.8,1.31 -1.21,2.32 -2.7,5.81 -2.65,8.49 0.02,1.27 2.19,1.65 3.15,2.08 z"
183
+ style="fill:#40c0e7"
184
+ id="path9" />
185
+ <path
186
+ d="m 16.65,33.3 c 0.73,1.12 1.38,2.14 2.24,3.2 0.84,1.02 1.44,1.22 2.47,0.37 0.65,-0.52 1.39,-0.93 2.01,-1.49 0.59,-0.52 1.08,-1.18 1.67,-1.72 0.42,-0.39 1.25,-0.78 1.49,-1.32 0.33,-0.76 -0.36,-1.42 -0.78,-1.98 -0.52,-0.7 -0.92,-1.46 -1.49,-2.16 -0.73,-0.88 -1.52,-1.71 -2.34,-2.53 -0.67,-0.67 -1.48,-1.7 -2.24,-2.22 -0.2,-0.13 -0.43,-0.22 -0.67,-0.25 -0.91,-0.13 -1.99,0.39 -2.7,0.81 -0.97,0.57 -1.91,1.42 -2.76,2.17 -1.33,1.18 -0.04,2.73 0.74,3.85 0.78,1.08 1.62,2.13 2.36,3.27 z"
187
+ style="fill:#d7598b"
188
+ id="path10" />
189
+ <path
190
+ d="m 16.73,9.97 c 0.67,0.72 1.5,1.59 2.44,2 0.83,0.37 1.68,-0.37 2.35,-0.78 0.75,-0.46 1.36,-1.13 1.92,-1.8 C 23.95,8.77 24.64,8.1 25.02,7.38 25.46,6.56 24.86,6.25 24.25,5.76 23.52,5.16 22.78,4.54 22.16,3.82 21.32,2.84 20.48,1.74 19.59,0.84 19.29,0.53 18.93,0.45 18.55,0.52 c -1.19,0.2 -2.6,1.87 -3.3,2.42 -0.56,0.43 -1.54,1.19 -1.71,1.9 -0.21,0.8 0.26,1.57 0.66,2.24 0.65,1.08 1.65,1.95 2.53,2.89 z"
191
+ style="fill:#40c0e7"
192
+ id="path11" />
193
+ <path
194
+ d="m 45.86,29.19 c 1.38,4.78 -2.3,8.47 -2.7,13 -0.12,1.31 -0.12,2.62 0.1,3.88 0.14,0.82 0.37,1.62 0.78,2.35 0.54,0.96 1.16,1.83 1.73,2.73 0.56,0.87 1.06,1.75 1.4,2.76 0.75,2.24 0.23,4.26 -0.09,6.48 -0.26,1.77 -1.16,3.44 -2.24,4.84 -0.33,0.43 -1.24,0.98 -1.02,1.61 0.03,0.11 0.23,0.15 0.52,0.15 1.2,0 4.03,-0.73 4.44,-0.92 1.8,-0.87 2.85,-2.63 3.78,-4.33 1.38,-2.52 2.27,-5.46 1.88,-8.35 -0.08,-0.66 -0.26,-1.28 -0.48,-1.88 -0.67,-1.79 -1.78,-3.39 -2.41,-5.22 -0.08,-0.22 -0.16,-0.44 -0.22,-0.67 -0.92,-3.58 1.29,-7.09 3.15,-9.94 C 56.31,32.89 57,28.79 55.7,25.59 55.04,23.97 53.98,22.35 52.69,21.16 51.16,19.74 48.83,18.45 49.09,16 49.31,13.87 50.75,11.63 51.84,9.87 52.38,8.98 54.08,7.16 54.02,6.14 53.97,5.1 52.52,4.58 51.83,3.97 50.27,2.59 49.03,1.53 47.03,0.9 46.67,0.78 46.37,0.73 46.09,0.73 c -1.29,0 -1.74,1.17 -2.46,2.43 -1.32,2.33 -2.62,4.79 -3.5,7.31 -1.66,4.68 -1.91,9.51 1.68,13.89 1.24,1.53 3.53,3.03 4.05,4.83 z"
195
+ style="fill:#ed6c30"
196
+ id="path12" />
197
+ <path
198
+ d="m 62.08,69.54 c 0.25,0.26 0.48,0.37 0.69,0.37 0.39,0 0.7,-0.4 0.95,-0.87 0.19,-0.36 0.34,-0.73 0.46,-1.12 0.67,-2.25 2,-4.48 3.1,-6.56 0.2,-0.37 0.4,-0.73 0.59,-1.09 0.76,-1.43 1.54,-2.86 2.35,-4.28 0.63,-1.12 1.26,-2.25 1.94,-3.33 1.78,-2.85 4.18,-5.89 7.2,-7.48 1.9,-1.02 4.04,-1.49 5.95,-2.5 2.17,-1.13 3.44,-2.84 4.85,-4.79 1.4,-1.93 2.13,-4.31 3.41,-6.34 0.54,-0.86 0.46,-1.62 1.41,-2.22 2.11,-1.32 4.64,-0.87 6.98,-1.32 5.53,-1.06 6.02,-8.35 10.54,-10.98 0.95,-0.55 1.92,-1.06 2.88,-1.57 0.56,-0.3 1.64,-0.67 2.03,-1.22 0.67,-0.94 -0.6,-2.17 -0.98,-3.03 -0.66,-1.48 -1.65,-2.97 -2.5,-4.35 -0.72,-1.16 -1.36,-2.21 -2.64,-2.21 l -0.25,0.02 c -2.89,0.28 -5.47,1.55 -7.32,3.76 -2.25,2.7 -2.55,6.87 -6.09,8.35 -2.3,0.96 -5.01,0.58 -7.19,1.91 -2.58,1.58 -3.41,4.7 -4.13,7.44 -0.54,2 -0.57,4.41 -2.09,5.98 -2.06,2.11 -5.19,2.37 -7.83,3.5 -0.71,0.31 -1.39,0.68 -2,1.16 -3.35,2.64 -5.25,6.97 -6.75,10.85 -0.61,1.59 -1.16,3.21 -1.7,4.83 -0.5,1.51 -0.99,3.02 -1.46,4.54 -0.24,0.78 -0.5,1.56 -0.74,2.35 -0.61,1.98 -1.17,4.01 -1.89,5.96 -0.5,1.25 -0.81,3.16 0.23,4.24 z"
199
+ style="fill:#ed6c30"
200
+ id="path13" />
201
+ <path
202
+ d="m 127.44,86.8 c -0.19,-0.2 -0.46,-0.22 -0.73,-0.22 l -0.31,0.01 -0.17,-0.01 c -0.6,-0.04 -1.1,-0.3 -1.68,-0.5 -2.67,-0.93 -4.4,-1.7 -6.76,-3.29 -2.66,-1.79 -5.71,-3.46 -8.99,-3.61 l -0.38,-0.01 c -3.24,0 -6.23,1.71 -9.48,1.71 H 98.92 C 95.32,80.86 92.21,78.3 89.37,76.41 89.13,76.25 88.89,76.1 88.63,75.96 86.4,74.7 84,74.15 81.58,74.12 c -0.06,0 -0.13,-0.02 -0.19,-0.02 -1.67,0 -3.35,0.26 -4.99,0.72 -1.6,0.44 -3.15,1.08 -4.63,1.87 -2.11,1.12 -4.14,2.47 -5.99,3.97 -1.03,0.83 -2.16,1.78 -2.86,2.93 -0.38,0.61 -0.9,2.93 0.07,3.31 l 0.13,0.03 c 0.38,0 1,-0.4 1.27,-0.57 2.16,-1.33 4.44,-2.49 6.87,-3.25 1.99,-0.63 4.08,-1.09 6.15,-1.17 0.17,-0.01 0.35,-0.02 0.52,-0.02 1.49,0 2.97,0.23 4.41,0.79 0.02,0.01 0.04,0.02 0.06,0.03 2.01,0.8 3.69,2.18 5.35,3.53 2.44,1.98 5.15,2.42 7.91,2.42 2.15,0 4.33,-0.26 6.46,-0.26 2.23,0 4.39,0.29 6.38,1.46 1.62,0.97 3.08,2.24 4.33,3.59 1.38,1.47 3.14,2.7 5.21,3.02 0.88,0.14 1.68,0.21 2.57,0.22 h 0.02 c 1.5,0 2.07,-1.73 2.83,-2.72 1.04,-1.34 1.76,-2.88 2.71,-4.29 0.4,-0.62 1.95,-2.23 1.27,-2.91 z"
203
+ style="fill:#ed6c30"
204
+ id="path14" />
205
+ </g>
206
+ </svg>
@@ -0,0 +1,206 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="goals-accomplished-tada-i-passthrough-light.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1">
17
+ <clipPath
18
+ clipPathUnits="userSpaceOnUse"
19
+ id="clipPath2">
20
+ <rect
21
+ style="fill:none"
22
+ id="rect4"
23
+ width="16"
24
+ height="16"
25
+ x="0"
26
+ y="0" />
27
+ </clipPath>
28
+ <clipPath
29
+ clipPathUnits="userSpaceOnUse"
30
+ id="clipPath4">
31
+ <rect
32
+ style="fill:none"
33
+ id="rect5"
34
+ width="16"
35
+ height="16"
36
+ x="0"
37
+ y="0" />
38
+ </clipPath>
39
+ <clipPath
40
+ clipPathUnits="userSpaceOnUse"
41
+ id="clipPath5">
42
+ <rect
43
+ style="fill:none"
44
+ id="rect6"
45
+ width="16"
46
+ height="16"
47
+ x="0"
48
+ y="0" />
49
+ </clipPath>
50
+ <clipPath
51
+ clipPathUnits="userSpaceOnUse"
52
+ id="clipPath6">
53
+ <rect
54
+ style="fill:none"
55
+ id="rect7"
56
+ width="16"
57
+ height="16"
58
+ x="0"
59
+ y="0" />
60
+ </clipPath>
61
+ <clipPath
62
+ clipPathUnits="userSpaceOnUse"
63
+ id="clipPath15">
64
+ <rect
65
+ style="display:inline;fill:none;stroke-width:1.00098"
66
+ id="rect15"
67
+ width="16"
68
+ height="16"
69
+ x="0"
70
+ y="0" />
71
+ </clipPath>
72
+ <clipPath
73
+ clipPathUnits="userSpaceOnUse"
74
+ id="clipPath14">
75
+ <rect
76
+ style="display:inline;fill:none;stroke-width:1.00098"
77
+ id="rect14"
78
+ width="16"
79
+ height="16"
80
+ x="0"
81
+ y="0" />
82
+ </clipPath>
83
+ <clipPath
84
+ clipPathUnits="userSpaceOnUse"
85
+ id="clipPath13">
86
+ <rect
87
+ style="display:inline;fill:none;stroke-width:1.00098"
88
+ id="rect13"
89
+ width="16"
90
+ height="16"
91
+ x="0"
92
+ y="0" />
93
+ </clipPath>
94
+ <clipPath
95
+ clipPathUnits="userSpaceOnUse"
96
+ id="clipPath12">
97
+ <rect
98
+ style="display:inline;fill:none;stroke-width:1.00098"
99
+ id="rect12"
100
+ width="16"
101
+ height="16"
102
+ x="0"
103
+ y="0" />
104
+ </clipPath>
105
+ </defs>
106
+ <sodipodi:namedview
107
+ id="namedview1"
108
+ pagecolor="#ffffff"
109
+ bordercolor="#000000"
110
+ borderopacity="0.25"
111
+ inkscape:showpageshadow="2"
112
+ inkscape:pageopacity="0.0"
113
+ inkscape:pagecheckerboard="0"
114
+ inkscape:deskcolor="#d1d1d1"
115
+ inkscape:zoom="90.509668"
116
+ inkscape:cx="16.224786"
117
+ inkscape:cy="7.6621649"
118
+ inkscape:window-width="3838"
119
+ inkscape:window-height="2128"
120
+ inkscape:window-x="0"
121
+ inkscape:window-y="0"
122
+ inkscape:window-maximized="0"
123
+ inkscape:current-layer="svg1" />
124
+ <rect
125
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.30379"
126
+ id="rect1-7"
127
+ width="1"
128
+ height="2.3373294"
129
+ x="7.5"
130
+ y="-0.082031257"
131
+ inkscape:transform-center-x="-0.3125"
132
+ inkscape:transform-center-y="2.7202962"
133
+ clip-path="url(#clipPath6)"
134
+ transform="scale(1,0.88674101)" />
135
+ <rect
136
+ style="fill:#e51400;fill-opacity:1;stroke-width:1.6605"
137
+ id="rect1"
138
+ width="1"
139
+ height="3.7912476"
140
+ x="7.5"
141
+ y="13.002536"
142
+ inkscape:transform-center-x="-0.3125"
143
+ inkscape:transform-center-y="3.3201495"
144
+ clip-path="url(#clipPath4)"
145
+ transform="matrix(1,0,0,0.66723066,0,5.3243094)" />
146
+ <g
147
+ id="g14"
148
+ transform="matrix(0.10934699,0,0,0.10934699,1.0016457,1.0005279)">
149
+ <path
150
+ d="m 72.59,58.36 c -0.65,1.18 -1.3,2.37 -1.92,3.55 l -0.52,0.98 -0.05,0.08 c 1.83,2.43 3.4,5.04 4.64,7.69 0.18,0.37 0.35,0.75 0.52,1.13 1.77,-0.52 3.55,-0.81 5.29,-0.88 -1.31,-3.47 -3.33,-7.07 -6.3,-10.71 -0.52,-0.63 -1.09,-1.23 -1.66,-1.84 z"
151
+ style="fill:#fcc21b"
152
+ id="path1" />
153
+ <path
154
+ d="m 77.93,85.16 c -0.37,0 -0.75,0.02 -1.13,0.06 -2.07,6.54 -8.79,9.4 -15.89,8.52 C 49.76,92.37 39.53,83.89 36.1,73.24 35.4,71.11 35.16,68.99 35.08,66.73 34.88,60.91 36,54.68 41.83,52.27 l 0.07,-0.03 c 0.19,-0.08 0.38,-0.13 0.57,-0.19 C 42.05,51.42 41.62,50.76 41.21,50.03 40.63,49 40.28,47.91 40.07,46.85 33.82,49.03 30.01,54.55 27.34,60.63 24.79,66.45 8.22,111.2 8.22,111.2 l -2.22,6 c -0.76,2.08 -1.94,4.17 -1.94,6.44 0,2.65 2.36,4.46 5.02,3.72 1.78,-0.5 3.74,-1.42 5.55,-2.14 3.83,-1.56 10.93,-4.63 10.93,-4.63 l 29.68,-12.22 c 0,0 14.31,-5.18 20.33,-10.85 2.92,-2.75 5.26,-6.71 6.29,-11.44 -0.21,-0.11 -0.43,-0.23 -0.65,-0.32 -1,-0.41 -2.07,-0.6 -3.28,-0.6 z"
155
+ style="fill:#fcc21b"
156
+ id="path2" />
157
+ <path
158
+ d="m 55.68,47.54 c 0.77,1.47 1.62,3.14 1.94,5.21 1.42,0.6 2.78,1.32 4.07,2.17 0.45,-1.44 0.92,-2.86 1.41,-4.31 -0.21,-0.13 -0.42,-0.28 -0.63,-0.4 -2.11,-1.2 -4.48,-2.22 -6.95,-2.98 0.06,0.11 0.11,0.2 0.16,0.31 z"
159
+ style="fill:#fcc21b"
160
+ id="path3-5" />
161
+ <path
162
+ d="m 111.93,31.98 c -0.16,1 -0.12,2.42 0.04,3.4 0.17,1.1 0.42,2.27 0.82,3.31 0.57,1.46 1.27,0.95 2.7,0.75 0.99,-0.13 1.91,-0.06 2.89,-0.26 1.03,-0.21 2.05,-0.48 3.08,-0.68 2.42,-0.46 3.63,-1 3.12,-3.55 -0.37,-1.84 -0.98,-3.67 -1.46,-5.49 -0.44,-0.39 -1.29,-0.17 -1.81,-0.05 -0.92,0.21 -1.83,0.26 -2.75,0.42 -1.66,0.27 -3.4,0.47 -5.03,0.86 -0.83,0.18 -1.47,0.43 -1.6,1.29 z"
163
+ style="fill:#d7598b"
164
+ id="path4-3" />
165
+ <path
166
+ d="m 98.87,62 c 0.38,0.87 1.31,0.65 2.22,0.85 2.02,0.46 4.07,0.41 6.14,0.41 0.77,0 2.72,0.29 3.27,-0.4 0.44,-0.56 0.06,-1.67 0,-2.32 -0.08,-0.85 -0.16,-1.69 -0.24,-2.54 -0.04,-0.4 0.03,-3.02 -0.31,-3.24 -0.58,-0.39 -1.68,-0.2 -2.34,-0.19 -1.21,0.04 -2.4,0.19 -3.63,0.19 -1.59,0 -3.31,0.02 -4.85,0.4 -0.54,1.43 -0.39,2.92 -0.39,4.49 0,0.73 -0.16,1.67 0.13,2.35 z"
167
+ style="fill:#40c0e7"
168
+ id="path5-5" />
169
+ <path
170
+ d="m 91.92,105.19 c -0.83,-1.23 -1.24,-2.88 -3.09,-2.7 -1.74,0.17 -3.28,1.55 -4.81,2.3 -0.99,0.48 -1.71,1.34 -1.91,2.42 -0.23,1.23 0.28,2.21 0.87,3.26 0.44,0.79 0.73,1.7 1.08,2.53 0.36,0.86 0.91,1.63 1.28,2.48 0.25,0.6 0.17,0.55 0.72,0.76 0.28,0.1 0.74,0.18 1.04,0.19 1.75,0.05 3.65,-1.72 4.92,-2.76 1.02,-0.82 3.06,-1.34 2.85,-2.89 -0.15,-1.15 -0.95,-2.26 -1.5,-3.25 -0.46,-0.81 -0.95,-1.59 -1.45,-2.34 z"
171
+ style="fill:#d7598b"
172
+ id="path6" />
173
+ <path
174
+ d="m 111.46,113.59 c -0.23,-0.15 -0.45,-0.24 -0.65,-0.27 -1.06,-0.19 -1.76,1.09 -2.6,1.92 -1.01,0.97 -2.21,1.74 -3.13,2.8 -0.99,1.16 -0.22,2.2 0.8,2.82 1.11,0.67 2.1,1.51 3.2,2.21 0.98,0.63 1.77,1.19 2.86,0.51 0.99,-0.62 1.54,-1.71 2.22,-2.62 1.26,-1.7 3.41,-3.07 1.3,-4.94 -1.18,-1.05 -2.7,-1.57 -4,-2.43 z"
175
+ style="fill:#40c0e7"
176
+ id="path7" />
177
+ <path
178
+ d="M 9,55.06 C 9.05,54.6 10.35,50.92 9.96,50.81 9.07,50.59 8.23,50.17 7.33,49.93 6.29,49.66 5.22,49.45 4.25,48.97 3.08,48.39 2.36,48.68 1.87,49.33 1.18,50.25 0.96,51.9 0.63,52.91 0.37,53.7 0.21,54.6 0.77,55.16 c 0.64,0.63 1.7,0.99 2.53,1.26 1.04,0.34 2.2,0.94 3.27,1.04 1.46,0.16 2.28,-1.16 2.43,-2.4 z"
179
+ style="fill:#40c0e7"
180
+ id="path8" />
181
+ <path
182
+ d="m 68.63,19.54 c 1.3,0.58 2.56,0.91 3.89,1.29 0.47,0.14 0.77,0.37 1.26,0.11 0.63,-0.32 1.33,-1.43 1.68,-2.04 0.83,-1.51 1.44,-3 2.01,-4.59 0.31,-0.85 1.23,-2.23 1,-3.13 C 78.27,10.42 77.17,9.95 76.55,9.62 75.72,9.19 74.93,8.61 74.09,8.24 73.01,7.77 71.53,7.26 70.37,7.09 c -0.64,-0.1 -1.09,0.16 -1.44,0.57 -0.32,0.37 -0.56,0.86 -0.8,1.31 -1.21,2.32 -2.7,5.81 -2.65,8.49 0.02,1.27 2.19,1.65 3.15,2.08 z"
183
+ style="fill:#40c0e7"
184
+ id="path9" />
185
+ <path
186
+ d="m 16.65,33.3 c 0.73,1.12 1.38,2.14 2.24,3.2 0.84,1.02 1.44,1.22 2.47,0.37 0.65,-0.52 1.39,-0.93 2.01,-1.49 0.59,-0.52 1.08,-1.18 1.67,-1.72 0.42,-0.39 1.25,-0.78 1.49,-1.32 0.33,-0.76 -0.36,-1.42 -0.78,-1.98 -0.52,-0.7 -0.92,-1.46 -1.49,-2.16 -0.73,-0.88 -1.52,-1.71 -2.34,-2.53 -0.67,-0.67 -1.48,-1.7 -2.24,-2.22 -0.2,-0.13 -0.43,-0.22 -0.67,-0.25 -0.91,-0.13 -1.99,0.39 -2.7,0.81 -0.97,0.57 -1.91,1.42 -2.76,2.17 -1.33,1.18 -0.04,2.73 0.74,3.85 0.78,1.08 1.62,2.13 2.36,3.27 z"
187
+ style="fill:#d7598b"
188
+ id="path10" />
189
+ <path
190
+ d="m 16.73,9.97 c 0.67,0.72 1.5,1.59 2.44,2 0.83,0.37 1.68,-0.37 2.35,-0.78 0.75,-0.46 1.36,-1.13 1.92,-1.8 C 23.95,8.77 24.64,8.1 25.02,7.38 25.46,6.56 24.86,6.25 24.25,5.76 23.52,5.16 22.78,4.54 22.16,3.82 21.32,2.84 20.48,1.74 19.59,0.84 19.29,0.53 18.93,0.45 18.55,0.52 c -1.19,0.2 -2.6,1.87 -3.3,2.42 -0.56,0.43 -1.54,1.19 -1.71,1.9 -0.21,0.8 0.26,1.57 0.66,2.24 0.65,1.08 1.65,1.95 2.53,2.89 z"
191
+ style="fill:#40c0e7"
192
+ id="path11" />
193
+ <path
194
+ d="m 45.86,29.19 c 1.38,4.78 -2.3,8.47 -2.7,13 -0.12,1.31 -0.12,2.62 0.1,3.88 0.14,0.82 0.37,1.62 0.78,2.35 0.54,0.96 1.16,1.83 1.73,2.73 0.56,0.87 1.06,1.75 1.4,2.76 0.75,2.24 0.23,4.26 -0.09,6.48 -0.26,1.77 -1.16,3.44 -2.24,4.84 -0.33,0.43 -1.24,0.98 -1.02,1.61 0.03,0.11 0.23,0.15 0.52,0.15 1.2,0 4.03,-0.73 4.44,-0.92 1.8,-0.87 2.85,-2.63 3.78,-4.33 1.38,-2.52 2.27,-5.46 1.88,-8.35 -0.08,-0.66 -0.26,-1.28 -0.48,-1.88 -0.67,-1.79 -1.78,-3.39 -2.41,-5.22 -0.08,-0.22 -0.16,-0.44 -0.22,-0.67 -0.92,-3.58 1.29,-7.09 3.15,-9.94 C 56.31,32.89 57,28.79 55.7,25.59 55.04,23.97 53.98,22.35 52.69,21.16 51.16,19.74 48.83,18.45 49.09,16 49.31,13.87 50.75,11.63 51.84,9.87 52.38,8.98 54.08,7.16 54.02,6.14 53.97,5.1 52.52,4.58 51.83,3.97 50.27,2.59 49.03,1.53 47.03,0.9 46.67,0.78 46.37,0.73 46.09,0.73 c -1.29,0 -1.74,1.17 -2.46,2.43 -1.32,2.33 -2.62,4.79 -3.5,7.31 -1.66,4.68 -1.91,9.51 1.68,13.89 1.24,1.53 3.53,3.03 4.05,4.83 z"
195
+ style="fill:#ed6c30"
196
+ id="path12" />
197
+ <path
198
+ d="m 62.08,69.54 c 0.25,0.26 0.48,0.37 0.69,0.37 0.39,0 0.7,-0.4 0.95,-0.87 0.19,-0.36 0.34,-0.73 0.46,-1.12 0.67,-2.25 2,-4.48 3.1,-6.56 0.2,-0.37 0.4,-0.73 0.59,-1.09 0.76,-1.43 1.54,-2.86 2.35,-4.28 0.63,-1.12 1.26,-2.25 1.94,-3.33 1.78,-2.85 4.18,-5.89 7.2,-7.48 1.9,-1.02 4.04,-1.49 5.95,-2.5 2.17,-1.13 3.44,-2.84 4.85,-4.79 1.4,-1.93 2.13,-4.31 3.41,-6.34 0.54,-0.86 0.46,-1.62 1.41,-2.22 2.11,-1.32 4.64,-0.87 6.98,-1.32 5.53,-1.06 6.02,-8.35 10.54,-10.98 0.95,-0.55 1.92,-1.06 2.88,-1.57 0.56,-0.3 1.64,-0.67 2.03,-1.22 0.67,-0.94 -0.6,-2.17 -0.98,-3.03 -0.66,-1.48 -1.65,-2.97 -2.5,-4.35 -0.72,-1.16 -1.36,-2.21 -2.64,-2.21 l -0.25,0.02 c -2.89,0.28 -5.47,1.55 -7.32,3.76 -2.25,2.7 -2.55,6.87 -6.09,8.35 -2.3,0.96 -5.01,0.58 -7.19,1.91 -2.58,1.58 -3.41,4.7 -4.13,7.44 -0.54,2 -0.57,4.41 -2.09,5.98 -2.06,2.11 -5.19,2.37 -7.83,3.5 -0.71,0.31 -1.39,0.68 -2,1.16 -3.35,2.64 -5.25,6.97 -6.75,10.85 -0.61,1.59 -1.16,3.21 -1.7,4.83 -0.5,1.51 -0.99,3.02 -1.46,4.54 -0.24,0.78 -0.5,1.56 -0.74,2.35 -0.61,1.98 -1.17,4.01 -1.89,5.96 -0.5,1.25 -0.81,3.16 0.23,4.24 z"
199
+ style="fill:#ed6c30"
200
+ id="path13" />
201
+ <path
202
+ d="m 127.44,86.8 c -0.19,-0.2 -0.46,-0.22 -0.73,-0.22 l -0.31,0.01 -0.17,-0.01 c -0.6,-0.04 -1.1,-0.3 -1.68,-0.5 -2.67,-0.93 -4.4,-1.7 -6.76,-3.29 -2.66,-1.79 -5.71,-3.46 -8.99,-3.61 l -0.38,-0.01 c -3.24,0 -6.23,1.71 -9.48,1.71 H 98.92 C 95.32,80.86 92.21,78.3 89.37,76.41 89.13,76.25 88.89,76.1 88.63,75.96 86.4,74.7 84,74.15 81.58,74.12 c -0.06,0 -0.13,-0.02 -0.19,-0.02 -1.67,0 -3.35,0.26 -4.99,0.72 -1.6,0.44 -3.15,1.08 -4.63,1.87 -2.11,1.12 -4.14,2.47 -5.99,3.97 -1.03,0.83 -2.16,1.78 -2.86,2.93 -0.38,0.61 -0.9,2.93 0.07,3.31 l 0.13,0.03 c 0.38,0 1,-0.4 1.27,-0.57 2.16,-1.33 4.44,-2.49 6.87,-3.25 1.99,-0.63 4.08,-1.09 6.15,-1.17 0.17,-0.01 0.35,-0.02 0.52,-0.02 1.49,0 2.97,0.23 4.41,0.79 0.02,0.01 0.04,0.02 0.06,0.03 2.01,0.8 3.69,2.18 5.35,3.53 2.44,1.98 5.15,2.42 7.91,2.42 2.15,0 4.33,-0.26 6.46,-0.26 2.23,0 4.39,0.29 6.38,1.46 1.62,0.97 3.08,2.24 4.33,3.59 1.38,1.47 3.14,2.7 5.21,3.02 0.88,0.14 1.68,0.21 2.57,0.22 h 0.02 c 1.5,0 2.07,-1.73 2.83,-2.72 1.04,-1.34 1.76,-2.88 2.71,-4.29 0.4,-0.62 1.95,-2.23 1.27,-2.91 z"
203
+ style="fill:#ed6c30"
204
+ id="path14" />
205
+ </g>
206
+ </svg>
@@ -0,0 +1,204 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="currentColor"
7
+ version="1.1"
8
+ id="svg1"
9
+ sodipodi:docname="goals-accomplished-tada-l-passthrough-dark.svg"
10
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ xmlns:svg="http://www.w3.org/2000/svg">
15
+ <defs
16
+ id="defs1">
17
+ <clipPath
18
+ clipPathUnits="userSpaceOnUse"
19
+ id="clipPath2">
20
+ <rect
21
+ style="fill:none"
22
+ id="rect4"
23
+ width="16"
24
+ height="16"
25
+ x="0"
26
+ y="0" />
27
+ </clipPath>
28
+ <clipPath
29
+ clipPathUnits="userSpaceOnUse"
30
+ id="clipPath4">
31
+ <rect
32
+ style="fill:none"
33
+ id="rect5"
34
+ width="16"
35
+ height="16"
36
+ x="0"
37
+ y="0" />
38
+ </clipPath>
39
+ <clipPath
40
+ clipPathUnits="userSpaceOnUse"
41
+ id="clipPath5">
42
+ <rect
43
+ style="fill:none"
44
+ id="rect6"
45
+ width="16"
46
+ height="16"
47
+ x="0"
48
+ y="0" />
49
+ </clipPath>
50
+ <clipPath
51
+ clipPathUnits="userSpaceOnUse"
52
+ id="clipPath6">
53
+ <rect
54
+ style="fill:none"
55
+ id="rect7"
56
+ width="16"
57
+ height="16"
58
+ x="0"
59
+ y="0" />
60
+ </clipPath>
61
+ <clipPath
62
+ clipPathUnits="userSpaceOnUse"
63
+ id="clipPath15">
64
+ <rect
65
+ style="display:inline;fill:none;stroke-width:1.00098"
66
+ id="rect15"
67
+ width="16"
68
+ height="16"
69
+ x="0"
70
+ y="0" />
71
+ </clipPath>
72
+ <clipPath
73
+ clipPathUnits="userSpaceOnUse"
74
+ id="clipPath14">
75
+ <rect
76
+ style="display:inline;fill:none;stroke-width:1.00098"
77
+ id="rect14"
78
+ width="16"
79
+ height="16"
80
+ x="0"
81
+ y="0" />
82
+ </clipPath>
83
+ <clipPath
84
+ clipPathUnits="userSpaceOnUse"
85
+ id="clipPath13">
86
+ <rect
87
+ style="display:inline;fill:none;stroke-width:1.00098"
88
+ id="rect13"
89
+ width="16"
90
+ height="16"
91
+ x="0"
92
+ y="0" />
93
+ </clipPath>
94
+ <clipPath
95
+ clipPathUnits="userSpaceOnUse"
96
+ id="clipPath12">
97
+ <rect
98
+ style="display:inline;fill:none;stroke-width:1.00098"
99
+ id="rect12"
100
+ width="16"
101
+ height="16"
102
+ x="0"
103
+ y="0" />
104
+ </clipPath>
105
+ </defs>
106
+ <sodipodi:namedview
107
+ id="namedview1"
108
+ pagecolor="#ffffff"
109
+ bordercolor="#000000"
110
+ borderopacity="0.25"
111
+ inkscape:showpageshadow="2"
112
+ inkscape:pageopacity="0.0"
113
+ inkscape:pagecheckerboard="0"
114
+ inkscape:deskcolor="#d1d1d1"
115
+ inkscape:zoom="45.254834"
116
+ inkscape:cx="11.30266"
117
+ inkscape:cy="9.6453784"
118
+ inkscape:window-width="3838"
119
+ inkscape:window-height="2128"
120
+ inkscape:window-x="0"
121
+ inkscape:window-y="0"
122
+ inkscape:window-maximized="0"
123
+ inkscape:current-layer="svg1" />
124
+ <rect
125
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.30379"
126
+ id="rect1-7"
127
+ width="1"
128
+ height="2.3373294"
129
+ x="7.5"
130
+ y="-0.082031257"
131
+ inkscape:transform-center-x="-0.3125"
132
+ inkscape:transform-center-y="2.7202962"
133
+ clip-path="url(#clipPath6)"
134
+ transform="scale(1,0.88674101)" />
135
+ <rect
136
+ style="fill:#f14c4c;fill-opacity:1;stroke-width:1.45406"
137
+ id="rect3"
138
+ width="5.2857399"
139
+ height="1"
140
+ x="11.357333"
141
+ y="7.5"
142
+ clip-path="url(#clipPath5)"
143
+ transform="matrix(0.43069631,0,0,1,9.108859,0)" />
144
+ <g
145
+ id="g14"
146
+ transform="matrix(0.10934699,0,0,0.10934699,1.0016457,1.0005279)">
147
+ <path
148
+ d="m 72.59,58.36 c -0.65,1.18 -1.3,2.37 -1.92,3.55 l -0.52,0.98 -0.05,0.08 c 1.83,2.43 3.4,5.04 4.64,7.69 0.18,0.37 0.35,0.75 0.52,1.13 1.77,-0.52 3.55,-0.81 5.29,-0.88 -1.31,-3.47 -3.33,-7.07 -6.3,-10.71 -0.52,-0.63 -1.09,-1.23 -1.66,-1.84 z"
149
+ style="fill:#fcc21b"
150
+ id="path1" />
151
+ <path
152
+ d="m 77.93,85.16 c -0.37,0 -0.75,0.02 -1.13,0.06 -2.07,6.54 -8.79,9.4 -15.89,8.52 C 49.76,92.37 39.53,83.89 36.1,73.24 35.4,71.11 35.16,68.99 35.08,66.73 34.88,60.91 36,54.68 41.83,52.27 l 0.07,-0.03 c 0.19,-0.08 0.38,-0.13 0.57,-0.19 C 42.05,51.42 41.62,50.76 41.21,50.03 40.63,49 40.28,47.91 40.07,46.85 33.82,49.03 30.01,54.55 27.34,60.63 24.79,66.45 8.22,111.2 8.22,111.2 l -2.22,6 c -0.76,2.08 -1.94,4.17 -1.94,6.44 0,2.65 2.36,4.46 5.02,3.72 1.78,-0.5 3.74,-1.42 5.55,-2.14 3.83,-1.56 10.93,-4.63 10.93,-4.63 l 29.68,-12.22 c 0,0 14.31,-5.18 20.33,-10.85 2.92,-2.75 5.26,-6.71 6.29,-11.44 -0.21,-0.11 -0.43,-0.23 -0.65,-0.32 -1,-0.41 -2.07,-0.6 -3.28,-0.6 z"
153
+ style="fill:#fcc21b"
154
+ id="path2" />
155
+ <path
156
+ d="m 55.68,47.54 c 0.77,1.47 1.62,3.14 1.94,5.21 1.42,0.6 2.78,1.32 4.07,2.17 0.45,-1.44 0.92,-2.86 1.41,-4.31 -0.21,-0.13 -0.42,-0.28 -0.63,-0.4 -2.11,-1.2 -4.48,-2.22 -6.95,-2.98 0.06,0.11 0.11,0.2 0.16,0.31 z"
157
+ style="fill:#fcc21b"
158
+ id="path3-5" />
159
+ <path
160
+ d="m 111.93,31.98 c -0.16,1 -0.12,2.42 0.04,3.4 0.17,1.1 0.42,2.27 0.82,3.31 0.57,1.46 1.27,0.95 2.7,0.75 0.99,-0.13 1.91,-0.06 2.89,-0.26 1.03,-0.21 2.05,-0.48 3.08,-0.68 2.42,-0.46 3.63,-1 3.12,-3.55 -0.37,-1.84 -0.98,-3.67 -1.46,-5.49 -0.44,-0.39 -1.29,-0.17 -1.81,-0.05 -0.92,0.21 -1.83,0.26 -2.75,0.42 -1.66,0.27 -3.4,0.47 -5.03,0.86 -0.83,0.18 -1.47,0.43 -1.6,1.29 z"
161
+ style="fill:#d7598b"
162
+ id="path4-3" />
163
+ <path
164
+ d="m 98.87,62 c 0.38,0.87 1.31,0.65 2.22,0.85 2.02,0.46 4.07,0.41 6.14,0.41 0.77,0 2.72,0.29 3.27,-0.4 0.44,-0.56 0.06,-1.67 0,-2.32 -0.08,-0.85 -0.16,-1.69 -0.24,-2.54 -0.04,-0.4 0.03,-3.02 -0.31,-3.24 -0.58,-0.39 -1.68,-0.2 -2.34,-0.19 -1.21,0.04 -2.4,0.19 -3.63,0.19 -1.59,0 -3.31,0.02 -4.85,0.4 -0.54,1.43 -0.39,2.92 -0.39,4.49 0,0.73 -0.16,1.67 0.13,2.35 z"
165
+ style="fill:#40c0e7"
166
+ id="path5-5" />
167
+ <path
168
+ d="m 91.92,105.19 c -0.83,-1.23 -1.24,-2.88 -3.09,-2.7 -1.74,0.17 -3.28,1.55 -4.81,2.3 -0.99,0.48 -1.71,1.34 -1.91,2.42 -0.23,1.23 0.28,2.21 0.87,3.26 0.44,0.79 0.73,1.7 1.08,2.53 0.36,0.86 0.91,1.63 1.28,2.48 0.25,0.6 0.17,0.55 0.72,0.76 0.28,0.1 0.74,0.18 1.04,0.19 1.75,0.05 3.65,-1.72 4.92,-2.76 1.02,-0.82 3.06,-1.34 2.85,-2.89 -0.15,-1.15 -0.95,-2.26 -1.5,-3.25 -0.46,-0.81 -0.95,-1.59 -1.45,-2.34 z"
169
+ style="fill:#d7598b"
170
+ id="path6" />
171
+ <path
172
+ d="m 111.46,113.59 c -0.23,-0.15 -0.45,-0.24 -0.65,-0.27 -1.06,-0.19 -1.76,1.09 -2.6,1.92 -1.01,0.97 -2.21,1.74 -3.13,2.8 -0.99,1.16 -0.22,2.2 0.8,2.82 1.11,0.67 2.1,1.51 3.2,2.21 0.98,0.63 1.77,1.19 2.86,0.51 0.99,-0.62 1.54,-1.71 2.22,-2.62 1.26,-1.7 3.41,-3.07 1.3,-4.94 -1.18,-1.05 -2.7,-1.57 -4,-2.43 z"
173
+ style="fill:#40c0e7"
174
+ id="path7" />
175
+ <path
176
+ d="M 9,55.06 C 9.05,54.6 10.35,50.92 9.96,50.81 9.07,50.59 8.23,50.17 7.33,49.93 6.29,49.66 5.22,49.45 4.25,48.97 3.08,48.39 2.36,48.68 1.87,49.33 1.18,50.25 0.96,51.9 0.63,52.91 0.37,53.7 0.21,54.6 0.77,55.16 c 0.64,0.63 1.7,0.99 2.53,1.26 1.04,0.34 2.2,0.94 3.27,1.04 1.46,0.16 2.28,-1.16 2.43,-2.4 z"
177
+ style="fill:#40c0e7"
178
+ id="path8" />
179
+ <path
180
+ d="m 68.63,19.54 c 1.3,0.58 2.56,0.91 3.89,1.29 0.47,0.14 0.77,0.37 1.26,0.11 0.63,-0.32 1.33,-1.43 1.68,-2.04 0.83,-1.51 1.44,-3 2.01,-4.59 0.31,-0.85 1.23,-2.23 1,-3.13 C 78.27,10.42 77.17,9.95 76.55,9.62 75.72,9.19 74.93,8.61 74.09,8.24 73.01,7.77 71.53,7.26 70.37,7.09 c -0.64,-0.1 -1.09,0.16 -1.44,0.57 -0.32,0.37 -0.56,0.86 -0.8,1.31 -1.21,2.32 -2.7,5.81 -2.65,8.49 0.02,1.27 2.19,1.65 3.15,2.08 z"
181
+ style="fill:#40c0e7"
182
+ id="path9" />
183
+ <path
184
+ d="m 16.65,33.3 c 0.73,1.12 1.38,2.14 2.24,3.2 0.84,1.02 1.44,1.22 2.47,0.37 0.65,-0.52 1.39,-0.93 2.01,-1.49 0.59,-0.52 1.08,-1.18 1.67,-1.72 0.42,-0.39 1.25,-0.78 1.49,-1.32 0.33,-0.76 -0.36,-1.42 -0.78,-1.98 -0.52,-0.7 -0.92,-1.46 -1.49,-2.16 -0.73,-0.88 -1.52,-1.71 -2.34,-2.53 -0.67,-0.67 -1.48,-1.7 -2.24,-2.22 -0.2,-0.13 -0.43,-0.22 -0.67,-0.25 -0.91,-0.13 -1.99,0.39 -2.7,0.81 -0.97,0.57 -1.91,1.42 -2.76,2.17 -1.33,1.18 -0.04,2.73 0.74,3.85 0.78,1.08 1.62,2.13 2.36,3.27 z"
185
+ style="fill:#d7598b"
186
+ id="path10" />
187
+ <path
188
+ d="m 16.73,9.97 c 0.67,0.72 1.5,1.59 2.44,2 0.83,0.37 1.68,-0.37 2.35,-0.78 0.75,-0.46 1.36,-1.13 1.92,-1.8 C 23.95,8.77 24.64,8.1 25.02,7.38 25.46,6.56 24.86,6.25 24.25,5.76 23.52,5.16 22.78,4.54 22.16,3.82 21.32,2.84 20.48,1.74 19.59,0.84 19.29,0.53 18.93,0.45 18.55,0.52 c -1.19,0.2 -2.6,1.87 -3.3,2.42 -0.56,0.43 -1.54,1.19 -1.71,1.9 -0.21,0.8 0.26,1.57 0.66,2.24 0.65,1.08 1.65,1.95 2.53,2.89 z"
189
+ style="fill:#40c0e7"
190
+ id="path11" />
191
+ <path
192
+ d="m 45.86,29.19 c 1.38,4.78 -2.3,8.47 -2.7,13 -0.12,1.31 -0.12,2.62 0.1,3.88 0.14,0.82 0.37,1.62 0.78,2.35 0.54,0.96 1.16,1.83 1.73,2.73 0.56,0.87 1.06,1.75 1.4,2.76 0.75,2.24 0.23,4.26 -0.09,6.48 -0.26,1.77 -1.16,3.44 -2.24,4.84 -0.33,0.43 -1.24,0.98 -1.02,1.61 0.03,0.11 0.23,0.15 0.52,0.15 1.2,0 4.03,-0.73 4.44,-0.92 1.8,-0.87 2.85,-2.63 3.78,-4.33 1.38,-2.52 2.27,-5.46 1.88,-8.35 -0.08,-0.66 -0.26,-1.28 -0.48,-1.88 -0.67,-1.79 -1.78,-3.39 -2.41,-5.22 -0.08,-0.22 -0.16,-0.44 -0.22,-0.67 -0.92,-3.58 1.29,-7.09 3.15,-9.94 C 56.31,32.89 57,28.79 55.7,25.59 55.04,23.97 53.98,22.35 52.69,21.16 51.16,19.74 48.83,18.45 49.09,16 49.31,13.87 50.75,11.63 51.84,9.87 52.38,8.98 54.08,7.16 54.02,6.14 53.97,5.1 52.52,4.58 51.83,3.97 50.27,2.59 49.03,1.53 47.03,0.9 46.67,0.78 46.37,0.73 46.09,0.73 c -1.29,0 -1.74,1.17 -2.46,2.43 -1.32,2.33 -2.62,4.79 -3.5,7.31 -1.66,4.68 -1.91,9.51 1.68,13.89 1.24,1.53 3.53,3.03 4.05,4.83 z"
193
+ style="fill:#ed6c30"
194
+ id="path12" />
195
+ <path
196
+ d="m 62.08,69.54 c 0.25,0.26 0.48,0.37 0.69,0.37 0.39,0 0.7,-0.4 0.95,-0.87 0.19,-0.36 0.34,-0.73 0.46,-1.12 0.67,-2.25 2,-4.48 3.1,-6.56 0.2,-0.37 0.4,-0.73 0.59,-1.09 0.76,-1.43 1.54,-2.86 2.35,-4.28 0.63,-1.12 1.26,-2.25 1.94,-3.33 1.78,-2.85 4.18,-5.89 7.2,-7.48 1.9,-1.02 4.04,-1.49 5.95,-2.5 2.17,-1.13 3.44,-2.84 4.85,-4.79 1.4,-1.93 2.13,-4.31 3.41,-6.34 0.54,-0.86 0.46,-1.62 1.41,-2.22 2.11,-1.32 4.64,-0.87 6.98,-1.32 5.53,-1.06 6.02,-8.35 10.54,-10.98 0.95,-0.55 1.92,-1.06 2.88,-1.57 0.56,-0.3 1.64,-0.67 2.03,-1.22 0.67,-0.94 -0.6,-2.17 -0.98,-3.03 -0.66,-1.48 -1.65,-2.97 -2.5,-4.35 -0.72,-1.16 -1.36,-2.21 -2.64,-2.21 l -0.25,0.02 c -2.89,0.28 -5.47,1.55 -7.32,3.76 -2.25,2.7 -2.55,6.87 -6.09,8.35 -2.3,0.96 -5.01,0.58 -7.19,1.91 -2.58,1.58 -3.41,4.7 -4.13,7.44 -0.54,2 -0.57,4.41 -2.09,5.98 -2.06,2.11 -5.19,2.37 -7.83,3.5 -0.71,0.31 -1.39,0.68 -2,1.16 -3.35,2.64 -5.25,6.97 -6.75,10.85 -0.61,1.59 -1.16,3.21 -1.7,4.83 -0.5,1.51 -0.99,3.02 -1.46,4.54 -0.24,0.78 -0.5,1.56 -0.74,2.35 -0.61,1.98 -1.17,4.01 -1.89,5.96 -0.5,1.25 -0.81,3.16 0.23,4.24 z"
197
+ style="fill:#ed6c30"
198
+ id="path13" />
199
+ <path
200
+ d="m 127.44,86.8 c -0.19,-0.2 -0.46,-0.22 -0.73,-0.22 l -0.31,0.01 -0.17,-0.01 c -0.6,-0.04 -1.1,-0.3 -1.68,-0.5 -2.67,-0.93 -4.4,-1.7 -6.76,-3.29 -2.66,-1.79 -5.71,-3.46 -8.99,-3.61 l -0.38,-0.01 c -3.24,0 -6.23,1.71 -9.48,1.71 H 98.92 C 95.32,80.86 92.21,78.3 89.37,76.41 89.13,76.25 88.89,76.1 88.63,75.96 86.4,74.7 84,74.15 81.58,74.12 c -0.06,0 -0.13,-0.02 -0.19,-0.02 -1.67,0 -3.35,0.26 -4.99,0.72 -1.6,0.44 -3.15,1.08 -4.63,1.87 -2.11,1.12 -4.14,2.47 -5.99,3.97 -1.03,0.83 -2.16,1.78 -2.86,2.93 -0.38,0.61 -0.9,2.93 0.07,3.31 l 0.13,0.03 c 0.38,0 1,-0.4 1.27,-0.57 2.16,-1.33 4.44,-2.49 6.87,-3.25 1.99,-0.63 4.08,-1.09 6.15,-1.17 0.17,-0.01 0.35,-0.02 0.52,-0.02 1.49,0 2.97,0.23 4.41,0.79 0.02,0.01 0.04,0.02 0.06,0.03 2.01,0.8 3.69,2.18 5.35,3.53 2.44,1.98 5.15,2.42 7.91,2.42 2.15,0 4.33,-0.26 6.46,-0.26 2.23,0 4.39,0.29 6.38,1.46 1.62,0.97 3.08,2.24 4.33,3.59 1.38,1.47 3.14,2.7 5.21,3.02 0.88,0.14 1.68,0.21 2.57,0.22 h 0.02 c 1.5,0 2.07,-1.73 2.83,-2.72 1.04,-1.34 1.76,-2.88 2.71,-4.29 0.4,-0.62 1.95,-2.23 1.27,-2.91 z"
201
+ style="fill:#ed6c30"
202
+ id="path14" />
203
+ </g>
204
+ </svg>