homebridge-config-ui-x 5.0.0-beta.7 → 5.0.0-beta.71

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 (317) hide show
  1. package/CHANGELOG.md +407 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +34 -144
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +51 -50
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +2 -2
  9. package/dist/bin/platforms/darwin.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 +1 -0
  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 +9 -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 -77
  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 +8 -7
  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 +19 -79
  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 +62 -64
  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.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  74. package/dist/modules/plugins/plugins.service.js +168 -103
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +22 -2
  77. package/dist/modules/server/server.controller.js +86 -18
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +24 -6
  80. package/dist/modules/server/server.service.js +165 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +17 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +45 -43
  94. package/public/3rdpartylicenses.txt +145 -62
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/{chunk-7EUQWCP5.js → chunk-2FGEOEQD.js} +2 -2
  137. package/public/chunk-2OBPFCY2.js +1 -0
  138. package/public/chunk-2SXSAYFM.js +1 -0
  139. package/public/chunk-3EHBMPWY.js +6 -0
  140. package/public/{chunk-WNWWUCCZ.js → chunk-3VIG5M5R.js} +3 -3
  141. package/public/chunk-4CHNDLJI.js +1 -0
  142. package/public/chunk-4NDOCFGG.js +1 -0
  143. package/public/chunk-4WTLH2XC.js +1 -0
  144. package/public/{chunk-6TCHCTXZ.js → chunk-4XCUHCZU.js} +1 -1
  145. package/public/chunk-5CVOEJKH.js +1 -0
  146. package/public/chunk-5K7NARQK.js +20 -0
  147. package/public/chunk-5PQJRA5G.js +1 -0
  148. package/public/chunk-5T7JAJJE.js +1 -0
  149. package/public/chunk-752FLZDX.js +1 -0
  150. package/public/chunk-A2LWX7FC.js +1 -0
  151. package/public/chunk-AK4S37TG.js +1 -0
  152. package/public/chunk-ASBFWS7L.js +2 -0
  153. package/public/chunk-AWX3JVVV.js +1 -0
  154. package/public/chunk-AXOQXZMS.js +1 -0
  155. package/public/chunk-B4ZMGETB.js +1 -0
  156. package/public/chunk-C53ZM5K2.js +1 -0
  157. package/public/chunk-CAAUHMGY.js +1 -0
  158. package/public/chunk-CWBE5JGC.js +1 -0
  159. package/public/chunk-DJ7A6WCT.js +1 -0
  160. package/public/chunk-DJKI5XBW.js +1 -0
  161. package/public/chunk-ECZONFVO.js +1 -0
  162. package/public/chunk-EO357XL5.js +1 -0
  163. package/public/chunk-EWHDFFHL.js +1 -0
  164. package/public/chunk-F2OGU5FW.js +1 -0
  165. package/public/chunk-F6QHMWSD.js +1 -0
  166. package/public/{chunk-QE7DO6J3.js → chunk-FHMZVMZK.js} +2 -2
  167. package/public/chunk-FPFW7VCW.js +5 -0
  168. package/public/{chunk-SK5UJRQU.js → chunk-G6GTWDKY.js} +1 -1
  169. package/public/chunk-GJEQY7FK.js +1 -0
  170. package/public/chunk-IEOEU3PV.js +1 -0
  171. package/public/chunk-J75SJ6HL.js +1 -0
  172. package/public/chunk-JIG56QTE.js +14 -0
  173. package/public/chunk-JMCN2SQV.js +1 -0
  174. package/public/chunk-JOBKDXBH.js +1 -0
  175. package/public/chunk-JPVF3EPM.js +1 -0
  176. package/public/chunk-JX3E4VFM.js +1 -0
  177. package/public/chunk-KUE46RRU.js +1 -0
  178. package/public/chunk-LTDUXFUG.js +1 -0
  179. package/public/chunk-LXATRDDS.js +1 -0
  180. package/public/chunk-M6OQT53Y.js +1 -0
  181. package/public/chunk-N4VWPJ6S.js +1 -0
  182. package/public/chunk-NKGM5COZ.js +1 -0
  183. package/public/chunk-OCZ2H4UT.js +1 -0
  184. package/public/chunk-OGSVTVGE.js +8 -0
  185. package/public/chunk-OT3IJBCR.js +1 -0
  186. package/public/chunk-P3A42IW2.js +1 -0
  187. package/public/chunk-PKP4FSKB.js +1 -0
  188. package/public/chunk-PTJSEANH.js +1 -0
  189. package/public/chunk-Q5DVL6Z6.js +1 -0
  190. package/public/{chunk-CCUID66K.js → chunk-Q7VA22QV.js} +1 -1
  191. package/public/chunk-QELUTKQF.js +32 -0
  192. package/public/chunk-QR2DRJ5Q.js +1 -0
  193. package/public/chunk-QR7L4UUP.js +1 -0
  194. package/public/chunk-RHYCATQR.js +1 -0
  195. package/public/chunk-RSIXVZQ5.js +1 -0
  196. package/public/chunk-S4CZRO5L.js +1 -0
  197. package/public/chunk-TCKHBFBN.js +1 -0
  198. package/public/chunk-TCMMHINS.js +1 -0
  199. package/public/chunk-TJHYTY4K.js +1 -0
  200. package/public/{chunk-NDNK3KHG.js → chunk-TQNPIZF3.js} +1 -1
  201. package/public/chunk-TUHGKUZA.js +1 -0
  202. package/public/chunk-TVF7CAJN.js +1 -0
  203. package/public/chunk-U4V4ICSI.js +7 -0
  204. package/public/chunk-U6XLWNAV.js +1 -0
  205. package/public/{chunk-YP7JWH3J.js → chunk-UOC65WET.js} +1 -1
  206. package/public/{chunk-WHJSVGC7.js → chunk-UR24V3JB.js} +1 -1
  207. package/public/chunk-VISSPBAJ.js +1 -0
  208. package/public/chunk-VWAY3YX4.js +1 -0
  209. package/public/{chunk-EA5J2VEJ.js → chunk-WM3ZC7RY.js} +1 -1
  210. package/public/chunk-WNGOTZ3I.js +23 -0
  211. package/public/{chunk-JZZQRLNW.js → chunk-XZR7OZ6I.js} +1 -1
  212. package/public/chunk-YHABGXDF.js +5 -0
  213. package/public/chunk-YRCKAGKJ.js +1 -0
  214. package/public/chunk-YXEV6KOV.js +7 -0
  215. package/public/chunk-YZMZPZB3.js +1 -0
  216. package/public/{chunk-BVNJ63AC.js → chunk-Z2BKSNSC.js} +2 -2
  217. package/public/chunk-Z4W7FR2B.js +1 -0
  218. package/public/chunk-ZXXOJAVC.js +1 -0
  219. package/public/index.html +2 -2
  220. package/public/main-LJS4FW2X.js +1 -0
  221. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  222. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  223. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  224. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  225. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  226. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  227. package/public/polyfills-4F4B5XMZ.js +2 -0
  228. package/public/styles-RBNVUC4M.css +1 -0
  229. package/scripts/upgrade-install-plugin.sh +1 -1
  230. package/public/chunk-26EDYJQW.js +0 -1
  231. package/public/chunk-2JDN5J3P.js +0 -1
  232. package/public/chunk-2PMXH77A.js +0 -1
  233. package/public/chunk-3C2OQ2W5.js +0 -1
  234. package/public/chunk-3IX3CLER.js +0 -1
  235. package/public/chunk-3JROOWCZ.js +0 -1
  236. package/public/chunk-4LLA7QYB.js +0 -1
  237. package/public/chunk-4N3YQA7W.js +0 -1
  238. package/public/chunk-52L2LAHB.js +0 -1
  239. package/public/chunk-5KIRKUWH.js +0 -1
  240. package/public/chunk-6HR4EKFX.js +0 -8
  241. package/public/chunk-7LUCJVXB.js +0 -1
  242. package/public/chunk-A4HS5JYI.js +0 -1
  243. package/public/chunk-A76FDQKF.js +0 -1
  244. package/public/chunk-AAVBU64J.js +0 -1
  245. package/public/chunk-AFRS7ZFI.js +0 -1
  246. package/public/chunk-BKUGARB4.js +0 -7
  247. package/public/chunk-BPMSJ2VF.js +0 -1
  248. package/public/chunk-BS2EMJX7.js +0 -1
  249. package/public/chunk-CJIFFTFC.js +0 -1
  250. package/public/chunk-CY55AES3.js +0 -1
  251. package/public/chunk-DAYZQW6Q.js +0 -1
  252. package/public/chunk-ED5XL3PD.js +0 -1
  253. package/public/chunk-EJKB2WDE.js +0 -1
  254. package/public/chunk-FA2N3XXT.js +0 -1
  255. package/public/chunk-HSJSWZHD.js +0 -1
  256. package/public/chunk-IB5GZVXD.js +0 -1
  257. package/public/chunk-IVORLBXB.js +0 -1
  258. package/public/chunk-IW3HI4LO.js +0 -1
  259. package/public/chunk-JU4PP2VY.js +0 -32
  260. package/public/chunk-KHNBODZR.js +0 -14
  261. package/public/chunk-KQJ7ONUG.js +0 -1
  262. package/public/chunk-KRNQN3FT.js +0 -1
  263. package/public/chunk-KVW76M4O.js +0 -1
  264. package/public/chunk-LMPCXQ23.js +0 -1
  265. package/public/chunk-LV2VCDOI.js +0 -1
  266. package/public/chunk-M6SHEAQY.js +0 -1
  267. package/public/chunk-MDDU475D.js +0 -1
  268. package/public/chunk-MPVSAJDU.js +0 -5
  269. package/public/chunk-NV6GUYHV.js +0 -1
  270. package/public/chunk-NW6AFAD7.js +0 -1
  271. package/public/chunk-NZNNTHFQ.js +0 -1
  272. package/public/chunk-OKKTO3UM.js +0 -1
  273. package/public/chunk-OOHFQB4Z.js +0 -1
  274. package/public/chunk-ORPWYWCL.js +0 -5
  275. package/public/chunk-QGDVQDUP.js +0 -20
  276. package/public/chunk-QHPDGSZ6.js +0 -1
  277. package/public/chunk-QKWNCNRW.js +0 -1
  278. package/public/chunk-RDAMEJPR.js +0 -1
  279. package/public/chunk-TCSXGQNF.js +0 -1
  280. package/public/chunk-TFEVMIHT.js +0 -23
  281. package/public/chunk-TXOB7R5K.js +0 -7
  282. package/public/chunk-U2KJ2IEE.js +0 -1
  283. package/public/chunk-UAQGK64S.js +0 -1
  284. package/public/chunk-UG5DK2RQ.js +0 -2
  285. package/public/chunk-UKAOVQ6N.js +0 -1
  286. package/public/chunk-UNVMI6CK.js +0 -1
  287. package/public/chunk-US5QSVJ2.js +0 -1
  288. package/public/chunk-UWLLEMGO.js +0 -1
  289. package/public/chunk-V2TYBIZV.js +0 -1
  290. package/public/chunk-V7D5U2P3.js +0 -1
  291. package/public/chunk-WHJOLAED.js +0 -1
  292. package/public/chunk-WNVJPPO7.js +0 -1
  293. package/public/chunk-WP6BKFEA.js +0 -1
  294. package/public/chunk-WSYFRV2X.js +0 -1
  295. package/public/chunk-XLY5QPTN.js +0 -6
  296. package/public/chunk-XY74TB4S.js +0 -1
  297. package/public/chunk-ZOKILXR3.js +0 -1
  298. package/public/chunk-ZT23DWNL.js +0 -1
  299. package/public/main-6PBYD25D.js +0 -1
  300. package/public/media/01-RQ3S2L53.png +0 -0
  301. package/public/media/02-VNCG2I2A.png +0 -0
  302. package/public/media/03-HI42L4ZG.png +0 -0
  303. package/public/media/04-FJLL55LZ.png +0 -0
  304. package/public/media/05-V3EO6SPT.png +0 -0
  305. package/public/media/06-EOJZCQZN.png +0 -0
  306. package/public/media/07-KMKB5PBD.png +0 -0
  307. package/public/media/08-UQJRF6B2.png +0 -0
  308. package/public/media/09-2DJQFRHH.png +0 -0
  309. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  310. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  311. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  312. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  313. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  314. package/public/polyfills-C6JHVXJJ.js +0 -2
  315. package/public/scripts-6GVLYD7F.js +0 -62
  316. package/public/styles-EG5MFQEM.css +0 -1
  317. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
