homebridge-config-ui-x 5.0.0-beta.5 → 5.0.0-beta.51

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 (310) hide show
  1. package/CHANGELOG.md +317 -20
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +34 -144
  5. package/dist/bin/fork.js +17 -7
  6. package/dist/bin/fork.js.map +1 -1
  7. package/dist/bin/hb-service.d.ts +2 -2
  8. package/dist/bin/hb-service.js +68 -57
  9. package/dist/bin/hb-service.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +18 -7
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +2 -2
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +4 -6
  22. package/dist/core/config/config.service.js +6 -9
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -67
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +1 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +7 -6
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +18 -78
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  46. package/dist/modules/config-editor/config-editor.service.js +6 -6
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +11 -9
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  50. package/dist/modules/log/log.gateway.d.ts +2 -1
  51. package/dist/modules/log/log.gateway.js.map +1 -1
  52. package/dist/modules/log/log.service.js +3 -3
  53. package/dist/modules/log/log.service.js.map +1 -1
  54. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  55. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  56. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  58. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  60. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  62. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  63. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  64. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  65. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  66. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  68. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  69. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  70. package/dist/modules/plugins/plugins.controller.js +4 -4
  71. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  72. package/dist/modules/plugins/plugins.service.d.ts +3 -1
  73. package/dist/modules/plugins/plugins.service.js +127 -83
  74. package/dist/modules/plugins/plugins.service.js.map +1 -1
  75. package/dist/modules/server/server.controller.d.ts +22 -2
  76. package/dist/modules/server/server.controller.js +86 -18
  77. package/dist/modules/server/server.controller.js.map +1 -1
  78. package/dist/modules/server/server.service.d.ts +24 -6
  79. package/dist/modules/server/server.service.js +165 -66
  80. package/dist/modules/server/server.service.js.map +1 -1
  81. package/dist/modules/status/status.controller.d.ts +0 -1
  82. package/dist/modules/status/status.controller.js +3 -4
  83. package/dist/modules/status/status.controller.js.map +1 -1
  84. package/dist/modules/status/status.gateway.d.ts +1 -1
  85. package/dist/modules/status/status.service.d.ts +1 -1
  86. package/dist/modules/status/status.service.js +17 -41
  87. package/dist/modules/status/status.service.js.map +1 -1
  88. package/dist/modules/users/users.controller.js +7 -7
  89. package/dist/modules/users/users.controller.js.map +1 -1
  90. package/dist/self-check.js +6 -6
  91. package/dist/self-check.js.map +1 -1
  92. package/package.json +42 -40
  93. package/public/3rdpartylicenses.txt +87 -61
  94. package/public/assets/hap-icons/airpurifier.svg +49 -16
  95. package/public/assets/hap-icons/airquality.svg +24 -13
  96. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  97. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  98. package/public/assets/hap-icons/door-closed.svg +32 -2
  99. package/public/assets/hap-icons/door-open.svg +48 -2
  100. package/public/assets/hap-icons/fan-off.svg +24 -13
  101. package/public/assets/hap-icons/fan-on.svg +24 -13
  102. package/public/assets/hap-icons/garagedoor.svg +24 -13
  103. package/public/assets/hap-icons/humidity.svg +24 -13
  104. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  105. package/public/assets/hap-icons/leaksensor.svg +52 -2
  106. package/public/assets/hap-icons/light.svg +47 -28
  107. package/public/assets/hap-icons/lightbulb.svg +24 -13
  108. package/public/assets/hap-icons/lock-locked.svg +24 -13
  109. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  110. package/public/assets/hap-icons/motionsensor.svg +100 -2
  111. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  112. package/public/assets/hap-icons/outlet.svg +24 -13
  113. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  114. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  115. package/public/assets/hap-icons/smokesensor.svg +42 -9
  116. package/public/assets/hap-icons/speaker.svg +29 -13
  117. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  118. package/public/assets/hap-icons/switch.svg +24 -13
  119. package/public/assets/hap-icons/television.svg +15 -4
  120. package/public/assets/hap-icons/temperature.svg +24 -13
  121. package/public/assets/hap-icons/unknown.svg +24 -13
  122. package/public/assets/hap-icons/valve-generic.svg +27 -16
  123. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  124. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  125. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  126. package/public/assets/hap-icons/window-closed.svg +85 -2
  127. package/public/assets/hap-icons/window-open.svg +136 -2
  128. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  129. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  130. package/public/assets/homebridge-color-round.svg +36 -1
  131. package/public/assets/homebridge-logo.svg +11 -1
  132. package/public/assets/mask-icon.svg +5 -1
  133. package/public/chunk-4ANMJJ3Y.js +1 -0
  134. package/public/chunk-4ASVYUZP.js +1 -0
  135. package/public/chunk-4GO2ER3F.js +1 -0
  136. package/public/chunk-4MDIQGUS.js +6 -0
  137. package/public/chunk-4ODGBS6J.js +1 -0
  138. package/public/chunk-5PONL6FC.js +1 -0
  139. package/public/chunk-5ZFJ4INX.js +1 -0
  140. package/public/chunk-6LV4FEWJ.js +1 -0
  141. package/public/chunk-7BDTDCEB.js +5 -0
  142. package/public/chunk-7PQEY6AT.js +1 -0
  143. package/public/chunk-7VOWKBC5.js +1 -0
  144. package/public/chunk-AJVPO262.js +1 -0
  145. package/public/chunk-ATKY7BPX.js +1 -0
  146. package/public/chunk-AWS7TJOY.js +1 -0
  147. package/public/chunk-AZRFXNOQ.js +1 -0
  148. package/public/chunk-CBCEQDGK.js +1 -0
  149. package/public/chunk-CF74UVXM.js +1 -0
  150. package/public/chunk-DMDPOVJW.js +1 -0
  151. package/public/chunk-E4TY3GD7.js +1 -0
  152. package/public/chunk-EC7UWAIJ.js +1 -0
  153. package/public/{chunk-JZZQRLNW.js → chunk-EDFYZGGZ.js} +1 -1
  154. package/public/chunk-EJHOKTHW.js +1 -0
  155. package/public/chunk-EMSBT2VW.js +1 -0
  156. package/public/chunk-F5HFYQPC.js +1 -0
  157. package/public/chunk-FGRVUXCU.js +1 -0
  158. package/public/{chunk-D6RX5SPU.js → chunk-FPILNIO7.js} +2 -2
  159. package/public/chunk-FXH7UJ5I.js +1 -0
  160. package/public/chunk-GKJDQJXY.js +32 -0
  161. package/public/chunk-GKS2WGAQ.js +1 -0
  162. package/public/chunk-H7QJNST5.js +1 -0
  163. package/public/chunk-HBOJTK3W.js +1 -0
  164. package/public/chunk-HSF575TE.js +1 -0
  165. package/public/chunk-I4RJOFJA.js +1 -0
  166. package/public/chunk-IBW35LGZ.js +1 -0
  167. package/public/chunk-IJOPQHDM.js +5 -0
  168. package/public/chunk-JZIPYGE6.js +1 -0
  169. package/public/chunk-KGJAZDYN.js +14 -0
  170. package/public/chunk-KN3QRU4A.js +1 -0
  171. package/public/chunk-L2R4XPOU.js +1 -0
  172. package/public/chunk-LHRPSEZP.js +1 -0
  173. package/public/chunk-LT62K2G6.js +1 -0
  174. package/public/{chunk-GETFKFI6.js → chunk-NHG4TUCE.js} +1 -1
  175. package/public/chunk-NQKVHBGX.js +1 -0
  176. package/public/chunk-NUX2WN3X.js +7 -0
  177. package/public/{chunk-WHJSVGC7.js → chunk-O6CWJLIA.js} +1 -1
  178. package/public/{chunk-7EUQWCP5.js → chunk-OH2VPUYU.js} +1 -1
  179. package/public/chunk-OIIFJ7L5.js +1 -0
  180. package/public/chunk-OZNUTRGZ.js +1 -0
  181. package/public/chunk-PPKGVJBE.js +23 -0
  182. package/public/{chunk-EA5J2VEJ.js → chunk-PWYRMEUF.js} +1 -1
  183. package/public/chunk-Q4TOTCFN.js +1 -0
  184. package/public/chunk-QYC6YOSS.js +1 -0
  185. package/public/chunk-QZOMUMX6.js +1 -0
  186. package/public/chunk-R2YGI2OS.js +1 -0
  187. package/public/chunk-R35OKBR7.js +1 -0
  188. package/public/chunk-RGZ4UMYA.js +1 -0
  189. package/public/chunk-RHAWMCG6.js +1 -0
  190. package/public/{chunk-CCUID66K.js → chunk-RJ6HXANU.js} +1 -1
  191. package/public/chunk-RLOJ4URV.js +1 -0
  192. package/public/chunk-RMQTDYIN.js +1 -0
  193. package/public/chunk-RVTJXBND.js +1 -0
  194. package/public/chunk-RZ7AYZQX.js +1 -0
  195. package/public/{chunk-SJHJKPSQ.js → chunk-S7LSMLK2.js} +1 -1
  196. package/public/chunk-TF3VIHQQ.js +1 -0
  197. package/public/chunk-TRKPIOD5.js +1 -0
  198. package/public/chunk-TXZ2N2XM.js +1 -0
  199. package/public/chunk-UCAC3YJL.js +20 -0
  200. package/public/{chunk-BKUGARB4.js → chunk-UY5XIM7B.js} +1 -1
  201. package/public/chunk-VIPLB6ON.js +2 -0
  202. package/public/chunk-XNFEKMGG.js +1 -0
  203. package/public/chunk-XR25UPXG.js +1 -0
  204. package/public/{chunk-NW6AFAD7.js → chunk-XRJZ7K7S.js} +1 -1
  205. package/public/chunk-XSKOJB4V.js +1 -0
  206. package/public/chunk-Y54VXXJK.js +1 -0
  207. package/public/{chunk-6TCHCTXZ.js → chunk-YKBVU6AV.js} +1 -1
  208. package/public/chunk-YUORH5KC.js +1 -0
  209. package/public/chunk-Z2STW2WN.js +1 -0
  210. package/public/{chunk-QE7DO6J3.js → chunk-Z4VQJOCM.js} +2 -2
  211. package/public/chunk-ZFCY3QWG.js +1 -0
  212. package/public/chunk-ZJLAMLYN.js +1 -0
  213. package/public/{chunk-5S4H26Y6.js → chunk-ZMPWO4WI.js} +1 -1
  214. package/public/chunk-ZTTWZU4Q.js +8 -0
  215. package/public/{chunk-WNWWUCCZ.js → chunk-ZV6IGHL6.js} +1 -1
  216. package/public/index.html +2 -2
  217. package/public/main-MNVDWH2C.js +1 -0
  218. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  219. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  220. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  221. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  222. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  223. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  224. package/public/styles-CJ5TSDXW.css +1 -0
  225. package/scripts/upgrade-install-plugin.sh +1 -1
  226. package/public/chunk-3IX3CLER.js +0 -1
  227. package/public/chunk-3YKYXC2T.js +0 -1
  228. package/public/chunk-4DLA2ICF.js +0 -1
  229. package/public/chunk-4WTXJHZA.js +0 -5
  230. package/public/chunk-5HCG4CER.js +0 -1
  231. package/public/chunk-5XU3C2P2.js +0 -1
  232. package/public/chunk-6I6PSM5Y.js +0 -1
  233. package/public/chunk-72QXF2GF.js +0 -1
  234. package/public/chunk-74VT5JYS.js +0 -1
  235. package/public/chunk-7DTAFWJ7.js +0 -1
  236. package/public/chunk-7JR63ERC.js +0 -14
  237. package/public/chunk-7K5J3AOO.js +0 -1
  238. package/public/chunk-A7YWFX6I.js +0 -1
  239. package/public/chunk-BIDQZJXT.js +0 -1
  240. package/public/chunk-BNVAYTYZ.js +0 -8
  241. package/public/chunk-BPMSJ2VF.js +0 -1
  242. package/public/chunk-BVDMEFSJ.js +0 -1
  243. package/public/chunk-BVK7NCGF.js +0 -1
  244. package/public/chunk-CNJMINEX.js +0 -1
  245. package/public/chunk-DNLDZVVB.js +0 -1
  246. package/public/chunk-F3EORWUJ.js +0 -1
  247. package/public/chunk-G4CGNDAD.js +0 -1
  248. package/public/chunk-G4TRVUCL.js +0 -1
  249. package/public/chunk-HSJSWZHD.js +0 -1
  250. package/public/chunk-I544XQGS.js +0 -1
  251. package/public/chunk-J26JMISE.js +0 -20
  252. package/public/chunk-J3XWQZ5N.js +0 -1
  253. package/public/chunk-JBM7KQHD.js +0 -1
  254. package/public/chunk-KJHDP3ZC.js +0 -1
  255. package/public/chunk-KPVA6CSL.js +0 -1
  256. package/public/chunk-KQJ7ONUG.js +0 -1
  257. package/public/chunk-LBTLF3MZ.js +0 -6
  258. package/public/chunk-LQ6YDB4A.js +0 -1
  259. package/public/chunk-M3N7PSSC.js +0 -1
  260. package/public/chunk-MP3LZHQU.js +0 -1
  261. package/public/chunk-MSXXP7RE.js +0 -1
  262. package/public/chunk-NZNNTHFQ.js +0 -1
  263. package/public/chunk-ORPWYWCL.js +0 -5
  264. package/public/chunk-OZ6IXX3E.js +0 -1
  265. package/public/chunk-QHPDGSZ6.js +0 -1
  266. package/public/chunk-QOKEWT7C.js +0 -1
  267. package/public/chunk-RD4QIA6H.js +0 -1
  268. package/public/chunk-RN75UMGP.js +0 -1
  269. package/public/chunk-S3XAJEVU.js +0 -1
  270. package/public/chunk-SIQ2FHQL.js +0 -1
  271. package/public/chunk-TCSXGQNF.js +0 -1
  272. package/public/chunk-TWQP6XJT.js +0 -1
  273. package/public/chunk-TXOB7R5K.js +0 -7
  274. package/public/chunk-UC2NMLJ6.js +0 -1
  275. package/public/chunk-UCB7UE24.js +0 -1
  276. package/public/chunk-UFDZ4SFB.js +0 -1
  277. package/public/chunk-UG5DK2RQ.js +0 -2
  278. package/public/chunk-W4MTVPF3.js +0 -23
  279. package/public/chunk-WHJOLAED.js +0 -1
  280. package/public/chunk-WJNSNBGE.js +0 -1
  281. package/public/chunk-WRDG5DTE.js +0 -1
  282. package/public/chunk-XDGJOFX2.js +0 -1
  283. package/public/chunk-XEVIOBJR.js +0 -1
  284. package/public/chunk-XNCOF5TV.js +0 -1
  285. package/public/chunk-XXJO3JY3.js +0 -1
  286. package/public/chunk-YJ7ICNKX.js +0 -1
  287. package/public/chunk-Z7AUXG5E.js +0 -1
  288. package/public/chunk-ZBNZILWV.js +0 -1
  289. package/public/chunk-ZHMC7KSZ.js +0 -1
  290. package/public/chunk-ZJ4LBIOD.js +0 -32
  291. package/public/chunk-ZT23DWNL.js +0 -1
  292. package/public/chunk-ZYZBMA5E.js +0 -1
  293. package/public/main-TQOXBTSD.js +0 -1
  294. package/public/media/01-RQ3S2L53.png +0 -0
  295. package/public/media/02-VNCG2I2A.png +0 -0
  296. package/public/media/03-HI42L4ZG.png +0 -0
  297. package/public/media/04-FJLL55LZ.png +0 -0
  298. package/public/media/05-V3EO6SPT.png +0 -0
  299. package/public/media/06-EOJZCQZN.png +0 -0
  300. package/public/media/07-KMKB5PBD.png +0 -0
  301. package/public/media/08-UQJRF6B2.png +0 -0
  302. package/public/media/09-2DJQFRHH.png +0 -0
  303. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  304. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  305. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  306. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  307. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  308. package/public/scripts-6GVLYD7F.js +0 -62
  309. package/public/styles-EG5MFQEM.css +0 -1
  310. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
