cd-aichat 1.0.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 (356) hide show
  1. package/README.md +188 -0
  2. package/dist/ailogo.png +0 -0
  3. package/dist/cd-aichat.css +1 -0
  4. package/dist/cd-aichat.es.js +32223 -0
  5. package/dist/cd-aichat.umd.js +279 -0
  6. package/dist/index.css +1 -0
  7. package/package.json +61 -0
  8. package/src/ailogo.png +0 -0
  9. package/src/components/AiChat.test.js +538 -0
  10. package/src/components/AiChat.vue +2206 -0
  11. package/src/components/AiChatWidget.test.js +312 -0
  12. package/src/components/AiChatWidget.vue +963 -0
  13. package/src/components/BurnAfterReadDialog.test.js +121 -0
  14. package/src/components/BurnAfterReadDialog.vue +511 -0
  15. package/src/components/BurnAfterReadMessage.test.js +188 -0
  16. package/src/components/BurnAfterReadMessage.vue +193 -0
  17. package/src/components/BurnIndicator.test.js +101 -0
  18. package/src/components/BurnIndicator.vue +164 -0
  19. package/src/components/ChatWindow.vue +0 -0
  20. package/src/components/MentionList.vue +163 -0
  21. package/src/components/ResourceList.vue +194 -0
  22. package/src/components/RichTextEditor.vue +437 -0
  23. package/src/components/ScheduledSendDialog.vue +476 -0
  24. package/src/components/ScreenshotOverlay.vue +78 -0
  25. package/src/components/SendButtonGroup.test.js +174 -0
  26. package/src/components/SendButtonGroup.vue +166 -0
  27. package/src/components/UserDrawer.vue +0 -0
  28. package/src/components/screenshot/ScreenshotsBackground/getBoundsByPoints.ts +41 -0
  29. package/src/components/screenshot/ScreenshotsBackground/index.scss +27 -0
  30. package/src/components/screenshot/ScreenshotsBackground/index.tsx +145 -0
  31. package/src/components/screenshot/ScreenshotsButton/index.scss +29 -0
  32. package/src/components/screenshot/ScreenshotsButton/index.tsx +58 -0
  33. package/src/components/screenshot/ScreenshotsCanvas/getBoundsByPoints.ts +55 -0
  34. package/src/components/screenshot/ScreenshotsCanvas/getPoints.ts +60 -0
  35. package/src/components/screenshot/ScreenshotsCanvas/index.scss +84 -0
  36. package/src/components/screenshot/ScreenshotsCanvas/index.tsx +277 -0
  37. package/src/components/screenshot/ScreenshotsCanvas/isPointInDraw.ts +35 -0
  38. package/src/components/screenshot/ScreenshotsColor/index.scss +45 -0
  39. package/src/components/screenshot/ScreenshotsColor/index.tsx +39 -0
  40. package/src/components/screenshot/ScreenshotsContext.ts +56 -0
  41. package/src/components/screenshot/ScreenshotsMagnifier/index.scss +61 -0
  42. package/src/components/screenshot/ScreenshotsMagnifier/index.tsx +126 -0
  43. package/src/components/screenshot/ScreenshotsOperations/index.scss +25 -0
  44. package/src/components/screenshot/ScreenshotsOperations/index.tsx +118 -0
  45. package/src/components/screenshot/ScreenshotsOption/index.scss +50 -0
  46. package/src/components/screenshot/ScreenshotsOption/index.tsx +150 -0
  47. package/src/components/screenshot/ScreenshotsSize/index.scss +28 -0
  48. package/src/components/screenshot/ScreenshotsSize/index.tsx +41 -0
  49. package/src/components/screenshot/ScreenshotsSizeColor/index.scss +8 -0
  50. package/src/components/screenshot/ScreenshotsSizeColor/index.tsx +25 -0
  51. package/src/components/screenshot/ScreenshotsTextarea/calculateNodeSize.ts +117 -0
  52. package/src/components/screenshot/ScreenshotsTextarea/index.scss +19 -0
  53. package/src/components/screenshot/ScreenshotsTextarea/index.tsx +96 -0
  54. package/src/components/screenshot/composeImage.ts +57 -0
  55. package/src/components/screenshot/exports.ts +4 -0
  56. package/src/components/screenshot/hooks/useBounds.ts +35 -0
  57. package/src/components/screenshot/hooks/useCall.ts +17 -0
  58. package/src/components/screenshot/hooks/useCanvasContextRef.ts +8 -0
  59. package/src/components/screenshot/hooks/useCanvasMousedown.ts +13 -0
  60. package/src/components/screenshot/hooks/useCanvasMousemove.ts +13 -0
  61. package/src/components/screenshot/hooks/useCanvasMouseup.ts +13 -0
  62. package/src/components/screenshot/hooks/useCursor.ts +34 -0
  63. package/src/components/screenshot/hooks/useDispatcher.ts +8 -0
  64. package/src/components/screenshot/hooks/useDrawSelect.ts +16 -0
  65. package/src/components/screenshot/hooks/useEmiter.ts +61 -0
  66. package/src/components/screenshot/hooks/useHistory.ts +160 -0
  67. package/src/components/screenshot/hooks/useLang.ts +8 -0
  68. package/src/components/screenshot/hooks/useOperation.ts +37 -0
  69. package/src/components/screenshot/hooks/useReset.ts +26 -0
  70. package/src/components/screenshot/hooks/useStore.ts +8 -0
  71. package/src/components/screenshot/icons/iconfont.scss +88 -0
  72. package/src/components/screenshot/icons/iconfont.ttf +0 -0
  73. package/src/components/screenshot/icons/iconfont.woff +0 -0
  74. package/src/components/screenshot/icons/iconfont.woff2 +0 -0
  75. package/src/components/screenshot/index.tsx +169 -0
  76. package/src/components/screenshot/operations/Arrow/draw.ts +56 -0
  77. package/src/components/screenshot/operations/Arrow/index.tsx +193 -0
  78. package/src/components/screenshot/operations/Brush/draw.ts +45 -0
  79. package/src/components/screenshot/operations/Brush/index.tsx +169 -0
  80. package/src/components/screenshot/operations/Cancel/index.tsx +18 -0
  81. package/src/components/screenshot/operations/Ellipse/draw.ts +96 -0
  82. package/src/components/screenshot/operations/Ellipse/index.tsx +245 -0
  83. package/src/components/screenshot/operations/Mosaic/index.tsx +223 -0
  84. package/src/components/screenshot/operations/Ok/index.tsx +37 -0
  85. package/src/components/screenshot/operations/Pin/index.tsx +37 -0
  86. package/src/components/screenshot/operations/Rectangle/draw.ts +80 -0
  87. package/src/components/screenshot/operations/Rectangle/index.tsx +245 -0
  88. package/src/components/screenshot/operations/Redo/index.tsx +22 -0
  89. package/src/components/screenshot/operations/Save/index.tsx +37 -0
  90. package/src/components/screenshot/operations/Scan/index.tsx +46 -0
  91. package/src/components/screenshot/operations/Search/index.tsx +39 -0
  92. package/src/components/screenshot/operations/Text/index.tsx +307 -0
  93. package/src/components/screenshot/operations/Undo/index.tsx +22 -0
  94. package/src/components/screenshot/operations/index.ts +34 -0
  95. package/src/components/screenshot/operations/utils.ts +34 -0
  96. package/src/components/screenshot/screenshots.scss +13 -0
  97. package/src/components/screenshot/types.ts +53 -0
  98. package/src/components/screenshot/useGetLoadedImage.ts +29 -0
  99. package/src/components/screenshot/var.scss +107 -0
  100. package/src/components/screenshot/zh_CN.ts +37 -0
  101. package/src/emoji/100.gif +0 -0
  102. package/src/emoji/101.gif +0 -0
  103. package/src/emoji/102.gif +0 -0
  104. package/src/emoji/103.gif +0 -0
  105. package/src/emoji/104.gif +0 -0
  106. package/src/emoji/105.gif +0 -0
  107. package/src/emoji/106.gif +0 -0
  108. package/src/emoji/107.gif +0 -0
  109. package/src/emoji/108.gif +0 -0
  110. package/src/emoji/109.gif +0 -0
  111. package/src/emoji/110.gif +0 -0
  112. package/src/emoji/111.gif +0 -0
  113. package/src/emoji/112.gif +0 -0
  114. package/src/emoji/113.gif +0 -0
  115. package/src/emoji/114.gif +0 -0
  116. package/src/emoji/115.gif +0 -0
  117. package/src/emoji/116.gif +0 -0
  118. package/src/emoji/117.gif +0 -0
  119. package/src/emoji/118.gif +0 -0
  120. package/src/emoji/119.gif +0 -0
  121. package/src/emoji/120.gif +0 -0
  122. package/src/emoji/121.gif +0 -0
  123. package/src/emoji/122.gif +0 -0
  124. package/src/emoji/123.gif +0 -0
  125. package/src/emoji/124.gif +0 -0
  126. package/src/emoji/125.gif +0 -0
  127. package/src/emoji/126.gif +0 -0
  128. package/src/emoji/127.gif +0 -0
  129. package/src/emoji/128.gif +0 -0
  130. package/src/emoji/129.gif +0 -0
  131. package/src/emoji/130.gif +0 -0
  132. package/src/emoji/131.gif +0 -0
  133. package/src/emoji/132.gif +0 -0
  134. package/src/emoji/133.gif +0 -0
  135. package/src/emoji/134.gif +0 -0
  136. package/src/emoji/135.gif +0 -0
  137. package/src/emoji/136.gif +0 -0
  138. package/src/emoji/137.gif +0 -0
  139. package/src/emoji/138.gif +0 -0
  140. package/src/emoji/139.gif +0 -0
  141. package/src/emoji/140.gif +0 -0
  142. package/src/emoji/141.gif +0 -0
  143. package/src/emoji/142.gif +0 -0
  144. package/src/emoji/143.gif +0 -0
  145. package/src/emoji/144.gif +0 -0
  146. package/src/emoji/145.gif +0 -0
  147. package/src/emoji/146.gif +0 -0
  148. package/src/emoji/147.gif +0 -0
  149. package/src/emoji/148.gif +0 -0
  150. package/src/emoji/149.gif +0 -0
  151. package/src/emoji/150.gif +0 -0
  152. package/src/emoji/151.gif +0 -0
  153. package/src/emoji/152.gif +0 -0
  154. package/src/emoji/153.gif +0 -0
  155. package/src/emoji/154.gif +0 -0
  156. package/src/emoji/155.gif +0 -0
  157. package/src/emoji/156.gif +0 -0
  158. package/src/emoji/157.gif +0 -0
  159. package/src/emoji/158.gif +0 -0
  160. package/src/emoji/159.gif +0 -0
  161. package/src/emoji/160.gif +0 -0
  162. package/src/emoji/161.gif +0 -0
  163. package/src/emoji/162.gif +0 -0
  164. package/src/emoji/163.gif +0 -0
  165. package/src/emoji/164.gif +0 -0
  166. package/src/emoji/165.gif +0 -0
  167. package/src/emoji/166.gif +0 -0
  168. package/src/emoji/167.gif +0 -0
  169. package/src/emoji/168.gif +0 -0
  170. package/src/emoji/169.gif +0 -0
  171. package/src/emoji/170.gif +0 -0
  172. package/src/emoji/171.gif +0 -0
  173. package/src/emoji/172.gif +0 -0
  174. package/src/emoji/173.gif +0 -0
  175. package/src/emoji/174.gif +0 -0
  176. package/src/emoji/175.gif +0 -0
  177. package/src/emoji/176.gif +0 -0
  178. package/src/emoji/177.gif +0 -0
  179. package/src/emoji/178.gif +0 -0
  180. package/src/emoji/179.gif +0 -0
  181. package/src/emoji/180.gif +0 -0
  182. package/src/emoji/181.gif +0 -0
  183. package/src/emoji/182.gif +0 -0
  184. package/src/emoji/183.gif +0 -0
  185. package/src/emoji/184.gif +0 -0
  186. package/src/emoji/185.gif +0 -0
  187. package/src/emoji/186.gif +0 -0
  188. package/src/emoji/187.gif +0 -0
  189. package/src/emoji/188.gif +0 -0
  190. package/src/emoji/189.gif +0 -0
  191. package/src/emoji/190.gif +0 -0
  192. package/src/emoji/191.gif +0 -0
  193. package/src/emoji/192.gif +0 -0
  194. package/src/emoji/193.gif +0 -0
  195. package/src/emoji/194.gif +0 -0
  196. package/src/emoji/195.gif +0 -0
  197. package/src/emoji/196.gif +0 -0
  198. package/src/emoji/197.gif +0 -0
  199. package/src/emoji/198.gif +0 -0
  200. package/src/emoji/199.gif +0 -0
  201. package/src/emoji/200.png +0 -0
  202. package/src/emoji/201.png +0 -0
  203. package/src/emoji/202.png +0 -0
  204. package/src/emoji/203.png +0 -0
  205. package/src/emoji/204.png +0 -0
  206. package/src/emoji/205.png +0 -0
  207. package/src/emoji/206.png +0 -0
  208. package/src/emoji/207.png +0 -0
  209. package/src/emoji/208.png +0 -0
  210. package/src/emoji/209.png +0 -0
  211. package/src/emoji/210.png +0 -0
  212. package/src/emoji/211.png +0 -0
  213. package/src/emoji/212.png +0 -0
  214. package/src/emoji/213.png +0 -0
  215. package/src/emoji/214.png +0 -0
  216. package/src/emoji/215.png +0 -0
  217. package/src/emoji/216.png +0 -0
  218. package/src/emoji/217.png +0 -0
  219. package/src/emoji/218.png +0 -0
  220. package/src/emoji/219.png +0 -0
  221. package/src/emoji2/101--Streamline-The-Team.png +0 -0
  222. package/src/emoji2/128--Streamline-The-Team.png +0 -0
  223. package/src/emoji2/134--Streamline-The-Team.png +0 -0
  224. package/src/emoji2/173--Streamline-The-Team.png +0 -0
  225. package/src/emoji2/Airplane--Streamline-Emoji.svg +24 -0
  226. package/src/emoji2/Alien--Streamline-Emoji.svg +21 -0
  227. package/src/emoji2/Amazed-Face--Streamline-Emoji.svg +16 -0
  228. package/src/emoji2/Amusing-Face--Streamline-Emoji.svg +20 -0
  229. package/src/emoji2/Anguished-Face--Streamline-Emoji.svg +19 -0
  230. package/src/emoji2/Anxious-Face--Streamline-Emoji.svg +17 -0
  231. package/src/emoji2/Astonished-Face--Streamline-Emoji.svg +20 -0
  232. package/src/emoji2/Backhand-Index-Pointing-Down-1--Streamline-Emoji.svg +12 -0
  233. package/src/emoji2/Backhand-Index-Pointing-Left-1--Streamline-Emoji.svg +13 -0
  234. package/src/emoji2/Backhand-Index-Pointing-Right-1--Streamline-Emoji.svg +13 -0
  235. package/src/emoji2/Backhand-Index-Pointing-Up-1--Streamline-Emoji.svg +14 -0
  236. package/src/emoji2/Bar-Chart--Streamline-Emoji.svg +22 -0
  237. package/src/emoji2/Beaming-Face-With-Smiling-Eyes--Streamline-Emoji.svg +20 -0
  238. package/src/emoji2/Boy-1--Streamline-Emoji.svg +17 -0
  239. package/src/emoji2/Boy-2--Streamline-Emoji.svg +17 -0
  240. package/src/emoji2/Boy-3--Streamline-Emoji.svg +17 -0
  241. package/src/emoji2/Broken-Heart--Streamline-Emoji.svg +12 -0
  242. package/src/emoji2/Clapping-Hands-1--Streamline-Emoji.svg +23 -0
  243. package/src/emoji2/Clinking-Glasses-2--Streamline-Emoji.svg +43 -0
  244. package/src/emoji2/Confounded-Face--Streamline-Emoji.svg +17 -0
  245. package/src/emoji2/Confused-Face--Streamline-Emoji.svg +15 -0
  246. package/src/emoji2/Construction-Worker--Streamline-Emoji.svg +21 -0
  247. package/src/emoji2/Couple-With-Heart-Woman-Man-1--Streamline-Emoji.svg +40 -0
  248. package/src/emoji2/Couple-With-Heart-Woman-Man-2--Streamline-Emoji.svg +40 -0
  249. package/src/emoji2/Cowboy-Hat-Face--Streamline-Emoji.svg +22 -0
  250. package/src/emoji2/Crazy-Face--Streamline-Emoji.svg +25 -0
  251. package/src/emoji2/Crossed-Fingers-1--Streamline-Emoji.svg +25 -0
  252. package/src/emoji2/Crown--Streamline-Emoji.svg +35 -0
  253. package/src/emoji2/Crying-Face--Streamline-Emoji.svg +26 -0
  254. package/src/emoji2/Delivery-Truck--Streamline-Emoji.svg +31 -0
  255. package/src/emoji2/Determined-Face--Streamline-Emoji.svg +25 -0
  256. package/src/emoji2/Disappointed-Face--Streamline-Emoji.svg +15 -0
  257. package/src/emoji2/Dizzy-Face--Streamline-Emoji.svg +20 -0
  258. package/src/emoji2/Downcast-Face-With-Sweat--Streamline-Emoji.svg +18 -0
  259. package/src/emoji2/Drooling-Face-1--Streamline-Emoji.svg +19 -0
  260. package/src/emoji2/Drooling-Face-2--Streamline-Emoji.svg +18 -0
  261. package/src/emoji2/Ear--Streamline-Emoji.svg +14 -0
  262. package/src/emoji2/Exclamation-Mark--Streamline-Emoji.svg +12 -0
  263. package/src/emoji2/Exploding-Head--Streamline-Emoji.svg +24 -0
  264. package/src/emoji2/Expressionless-Face--Streamline-Emoji.svg +15 -0
  265. package/src/emoji2/Face-Blowing-A-Kiss--Streamline-Emoji.svg +18 -0
  266. package/src/emoji2/Face-Savoring-Food--Streamline-Emoji.svg +18 -0
  267. package/src/emoji2/Face-Screaming-In-Fear--Streamline-Emoji.svg +18 -0
  268. package/src/emoji2/Face-Vomiting--Streamline-Emoji.svg +28 -0
  269. package/src/emoji2/Face-With-Head-Bandage--Streamline-Emoji.svg +25 -0
  270. package/src/emoji2/Face-With-Medical-Mask--Streamline-Emoji.svg +23 -0
  271. package/src/emoji2/Face-With-Monocle--Streamline-Emoji.svg +26 -0
  272. package/src/emoji2/Face-With-Raised-Eyebrow--Streamline-Emoji.svg +17 -0
  273. package/src/emoji2/Face-With-Rolling-Eyes--Streamline-Emoji.svg +17 -0
  274. package/src/emoji2/Face-With-Steam-From-Nose--Streamline-Emoji.svg +19 -0
  275. package/src/emoji2/Face-With-Symbols-On-Mouth--Streamline-Emoji.svg +22 -0
  276. package/src/emoji2/Face-With-Tears-Of-Joy--Streamline-Emoji.svg +34 -0
  277. package/src/emoji2/Face-With-Thermometer--Streamline-Emoji.svg +31 -0
  278. package/src/emoji2/Face-With-Tongue--Streamline-Emoji.svg +18 -0
  279. package/src/emoji2/Face-Without-Mouth--Streamline-Emoji.svg +14 -0
  280. package/src/emoji2/Fearful-Face--Streamline-Emoji.svg +18 -0
  281. package/src/emoji2/Flexed-Biceps-1--Streamline-Emoji.svg +13 -0
  282. package/src/emoji2/Flushed-Face--Streamline-Emoji.svg +19 -0
  283. package/src/emoji2/Folded-Hands-1--Streamline-Emoji.svg +29 -0
  284. package/src/emoji2/Frowning-Face--Streamline-Emoji.svg +15 -0
  285. package/src/emoji2/Fuel-Pump--Streamline-Emoji.svg +30 -0
  286. package/src/emoji2/Girl-1--Streamline-Emoji.svg +23 -0
  287. package/src/emoji2/Glasses-1--Streamline-Emoji.svg +27 -0
  288. package/src/emoji2/Grimacing-Face--Streamline-Emoji.svg +19 -0
  289. package/src/emoji2/Grinning-Cat-Face--Streamline-Emoji.svg +32 -0
  290. package/src/emoji2/Grinning-Face--Streamline-Emoji.svg +16 -0
  291. package/src/emoji2/Grinning-Face-With-Sweat--Streamline-Emoji.svg +19 -0
  292. package/src/emoji2/Grinning-Squinting-Face--Streamline-Emoji.svg +16 -0
  293. package/src/emoji2/Hand-With-Fingers-Splayed-1--Streamline-Emoji.svg +14 -0
  294. package/src/emoji2/Heart-Suit--Streamline-Emoji.svg +9 -0
  295. package/src/emoji2/Hushed-Face-1--Streamline-Emoji.svg +17 -0
  296. package/src/emoji2/Hushed-Face-2--Streamline-Emoji.svg +15 -0
  297. package/src/emoji2/Index-Pointing-Up-1--Streamline-Emoji.svg +17 -0
  298. package/src/emoji2/Kissing-Face-With-Closed-Eyes--Streamline-Emoji.svg +18 -0
  299. package/src/emoji2/Loudly-Crying-Face--Streamline-Emoji.svg +16 -0
  300. package/src/emoji2/Lying-Face--Streamline-Emoji.svg +15 -0
  301. package/src/emoji2/Man-1--Streamline-Emoji.svg +17 -0
  302. package/src/emoji2/Man-Facepalming-1--Streamline-Emoji.svg +21 -0
  303. package/src/emoji2/Man-Gesturing-No-1--Streamline-Emoji.svg +34 -0
  304. package/src/emoji2/Man-Gesturing-Ok-1--Streamline-Emoji.svg +25 -0
  305. package/src/emoji2/Man-Health-Worker-1--Streamline-Emoji.svg +41 -0
  306. package/src/emoji2/Man-Raising-Hand-1--Streamline-Emoji.svg +26 -0
  307. package/src/emoji2/Man-Shrugging-1--Streamline-Emoji.svg +31 -0
  308. package/src/emoji2/Money-Mouth-Face-2--Streamline-Emoji.svg +30 -0
  309. package/src/emoji2/Mouth--Streamline-Emoji.svg +12 -0
  310. package/src/emoji2/Nauseated-Face-2--Streamline-Emoji.svg +19 -0
  311. package/src/emoji2/Neutral-Face--Streamline-Emoji.svg +15 -0
  312. package/src/emoji2/Ok-Hand-1--Streamline-Emoji.svg +14 -0
  313. package/src/emoji2/Old-Man-1--Streamline-Emoji.svg +27 -0
  314. package/src/emoji2/Old-Woman-1--Streamline-Emoji.svg +23 -0
  315. package/src/emoji2/Oncoming-Fist-1--Streamline-Emoji.svg +15 -0
  316. package/src/emoji2/Person-Wearing-Turban-2--Streamline-Emoji.svg +20 -0
  317. package/src/emoji2/Pile-Of-Poo--Streamline-Emoji.svg +15 -0
  318. package/src/emoji2/Police-Car-Light--Streamline-Emoji.svg +26 -0
  319. package/src/emoji2/Rocket--Streamline-Emoji.svg +32 -0
  320. package/src/emoji2/Sailboat--Streamline-Emoji.svg +18 -0
  321. package/src/emoji2/Shaved-Ice--Streamline-Emoji.svg +21 -0
  322. package/src/emoji2/Shortcake-2--Streamline-Emoji.svg +18 -0
  323. package/src/emoji2/Shushing-Face--Streamline-Emoji.svg +21 -0
  324. package/src/emoji2/Sign-Of-The-Horns-1--Streamline-Emoji.svg +19 -0
  325. package/src/emoji2/Sleeping-Face--Streamline-Emoji.svg +21 -0
  326. package/src/emoji2/Slightly-Smiling-Face--Streamline-Emoji.svg +15 -0
  327. package/src/emoji2/Smiling-Face-With-Halo--Streamline-Emoji.svg +20 -0
  328. package/src/emoji2/Smiling-Face-With-Heart-Eyes--Streamline-Emoji.svg +21 -0
  329. package/src/emoji2/Smirking-Face--Streamline-Emoji.svg +17 -0
  330. package/src/emoji2/Sun-With-Face--Streamline-Emoji.svg +24 -0
  331. package/src/emoji2/Thumbs-Down-1--Streamline-Emoji.svg +20 -0
  332. package/src/emoji2/Thumbs-Up-1--Streamline-Emoji.svg +19 -0
  333. package/src/emoji2/Winking-Face--Streamline-Emoji.svg +18 -0
  334. package/src/emoji2/Woman-Gesturing-No-1--Streamline-Emoji.svg +34 -0
  335. package/src/emoji2/Woman-Gesturing-Ok-2--Streamline-Emoji.svg +25 -0
  336. package/src/emoji2/Woman-Raising-Hand-1--Streamline-Emoji.svg +26 -0
  337. package/src/emoji2/Womans-Sandal--Streamline-Emoji.svg +13 -0
  338. package/src/emoji2/Worried-Face--Streamline-Emoji.svg +17 -0
  339. package/src/emoji2/Writing-Hand-1--Streamline-Emoji.svg +17 -0
  340. package/src/emoji2/Zipper-Mouth-Face--Streamline-Emoji.svg +21 -0
  341. package/src/index.js +19 -0
  342. package/src/services/burn-after-read-service.js +313 -0
  343. package/src/services/burn-after-read-service.test.js +325 -0
  344. package/src/services/dify-api.js +338 -0
  345. package/src/services/dify-api.test.js +376 -0
  346. package/src/services/scheduled-send-service.js +311 -0
  347. package/src/services/scheduled-send-service.test.js +317 -0
  348. package/src/styles/index.css +2368 -0
  349. package/src/utils/emoji.js +125 -0
  350. package/src/utils/emojiData.js +267 -0
  351. package/src/utils/eventEmitter.js +114 -0
  352. package/src/utils/state.js +224 -0
  353. package/src/utils/state.test.js +198 -0
  354. package/src/utils/storage.js +122 -0
  355. package/src/utils/storage.test.js +162 -0
  356. package/src/utils/validation.js +249 -0
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,24 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Airplane--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Airplane Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M12.666666666666666 59.33333333333333a19.333333333333332 2 0 1 0 38.666666666666664 0 19.333333333333332 2 0 1 0 -38.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
6
+ <path d="M23.72 59.85333333333333 3.2933333333333334 39.44a0.9199999999999999 0.9199999999999999 0 0 1 0.22666666666666668 -1.5733333333333333l1.2533333333333332 -0.5333333333333333a1.7733333333333334 1.7733333333333334 0 0 1 1.0533333333333332 0L16 39.42666666666666l7.76 7.76L25.88 57.33333333333333a1.9333333333333331 1.9333333333333331 0 0 1 -0.09333333333333334 1.0666666666666667l-0.5066666666666666 1.24a0.9066666666666667 0.9066666666666667 0 0 1 -1.5599999999999998 0.21333333333333332Z" fill="#4acfff" stroke-width="1"></path>
7
+ <path d="m19.52 46.32 1.5333333333333332 -1.8L16 39.42666666666666 5.826666666666666 37.33333333333333a1.7733333333333334 1.7733333333333334 0 0 0 -1.0533333333333332 0.09333333333333334l-1.2533333333333332 0.4933333333333333a0.9199999999999999 0.9199999999999999 0 0 0 -0.22666666666666668 1.5733333333333333l1.3333333333333333 1.3333333333333333 0.15999999999999998 0a1.7733333333333334 1.7733333333333334 0 0 1 1.0533333333333332 -0.09333333333333334L16 42.76Z" fill="#80ddff" stroke-width="1"></path>
8
+ <path d="m23.72 47.18666666666667 -0.6799999999999999 -0.6799999999999999 -8.293333333333333 4.3999999999999995 4.266666666666667 4.253333333333333a6.586666666666667 6.586666666666667 0 0 0 1.9333333333333331 -0.27999999999999997 11.866666666666667 11.866666666666667 0 0 0 4 -2.1999999999999997Z" fill="#00b8f0" stroke-width="1"></path>
9
+ <path d="M23.72 59.85333333333333 3.2933333333333334 39.44a0.9199999999999999 0.9199999999999999 0 0 1 0.22666666666666668 -1.5733333333333333l1.2533333333333332 -0.5333333333333333a1.7733333333333334 1.7733333333333334 0 0 1 1.0533333333333332 0L16 39.42666666666666l7.76 7.76L25.88 57.33333333333333a1.9333333333333331 1.9333333333333331 0 0 1 -0.09333333333333334 1.0666666666666667l-0.5066666666666666 1.24a0.9066666666666667 0.9066666666666667 0 0 1 -1.5599999999999998 0.21333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m53.79550840493333 35.77219809466666 2.6398653164 2.6398653164a1.8666666666666665 1.8666666666666665 0 0 1 0 2.6398653164l-7.269057710533333 7.269057710666666 0 0 -5.2797306328 -5.279730632933333 0 0 7.269057710533333 -7.269057710666666a1.8666666666666665 1.8666666666666665 0 0 1 2.6398653164 0Z" fill="#c0dceb" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="m24.728841738266667 6.724580062533333 2.6398653164 2.6398653164a1.8666666666666665 1.8666666666666665 0 0 1 0 2.6398653164l-7.259629619999999 7.259629620266666 0 0 -5.279730632933333 -5.279730632933333 0 0 7.259629620133333 -7.259629620133333a1.8666666666666665 1.8666666666666665 0 0 1 2.6398653164 0Z" fill="#c0dceb" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="m50.46666666666667 54.38666666666666 -12.533333333333333 -16 -13.2 -13.213333333333333 -16 -12.533333333333333a1.8666666666666665 1.8666666666666665 0 0 1 0.45333333333333337 -3.1999999999999997l2.5466666666666664 -1.0133333333333332a3.6399999999999997 3.6399999999999997 0 0 1 2.16 -0.18666666666666668L34.666666666666664 12.68 50.493333333333325 28.53333333333333l4.386666666666667 20.68a3.8533333333333335 3.8533333333333335 0 0 1 -0.21333333333333332 2.16l-1.0266666666666666 2.5466666666666664a1.8666666666666665 1.8666666666666665 0 0 1 -3.173333333333333 0.4666666666666666Z" fill="#4acfff" stroke-width="1"></path>
13
+ <path d="m49.29333333333333 27.333333333333332 1.2 1.1866666666666665L52 35.626666666666665l-10.293333333333333 7.586666666666667 -3.76 -4.786666666666666 -0.9866666666666666 -0.9733333333333333 12.333333333333332 -10.12z" fill="#00b8f0" stroke-width="1"></path>
14
+ <path d="m35.48 13.506666666666668 -2.453333333333333 2.9466666666666663 -19.066666666666666 -4a3.6666666666666665 3.6666666666666665 0 0 0 -2.173333333333333 0.18666666666666668l-2.0666666666666664 0.8266666666666667 -0.9333333333333332 -0.7333333333333334a1.8666666666666665 1.8666666666666665 0 0 1 0.45333333333333337 -3.1999999999999997l2.5466666666666664 -1.0266666666666666a3.893333333333333 3.893333333333333 0 0 1 2.173333333333333 -0.18666666666666668L34.666666666666664 12.666666666666666Z" fill="#80ddff" stroke-width="1"></path>
15
+ <path d="m50.46666666666667 54.38666666666666 -12.533333333333333 -16 -13.2 -13.213333333333333 -16 -12.533333333333333a1.8666666666666665 1.8666666666666665 0 0 1 0.45333333333333337 -3.1999999999999997l2.5466666666666664 -1.0133333333333332a3.6399999999999997 3.6399999999999997 0 0 1 2.16 -0.18666666666666668L34.666666666666664 12.68 50.493333333333325 28.53333333333333l4.386666666666667 20.68a3.8533333333333335 3.8533333333333335 0 0 1 -0.21333333333333332 2.16l-1.0266666666666666 2.5466666666666664a1.8666666666666665 1.8666666666666665 0 0 1 -3.173333333333333 0.4666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m12 46.666666666666664 24.186666666666667 -29.093333333333334a11.799999999999999 11.799999999999999 0 0 1 2.013333333333333 -1.9066666666666665c5.92 -5.119999999999999 14.853333333333333 -8.733333333333333 18.89333333333333 -4.693333333333333a5.799999999999999 5.799999999999999 0 0 1 1.4533333333333334 2.5466666666666664c0.6133333333333333 -2.986666666666667 0.30666666666666664 -5.706666666666667 -1.4533333333333334 -7.466666666666666 -4 -4 -12.973333333333333 -0.41333333333333333 -18.89333333333333 4.706666666666666a11.213333333333333 11.213333333333333 0 0 0 -2.013333333333333 1.893333333333333L12 41.78666666666666a7.053333333333333 7.053333333333333 0 0 0 -1.2533333333333332 7.053333333333333A7.533333333333333 7.533333333333333 0 0 1 12 46.666666666666664Z" fill="#ffffff" stroke-width="1"></path>
17
+ <path d="M52.39999999999999 24.959999999999997c5.119999999999999 -5.92 8.746666666666666 -14.853333333333333 4.693333333333333 -18.906666666666666s-12.973333333333333 -0.41333333333333333 -18.89333333333333 4.706666666666666a11.213333333333333 11.213333333333333 0 0 0 -2.013333333333333 1.893333333333333L12 41.78666666666666a6.8133333333333335 6.8133333333333335 0 0 0 0.14666666666666667 9.186666666666666 6.826666666666666 6.826666666666666 0 0 0 9.186666666666666 0.15999999999999998l29.173333333333332 -24.173333333333332a11.64 11.64 0 0 0 1.893333333333333 -2Z" fill="#e8f4fa" stroke-width="1"></path>
18
+ <path d="M52.39999999999999 24.959999999999997c5.119999999999999 -5.92 8.746666666666666 -14.853333333333333 4.693333333333333 -18.906666666666666s-12.973333333333333 -0.41333333333333333 -18.89333333333333 4.706666666666666a11.213333333333333 11.213333333333333 0 0 0 -2.013333333333333 1.893333333333333L12 41.78666666666666a6.8133333333333335 6.8133333333333335 0 0 0 0.14666666666666667 9.186666666666666 6.826666666666666 6.826666666666666 0 0 0 9.186666666666666 0.15999999999999998l29.173333333333332 -24.173333333333332a11.64 11.64 0 0 0 1.893333333333333 -2Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M51.773333333333326 11.373333333333331a9.893333333333333 9.893333333333333 0 0 0 -8.559999999999999 -2.6666666666666665l-0.45333333333333337 4a0.9333333333333332 0.9333333333333332 0 0 0 1.08 1.04c1.3333333333333333 -0.22666666666666668 3.5066666666666664 -0.21333333333333332 4.626666666666667 0.9066666666666667s1.1466666666666665 3.3466666666666662 0.9066666666666667 4.64a0.9333333333333332 0.9333333333333332 0 0 0 1.04 1.08l4 -0.45333333333333337a9.959999999999999 9.959999999999999 0 0 0 -2.6399999999999997 -8.546666666666667Z" fill="#00b8f0" stroke-width="1"></path>
20
+ <path d="m43.213333333333324 8.68 -0.45333333333333337 4a0.9333333333333332 0.9333333333333332 0 0 0 1.08 1.04 8.64 8.64 0 0 1 2.3066666666666666 -0.06666666666666667l5.493333333333333 -2.466666666666667a9.933333333333334 9.933333333333334 0 0 0 -8.426666666666666 -2.5066666666666664Z" fill="#4acfff" stroke-width="1"></path>
21
+ <path d="M51.773333333333326 11.373333333333331a9.893333333333333 9.893333333333333 0 0 0 -8.559999999999999 -2.6666666666666665l-0.45333333333333337 4a0.9333333333333332 0.9333333333333332 0 0 0 1.08 1.04c1.3333333333333333 -0.22666666666666668 3.5066666666666664 -0.21333333333333332 4.626666666666667 0.9066666666666667s1.1466666666666665 3.3466666666666662 0.9066666666666667 4.64a0.9333333333333332 0.9333333333333332 0 0 0 1.04 1.08l4 -0.45333333333333337a9.959999999999999 9.959999999999999 0 0 0 -2.6399999999999997 -8.546666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
22
+ <path d="M52.39999999999999 24.959999999999997a10.48 10.48 0 0 0 -0.6266666666666666 -13.586666666666666 10.44 10.44 0 0 0 -13.573333333333332 -0.6133333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
23
+ <path d="M12.173333333333334 50.97333333333333a1.88 1.88 0 0 1 0 -2.6666666666666665l7.266666666666667 -7.266666666666667a1.8666666666666665 1.8666666666666665 0 1 1 2.6666666666666665 2.6666666666666665l-7.266666666666667 7.266666666666667a1.88 1.88 0 0 1 -2.6666666666666665 0Z" fill="#4acfff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
24
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Alien--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Alien Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M58.666666666666664 25.333333333333332c0 14.733333333333334 -18 30 -26.666666666666664 30S5.333333333333333 40.06666666666666 5.333333333333333 25.333333333333332 17.333333333333332 2 32 2 58.666666666666664 10.666666666666666 58.666666666666664 25.333333333333332Z" fill="#00dba8" stroke-width="1"></path>
6
+ <path d="M32 51.18666666666667c-8.293333333333333 0 -25.093333333333334 -13.96 -26.546666666666667 -28C5.333333333333333 23.85333333333333 5.333333333333333 24.57333333333333 5.333333333333333 25.333333333333332c0 14.733333333333334 18 30 26.666666666666664 30S58.666666666666664 40.06666666666666 58.666666666666664 25.333333333333332c0 -0.7599999999999999 0 -1.48 -0.10666666666666666 -2.1999999999999997 -1.4666666666666668 14.093333333333334 -18.266666666666666 28.05333333333333 -26.560000000000002 28.05333333333333Z" fill="#00ad85" stroke-width="1"></path>
7
+ <path d="M38.666666666666664 40a12 12 0 0 1 -13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M58.666666666666664 25.333333333333332c0 14.733333333333334 -18 30 -26.666666666666664 30S5.333333333333333 40.06666666666666 5.333333333333333 25.333333333333332 17.333333333333332 2 32 2 58.666666666666664 10.666666666666666 58.666666666666664 25.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M14.506666666666668 16.546666666666667c-3.16 2.413333333333333 -3.253333333333333 7.6 -0.22666666666666668 11.586666666666666s8.373333333333333 4.6 12 4.08a11.706666666666665 11.706666666666665 0 0 0 -0.5466666666666666 -12.813333333333333c-3.0666666666666664 -3.986666666666667 -8.053333333333333 -5.253333333333333 -11.226666666666667 -2.8533333333333335Z" fill="#bf8df2" stroke-width="1"></path>
11
+ <path d="M25.733333333333334 19.4c-3.0266666666666664 -4 -8 -5.253333333333333 -11.226666666666667 -2.8533333333333335a7.066666666666666 7.066666666666666 0 0 0 -2.2266666666666666 7.253333333333334 6.186666666666666 6.186666666666666 0 0 1 2.2266666666666666 -3.6133333333333333c3.173333333333333 -2.413333333333333 8.2 -1.1333333333333333 11.226666666666667 2.84A10.986666666666666 10.986666666666666 0 0 1 27.8 28a11.613333333333333 11.613333333333333 0 0 0 -2.0666666666666664 -8.6Z" fill="#dabff5" stroke-width="1"></path>
12
+ <path d="M14.506666666666668 16.546666666666667c-3.16 2.413333333333333 -3.253333333333333 7.6 -0.22666666666666668 11.586666666666666s8.373333333333333 4.6 12 4.08a11.706666666666665 11.706666666666665 0 0 0 -0.5466666666666666 -12.813333333333333c-3.0666666666666664 -3.986666666666667 -8.053333333333333 -5.253333333333333 -11.226666666666667 -2.8533333333333335Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M49.493333333333325 16.546666666666667c3.16 2.413333333333333 3.253333333333333 7.6 0.22666666666666668 11.586666666666666s-8.373333333333333 4.6 -12 4.08a11.706666666666665 11.706666666666665 0 0 1 0.5466666666666666 -12.813333333333333c3.0666666666666664 -3.986666666666667 8.053333333333333 -5.253333333333333 11.226666666666667 -2.8533333333333335Z" fill="#bf8df2" stroke-width="1"></path>
14
+ <path d="M38.266666666666666 19.4c3.0266666666666664 -4 8 -5.253333333333333 11.226666666666667 -2.8533333333333335a7.066666666666666 7.066666666666666 0 0 1 2.2266666666666666 7.253333333333334 6.186666666666666 6.186666666666666 0 0 0 -2.2266666666666666 -3.6133333333333333c-3.173333333333333 -2.413333333333333 -8.2 -1.1333333333333333 -11.226666666666667 2.84A10.986666666666666 10.986666666666666 0 0 0 36.199999999999996 28a11.613333333333333 11.613333333333333 0 0 1 2.0666666666666664 -8.6Z" fill="#dabff5" stroke-width="1"></path>
15
+ <path d="M49.493333333333325 16.546666666666667c3.16 2.413333333333333 3.253333333333333 7.6 0.22666666666666668 11.586666666666666s-8.373333333333333 4.6 -12 4.08a11.706666666666665 11.706666666666665 0 0 1 0.5466666666666666 -12.813333333333333c3.0666666666666664 -3.986666666666667 8.053333333333333 -5.253333333333333 11.226666666666667 -2.8533333333333335Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m34 34.666666666666664 0 2" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="m30 34.666666666666664 0 2" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M14.413333333333334 37.56a3.333333333333333 2 0 1 0 6.666666666666666 0 3.333333333333333 2 0 1 0 -6.666666666666666 0Z" fill="#00ad85" stroke-width="1"></path>
19
+ <path d="M42.919999999999995 37.56a3.333333333333333 2 0 1 0 6.666666666666666 0 3.333333333333333 2 0 1 0 -6.666666666666666 0Z" fill="#00ad85" stroke-width="1"></path>
20
+ <path d="M24.05333333333333 7.186666666666666a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#00f5bc" stroke-width="1"></path>
21
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Amazed-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Amazed Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
11
+ <path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M19.333333333333332 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M44.666666666666664 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M22 42a10 10 0 1 0 20 0 10 10 0 1 0 -20 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M23.53333333333333 47.30666666666666a8.466666666666665 4.693333333333333 0 1 0 16.93333333333333 0 8.466666666666665 4.693333333333333 0 1 0 -16.93333333333333 0Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Amusing-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Amusing Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
11
+ <path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M20.84 57.04a10.12 10.12 0 0 0 14.306666666666667 0l8.173333333333332 -8.173333333333332A2.333333333333333 2.333333333333333 0 0 0 40 45.57333333333333l2.8266666666666667 -2.8266666666666667a2.333333333333333 2.333333333333333 0 1 0 -3.2933333333333334 -3.3066666666666666l0.9466666666666665 -0.9466666666666665a2.333333333333333 2.333333333333333 0 1 0 -3.3066666666666666 -3.2933333333333334l-1.88 1.88A2.333333333333333 2.333333333333333 0 1 0 32 33.78666666666666l-7.773333333333333 7.773333333333333 -0.6 -4.893333333333333a2.173333333333333 2.173333333333333 0 0 0 -4 0.3333333333333333l-1.9733333333333332 5.933333333333334a13.546666666666667 13.546666666666667 0 0 0 3.1866666666666665 14.106666666666666Z" fill="#ffe500" stroke-width="1"></path>
13
+ <path d="m42.906666666666666 45.239999999999995 -7.76 7.746666666666666a10.093333333333334 10.093333333333334 0 0 1 -14.306666666666667 0 13.573333333333332 13.573333333333332 0 0 1 -3.813333333333333 -7.546666666666667 13.52 13.52 0 0 0 3.813333333333333 11.599999999999998 10.12 10.12 0 0 0 14.306666666666667 0l8.173333333333332 -8.173333333333332a2.333333333333333 2.333333333333333 0 0 0 0 -3.2933333333333334 2.3866666666666667 2.3866666666666667 0 0 0 -0.41333333333333333 -0.3333333333333333Z" fill="#ebcb00" stroke-width="1"></path>
14
+ <path d="m35.53333333333333 36.85333333333333 -5.653333333333333 5.653333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="m39.78666666666666 39.199999999999996 -6.6 6.6" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="m40.25333333333333 45.33333333333333 -3.7733333333333334 3.7733333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M43.33333333333333 26s0.22666666666666668 -2.6666666666666665 2.6666666666666665 -2.6666666666666665 2.6666666666666665 2.6666666666666665 2.6666666666666665 2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M15.333333333333332 26s0.22666666666666668 -2.6666666666666665 2.6666666666666665 -2.6666666666666665 2.6666666666666665 2.6666666666666665 2.6666666666666665 2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M20.84 57.04a10.12 10.12 0 0 0 14.306666666666667 0l8.173333333333332 -8.173333333333332A2.333333333333333 2.333333333333333 0 0 0 40 45.57333333333333l2.8266666666666667 -2.8266666666666667a2.333333333333333 2.333333333333333 0 1 0 -3.2933333333333334 -3.3066666666666666l0.9466666666666665 -0.9466666666666665a2.333333333333333 2.333333333333333 0 1 0 -3.3066666666666666 -3.2933333333333334l-1.88 1.88A2.333333333333333 2.333333333333333 0 1 0 32 33.78666666666666l-7.773333333333333 7.773333333333333 -0.6 -4.893333333333333a2.173333333333333 2.173333333333333 0 0 0 -4 0.3333333333333333l-1.9733333333333332 5.933333333333334a13.546666666666667 13.546666666666667 0 0 0 3.1866666666666665 14.106666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Anguished-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Anguished Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M6.72 32.61333333333333a25.28 25.28 0 1 0 50.56 0 25.28 25.28 0 1 0 -50.56 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 7.333333333333333a25.333333333333332 25.333333333333332 0 1 0 25.333333333333332 25.333333333333332 25.333333333333332 25.333333333333332 0 0 0 -25.333333333333332 -25.333333333333332Zm0 46.76a23.066666666666666 23.066666666666666 0 1 1 23.066666666666666 -23.066666666666666A23.066666666666666 23.066666666666666 0 0 1 32 54.093333333333334Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24.41333333333333 12.386666666666665a7.586666666666667 1.893333333333333 0 1 0 15.173333333333334 0 7.586666666666667 1.893333333333333 0 1 0 -15.173333333333334 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M11.773333333333333 60.666666666666664a20.226666666666667 2 0 1 0 40.45333333333333 0 20.226666666666667 2 0 1 0 -40.45333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M6.72 32.61333333333333a25.28 25.28 0 1 0 50.56 0 25.28 25.28 0 1 0 -50.56 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M25.05333333333333 30.666666666666664a4.426666666666666 4.426666666666666 0 1 1 -4.426666666666666 -4.426666666666666A4.426666666666666 4.426666666666666 0 0 1 25.05333333333333 30.666666666666664Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M50.32 38.93333333333333c0 1.04 -1.4133333333333333 1.893333333333333 -3.16 1.893333333333333S44 40 44 38.93333333333333s1.4266666666666667 -1.893333333333333 3.16 -1.893333333333333 3.16 0.84 3.16 1.893333333333333Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M13.68 38.93333333333333c0 1.04 1.4133333333333333 1.893333333333333 3.16 1.893333333333333S20 40 20 38.93333333333333s-1.4266666666666667 -1.893333333333333 -3.16 -1.893333333333333 -3.16 0.84 -3.16 1.893333333333333Z" fill="#ffaa54" stroke-width="1"></path>
13
+ <path d="m37.69333333333333 0.6666666666666666 0 22.746666666666663" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m43.373333333333335 2.9066666666666667 0 20.85333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="m49.06666666666666 6.706666666666667 0 19.586666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M47.8 30.666666666666664a4.426666666666666 4.426666666666666 0 1 1 -4.426666666666666 -4.426666666666666A4.426666666666666 4.426666666666666 0 0 1 47.8 30.666666666666664Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M32 48.8a19.026666666666664 19.026666666666664 0 0 1 7.6933333333333325 1.6266666666666665c2.5866666666666664 1.16 5.573333333333332 0.41333333333333333 6.213333333333333 -3.0133333333333328 0.88 -4.746666666666666 -5.6933333333333325 -11.64 -13.906666666666666 -11.64S17.21333333333333 42.666666666666664 18.093333333333334 47.413333333333334c0.6399999999999999 3.4266666666666663 3.626666666666667 4.173333333333333 6.213333333333333 3.0133333333333328A19.026666666666664 19.026666666666664 0 0 1 32 48.8Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M32 48.8a19.026666666666664 19.026666666666664 0 0 1 7.6933333333333325 1.6266666666666665 4.493333333333333 4.493333333333333 0 0 0 4.746666666666666 -0.3466666666666667 15.746666666666666 15.746666666666666 0 0 0 -24.88 0 4.493333333333333 4.493333333333333 0 0 0 4.746666666666666 0.3466666666666667A19.026666666666664 19.026666666666664 0 0 1 32 48.8Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Anxious-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Anxious Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M30.666666666666664 37.69333333333333a2.6666666666666665 2.6666666666666665 0 0 1 1.3333333333333333 -0.36 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 1 1 0 5.333333333333333 2.6666666666666665 2.6666666666666665 0 0 1 -1.3333333333333333 -0.36" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M22 29.333333333333332 14.666666666666666 29.333333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
13
+ <path d="M17.333333333333332 22.88a15.239999999999998 15.239999999999998 0 0 0 4.493333333333333 -1.4666666666666668A14.906666666666666 14.906666666666666 0 0 0 25.666666666666664 18.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="m42 29.333333333333332 7.333333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
16
+ <path d="M46.666666666666664 22.88a15.239999999999998 15.239999999999998 0 0 1 -4.493333333333333 -1.4666666666666668A14.906666666666666 14.906666666666666 0 0 1 38.33333333333333 18.666666666666664" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Astonished-Face--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Astonished Face Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
7
+ <path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
9
+ <path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
11
+ <path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
12
+ <path d="M22 42a10 10 0 1 0 20 0 10 10 0 1 0 -20 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M23.53333333333333 47.30666666666666a8.466666666666665 4.693333333333333 0 1 0 16.93333333333333 0 8.466666666666665 4.693333333333333 0 1 0 -16.93333333333333 0Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
14
+ <path d="M11.973333333333333 21.666666666666664a6.666666666666666 6.666666666666666 0 1 0 13.333333333333332 0 6.666666666666666 6.666666666666666 0 1 0 -13.333333333333332 0Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
15
+ <path d="M17.333333333333332 21.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
16
+ <path d="M38.69333333333333 21.666666666666664a6.666666666666666 6.666666666666666 0 1 0 13.333333333333332 0 6.666666666666666 6.666666666666666 0 1 0 -13.333333333333332 0Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
17
+ <path d="M46.666666666666664 21.666666666666664a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
18
+ <path d="M25.333333333333332 12.919999999999998c-2.0533333333333332 -1.92 -7.773333333333333 -4.586666666666666 -10.973333333333333 -0.07999999999999999" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
19
+ <path d="M38.666666666666664 12.919999999999998c2.0533333333333332 -1.92 7.773333333333333 -4.586666666666666 10.973333333333333 -0.07999999999999999" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
20
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Backhand-Index-Pointing-Down-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Backhand Index Pointing Down 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M18.466666666666665 34.986666666666665a3.466666666666667 3.466666666666667 0 0 0 3.4799999999999995 -3.466666666666667v3.466666666666667a3.706666666666666 3.706666666666666 0 1 0 7.413333333333332 0 3.706666666666666 3.706666666666666 0 1 0 7.413333333333332 0v16.546666666666667a3.2266666666666666 3.2266666666666666 0 1 0 6.453333333333333 0V26.92A10.866666666666667 10.866666666666667 0 0 0 45.33333333333333 33.33333333333333a5.253333333333333 5.253333333333333 0 0 0 6.666666666666666 1.7733333333333334 2.1066666666666665 2.1066666666666665 0 0 0 0.88 -2.893333333333333l-2.9333333333333336 -5.333333333333333A35.68 35.68 0 0 1 46.666666666666664 19a16.36 16.36 0 0 0 -7.079999999999999 -9.506666666666666 16.72 16.72 0 0 0 -9 -2.6666666666666665h-5.453333333333333a10.133333333333333 10.133333333333333 0 0 0 -10.133333333333333 10.133333333333333v14.559999999999999a3.453333333333333 3.453333333333333 0 0 0 3.466666666666667 3.466666666666667Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M52 35.04a2.1066666666666665 2.1066666666666665 0 0 0 0.88 -2.893333333333333l-2.9333333333333336 -5.333333333333333A35.68 35.68 0 0 1 46.666666666666664 19a16.36 16.36 0 0 0 -7.079999999999999 -9.506666666666666 16.72 16.72 0 0 0 -9 -2.6666666666666665h-5.453333333333333a10.133333333333333 10.133333333333333 0 0 0 -10.133333333333333 10.133333333333333v5.1866666666666665A10.133333333333333 10.133333333333333 0 0 1 25.133333333333333 12H30.666666666666664a16.72 16.72 0 0 1 9 2.6666666666666665c7.333333333333333 4.626666666666667 4.666666666666666 8.346666666666666 12.333333333333332 20.37333333333333Z" fill="#fff48c" stroke-width="1"></path>
7
+ <path d="M18.466666666666665 34.986666666666665a3.466666666666667 3.466666666666667 0 0 0 3.4799999999999995 -3.466666666666667v3.466666666666667a3.706666666666666 3.706666666666666 0 1 0 7.413333333333332 0 3.706666666666666 3.706666666666666 0 1 0 7.413333333333332 0v16.546666666666667a3.2266666666666666 3.2266666666666666 0 1 0 6.453333333333333 0V26.92A10.866666666666667 10.866666666666667 0 0 0 45.33333333333333 33.33333333333333a5.253333333333333 5.253333333333333 0 0 0 6.666666666666666 1.7733333333333334 2.1066666666666665 2.1066666666666665 0 0 0 0.88 -2.893333333333333l-2.9333333333333336 -5.333333333333333A35.68 35.68 0 0 1 46.666666666666664 19a16.36 16.36 0 0 0 -7.079999999999999 -9.506666666666666 16.72 16.72 0 0 0 -9 -2.6666666666666665h-5.453333333333333a10.133333333333333 10.133333333333333 0 0 0 -10.133333333333333 10.133333333333333v14.559999999999999a3.453333333333333 3.453333333333333 0 0 0 3.466666666666667 3.466666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
8
+ <path d="m29.36 34.986666666666665 0 -2.786666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="m36.773333333333326 34.986666666666665 0 -2.786666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m43.22666666666667 26.92 0 -2.48" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="M17.333333333333332 60.666666666666664a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
12
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Backhand-Index-Pointing-Left-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Backhand Index Pointing Left 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M25.199999999999996 48.29333333333333a3.466666666666667 3.466666666666667 0 0 1 3.466666666666667 -3.4799999999999995h-3.466666666666667a3.706666666666666 3.706666666666666 0 1 1 0 -7.413333333333332 3.706666666666666 3.706666666666666 0 1 1 0 -7.413333333333332H8.653333333333332a3.2266666666666666 3.2266666666666666 0 0 1 0 -6.453333333333333H33.33333333333333a10.933333333333332 10.933333333333332 0 0 1 -6.359999999999999 -2.0533333333333332 5.333333333333333 5.333333333333333 0 0 1 -1.76 -6.666666666666666 2.0933333333333333 2.0933333333333333 0 0 1 2.786666666666666 -0.9333333333333332l5.333333333333333 2.9333333333333336A35.68 35.68 0 0 0 41.18666666666667 20 16.36 16.36 0 0 1 50.666666666666664 27.119999999999997a16.72 16.72 0 0 1 2.6666666666666665 9v5.506666666666666a10.133333333333333 10.133333333333333 0 0 1 -10.133333333333333 10.133333333333333H28.666666666666664a3.453333333333333 3.453333333333333 0 0 1 -3.466666666666667 -3.466666666666667Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M26.586666666666666 26.05333333333333H8.653333333333332A3.24 3.24 0 0 0 5.68 28a3.3066666666666666 3.3066666666666666 0 0 1 -0.2533333333333333 -1.2666666666666666 3.2266666666666666 3.2266666666666666 0 0 1 3.2266666666666666 -3.2266666666666666h24.4c-1.6666666666666665 2.0666666666666664 -2.986666666666667 2.5466666666666664 -6.466666666666666 2.5466666666666664Z" fill="#fff48c" stroke-width="1"></path>
7
+ <path d="M41.18666666666667 22.560000000000002A36.29333333333333 36.29333333333333 0 0 1 33.33333333333333 19.346666666666664l-5.333333333333333 -2.9466666666666663a2.0933333333333333 2.0933333333333333 0 0 0 -2.893333333333333 0.88 5.799999999999999 5.799999999999999 0 0 0 -0.39999999999999997 1.1066666666666665 5.333333333333333 5.333333333333333 0 0 1 0.39999999999999997 -3.626666666666667 2.0933333333333333 2.0933333333333333 0 0 1 2.893333333333333 -0.88l5.333333333333333 2.9333333333333336A35.68 35.68 0 0 0 41.18666666666667 20 16.36 16.36 0 0 1 50.666666666666664 27.119999999999997a16.72 16.72 0 0 1 2.6666666666666665 9V38.666666666666664a16.746666666666666 16.746666666666666 0 0 0 -2.6666666666666665 -9 16.36 16.36 0 0 0 -9.48 -7.1066666666666665Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M25.199999999999996 48.29333333333333a3.466666666666667 3.466666666666667 0 0 1 3.466666666666667 -3.4799999999999995h-3.466666666666667a3.706666666666666 3.706666666666666 0 1 1 0 -7.413333333333332 3.706666666666666 3.706666666666666 0 1 1 0 -7.413333333333332H8.653333333333332a3.2266666666666666 3.2266666666666666 0 0 1 0 -6.453333333333333H33.33333333333333a10.933333333333332 10.933333333333332 0 0 1 -6.359999999999999 -2.0533333333333332 5.333333333333333 5.333333333333333 0 0 1 -1.76 -6.666666666666666 2.0933333333333333 2.0933333333333333 0 0 1 2.786666666666666 -0.9333333333333332l5.333333333333333 2.9333333333333336A35.68 35.68 0 0 0 41.18666666666667 20 16.36 16.36 0 0 1 50.666666666666664 27.119999999999997a16.72 16.72 0 0 1 2.6666666666666665 9v5.506666666666666a10.133333333333333 10.133333333333333 0 0 1 -10.133333333333333 10.133333333333333H28.666666666666664a3.453333333333333 3.453333333333333 0 0 1 -3.466666666666667 -3.466666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="m25.199999999999996 37.4 2.786666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m25.199999999999996 29.986666666666665 2.786666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="m33.266666666666666 23.53333333333333 2.48 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Backhand-Index-Pointing-Right-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Backhand Index Pointing Right 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M35.64 48.29333333333333a3.466666666666667 3.466666666666667 0 0 0 -3.466666666666667 -3.4799999999999995h3.466666666666667a3.706666666666666 3.706666666666666 0 1 0 0 -7.413333333333332 3.706666666666666 3.706666666666666 0 0 0 0 -7.413333333333332h16.546666666666667a3.2266666666666666 3.2266666666666666 0 1 0 0 -6.453333333333333H27.57333333333333a10.866666666666667 10.866666666666667 0 0 0 6.346666666666666 -2.0533333333333332 5.24 5.24 0 0 0 1.76 -6.666666666666666 2.08 2.08 0 0 0 -2.88 -0.88l-5.333333333333333 2.9333333333333336A35.519999999999996 35.519999999999996 0 0 1 19.64 20a16.37333333333333 16.37333333333333 0 0 0 -9.493333333333332 7.079999999999999 16.72 16.72 0 0 0 -2.6666666666666665 9v5.506666666666666a10.133333333333333 10.133333333333333 0 0 0 10.133333333333333 10.133333333333333h14.559999999999999a3.453333333333333 3.453333333333333 0 0 0 3.466666666666667 -3.4266666666666663Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M34.25333333333333 26.05333333333333h17.93333333333333A3.1999999999999997 3.1999999999999997 0 0 1 55.14666666666666 28a3.08 3.08 0 0 0 0.26666666666666666 -1.2666666666666666 3.24 3.24 0 0 0 -3.2266666666666666 -3.2266666666666666h-24.4c1.6666666666666665 2.0666666666666664 2.986666666666667 2.5466666666666664 6.466666666666666 2.5466666666666664Z" fill="#fff48c" stroke-width="1"></path>
7
+ <path d="M19.64 22.560000000000002a36.12 36.12 0 0 0 7.866666666666667 -3.2133333333333334l5.333333333333333 -2.9466666666666663a2.1066666666666665 2.1066666666666665 0 0 1 2.893333333333333 0.88 5.799999999999999 5.799999999999999 0 0 1 0.39999999999999997 1.1066666666666665 5.333333333333333 5.333333333333333 0 0 0 -0.39999999999999997 -3.626666666666667 2.1066666666666665 2.1066666666666665 0 0 0 -2.893333333333333 -0.88l-5.333333333333333 2.9333333333333336a35.519999999999996 35.519999999999996 0 0 1 -7.866666666666667 3.1866666666666665 16.37333333333333 16.37333333333333 0 0 0 -9.493333333333332 7.079999999999999 16.72 16.72 0 0 0 -2.6666666666666665 9V38.666666666666664a16.746666666666666 16.746666666666666 0 0 1 2.6666666666666665 -9 16.37333333333333 16.37333333333333 0 0 1 9.493333333333332 -7.1066666666666665Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M35.64 48.29333333333333a3.466666666666667 3.466666666666667 0 0 0 -3.466666666666667 -3.4799999999999995h3.466666666666667a3.706666666666666 3.706666666666666 0 1 0 0 -7.413333333333332 3.706666666666666 3.706666666666666 0 0 0 0 -7.413333333333332h16.546666666666667a3.2266666666666666 3.2266666666666666 0 1 0 0 -6.453333333333333H27.57333333333333a10.866666666666667 10.866666666666667 0 0 0 6.346666666666666 -2.0533333333333332 5.24 5.24 0 0 0 1.76 -6.666666666666666 2.08 2.08 0 0 0 -2.88 -0.88l-5.333333333333333 2.9333333333333336A35.519999999999996 35.519999999999996 0 0 1 19.64 20a16.37333333333333 16.37333333333333 0 0 0 -9.493333333333332 7.079999999999999 16.72 16.72 0 0 0 -2.6666666666666665 9v5.506666666666666a10.133333333333333 10.133333333333333 0 0 0 10.133333333333333 10.133333333333333h14.559999999999999a3.453333333333333 3.453333333333333 0 0 0 3.466666666666667 -3.4266666666666663Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
9
+ <path d="m35.64 37.4 -2.786666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m35.64 29.986666666666665 -2.786666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="m27.57333333333333 23.53333333333333 -2.48 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Backhand-Index-Pointing-Up-1--Streamline-Emoji" height="64" width="64">
2
+ <desc>
3
+ Backhand Index Pointing Up 1 Streamline Emoji: https://streamlinehq.com
4
+ </desc>
5
+ <path d="M44.30666666666666 26.666666666666664a3.4799999999999995 3.4799999999999995 0 0 0 -3.4799999999999995 3.4799999999999995V26.666666666666664a3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0 3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0V10.093333333333334a3.2266666666666666 3.2266666666666666 0 1 0 -6.4399999999999995 0V34.666666666666664a10.853333333333333 10.853333333333333 0 0 0 -2.0666666666666664 -6.359999999999999 5.253333333333333 5.253333333333333 0 0 0 -6.666666666666666 -1.76 2.1066666666666665 2.1066666666666665 0 0 0 -0.8933333333333333 2.893333333333333l2.9466666666666663 5.333333333333333A36.29333333333333 36.29333333333333 0 0 1 16 42.666666666666664a16.36 16.36 0 0 0 7.079999999999999 9.506666666666666 16.786666666666665 16.786666666666665 0 0 0 9 2.6666666666666665h5.52a10.146666666666667 10.146666666666667 0 0 0 10.133333333333333 -10.133333333333333V30.106666666666662A3.4799999999999995 3.4799999999999995 0 0 0 44.30666666666666 26.666666666666664Z" fill="#ffe500" stroke-width="1"></path>
6
+ <path d="M10.386666666666667 30.346666666666668a2.04 2.04 0 0 1 0.39999999999999997 -0.2533333333333333 5.893333333333333 5.893333333333333 0 0 1 7.266666666666667 1.5466666666666664A9.426666666666666 9.426666666666666 0 0 1 19.56 34.666666666666664a10.853333333333333 10.853333333333333 0 0 0 -2.0666666666666664 -6.359999999999999 5.253333333333333 5.253333333333333 0 0 0 -6.666666666666666 -1.76 2.1066666666666665 2.1066666666666665 0 0 0 -0.8933333333333333 2.893333333333333Z" fill="#fff48c" stroke-width="1"></path>
7
+ <path d="M22.77333333333333 10.373333333333333a3.2133333333333334 3.2133333333333334 0 0 1 3.2266666666666666 3.2133333333333334V10.093333333333334a3.2266666666666666 3.2266666666666666 0 1 0 -6.4399999999999995 0v3.493333333333333a3.2133333333333334 3.2133333333333334 0 0 1 3.2133333333333334 -3.2133333333333334Z" fill="#fff48c" stroke-width="1"></path>
8
+ <path d="M44.30666666666666 26.666666666666664a3.4799999999999995 3.4799999999999995 0 0 0 -3.4799999999999995 3.4799999999999995V26.666666666666664a3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0 3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0v3.173333333333333a3.706666666666666 3.706666666666666 0 1 1 7.413333333333332 0 3.706666666666666 3.706666666666666 0 0 1 3.706666666666666 -3.706666666666666 4 4 0 0 1 3.706666666666666 4v0.45333333333333337c0 -1.92 1.7866666666666666 -2.6666666666666665 3.4799999999999995 -2.4a4.56 4.56 0 0 1 3.4799999999999995 4.32v-2.4A3.4799999999999995 3.4799999999999995 0 0 0 44.30666666666666 26.666666666666664Z" fill="#fff48c" stroke-width="1"></path>
9
+ <path d="M44.30666666666666 26.666666666666664a3.4799999999999995 3.4799999999999995 0 0 0 -3.4799999999999995 3.4799999999999995V26.666666666666664a3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0 3.706666666666666 3.706666666666666 0 0 0 -7.413333333333332 0V10.093333333333334a3.2266666666666666 3.2266666666666666 0 1 0 -6.4399999999999995 0V34.666666666666664a10.853333333333333 10.853333333333333 0 0 0 -2.0666666666666664 -6.359999999999999 5.253333333333333 5.253333333333333 0 0 0 -6.666666666666666 -1.76 2.1066666666666665 2.1066666666666665 0 0 0 -0.8933333333333333 2.893333333333333l2.9466666666666663 5.333333333333333A36.29333333333333 36.29333333333333 0 0 1 16 42.666666666666664a16.36 16.36 0 0 0 7.079999999999999 9.506666666666666 16.786666666666665 16.786666666666665 0 0 0 9 2.6666666666666665h5.52a10.146666666666667 10.146666666666667 0 0 0 10.133333333333333 -10.133333333333333V30.106666666666662A3.4799999999999995 3.4799999999999995 0 0 0 44.30666666666666 26.666666666666664Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
10
+ <path d="m33.41333333333333 26.626666666666665 0 2.8" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
11
+ <path d="m26 26.626666666666665 0 2.8" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
12
+ <path d="m19.56 34.70666666666666 0 2.48" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
13
+ <path d="M17.333333333333332 60.666666666666664a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
14
+ </svg>