@@ -1,31 +1,50 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
- <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
- width="140.000000pt" height="140.000000pt" viewBox="0 0 140.000000 140.000000"
6
- preserveAspectRatio="xMidYMid meet">
7
-
8
- <g id="accessoryIcon" transform="translate(0.000000,140.000000) scale(0.100000,-0.100000)"
9
- fill="#000000" stroke="none">
10
- <path d="M656 1354 c-23 -22 -29 -55 -24 -131 3 -54 8 -69 27 -84 31 -26 57
11
- -24 86 6 22 21 25 33 25 102 0 95 -15 123 -65 123 -18 0 -41 -7 -49 -16z"/>
12
- <path d="M243 1190 c-29 -12 -45 -44 -37 -74 3 -14 32 -50 64 -80 64 -61 96
13
- -70 130 -36 35 35 26 66 -37 130 -62 62 -85 74 -120 60z"/>
14
- <path d="M1095 1181 c-47 -28 -115 -108 -115 -134 0 -32 35 -67 67 -67 34 0
15
- 153 116 153 149 0 24 -41 71 -62 71 -7 0 -26 -8 -43 -19z"/>
16
- <path d="M592 1012 c-232 -83 -296 -386 -118 -550 78 -72 118 -87 226 -87 110
1
+ <?xml version="1.0" standalone="no" ?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
3
+ <svg
4
+ version="1.0"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width="140.000000pt"
7
+ height="140.000000pt"
8
+ viewBox="0 0 140.000000 140.000000"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ >
11
+ <g
12
+ id="accessoryIcon"
13
+ transform="translate(0.000000,140.000000) scale(0.100000,-0.100000)"
14
+ fill="#000000"
15
+ stroke="none"
16
+ >
17
+ <path
18
+ d="M656 1354 c-23 -22 -29 -55 -24 -131 3 -54 8 -69 27 -84 31 -26 57
19
+ -24 86 6 22 21 25 33 25 102 0 95 -15 123 -65 123 -18 0 -41 -7 -49 -16z"
20
+ />
21
+ <path
22
+ d="M243 1190 c-29 -12 -45 -44 -37 -74 3 -14 32 -50 64 -80 64 -61 96
23
+ -70 130 -36 35 35 26 66 -37 130 -62 62 -85 74 -120 60z"
24
+ />
25
+ <path
26
+ d="M1095 1181 c-47 -28 -115 -108 -115 -134 0 -32 35 -67 67 -67 34 0
27
+ 153 116 153 149 0 24 -41 71 -62 71 -7 0 -26 -8 -43 -19z"
28
+ />
29
+ <path
30
+ d="M592 1012 c-232 -83 -296 -386 -118 -550 78 -72 118 -87 226 -87 110
17
31
  0 154 17 228 89 65 61 94 126 100 216 5 95 -20 168 -84 239 -88 98 -232 136