@@ -1,11 +1,11 @@
1
1
 
2
2
  --------------------------------------------------------------------------------
3
- Package: @angular/common
3
+ Package: @angular/animations
4
4
  License: "MIT"
5
5
 
6
6
  The MIT License
7
7
 
8
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
8
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
9
9
 
10
10
  Permission is hereby granted, free of charge, to any person obtaining a copy
11
11
  of this software and associated documentation files (the "Software"), to deal
@@ -26,12 +26,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
26
  THE SOFTWARE.
27
27
 
28
28
  --------------------------------------------------------------------------------
29
- Package: @angular/animations
29
+ Package: @angular/platform-browser
30
30
  License: "MIT"
31
31
 
32
32
  The MIT License
33
33
 
34
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
34
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
35
35
 
36
36
  Permission is hereby granted, free of charge, to any person obtaining a copy
37
37
  of this software and associated documentation files (the "Software"), to deal
@@ -52,12 +52,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
52
52
  THE SOFTWARE.
53
53
 
54
54
  --------------------------------------------------------------------------------
55
- Package: @angular/platform-browser
55
+ Package: @angular/common
56
56
  License: "MIT"
57
57
 
58
58
  The MIT License
59
59
 
60
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
60
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
61
61
 
62
62
  Permission is hereby granted, free of charge, to any person obtaining a copy
63
63
  of this software and associated documentation files (the "Software"), to deal
@@ -156,7 +156,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
156
156
  SOFTWARE.
157
157
 
158
158
  --------------------------------------------------------------------------------
159
- Package: @ng-formworks/bootstrap4
159
+ Package: @ng-formworks/bootstrap5
160
160
  License: "MIT"
161
161
 
162
162
  MIT License
@@ -181,6 +181,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
181
181
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
182
182
  SOFTWARE.
183
183
 
184
+ --------------------------------------------------------------------------------
185
+ Package: is-standalone-pwa
186
+ License: "MIT"
187
+
188
+ MIT License
189
+
190
+ Copyright (c) 2024 Faisal Salman
191
+
192
+ Permission is hereby granted, free of charge, to any person obtaining a copy
193
+ of this software and associated documentation files (the "Software"), to deal
194
+ in the Software without restriction, including without limitation the rights
195
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
196
+ copies of the Software, and to permit persons to whom the Software is
197
+ furnished to do so, subject to the following conditions:
198
+
199
+ The above copyright notice and this permission notice shall be included in all
200
+ copies or substantial portions of the Software.
201
+
202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
205
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
206
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
207
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
208
+ SOFTWARE.
209
+
184
210
  --------------------------------------------------------------------------------
185
211
  Package: angular-gridster2
186
212
  License: "MIT"
@@ -358,12 +384,12 @@ License: "MIT"
358
384
 
359
385
 
360
386
  --------------------------------------------------------------------------------
361
- Package: nouislider
387
+ Package: ng-inline-svg-2
362
388
  License: "MIT"
363
389
 
364
- MIT License
390
+ The MIT License (MIT)
365
391
 
366
- Copyright (c) 2019 Léon Gersen
392
+ Copyright (c) 2016 Eugene Cheung
367
393
 
368
394
  Permission is hereby granted, free of charge, to any person obtaining a copy
369
395
  of this software and associated documentation files (the "Software"), to deal
@@ -372,24 +398,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
372
398
  copies of the Software, and to permit persons to whom the Software is
373
399
  furnished to do so, subject to the following conditions:
374
400
 
375
- The above copyright notice and this permission notice shall be included in all
376
- copies or substantial portions of the Software.
401
+ The above copyright notice and this permission notice shall be included in
402
+ all copies or substantial portions of the Software.
377
403
 
378
404
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
379
405
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
380
406
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
381
407
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
382
408
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
383
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
384
- SOFTWARE.
409
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
410
+ THE SOFTWARE.
385
411
 
386
412
  --------------------------------------------------------------------------------
387
- Package: ng2-nouislider
413
+ Package: nouislider
388
414
  License: "MIT"
389
415
 
390
416
  MIT License
391
417
 
392
- Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
418
+ Copyright (c) 2019 Léon Gersen
393
419
 
394
420
  Permission is hereby granted, free of charge, to any person obtaining a copy
395
421
  of this software and associated documentation files (the "Software"), to deal