18
32
  -352 93z m207 -142 c126 -64 133 -256 12 -336 -94 -62 -232 -30 -280 65 -44
19
- 86 -35 167 27 233 65 69 154 83 241 38z"/>
20
- <path d="M65 759 c-28 -17 -35 -29 -35 -66 0 -48 29 -63 123 -63 69 0 81 3
21
- 102 25 30 29 32 55 6 86 -17 21 -29 24 -98 27 -47 1 -86 -2 -98 -9z"/>
22
- <path d="M1164 758 c-47 -22 -50 -93 -5 -117 32 -17 163 -14 189 5 33 23 28
23
- 93 -8 111 -30 15 -146 16 -176 1z"/>
24
- <path d="M279 373 c-83 -78 -96 -125 -43 -159 35 -24 64 -12 127 55 63 66 71
25
- 95 34 129 -35 33 -62 27 -118 -25z"/>
26
- <path d="M1006 399 c-43 -34 -35 -64 37 -136 71 -70 94 -77 132 -38 39 38 32
27
- 61 -38 132 -69 68 -89 75 -131 42z"/>
28
- <path d="M674 268 c-31 -15 -44 -50 -44 -121 0 -86 15 -111 67 -115 58 -4 73
29
- 20 73 119 0 59 -4 82 -17 97 -23 26 -52 33 -79 20z"/>
30
- </g>
33
+ 86 -35 167 27 233 65 69 154 83 241 38z"
34
+ />
35
+ <path
36
+ d="M65 759 c-28 -17 -35 -29 -35 -66 0 -48 29 -63 123 -63 69 0 81 3
37
+ 102 25 30 29 32 55 6 86 -17 21 -29 24 -98 27 -47 1 -86 -2 -98 -9z"
38
+ />
39
+ <path d="M1164 758 c-47 -22 -50 -93 -5 -117 32 -17 163 -14 189 5 33 23 28
40
+ 93 -8 111 -30 15 -146 16 -176 1z" />
41
+ <path d="M279 373 c-83 -78 -96 -125 -43 -159 35 -24 64 -12 127 55 63 66 71
42
+ 95 34 129 -35 33 -62 27 -118 -25z" />
43
+ <path d="M1006 399 c-43 -34 -35 -64 37 -136 71 -70 94 -77 132 -38 39 38 32
44
+ 61 -38 132 -69 68 -89 75 -131 42z" />
45
+ <path
46
+ d="M674 268 c-31 -15 -44 -50 -44 -121 0 -86 15 -111 67 -115 58 -4 73
47
+ 20 73 119 0 59 -4 82 -17 97 -23 26 -52 33 -79 20z"
48
+ />
49
+ </g>
31
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>bulb</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(-4.000000, -4.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 4.000000)">
10
- <path d="M8.04893656,20.9879868 C5.56555168,18.7894577 4,15.5775559 4,12 C4,5.372583 9.372583,0 16,0 C22.627417,0 28,5.372583 28,12 C28,15.5351969 26.4713018,18.7133471 24.0388879,20.9094684 C22.8714144,21.9635298 22.3935361,26.314352 21.2275404,29.0298342 C20.2686082,31.263087 18.8677424,32.0416197 16.0327148,31.9748535 C13.2665152,31.9097083 11.7263284,31.2123902 10.7692871,29.0864258 C9.55282281,26.3841811 9.23382169,22.0369601 8.04893656,20.9879868 L8.04893656,20.9879868 Z M6,12 C6,6.4771525 10.4771525,2 16,2 C21.5228475,2 26,6.4771525 26,12 C26,13.4039787 25.7097455,14.7600975 25.1685764,16 L6.83144854,16 C6.29038009,14.7602736 6,13.4041311 6,12 L6,12 Z M10.4462142,21 C10.1610402,20.3571063 9.8320342,19.8954144 9.37465546,19.4904991 C8.55828153,18.7677671 7.87243458,17.9262861 7.33680389,17 L7.33680389,17 L24.66319,17 C24.1437667,17.8981932 23.482983,18.7168207 22.6986172,19.4249906 C22.2402726,19.8388101 21.9047051,20.3213336 21.6043283,21 L10.4462142,21 L10.4462142,21 L10.4462142,21 Z M11.1018052,23 C11.1720882,23.2658547 11.2440709,23.5508756 11.3192464,23.8572605 C11.3437376,23.9570767 11.5960867,25.004759 11.7045027,25.4435106 L11.7045027,25.4435106 L20.8873043,23.1382947 C20.9002539,23.0916455 20.9131357,23.0455506 20.9259569,23 L11.1018052,23 L11.1018052,23 L11.1018052,23 Z M12.5749549,28.2249957 C12.3621958,27.7446626 12.1664961,27.1655223 11.9572719,26.4110846 L11.9572719,26.4110846 L20.5928403,24.2432441 C20.4835056,24.6645271 20.3300954,25.2573517 20.2770527,25.4580134 C20.1911713,25.7829042 20.1100328,26.0797864 20.0319804,26.353012 L12.5749542,28.2249958 L12.5749549,28.2249957 L12.5749549,28.2249957 Z M13.1241608,29.1181532 C13.6755154,29.7210257 14.4995511,29.9381923 16.0798027,29.9754079 C18.1496378,30.0241534 18.7757989,29.6706585 19.3897941,28.2407279 C19.4897734,28.0078865 19.586616,27.7549737 19.6843919,27.4712975 L13.1241608,29.1181532 L13.1241608,29.1181532 L13.1241608,29.1181532 Z M8.49999999,12.0473103 C8,12.0473103 8.02221433,11.3092774 8.06530214,10.9730396 C8.52717694,7.36877756 11.387523,4.51476445 14.9947964,4.06254437 C15.2453908,4.031129 16.0447247,4.00000003 16.0447247,4.50000001 C16.0447247,5 14.9166805,5.08331953 14.9166805,5.08331953 C11.918172,5.5491681 9.5491681,7.91817199 9.08331953,10.9166805 C9.08331953,10.9166805 8.99999997,12.0473103 8.49999999,12.0473103 L8.49999999,12.0473103 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>bulb</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(-4.000000, -4.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(4.000000, 4.000000)">
18
+ <path
19
+ d="M8.04893656,20.9879868 C5.56555168,18.7894577 4,15.5775559 4,12 C4,5.372583 9.372583,0 16,0 C22.627417,0 28,5.372583 28,12 C28,15.5351969 26.4713018,18.7133471 24.0388879,20.9094684 C22.8714144,21.9635298 22.3935361,26.314352 21.2275404,29.0298342 C20.2686082,31.263087 18.8677424,32.0416197 16.0327148,31.9748535 C13.2665152,31.9097083 11.7263284,31.2123902 10.7692871,29.0864258 C9.55282281,26.3841811 9.23382169,22.0369601 8.04893656,20.9879868 L8.04893656,20.9879868 Z M6,12 C6,6.4771525 10.4771525,2 16,2 C21.5228475,2 26,6.4771525 26,12 C26,13.4039787 25.7097455,14.7600975 25.1685764,16 L6.83144854,16 C6.29038009,14.7602736 6,13.4041311 6,12 L6,12 Z M10.4462142,21 C10.1610402,20.3571063 9.8320342,19.8954144 9.37465546,19.4904991 C8.55828153,18.7677671 7.87243458,17.9262861 7.33680389,17 L7.33680389,17 L24.66319,17 C24.1437667,17.8981932 23.482983,18.7168207 22.6986172,19.4249906 C22.2402726,19.8388101 21.9047051,20.3213336 21.6043283,21 L10.4462142,21 L10.4462142,21 L10.4462142,21 Z M11.1018052,23 C11.1720882,23.2658547 11.2440709,23.5508756 11.3192464,23.8572605 C11.3437376,23.9570767 11.5960867,25.004759 11.7045027,25.4435106 L11.7045027,25.4435106 L20.8873043,23.1382947 C20.9002539,23.0916455 20.9131357,23.0455506 20.9259569,23 L11.1018052,23 L11.1018052,23 L11.1018052,23 Z M12.5749549,28.2249957 C12.3621958,27.7446626 12.1664961,27.1655223 11.9572719,26.4110846 L11.9572719,26.4110846 L20.5928403,24.2432441 C20.4835056,24.6645271 20.3300954,25.2573517 20.2770527,25.4580134 C20.1911713,25.7829042 20.1100328,26.0797864 20.0319804,26.353012 L12.5749542,28.2249958 L12.5749549,28.2249957 L12.5749549,28.2249957 Z M13.1241608,29.1181532 C13.6755154,29.7210257 14.4995511,29.9381923 16.0798027,29.9754079 C18.1496378,30.0241534 18.7757989,29.6706585 19.3897941,28.2407279 C19.4897734,28.0078865 19.586616,27.7549737 19.6843919,27.4712975 L13.1241608,29.1181532 L13.1241608,29.1181532 L13.1241608,29.1181532 Z M8.49999999,12.0473103 C8,12.0473103 8.02221433,11.3092774 8.06530214,10.9730396 C8.52717694,7.36877756 11.387523,4.51476445 14.9947964,4.06254437 C15.2453908,4.031129 16.0447247,4.00000003 16.0447247,4.50000001 C16.0447247,5 14.9166805,5.08331953 14.9166805,5.08331953 C11.918172,5.5491681 9.5491681,7.91817199 9.08331953,10.9166805 C9.08331953,10.9166805 8.99999997,12.0473103 8.49999999,12.0473103 L8.49999999,12.0473103 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </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>lock a</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, -196.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 196.000000)">
10
- <path d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 L6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 L8,19.0058587 Z M11,16 L11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,16 L23,16 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,16 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 L16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 L16,26 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>lock a</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, -196.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 196.000000)">
18
+ <path
19
+ d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 L6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 L8,19.0058587 Z M11,16 L11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,16 L23,16 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,16 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 L16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 L16,26 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </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>lock b</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(-132.000000, -196.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(132.000000, 196.000000)">
10
- <path d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 Z M11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,10 C21,10 21,11 22,11 C23,11 23,10 23,10 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,6.99706188 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 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>lock b</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(-132.000000, -196.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(132.000000, 196.000000)">
18
+ <path
19
+ d="M6,19.0058587 L6,24 C6,28.4128883 9.58326452,32 13.9979204,32 L18.0020796,32 C22.4177293,32 26,28.4174727 26,24 L26,19.0058587 C26,17.3462438 24.6605259,16 23.0049107,16 L8.99508929,16 C7.33929222,16 6,17.3468057 6,19.0058587 Z M8,19.0058587 C8,18.4488783 8.44637411,18 8.99508929,18 L23.0049107,18 C23.553693,18 24,18.4485626 24,19.0058587 L24,24 C24,27.3129353 21.3131277,30 18.0020796,30 L13.9979204,30 C10.6883147,30 8,27.3087989 8,24 L8,19.0058587 Z M11,6.99706188 C11,4.23987016 13.2427071,2 16,2 C18.7609209,2 21,4.23840787 21,6.99706188 L21,10 C21,10 21,11 22,11 C23,11 23,10 23,10 L23,6.99706188 C23,3.13370412 19.8653562,0 16,0 C12.1387039,0 9,3.13473357 9,6.99706188 L9,16 L11,16 L11,6.99706188 Z M16,27 C14.3431458,27 13,25.6568542 13,24 C13,22.3431458 14.3431458,21 16,21 C17.6568542,21 19,22.3431458 19,24 C19,25.6568542 17.6568542,27 16,27 Z M16,26 C17.1045695,26 18,25.1045695 18,24 C18,22.8954305 17.1045695,22 16,22 C14.8954305,22 14,22.8954305 14,24 C14,25.1045695 14.8954305,26 16,26 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>
@@ -1,3 +1,101 @@
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="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z" id="afqPxZAZR"></path><path d="M207.9 83.94C207.9 70.36 197.14 59.24 183.98 59.24C170.83 59.24 160.07 70.36 160.07 83.94C160.07 97.53 170.83 108.65 183.98 108.65C197.14 108.65 207.9 97.53 207.9 83.94Z" id="b16HJ82NHZ"></path><path d="M249.29 175.95C227.17 175.95 208.03 163.6 197.27 145.69C196.13 143.72 187.04 127.91 185.91 125.93C181.72 118.52 173.95 114.2 165.58 114.2C162.59 114.2 159.6 114.81 156.61 116.05C152.42 117.82 131.5 126.67 93.83 142.6L93.83 200.66L117.74 200.66L117.74 159.28L138.67 150.02L105.79 324.17L130.9 324.17L151.83 225.36L177.54 250.06L177.54 324.17L201.46 324.17L201.46 230.92L176.94 205.6C181.25 183.36 183.64 171.01 184.12 168.54C199.66 188.3 222.98 200.66 249.29 200.66C249.29 195.72 249.29 178.42 249.29 175.95Z" id="a1UnmkcSuP"></path><path d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z" id="b14FxccCIu"></path><path d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z" id="i1vaie4N2y"></path><path d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z" id="bj13XqHEa"></path><path d="M71.34 174.02C72.77 174.02 73.93 175.18 73.93 176.62C73.93 177.8 73.93 178.75 73.93 179.93C73.93 181.36 72.77 182.52 71.34 182.52C65.07 182.52 48.86 182.52 42.59 182.52C41.16 182.52 40 181.36 40 179.93C40 178.75 40 177.8 40 176.62C40 175.18 41.16 174.02 42.59 174.02C48.86 174.02 65.07 174.02 71.34 174.02Z" id="eCVKwDRev"></path><path d="M85.57 117.94C86.68 117.94 87.59 118.84 87.59 119.95C87.59 121.25 87.59 123.13 87.59 124.43C87.59 125.54 86.68 126.44 85.57 126.44C80.7 126.44 68.11 126.44 63.24 126.44C62.13 126.44 61.23 125.54 61.23 124.43C61.23 123.13 61.23 121.25 61.23 119.95C61.23 118.84 62.13 117.94 63.24 117.94C68.11 117.94 80.7 117.94 85.57 117.94Z" id="a2tK3uBA1H"></path><path d="M98.76 227.88C100.48 227.9 101.84 229.3 101.82 231.02C101.81 232.09 101.81 232.24 101.79 233.32C101.77 235.03 100.36 236.4 98.65 236.37C91.16 236.27 71.78 236.02 64.29 235.92C62.58 235.9 61.21 234.49 61.23 232.78C61.24 231.7 61.25 231.56 61.26 230.48C61.28 228.77 62.69 227.4 64.4 227.42C71.89 227.52 91.27 227.78 98.76 227.88Z" id="a1rSD8K77Y"></path></defs><g><g><g><use xlink:href="#afqPxZAZR" opacity="1" fill="#53d769" fill-opacity="1" class="motion_sensor_background"></use></g><g><use xlink:href="#b16HJ82NHZ" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person"></use><g><use xlink:href="#b16HJ82NHZ" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#a1UnmkcSuP" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person"></use><g><use xlink:href="#a1UnmkcSuP" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#b14FxccCIu" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#i1vaie4N2y" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#bj13XqHEa" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines"></use></g><g><use xlink:href="#eCVKwDRev" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></use></g><g><use xlink:href="#a2tK3uBA1H" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></use></g><g><use xlink:href="#a1rSD8K77Y" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines"></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="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z"
15
+ id="afqPxZAZR"
16
+ />
17
+ <path
18
+ d="M207.9 83.94C207.9 70.36 197.14 59.24 183.98 59.24C170.83 59.24 160.07 70.36 160.07 83.94C160.07 97.53 170.83 108.65 183.98 108.65C197.14 108.65 207.9 97.53 207.9 83.94Z"
19
+ id="b16HJ82NHZ"
20
+ />
21
+ <path
22
+ d="M249.29 175.95C227.17 175.95 208.03 163.6 197.27 145.69C196.13 143.72 187.04 127.91 185.91 125.93C181.72 118.52 173.95 114.2 165.58 114.2C162.59 114.2 159.6 114.81 156.61 116.05C152.42 117.82 131.5 126.67 93.83 142.6L93.83 200.66L117.74 200.66L117.74 159.28L138.67 150.02L105.79 324.17L130.9 324.17L151.83 225.36L177.54 250.06L177.54 324.17L201.46 324.17L201.46 230.92L176.94 205.6C181.25 183.36 183.64 171.01 184.12 168.54C199.66 188.3 222.98 200.66 249.29 200.66C249.29 195.72 249.29 178.42 249.29 175.95Z"
23
+ id="a1UnmkcSuP"
24
+ />
25
+ <path
26
+ d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z"
27
+ id="b14FxccCIu"
28
+ />
29
+ <path
30
+ d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z"
31
+ id="i1vaie4N2y"
32
+ />
33
+ <path
34
+ d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z"
35
+ id="bj13XqHEa"
36
+ />
37
+ <path
38
+ d="M71.34 174.02C72.77 174.02 73.93 175.18 73.93 176.62C73.93 177.8 73.93 178.75 73.93 179.93C73.93 181.36 72.77 182.52 71.34 182.52C65.07 182.52 48.86 182.52 42.59 182.52C41.16 182.52 40 181.36 40 179.93C40 178.75 40 177.8 40 176.62C40 175.18 41.16 174.02 42.59 174.02C48.86 174.02 65.07 174.02 71.34 174.02Z"
39
+ id="eCVKwDRev"
40
+ />
41
+ <path
42
+ d="M85.57 117.94C86.68 117.94 87.59 118.84 87.59 119.95C87.59 121.25 87.59 123.13 87.59 124.43C87.59 125.54 86.68 126.44 85.57 126.44C80.7 126.44 68.11 126.44 63.24 126.44C62.13 126.44 61.23 125.54 61.23 124.43C61.23 123.13 61.23 121.25 61.23 119.95C61.23 118.84 62.13 117.94 63.24 117.94C68.11 117.94 80.7 117.94 85.57 117.94Z"
43
+ id="a2tK3uBA1H"
44
+ />
45
+ <path
46
+ d="M98.76 227.88C100.48 227.9 101.84 229.3 101.82 231.02C101.81 232.09 101.81 232.24 101.79 233.32C101.77 235.03 100.36 236.4 98.65 236.37C91.16 236.27 71.78 236.02 64.29 235.92C62.58 235.9 61.21 234.49 61.23 232.78C61.24 231.7 61.25 231.56 61.26 230.48C61.28 228.77 62.69 227.4 64.4 227.42C71.89 227.52 91.27 227.78 98.76 227.88Z"
47
+ id="a1rSD8K77Y"
48
+ />
49
+ </defs>
50
+ <g>
51
+ <g>
52
+ <g>
53
+ <use xlink:href="#afqPxZAZR" opacity="1" fill="#53d769" fill-opacity="1" class="motion_sensor_background" />
54
+ </g>
55
+ <g>
56
+ <use xlink:href="#b16HJ82NHZ" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person" />
57
+ <g>
58
+ <use
59
+ xlink:href="#b16HJ82NHZ"
60
+ opacity="1"
61
+ fill-opacity="0"
62
+ stroke="#000000"
63
+ stroke-width="1"
64
+ stroke-opacity="0"
65
+ />
66
+ </g>
67
+ </g>
68
+ <g>
69
+ <use xlink:href="#a1UnmkcSuP" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_person" />
70
+ <g>
71
+ <use
72
+ xlink:href="#a1UnmkcSuP"
73
+ opacity="1"
74
+ fill-opacity="0"
75
+ stroke="#000000"
76
+ stroke-width="1"
77
+ stroke-opacity="0"
78
+ />
79
+ </g>
80
+ </g>
81
+ <g>
82
+ <use xlink:href="#b14FxccCIu" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
83
+ </g>
84
+ <g>
85
+ <use xlink:href="#i1vaie4N2y" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
86
+ </g>
87
+ <g>
88
+ <use xlink:href="#bj13XqHEa" opacity="1" fill="#fb0000" fill-opacity="1" class="motion_sensor_trigger_lines" />
89
+ </g>
90
+ <g>
91
+ <use xlink:href="#eCVKwDRev" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
92
+ </g>
93
+ <g>
94
+ <use xlink:href="#a2tK3uBA1H" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
95
+ </g>
96
+ <g>
97
+ <use xlink:href="#a1rSD8K77Y" opacity="1" fill="#ffffff" fill-opacity="1" class="motion_sensor_trail_lines" />
98
+ </g>
99
+ </g>
100
+ </g>
101
+ </svg>
@@ -1,3 +1,98 @@
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="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z" id="deMotnikS"></path><path d="M190.85 83.94C190.85 70.36 180.09 59.24 166.93 59.24C153.78 59.24 143.02 70.36 143.02 83.94C143.02 97.53 153.78 108.65 166.93 108.65C180.09 108.65 190.85 97.53 190.85 83.94Z" id="ba2xuN6SZ"></path><path d="M232.24 175.95C210.12 175.95 190.98 163.6 180.22 145.69C179.08 143.72 169.99 127.91 168.86 125.93C164.67 118.52 156.9 114.2 148.53 114.2C145.54 114.2 142.55 114.81 139.56 116.05C135.37 117.82 114.45 126.67 76.78 142.6L76.78 200.66L100.69 200.66L100.69 159.28L121.62 150.02L88.73 324.17L113.85 324.17L134.78 225.36L160.49 250.06L160.49 324.17L184.4 324.17L184.4 230.92L159.89 205.6C164.19 183.36 166.59 171.01 167.06 168.54C182.61 188.3 205.93 200.66 232.24 200.66C232.24 195.72 232.24 178.42 232.24 175.95Z" id="dsDC8BEe"></path><path d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z" id="bcTE6Pnht"></path><path d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z" id="b4EBqfvD6i"></path><path d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z" id="bRWtz22R"></path></defs><g><g><g><use xlink:href="#deMotnikS" opacity="1" fill="#fd9500" fill-opacity="1" class="occupancy_sensor_background"></use></g><g><use xlink:href="#ba2xuN6SZ" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person"></use><g><use xlink:href="#ba2xuN6SZ" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#dsDC8BEe" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person"></use><g><use xlink:href="#dsDC8BEe" opacity="1" fill-opacity="0" stroke="#000000" stroke-width="1" stroke-opacity="0"></use></g></g><g><use xlink:href="#bcTE6Pnht" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></use></g><g><use xlink:href="#b4EBqfvD6i" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></use></g><g><use xlink:href="#bRWtz22R" opacity="1" fill="#fb0000" fill-opacity="1" class="occupancy_sensor_trigger_lines"></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="M226.04 22.42C265.54 22.42 297.56 54.45 297.56 93.95C297.56 150.68 297.56 249.32 297.56 306.05C297.56 345.55 265.54 377.58 226.04 377.58C183.12 377.58 125.9 377.58 82.98 377.58C43.48 377.58 11.45 345.55 11.45 306.05C11.45 249.32 11.45 150.68 11.45 93.95C11.45 54.45 43.48 22.42 82.98 22.42C125.9 22.42 183.12 22.42 226.04 22.42Z"
15
+ id="deMotnikS"
16
+ />
17
+ <path
18
+ d="M190.85 83.94C190.85 70.36 180.09 59.24 166.93 59.24C153.78 59.24 143.02 70.36 143.02 83.94C143.02 97.53 153.78 108.65 166.93 108.65C180.09 108.65 190.85 97.53 190.85 83.94Z"
19
+ id="ba2xuN6SZ"
20
+ />
21
+ <path
22
+ d="M232.24 175.95C210.12 175.95 190.98 163.6 180.22 145.69C179.08 143.72 169.99 127.91 168.86 125.93C164.67 118.52 156.9 114.2 148.53 114.2C145.54 114.2 142.55 114.81 139.56 116.05C135.37 117.82 114.45 126.67 76.78 142.6L76.78 200.66L100.69 200.66L100.69 159.28L121.62 150.02L88.73 324.17L113.85 324.17L134.78 225.36L160.49 250.06L160.49 324.17L184.4 324.17L184.4 230.92L159.89 205.6C164.19 183.36 166.59 171.01 167.06 168.54C182.61 188.3 205.93 200.66 232.24 200.66C232.24 195.72 232.24 178.42 232.24 175.95Z"
23
+ id="dsDC8BEe"
24
+ />
25
+ <path
26
+ d="M392.82 112.27C395.95 112.27 398.49 114.81 398.49 117.94C398.49 119.07 398.49 116.81 398.49 117.94C398.49 121.07 395.95 123.61 392.82 123.61C379.11 123.61 343.64 123.61 329.93 123.61C326.8 123.61 324.26 121.07 324.26 117.94C324.26 116.81 324.26 119.07 324.26 117.94C324.26 114.81 326.8 112.27 329.93 112.27C343.64 112.27 379.11 112.27 392.82 112.27Z"
27
+ id="bcTE6Pnht"
28
+ />
29
+ <path
30
+ d="M375.52 39.53C378.29 38.07 381.72 39.12 383.18 41.89C383.71 42.9 382.65 40.89 383.18 41.89C384.65 44.66 383.59 48.09 380.82 49.56C368.7 55.96 337.35 72.54 325.23 78.95C322.46 80.41 319.03 79.36 317.57 76.59C317.04 75.58 318.1 77.59 317.57 76.59C316.1 73.82 317.16 70.39 319.93 68.92C332.05 62.52 363.4 45.94 375.52 39.53Z"
31
+ id="b4EBqfvD6i"
32
+ />
33
+ <path
34
+ d="M380.8 183.56C383.57 185.01 384.65 188.43 383.2 191.21C382.67 192.21 383.72 190.2 383.2 191.21C381.75 193.98 378.32 195.06 375.55 193.61C363.39 187.26 331.96 170.84 319.81 164.49C317.03 163.04 315.96 159.61 317.41 156.84C317.93 155.83 316.88 157.84 317.41 156.84C318.86 154.06 322.28 152.99 325.06 154.44C337.21 160.79 368.65 177.21 380.8 183.56Z"
35
+ id="bRWtz22R"
36
+ />
37
+ </defs>
38
+ <g>
39
+ <g>
40
+ <g>
41
+ <use xlink:href="#deMotnikS" opacity="1" fill="#fd9500" fill-opacity="1" class="occupancy_sensor_background" />
42
+ </g>
43
+ <g>
44
+ <use xlink:href="#ba2xuN6SZ" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person" />
45
+ <g>
46
+ <use
47
+ xlink:href="#ba2xuN6SZ"
48
+ opacity="1"
49
+ fill-opacity="0"
50
+ stroke="#000000"
51
+ stroke-width="1"
52
+ stroke-opacity="0"
53
+ />
54
+ </g>
55
+ </g>
56
+ <g>
57
+ <use xlink:href="#dsDC8BEe" opacity="1" fill="#ffffff" fill-opacity="1" class="occupancy_sensor_person" />
58
+ <g>
59
+ <use
60
+ xlink:href="#dsDC8BEe"
61
+ opacity="1"
62
+ fill-opacity="0"
63
+ stroke="#000000"
64
+ stroke-width="1"
65
+ stroke-opacity="0"
66
+ />
67
+ </g>
68
+ </g>
69
+ <g>
70
+ <use
71
+ xlink:href="#bcTE6Pnht"
72
+ opacity="1"
73
+ fill="#fb0000"
74
+ fill-opacity="1"
75
+ class="occupancy_sensor_trigger_lines"
76
+ />
77
+ </g>
78
+ <g>
79
+ <use
80
+ xlink:href="#b4EBqfvD6i"
81
+ opacity="1"
82
+ fill="#fb0000"
83
+ fill-opacity="1"
84
+ class="occupancy_sensor_trigger_lines"
85
+ />
86
+ </g>
87
+ <g>
88
+ <use
89
+ xlink:href="#bRWtz22R"
90
+ opacity="1"
91
+ fill="#fb0000"
92
+ fill-opacity="1"
93
+ class="occupancy_sensor_trigger_lines"
94
+ />
95
+ </g>
96
+ </g>
97
+ </g>
98
+ </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>socket i</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(-36.000000, -132.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(36.000000, 132.000000)">
10
- <path d="M0,6.00017566 C0,2.68637015 2.68697795,0 6.00017566,0 L25.9998243,0 C29.3136299,0 32,2.68697795 32,6.00017566 L32,25.9998243 C32,29.3136299 29.3130221,32 25.9998243,32 L6.00017566,32 C2.68637015,32 0,29.3130221 0,25.9998243 L0,6.00017566 L0,6.00017566 Z M2,6.00017566 L2,25.9998243 C2,28.2086938 3.79118088,30 6.00017566,30 L25.9998243,30 C28.2086938,30 30,28.2088191 30,25.9998243 L30,6.00017566 C30,3.7913062 28.2088191,2 25.9998243,2 L6.00017566,2 C3.7913062,2 2,3.79118088 2,6.00017566 L2,6.00017566 Z M4,9.00197269 C4,6.23945945 6.23630996,4 9.00197269,4 L22.9980273,4 C25.7605405,4 28,6.23630996 28,9.00197269 L28,22.9980273 C28,25.7605405 25.76369,28 22.9980273,28 L9.00197269,28 C6.23945945,28 4,25.76369 4,22.9980273 L4,9.00197269 L4,9.00197269 Z M5,9.00197269 L5,22.9980273 C5,25.2102201 6.79055863,27 9.00197269,27 L22.9980273,27 C25.2102201,27 27,25.2094414 27,22.9980273 L27,9.00197269 C27,6.78977986 25.2094414,5 22.9980273,5 L9.00197269,5 C6.78977986,5 5,6.79055863 5,9.00197269 L5,9.00197269 Z M16,25 C11.0294373,25 7,20.9705627 7,16 C7,11.0294373 11.0294373,7 16,7 C20.9705627,7 25,11.0294373 25,16 C25,20.9705627 20.9705627,25 16,25 L16,25 Z M16,24 C20.418278,24 24,20.418278 24,16 C24,11.581722 20.418278,8 16,8 C11.581722,8 8,11.581722 8,16 C8,20.418278 11.581722,24 16,24 L16,24 Z M16,21 C15.4477153,21 15,20.5566468 15,19.9906311 L15,18.0093689 C15,17.4519098 15.4438648,17 16,17 C16.5522847,17 17,17.4433532 17,18.0093689 L17,19.9906311 C17,20.5480902 16.5561352,21 16,21 L16,21 Z M17.2679492,13 C17.5440916,12.5217074 18.1519043,12.3556512 18.6420883,12.638659 L20.3579117,13.6292901 C20.8406854,13.9080197 21.0101184,14.5183728 20.7320508,15 C20.4559084,15.4782926 19.8480957,15.6443488 19.3579117,15.361341 L17.6420883,14.3707099 C17.1593146,14.0919803 16.9898816,13.4816272 17.2679492,13 L17.2679492,13 Z M11.2679492,15 C10.9918068,14.5217074 11.1519043,13.912298 11.6420883,13.6292901 L13.3579117,12.638659 C13.8406854,12.3599295 14.4539832,12.5183728 14.7320508,13 C15.0081932,13.4782926 14.8480957,14.087702 14.3579117,14.3707099 L12.6420883,15.361341 C12.1593146,15.6400705 11.5460168,15.4816272 11.2679492,15 L11.2679492,15 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>socket i</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(-36.000000, -132.000000)" fill="#000000">
17
+ <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(36.000000, 132.000000)">
18
+ <path
19
+ d="M0,6.00017566 C0,2.68637015 2.68697795,0 6.00017566,0 L25.9998243,0 C29.3136299,0 32,2.68697795 32,6.00017566 L32,25.9998243 C32,29.3136299 29.3130221,32 25.9998243,32 L6.00017566,32 C2.68637015,32 0,29.3130221 0,25.9998243 L0,6.00017566 L0,6.00017566 Z M2,6.00017566 L2,25.9998243 C2,28.2086938 3.79118088,30 6.00017566,30 L25.9998243,30 C28.2086938,30 30,28.2088191 30,25.9998243 L30,6.00017566 C30,3.7913062 28.2088191,2 25.9998243,2 L6.00017566,2 C3.7913062,2 2,3.79118088 2,6.00017566 L2,6.00017566 Z M4,9.00197269 C4,6.23945945 6.23630996,4 9.00197269,4 L22.9980273,4 C25.7605405,4 28,6.23630996 28,9.00197269 L28,22.9980273 C28,25.7605405 25.76369,28 22.9980273,28 L9.00197269,28 C6.23945945,28 4,25.76369 4,22.9980273 L4,9.00197269 L4,9.00197269 Z M5,9.00197269 L5,22.9980273 C5,25.2102201 6.79055863,27 9.00197269,27 L22.9980273,27 C25.2102201,27 27,25.2094414 27,22.9980273 L27,9.00197269 C27,6.78977986 25.2094414,5 22.9980273,5 L9.00197269,5 C6.78977986,5 5,6.79055863 5,9.00197269 L5,9.00197269 Z M16,25 C11.0294373,25 7,20.9705627 7,16 C7,11.0294373 11.0294373,7 16,7 C20.9705627,7 25,11.0294373 25,16 C25,20.9705627 20.9705627,25 16,25 L16,25 Z M16,24 C20.418278,24 24,20.418278 24,16 C24,11.581722 20.418278,8 16,8 C11.581722,8 8,11.581722 8,16 C8,20.418278 11.581722,24 16,24 L16,24 Z M16,21 C15.4477153,21 15,20.5566468 15,19.9906311 L15,18.0093689 C15,17.4519098 15.4438648,17 16,17 C16.5522847,17 17,17.4433532 17,18.0093689 L17,19.9906311 C17,20.5480902 16.5561352,21 16,21 L16,21 Z M17.2679492,13 C17.5440916,12.5217074 18.1519043,12.3556512 18.6420883,12.638659 L20.3579117,13.6292901 C20.8406854,13.9080197 21.0101184,14.5183728 20.7320508,15 C20.4559084,15.4782926 19.8480957,15.6443488 19.3579117,15.361341 L17.6420883,14.3707099 C17.1593146,14.0919803 16.9898816,13.4816272 17.2679492,13 L17.2679492,13 Z M11.2679492,15 C10.9918068,14.5217074 11.1519043,13.912298 11.6420883,13.6292901 L13.3579117,12.638659 C13.8406854,12.3599295 14.4539832,12.5183728 14.7320508,13 C15.0081932,13.4782926 14.8480957,14.087702 14.3579117,14.3707099 L12.6420883,15.361341 C12.1593146,15.6400705 11.5460168,15.4816272 11.2679492,15 L11.2679492,15 Z"
20
+ sketch:type="MSShapeGroup"
21
+ />
22
+ </g>
13
23
  </g>
14
- </svg>
24
+ </g>
25
+ </svg>