@@ -410,12 +436,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
410
436
  SOFTWARE.
411
437
 
412
438
  --------------------------------------------------------------------------------
413
- Package: ng-inline-svg-2
439
+ Package: ng2-nouislider
414
440
  License: "MIT"
415
441
 
416
- The MIT License (MIT)
442
+ MIT License
417
443
 
418
- Copyright (c) 2016 Eugene Cheung
444
+ Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
419
445
 
420
446
  Permission is hereby granted, free of charge, to any person obtaining a copy
421
447
  of this software and associated documentation files (the "Software"), to deal
@@ -424,16 +450,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
424
450
  copies of the Software, and to permit persons to whom the Software is
425
451
  furnished to do so, subject to the following conditions:
426
452
 
427
- The above copyright notice and this permission notice shall be included in
428
- all copies or substantial portions of the Software.
453
+ The above copyright notice and this permission notice shall be included in all
454
+ copies or substantial portions of the Software.
429
455
 
430
456
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
431
457
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
432
458
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
433
459
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
434
460
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
435
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
436
- THE SOFTWARE.
461
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
462
+ SOFTWARE.
437
463
 
438
464
  --------------------------------------------------------------------------------
439
465
  Package: ajv
@@ -785,21 +811,30 @@ License: "MIT"
785
811
 
786
812
 
787
813
  --------------------------------------------------------------------------------
788
- Package: file-saver
814
+ Package: mobile-detect
789
815
  License: "MIT"
790
816
 
791
- The MIT License
792
-
793
- Copyright © 2016 [Eli Grey][1].
794
-
795
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
817
+ The MIT License (MIT)
796
818
 
797
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
819
+ Copyright (c) 2013 Heinrich Goebl
798
820
 
799
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
821
+ Permission is hereby granted, free of charge, to any person obtaining a copy
822
+ of this software and associated documentation files (the "Software"), to deal
823
+ in the Software without restriction, including without limitation the rights
824
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
825
+ copies of the Software, and to permit persons to whom the Software is
826
+ furnished to do so, subject to the following conditions:
800
827
 
801
- [1]: http://eligrey.com
828
+ The above copyright notice and this permission notice shall be included in
829
+ all copies or substantial portions of the Software.
802
830
 
831
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
832
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
833
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
834
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
835
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
836
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
837
+ THE SOFTWARE.
803
838
  --------------------------------------------------------------------------------
804
839
  Package: xterm-addon-web-links
805
840
  License: "MIT"
@@ -853,6 +888,22 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
853
888
  THE SOFTWARE.
854
889
  ```
855
890
 
891
+ --------------------------------------------------------------------------------
892
+ Package: file-saver
893
+ License: "MIT"
894
+
895
+ The MIT License
896
+
897
+ Copyright © 2016 [Eli Grey][1].
898
+
899
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
900
+
901
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
902
+
903
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
904
+
905
+ [1]: http://eligrey.com
906
+
856
907
  --------------------------------------------------------------------------------
857
908
  Package: xterm
858
909
  License: "MIT"
@@ -923,38 +974,13 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
923
974
  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
924
975
  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
925
976
 
926
- --------------------------------------------------------------------------------
927
- Package: mobile-detect
928
- License: "MIT"
929
-
930
- The MIT License (MIT)
931
-
932
- Copyright (c) 2013 Heinrich Goebl
933
-
934
- Permission is hereby granted, free of charge, to any person obtaining a copy
935
- of this software and associated documentation files (the "Software"), to deal
936
- in the Software without restriction, including without limitation the rights
937
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
938
- copies of the Software, and to permit persons to whom the Software is
939
- furnished to do so, subject to the following conditions:
940
-
941
- The above copyright notice and this permission notice shall be included in
942
- all copies or substantial portions of the Software.
943
-
944
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
945
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
946
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
947
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
948
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
949
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
950
- THE SOFTWARE.
951
977
  --------------------------------------------------------------------------------
952
978
  Package: @angular/core
953
979
  License: "MIT"
954
980
 
955
981
  The MIT License
956
982
 
957
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
983
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
958
984
 
959
985
  Permission is hereby granted, free of charge, to any person obtaining a copy
960
986
  of this software and associated documentation files (the "Software"), to deal
@@ -1031,7 +1057,7 @@ License: "MIT"
1031
1057
 
1032
1058
  The MIT License
1033
1059
 
1034
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1060
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1035
1061
 
1036
1062
  Permission is hereby granted, free of charge, to any person obtaining a copy
1037
1063
  of this software and associated documentation files (the "Software"), to deal
@@ -1189,7 +1215,7 @@ License: "MIT"
1189
1215
 
1190
1216
  The MIT License
1191
1217
 
1192
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1218
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1193
1219
 
1194
1220
  Permission is hereby granted, free of charge, to any person obtaining a copy
1195
1221
  of this software and associated documentation files (the "Software"), to deal
@@ -1555,7 +1581,7 @@ License: "MIT"
1555
1581
 
1556
1582
  The MIT License
1557
1583
 
1558
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1584
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1559
1585
 
1560
1586
  Permission is hereby granted, free of charge, to any person obtaining a copy
1561
1587
  of this software and associated documentation files (the "Software"), to deal
@@ -1,17 +1,50 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="100px" height="149px" viewBox="0 0 100 149" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
- <g id="airpurifier" transform="translate(7.000000, 5.000000)">
5
- <path d="M-4.26325641e-14,6.22067087 C4.02953795,8.50225516 12.4315562,9.67933849 25.2060547,9.75192087 C32.8391014,9.79529045 51.5791554,2.41088415 63.7714844,0.357389618 C69.2464736,-0.564736121 76.8610569,0.297568567 86.6152344,2.94430368" id="Line" class="airpurifier_off_grey" stroke="#5BC8FA" stroke-width="10" stroke-linecap="square"></path>
6
- <path d="M-4.26325641e-14,30.2206709 C4.02953795,32.5022552 12.4315562,33.6793385 25.2060547,33.7519209 C32.8391014,33.7952905 51.5791554,26.4108841 63.7714844,24.3573896 C69.2464736,23.4352639 76.8610569,24.2975686 86.6152344,26.9443037" id="Line" class="airpurifier_off_grey" stroke="#91DBFB" stroke-width="10" stroke-linecap="square"></path>
7
- <path d="M-4.26325641e-14,54.2206709 C4.02953795,56.5022552 12.4315562,57.6793385 25.2060547,57.7519209 C32.8391014,57.7952905 51.5791554,50.4108841 63.7714844,48.3573896 C69.2464736,47.4352639 76.8610569,48.2975686 86.6152344,50.9443037" id="Line" class="airpurifier_off_grey" stroke="#C8EAFE" stroke-width="10" stroke-linecap="square"></path>
8
- <polygon id="Path" class="airpurifier_off_grey" fill="#C7C5CB" points="17.2333685 76.7914641 70.0374945 76.7914641 73.9430133 79.2866885 76.8250853 84.9649087 87.1832833 114.139252 87.1832833 140.017181 85.5385126 142.175202 83.1303576 143.984565 5.21741581 143.984565 2.85966936 142.750318 1.09613307 140.017181 1.09613307 114.139252 10.9193128 84.9649087 14.372682 79.2866885"></polygon>
9
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="84" width="17" height="5"></rect>
10
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="94" width="20" height="5"></rect>
11
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="103" width="22" height="5"></rect>
12
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="20" y="103" width="22" height="5"></rect>
13
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="22" y="94" width="20" height="5"></rect>
14
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="25" y="84" width="17" height="5"></rect>
15
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <svg
3
+ width="100px"
4
+ height="149px"
5
+ viewBox="0 0 100 149"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ >
10
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
11
+ <g id="airpurifier" transform="translate(7.000000, 5.000000)">
12
+ <path
13
+ d="M-4.26325641e-14,6.22067087 C4.02953795,8.50225516 12.4315562,9.67933849 25.2060547,9.75192087 C32.8391014,9.79529045 51.5791554,2.41088415 63.7714844,0.357389618 C69.2464736,-0.564736121 76.8610569,0.297568567 86.6152344,2.94430368"
14
+ id="Line"
15
+ class="airpurifier_off_grey"
16
+ stroke="#5BC8FA"
17
+ stroke-width="10"
18
+ stroke-linecap="square"
19
+ />
20
+ <path
21
+ d="M-4.26325641e-14,30.2206709 C4.02953795,32.5022552 12.4315562,33.6793385 25.2060547,33.7519209 C32.8391014,33.7952905 51.5791554,26.4108841 63.7714844,24.3573896 C69.2464736,23.4352639 76.8610569,24.2975686 86.6152344,26.9443037"
22
+ id="Line"
23
+ class="airpurifier_off_grey"
24
+ stroke="#91DBFB"
25
+ stroke-width="10"
26
+ stroke-linecap="square"
27
+ />
28
+ <path
29
+ d="M-4.26325641e-14,54.2206709 C4.02953795,56.5022552 12.4315562,57.6793385 25.2060547,57.7519209 C32.8391014,57.7952905 51.5791554,50.4108841 63.7714844,48.3573896 C69.2464736,47.4352639 76.8610569,48.2975686 86.6152344,50.9443037"
30
+ id="Line"
31
+ class="airpurifier_off_grey"
32
+ stroke="#C8EAFE"
33
+ stroke-width="10"
34
+ stroke-linecap="square"
35
+ />
36
+ <polygon
37
+ id="Path"
38
+ class="airpurifier_off_grey"
39
+ fill="#C7C5CB"
40
+ points="17.2333685 76.7914641 70.0374945 76.7914641 73.9430133 79.2866885 76.8250853 84.9649087 87.1832833 114.139252 87.1832833 140.017181 85.5385126 142.175202 83.1303576 143.984565 5.21741581 143.984565 2.85966936 142.750318 1.09613307 140.017181 1.09613307 114.139252 10.9193128 84.9649087 14.372682 79.2866885"
41
+ />
42
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="84" width="17" height="5" />
43
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="94" width="20" height="5" />
44
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="103" width="22" height="5" />
45
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="20" y="103" width="22" height="5" />
46
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="22" y="94" width="20" height="5" />
47
+ <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="25" y="84" width="17" height="5" />
16
48
  </g>
17
- </svg>
49
+ </g>
50
+ </svg>
@@ -1,14 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
- <title>houseplant</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -100.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 100.000000)">
10
- <path d="M10.1435881,25.4905179 C10.286009,26.7050605 10.531254,27.9706077 10.8919121,29.2887103 C6.25942062,27.4175104 3.57173247,24.180341 2.39781526,19.889403 C1.54190101,16.760839 1.56931096,13.3702525 2.13724518,10.1783222 C2.1501971,10.1055292 2.17646546,9.96330988 2.17646546,9.96330988 C2.17646546,9.96330988 2.33770347,10.0208429 2.92620872,10.2769757 C4.60998953,11.0098007 6.29364519,11.9318703 7.85704035,13.0517448 C9.19214306,14.0080913 10.3087445,15.0188915 11.223018,16.0899229 L11.223018,16.0899229 C10.426841,18.1910249 9.96797687,20.5297906 9.99206994,23.1241613 L5.43414987,14.7605739 C5.30203551,14.5181498 4.99858593,14.4288208 4.75637627,14.5610522 C4.51416661,14.6932836 4.42491674,14.9970019 4.5570311,15.2394261 L10.1435881,25.4905179 L10.1435881,25.4905179 Z M13.0333542,29.4136738 C10.9912074,19.9059085 11.088992,14.922477 21.5133004,6.73565972 C23.6127007,5.0868782 25.9746706,4.01306759 28.2881453,3.03596757 C29.0967374,2.69445726 29.3182746,2.61774651 29.3182746,2.61774651 C29.3182746,2.61774651 29.3543667,2.80737221 29.3721623,2.90442957 C30.1524904,7.1603367 30.190151,11.6811187 29.0141452,15.8525373 C27.1508473,22.4618551 22.5118613,27.1961122 14.1841552,29.413553 L25.4116309,9.74806947 C25.5485147,9.50831075 25.46529,9.20288341 25.2257434,9.06587843 C24.9861969,8.92887344 24.6810398,9.01217181 24.544156,9.25193053 L13.0333542,29.4136738 L13.0333542,29.4136738 L13.0333542,29.4136738 Z M13.4880693,32 C38.9655056,25.5 30.755735,0 30.755735,0 C30.755735,0 17.0308715,3.72274828 11.9893965,14.5 C7.99293593,9 0.873098889,8 0.873098889,8 C-3.99644586,30.5 13.4880693,32 13.4880693,32 Z" sketch:type="MSShapeGroup"></path>
11
- </g>
12
- </g>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
+ <svg
3
+ width="32px"
4
+ height="32px"
5
+ viewBox="0 0 32 32"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:xlink="http://www.w3.org/1999/xlink"
9
+ xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
10
+ >
11
+ <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
12
+ <title>houseplant</title>
13
+ <desc>Created with Sketch.</desc>
14
+ <defs />
15
+ <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
16
+ <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -100.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 100.000000)">
18
+ <path
19
+ d="M10.1435881,25.4905179 C10.286009,26.7050605 10.531254,27.9706077 10.8919121,29.2887103 C6.25942062,27.4175104 3.57173247,24.180341 2.39781526,19.889403 C1.54190101,16.760839 1.56931096,13.3702525 2.13724518,10.1783222 C2.1501971,10.1055292 2.17646546,9.96330988 2.17646546,9.96330988 C2.17646546,9.96330988 2.33770347,10.0208429 2.92620872,10.2769757 C4.60998953,11.0098007 6.29364519,11.9318703 7.85704035,13.0517448 C9.19214306,14.0080913 10.3087445,15.0188915 11.223018,16.0899229 L11.223018,16.0899229 C10.426841,18.1910249 9.96797687,20.5297906 9.99206994,23.1241613 L5.43414987,14.7605739 C5.30203551,14.5181498 4.99858593,14.4288208 4.75637627,14.5610522 C4.51416661,14.6932836 4.42491674,14.9970019 4.5570311,15.2394261 L10.1435881,25.4905179 L10.1435881,25.4905179 Z M13.0333542,29.4136738 C10.9912074,19.9059085 11.088992,14.922477 21.5133004,6.73565972 C23.6127007,5.0868782 25.9746706,4.01306759 28.2881453,3.03596757 C29.0967374,2.69445726 29.3182746,2.61774651 29.3182746,2.61774651 C29.3182746,2.61774651 29.3543667,2.80737221 29.3721623,2.90442957 C30.1524904,7.1603367 30.190151,11.6811187 29.0141452,15.8525373 C27.1508473,22.4618551 22.5118613,27.1961122 14.1841552,29.413553 L25.4116309,9.74806947 C25.5485147,9.50831075 25.46529,9.20288341 25.2257434,9.06587843 C24.9861969,8.92887344 24.6810398,9.01217181 24.544156,9.25193053 L13.0333542,29.4136738 L13.0333542,29.4136738 L13.0333542,29.4136738 Z M13.4880693,32 C38.9655056,25.5 30.755735,0 30.755735,0 C30.755735,0 17.0308715,3.72274828 11.9893965,14.5 C7.99293593,9 0.873098889,8 0.873098889,8 C-3.99644586,30.5 13.4880693,32 13.4880693,32 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,3 +1,36 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 400 400" width="400" height="400"><defs><path d="M223.95 23.27C263.16 23.27 294.95 55.06 294.95 94.27C294.95 151.36 294.95 251.64 294.95 308.74C294.95 347.95 263.16 379.73 223.95 379.73C181.36 379.73 124.56 379.73 81.97 379.73C42.76 379.73 10.97 347.95 10.97 308.74C10.97 251.64 10.97 151.36 10.97 94.27C10.97 55.06 42.76 23.27 81.97 23.27C124.56 23.27 181.36 23.27 223.95 23.27Z" id="b21dHq1HLR"></path><path d="M171.04 127.5C181.02 127.5 189.12 135.59 189.12 145.57C189.12 170.01 189.12 225.25 189.12 249.69C189.12 259.67 181.02 267.76 171.04 267.76C160.19 267.76 145.73 267.76 134.88 267.76C124.9 267.76 116.8 259.67 116.8 249.69C116.8 225.25 116.8 170.01 116.8 145.57C116.8 135.59 124.9 127.5 134.88 127.5C145.73 127.5 160.19 127.5 171.04 127.5Z" id="b3rnYNGKt"></path><path d="M151.36 21.56L155.39 21.56L155.39 381.39L151.36 381.39L151.36 21.56Z" id="aLjlx3xeq"></path></defs><g><g><g><use xlink:href="#b21dHq1HLR" opacity="1" fill="#808080" fill-opacity="1"></use></g><g><use xlink:href="#b3rnYNGKt" opacity="1" fill="#e0e0e0" fill-opacity="1"></use></g><g><use xlink:href="#aLjlx3xeq" opacity="1" fill="#e0e0e0" fill-opacity="1" class="contact_sensor_split_line"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 400 400"
9
+ width="400"
10
+ height="400"
11
+ >
12
+ <defs>
13
+ <path
14
+ d="M223.95 23.27C263.16 23.27 294.95 55.06 294.95 94.27C294.95 151.36 294.95 251.64 294.95 308.74C294.95 347.95 263.16 379.73 223.95 379.73C181.36 379.73 124.56 379.73 81.97 379.73C42.76 379.73 10.97 347.95 10.97 308.74C10.97 251.64 10.97 151.36 10.97 94.27C10.97 55.06 42.76 23.27 81.97 23.27C124.56 23.27 181.36 23.27 223.95 23.27Z"
15
+ id="b21dHq1HLR"
16
+ />
17
+ <path
18
+ d="M171.04 127.5C181.02 127.5 189.12 135.59 189.12 145.57C189.12 170.01 189.12 225.25 189.12 249.69C189.12 259.67 181.02 267.76 171.04 267.76C160.19 267.76 145.73 267.76 134.88 267.76C124.9 267.76 116.8 259.67 116.8 249.69C116.8 225.25 116.8 170.01 116.8 145.57C116.8 135.59 124.9 127.5 134.88 127.5C145.73 127.5 160.19 127.5 171.04 127.5Z"
19
+ id="b3rnYNGKt"
20
+ />
21
+ <path d="M151.36 21.56L155.39 21.56L155.39 381.39L151.36 381.39L151.36 21.56Z" id="aLjlx3xeq" />
22
+ </defs>
23
+ <g>
24
+ <g>
25
+ <g>
26
+ <use xlink:href="#b21dHq1HLR" opacity="1" fill="#808080" fill-opacity="1" />
27
+ </g>
28
+ <g>
29
+ <use xlink:href="#b3rnYNGKt" opacity="1" fill="#e0e0e0" fill-opacity="1" />
30
+ </g>
31
+ <g>
32
+ <use xlink:href="#aLjlx3xeq" opacity="1" fill="#e0e0e0" fill-opacity="1" class="contact_sensor_split_line" />
33
+ </g>
34
+ </g>
35
+ </g>
36
+ </svg>
@@ -1,3 +1,81 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 400 400" width="400" height="400"><defs><path d="" id="ao3gTue7g"></path><path d="M223.95 23.27C263.16 23.27 294.95 55.06 294.95 94.27C294.95 151.36 294.95 251.64 294.95 308.74C294.95 347.95 263.16 379.73 223.95 379.73C181.36 379.73 124.56 379.73 81.97 379.73C42.76 379.73 10.97 347.95 10.97 308.74C10.97 251.64 10.97 151.36 10.97 94.27C10.97 55.06 42.76 23.27 81.97 23.27C124.56 23.27 181.36 23.27 223.95 23.27Z" id="c1v4NxD5mp"></path><path d="M61.11 136.79L95.67 136.79L95.67 277.06L61.11 277.06L61.11 136.79Z" id="c4l0SgltEc"></path><path d="M156.15 136.79L190.71 136.79L190.71 277.06L156.15 277.06L156.15 136.79Z" id="b7aE7OH3RS"></path><path d="M95.67 16.16L156.15 16.16L156.15 389.21L95.67 389.21L95.67 16.16Z" id="a2PyrMhhdm"></path><path d="M392.08 96.67C395.22 96.67 397.75 99.21 397.75 102.34C397.75 103.48 397.75 101.21 397.75 102.34C397.75 105.47 395.22 108.01 392.08 108.01C378.37 108.01 342.91 108.01 329.2 108.01C326.07 108.01 323.53 105.47 323.53 102.34C323.53 101.21 323.53 103.48 323.53 102.34C323.53 99.21 326.07 96.67 329.2 96.67C342.91 96.67 378.37 96.67 392.08 96.67Z" id="bcx0VijpA"></path><path d="M374.79 23.93C377.56 22.47 380.99 23.53 382.45 26.29C382.98 27.3 381.92 25.29 382.45 26.29C383.91 29.06 382.86 32.49 380.09 33.96C367.97 40.37 336.61 56.94 324.49 63.35C321.73 64.81 318.29 63.76 316.83 60.99C316.3 59.99 317.36 61.99 316.83 60.99C315.37 58.22 316.42 54.79 319.19 53.33C331.31 46.92 362.67 30.34 374.79 23.93Z" id="e1XAO8sBH4"></path><path d="M380.06 167.96C382.84 169.41 383.91 172.84 382.46 175.61C381.94 176.62 382.99 174.61 382.46 175.61C381.01 178.39 377.59 179.46 374.81 178.01C362.66 171.66 331.23 155.24 319.07 148.89C316.3 147.44 315.22 144.01 316.67 141.24C317.2 140.23 316.15 142.24 316.67 141.24C318.12 138.46 321.55 137.39 324.33 138.84C336.48 145.19 367.91 161.61 380.06 167.96Z" id="eiZt2raEk"></path></defs><g><g><g><g><use xlink:href="#ao3gTue7g" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#c1v4NxD5mp" opacity="1" fill="#9d8463" fill-opacity="1"></use></g><g><use xlink:href="#c4l0SgltEc" opacity="1" fill="#fae452" fill-opacity="1"></use></g><g><use xlink:href="#b7aE7OH3RS" opacity="1" fill="#fae452" fill-opacity="1"></use></g><g><use xlink:href="#a2PyrMhhdm" opacity="1" fill="#ffffff" fill-opacity="1"></use></g><g><use xlink:href="#bcx0VijpA" opacity="1" fill="#fb0000" fill-opacity="1"></use><g><use xlink:href="#bcx0VijpA" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#e1XAO8sBH4" opacity="1" fill="#fb0000" fill-opacity="1"></use></g><g><use xlink:href="#eiZt2raEk" opacity="1" fill="#fb0000" fill-opacity="1"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 400 400"
9
+ width="400"
10
+ height="400"
11
+ >
12
+ <defs>
13
+ <path d="" id="ao3gTue7g" />
14
+ <path
15
+ d="M223.95 23.27C263.16 23.27 294.95 55.06 294.95 94.27C294.95 151.36 294.95 251.64 294.95 308.74C294.95 347.95 263.16 379.73 223.95 379.73C181.36 379.73 124.56 379.73 81.97 379.73C42.76 379.73 10.97 347.95 10.97 308.74C10.97 251.64 10.97 151.36 10.97 94.27C10.97 55.06 42.76 23.27 81.97 23.27C124.56 23.27 181.36 23.27 223.95 23.27Z"
16
+ id="c1v4NxD5mp"
17
+ />
18
+ <path d="M61.11 136.79L95.67 136.79L95.67 277.06L61.11 277.06L61.11 136.79Z" id="c4l0SgltEc" />
19
+ <path d="M156.15 136.79L190.71 136.79L190.71 277.06L156.15 277.06L156.15 136.79Z" id="b7aE7OH3RS" />
20
+ <path d="M95.67 16.16L156.15 16.16L156.15 389.21L95.67 389.21L95.67 16.16Z" id="a2PyrMhhdm" />
21
+ <path
22
+ d="M392.08 96.67C395.22 96.67 397.75 99.21 397.75 102.34C397.75 103.48 397.75 101.21 397.75 102.34C397.75 105.47 395.22 108.01 392.08 108.01C378.37 108.01 342.91 108.01 329.2 108.01C326.07 108.01 323.53 105.47 323.53 102.34C323.53 101.21 323.53 103.48 323.53 102.34C323.53 99.21 326.07 96.67 329.2 96.67C342.91 96.67 378.37 96.67 392.08 96.67Z"
23
+ id="bcx0VijpA"
24
+ />
25
+ <path
26
+ d="M374.79 23.93C377.56 22.47 380.99 23.53 382.45 26.29C382.98 27.3 381.92 25.29 382.45 26.29C383.91 29.06 382.86 32.49 380.09 33.96C367.97 40.37 336.61 56.94 324.49 63.35C321.73 64.81 318.29 63.76 316.83 60.99C316.3 59.99 317.36 61.99 316.83 60.99C315.37 58.22 316.42 54.79 319.19 53.33C331.31 46.92 362.67 30.34 374.79 23.93Z"
27
+ id="e1XAO8sBH4"
28
+ />
29
+ <path
30
+ d="M380.06 167.96C382.84 169.41 383.91 172.84 382.46 175.61C381.94 176.62 382.99 174.61 382.46 175.61C381.01 178.39 377.59 179.46 374.81 178.01C362.66 171.66 331.23 155.24 319.07 148.89C316.3 147.44 315.22 144.01 316.67 141.24C317.2 140.23 316.15 142.24 316.67 141.24C318.12 138.46 321.55 137.39 324.33 138.84C336.48 145.19 367.91 161.61 380.06 167.96Z"
31
+ id="eiZt2raEk"
32
+ />
33
+ </defs>
34
+ <g>
35
+ <g>
36
+ <g>
37
+ <g>
38
+ <use
39
+ xlink:href="#ao3gTue7g"
40
+ opacity="1"
41
+ fill-opacity="0"
42
+ stroke="#000000"
43
+ stroke-width="1"
44
+ stroke-opacity="0"
45
+ />
46
+ </g>
47
+ </g>
48
+ <g>
49
+ <use xlink:href="#c1v4NxD5mp" opacity="1" fill="#9d8463" fill-opacity="1" />
50
+ </g>
51
+ <g>
52
+ <use xlink:href="#c4l0SgltEc" opacity="1" fill="#fae452" fill-opacity="1" />
53
+ </g>
54
+ <g>
55
+ <use xlink:href="#b7aE7OH3RS" opacity="1" fill="#fae452" fill-opacity="1" />
56
+ </g>
57
+ <g>
58
+ <use xlink:href="#a2PyrMhhdm" opacity="1" fill="#ffffff" fill-opacity="1" />
59
+ </g>
60
+ <g>
61
+ <use xlink:href="#bcx0VijpA" opacity="1" fill="#fb0000" fill-opacity="1" />
62
+ <g>
63
+ <use
64
+ xlink:href="#bcx0VijpA"
65
+ opacity="1"
66
+ fill-opacity="0"
67
+ stroke="#000000"
68
+ stroke-width="1"
69
+ stroke-opacity="0"
70
+ />
71
+ </g>
72
+ </g>
73
+ <g>
74
+ <use xlink:href="#e1XAO8sBH4" opacity="1" fill="#fb0000" fill-opacity="1" />
75
+ </g>
76
+ <g>
77
+ <use xlink:href="#eiZt2raEk" opacity="1" fill="#fb0000" fill-opacity="1" />
78
+ </g>
79
+ </g>
80
+ </g>
81
+ </svg>
@@ -1,3 +1,33 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 640 640" width="640" height="640"><defs><path d="M65 65L565 65L565 565L65 565L65 65Z" id="azpwPyWyb"></path><path d="M215 120L415 120L415 520L215 520L215 120Z" id="a3LUTa5wUU"></path><path d="M250 307.5C250 311.64 246.64 315 242.5 315C238.36 315 235 311.64 235 307.5C235 303.37 238.36 300 242.5 300C246.64 300 250 303.37 250 307.5Z" id="j6bKSy55h0"></path></defs><g><g><g><use xlink:href="#azpwPyWyb" opacity="1" fill="#666666" fill-opacity="1"></use></g><g><use xlink:href="#a3LUTa5wUU" opacity="1" fill="#c3c3c3" fill-opacity="1"></use></g><g><use xlink:href="#j6bKSy55h0" opacity="1" fill="#666666" fill-opacity="1"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 640 640"
9
+ width="640"
10
+ height="640"
11
+ >
12
+ <defs>
13
+ <path d="M65 65L565 65L565 565L65 565L65 65Z" id="azpwPyWyb" />
14
+ <path d="M215 120L415 120L415 520L215 520L215 120Z" id="a3LUTa5wUU" />
15
+ <path
16
+ d="M250 307.5C250 311.64 246.64 315 242.5 315C238.36 315 235 311.64 235 307.5C235 303.37 238.36 300 242.5 300C246.64 300 250 303.37 250 307.5Z"
17
+ id="j6bKSy55h0"
18
+ />
19
+ </defs>
20
+ <g>
21
+ <g>
22
+ <g>
23
+ <use xlink:href="#azpwPyWyb" opacity="1" fill="#666666" fill-opacity="1" />
24
+ </g>
25
+ <g>
26
+ <use xlink:href="#a3LUTa5wUU" opacity="1" fill="#c3c3c3" fill-opacity="1" />
27
+ </g>
28
+ <g>
29
+ <use xlink:href="#j6bKSy55h0" opacity="1" fill="#666666" fill-opacity="1" />
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </svg>
@@ -1,3 +1,49 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid meet" viewBox="0 0 640 640" width="640" height="640"><defs><path d="M65 65L565 65L565 565L65 565L65 65Z" id="a16emSr1OF"></path><path d="M215 120L415 120L415 520L215 520L215 120Z" id="a1Q7XDVmJL"></path><path d="M289.99 170.73L414.99 170.72L415.01 469.1L290 469.1L289.99 170.73Z" id="aI4o4W69"></path><path d="M447.32 196.13L320.84 247.23L290 170.89L416.47 119.79L447.32 196.13Z" id="bKSCmHabW"></path><path d="M296.54 301.7C297.89 298.37 302.09 296.93 305.93 298.48C309.77 300.03 311.79 303.99 310.45 307.31C309.11 310.64 304.9 312.08 301.06 310.53C297.22 308.98 295.2 305.02 296.54 301.7Z" id="amWNNwFCe"></path><path d="M447.33 443.73L320.85 392.63L290 468.97L416.48 520.08L447.33 443.73Z" id="hiueE6AyB"></path><path d="M415 113.14L551.37 113.14L551.37 533.73L415 533.73L415 113.14Z" id="bKLdTBWhx"></path></defs><g><g><g><use xlink:href="#a16emSr1OF" opacity="1" fill="#666666" fill-opacity="1"></use></g><g><use xlink:href="#a1Q7XDVmJL" opacity="1" fill="#ffffff" fill-opacity="1"></use></g><g><use xlink:href="#aI4o4W69" opacity="1" fill="#56d723" fill-opacity="1"></use></g><g><use xlink:href="#bKSCmHabW" opacity="1" fill="#56d723" fill-opacity="1"></use></g><g><use xlink:href="#amWNNwFCe" opacity="1" fill="#666666" fill-opacity="1"></use></g><g><use xlink:href="#hiueE6AyB" opacity="1" fill="#56d723" fill-opacity="1"></use></g><g><use xlink:href="#bKLdTBWhx" opacity="1" fill="#666666" fill-opacity="1"></use></g></g></g></svg>
3
+ <svg
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid meet"
8
+ viewBox="0 0 640 640"
9
+ width="640"
10
+ height="640"
11
+ >
12
+ <defs>
13
+ <path d="M65 65L565 65L565 565L65 565L65 65Z" id="a16emSr1OF" />
14
+ <path d="M215 120L415 120L415 520L215 520L215 120Z" id="a1Q7XDVmJL" />
15
+ <path d="M289.99 170.73L414.99 170.72L415.01 469.1L290 469.1L289.99 170.73Z" id="aI4o4W69" />
16
+ <path d="M447.32 196.13L320.84 247.23L290 170.89L416.47 119.79L447.32 196.13Z" id="bKSCmHabW" />
17
+ <path
18
+ d="M296.54 301.7C297.89 298.37 302.09 296.93 305.93 298.48C309.77 300.03 311.79 303.99 310.45 307.31C309.11 310.64 304.9 312.08 301.06 310.53C297.22 308.98 295.2 305.02 296.54 301.7Z"
19
+ id="amWNNwFCe"
20
+ />
21
+ <path d="M447.33 443.73L320.85 392.63L290 468.97L416.48 520.08L447.33 443.73Z" id="hiueE6AyB" />
22
+ <path d="M415 113.14L551.37 113.14L551.37 533.73L415 533.73L415 113.14Z" id="bKLdTBWhx" />
23
+ </defs>
24
+ <g>
25
+ <g>
26
+ <g>
27
+ <use xlink:href="#a16emSr1OF" opacity="1" fill="#666666" fill-opacity="1" />
28
+ </g>
29
+ <g>
30
+ <use xlink:href="#a1Q7XDVmJL" opacity="1" fill="#ffffff" fill-opacity="1" />
31
+ </g>
32
+ <g>
33
+ <use xlink:href="#aI4o4W69" opacity="1" fill="#56d723" fill-opacity="1" />
34
+ </g>
35
+ <g>
36
+ <use xlink:href="#bKSCmHabW" opacity="1" fill="#56d723" fill-opacity="1" />
37
+ </g>
38
+ <g>
39
+ <use xlink:href="#amWNNwFCe" opacity="1" fill="#666666" fill-opacity="1" />
40
+ </g>
41
+ <g>
42
+ <use xlink:href="#hiueE6AyB" opacity="1" fill="#56d723" fill-opacity="1" />
43
+ </g>
44
+ <g>
45
+ <use xlink:href="#bKLdTBWhx" opacity="1" fill="#666666" fill-opacity="1" />
46
+ </g>
47
+ </g>
48
+ </g>
49
+ </svg>